-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 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
41
42
43
{
"name": "cyberspectrum/api-platform-toolkit-bundle",
"description": "Some handy toolkit for using api-platform/core more efficiently",
"license": "MIT",
"type": "symfony-bundle",
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"api-platform/core": "^2.6.3",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0"
},
"require-dev": {
"lexik/jwt-authentication-bundle": "^2.6",
"phpcq/runner-bootstrap": "^1.0@dev",
"symfony/serializer": "^5.4 || ^6.0",
"symfony/test-pack": "^1.0"
},
"conflict": {
"lexik/jwt-authentication-bundle": "<2.6,>=3.0",
"symfony/serializer": "<5.4,>=7.0"
},
"autoload": {
"psr-4": {
"CyberSpectrum\\ApiPlatformToolkit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CyberSpectrum\\ApiPlatformToolkit\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}