-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.35 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.35 KB
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
{
"name": "spyck/api-extension",
"description": "API extension for Symfony",
"license": "MIT",
"authors": [
{
"name": "Willem Verspyck",
"email": "willemverspyck@outlook.com",
"homepage": "https://verspyck.com",
"role": "Developer"
}
],
"keywords": [
"api",
"extension",
"php"
],
"homepage": "https://github.com/willemverspyck/api-extension",
"type": "library",
"require": {
"php": "^8.4",
"doctrine/orm": "^3",
"knplabs/knp-paginator-bundle": "^6",
"symfony/dependency-injection": "^7|^8",
"symfony/http-foundation": "^7|^8",
"symfony/http-kernel": "^7|^8",
"symfony/routing": "^7|^8",
"symfony/serializer": "^7|^8",
"symfony/validator": "^7|^8",
"zircote/swagger-php": "^5|^6"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3",
"friendsofphp/php-cs-fixer": "^3",
"liip/imagine-bundle": "^2",
"phpunit/phpunit": "^12",
"squizlabs/php_codesniffer": "^4",
"vich/uploader-bundle": "^2"
},
"autoload": {
"psr-4": {
"Spyck\\ApiExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spyck\\ApiExtension\\Tests\\": "tests/"
}
}
}