-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.09 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
{
"name": "oat-sa/bundle-em-client",
"description": "Symfony Bundle to assist communication with Environment Management",
"type": "symfony-bundle",
"license": "GPL-2.0-only",
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/oat-sa/lib-em-php-lti-client"
},
{
"type": "vcs",
"url": "https://github.com/oat-sa/lib-em-php-client"
},
{
"type": "vcs",
"url": "https://github.com/oat-sa/lib-em-php-lti-events"
},
{
"type": "vcs",
"url": "https://github.com/oat-sa/lib-em-php-proto"
}
],
"require": {
"php": ">=8.0",
"nyholm/psr7": "^1.4",
"oat-sa/lib-em-php-client": "*",
"oat-sa/lib-em-php-lti-client": "*",
"symfony/framework-bundle": "^4.4 || ^5.1",
"symfony/psr-http-message-bridge": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"OAT\\Bundle\\EnvironmentManagementClientBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"config": {
"sort-packages": true
}
}