-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (53 loc) · 1.42 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
48
49
50
51
52
53
54
{
"name": "bookboon/jsonld-client",
"type": "library",
"description": "JsonLD Client for Bookboon services",
"keywords": ["api", "jsonld"],
"homepage": "https://github.com/bookboon/jsonld-client",
"license": "MIT",
"authors": [
{
"name": "Lasse Mammen",
"email": "[email protected]",
"homepage": "http://bookboon.com",
"role": "CTO"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"symfony/dependency-injection": "^5.0|^6.0",
"symfony/config": "^5.0|^6.0",
"symfony/http-foundation": "^5.0|^6.0",
"symfony/http-kernel": "^5.0|^6.0",
"symfony/serializer": "^5.0|^6.0",
"symfony/property-access": "^5.0|^6.0",
"symfony/yaml": "^5.0|^6.0",
"league/oauth2-client": "^2.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~8.0|~9.0",
"vimeo/psalm": "~5.7",
"psalm/plugin-phpunit": "^0.18",
"sentry/sentry": "^4.3"
},
"suggest": {
"sentry/sentry": "^4.3"
},
"autoload": {
"psr-4": {
"Bookboon\\JsonLDClient\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Bookboon\\JsonLDClient\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}