-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.07 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
{
"name": "bookboon/api-bundle",
"type": "library",
"description": "Wrapper for Bookboon API",
"keywords": ["api","wrapper", "bundle"],
"homepage": "https://github.com/bookboon/api-php-bundle",
"license": "MIT",
"authors": [
{
"name": "Lasse Mammen",
"email": "[email protected]",
"homepage": "http://bookboon.com",
"role": "CTO"
}
],
"require": {
"php": ">=8.0",
"symfony/dependency-injection": "^5.0|^6.0",
"symfony/http-kernel": "^5.0|^6.0",
"symfony/config": "^5.0|^6.0",
"symfony/cache": "^5.0|^6.0",
"bookboon/jsonld-client": "^2.6",
"bookboon/api-models-php": "^1.2",
"bookboon/oauth2-client-php": "^2.2|^4.0"
},
"require-dev": {
"vimeo/psalm": "^4.1",
"phpunit/phpunit": "~8.0|~9.0"
},
"autoload": {
"psr-4": {
"Bookboon\\ApiBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Bookboon\\ApiBundle\\Tests\\": "Tests/"
}
}
}