forked from 1EdTech/lti-1-3-php-library
-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
54 lines (54 loc) · 1.23 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "packbackbooks/lti-1p3-tool",
"type": "library",
"description": "A library used for building IMS-certified LTI 1.3 tool providers in PHP.",
"license": "Apache-2.0",
"keywords": [
"lti"
],
"authors": [
{
"name": "Davo Hynds",
"email": "[email protected]"
},
{
"name": "Eric Tendian",
"email": "[email protected]"
},
{
"name": "Martin Lenord",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"firebase/php-jwt": "^6.6",
"guzzlehttp/guzzle": "^7.0",
"phpseclib/phpseclib": "^3.0"
},
"require-dev": {
"mockery/mockery": "^1.4",
"nesbot/carbon": "^2.43 || ^3.0",
"laravel/pint": "^1.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9.0|^10.0"
},
"autoload": {
"psr-4": {
"Packback\\Lti1p3\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"lint": [
"pint --test",
"phpstan analyse"
],
"lint-fix": "pint -v"
}
}