-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 999 Bytes
/
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
{
"name": "oat-sa/lib-lti1p3-submission-review",
"description": "OAT LTI 1.3 Submission Review Library",
"type": "library",
"license": "GPL-2.0-only",
"require": {
"ext-json": "*",
"php": ">=8.0.0",
"oat-sa/lib-lti1p3-core": "^7.0"
},
"require-dev": {
"lcobucci/jwt": "^4.3",
"nesbot/carbon": "^2.72 || ^3.0",
"nyholm/psr7": "^1.8",
"php-coveralls/php-coveralls": "^2.4",
"phpunit/phpunit": "^9.6",
"psalm/plugin-phpunit": "^0.15",
"psr/http-message": "^1.1 || ^2.0",
"vimeo/psalm": "^4.6"
},
"autoload": {
"psr-4": {
"OAT\\Library\\Lti1p3SubmissionReview\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OAT\\Library\\Lti1p3SubmissionReview\\Tests\\": "tests/",
"OAT\\Library\\Lti1p3Core\\Tests\\": "vendor/oat-sa/lib-lti1p3-core/tests/"
}
},
"config": {
"sort-packages": true
}
}