-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 939 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-em-php-lti-events",
"type": "library",
"license": "GPL-2.0-only",
"minimum-stability": "dev",
"require": {
"php": ">=8.0",
"ext-ctype": "*",
"ext-json": "*",
"ext-mbstring": "*",
"oat-sa/lib-lti1p3-ags": "^1.4",
"oat-sa/lib-lti1p3-basic-outcome": "^4.1",
"oat-sa/lib-lti1p3-core": "^6.6",
"oat-sa/lib-lti1p3-nrps": "^7.0",
"oat-sa/lib-lti1p3-proctoring": "^0.4",
"symfony/property-access": "^5.0",
"symfony/serializer": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"OAT\\Library\\EnvironmentManagementLtiEvents\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OAT\\Library\\EnvironmentManagementLtiEvents\\Tests\\": "tests/"
}
}
}