forked from packbackbooks/lti-1-3-php-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.16 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
{
"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": {
"firebase/php-jwt": "^5.5|^6.0",
"guzzlehttp/guzzle": "^7.0",
"phpseclib/phpseclib": "^2.0"
},
"require-dev": {
"jubeki/laravel-code-style": "^1.0",
"mockery/mockery": "^1.4",
"nesbot/carbon": "^2.43",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Packback\\Lti1p3\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"lint": "php-cs-fixer fix -v --dry-run",
"lint-fix": "php-cs-fixer fix -v"
}
}