-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 1.1 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
{
"name": "oat-sa/lib-lti1p3-basic-outcome",
"description": "OAT LTI 1.3 Basic Outcome Library",
"type": "library",
"license": "GPL-2.0-only",
"require": {
"php": ">=8.0.0",
"ext-json": "*",
"nyholm/psr7": "^1.8",
"oat-sa/lib-lti1p3-core": "^7.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-handler": "^1.0",
"symfony/dom-crawler": "^4.4 || ^5.1 || ^6.4 || ^7.1",
"twig/twig": "^3.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8",
"nesbot/carbon": "^2.72 || ^3.0",
"php-coveralls/php-coveralls": "^2.4",
"phpunit/phpunit": "^9.6",
"psalm/plugin-phpunit": "^0.15",
"vimeo/psalm": "^4.6"
},
"autoload": {
"psr-4": {
"OAT\\Library\\Lti1p3BasicOutcome\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OAT\\Library\\Lti1p3BasicOutcome\\Tests\\": "tests/",
"OAT\\Library\\Lti1p3Core\\Tests\\": "vendor/oat-sa/lib-lti1p3-core/tests/"
}
},
"config": {
"sort-packages": true
}
}