-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.05 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "wizards/rest-bundle",
"description": "Integration of php-rest-api into Symfony.",
"keywords": [ "rest", "hateoas", "jsonapi", "api" ],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Romain Richard",
"email": "bigzounet@hotmail.com"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"nyholm/psr7": "^1.1",
"pagerfanta/pagerfanta": "^2.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/psr-http-message-bridge": "^2.0",
"symfony/validator": "^4.4|^5.0",
"sensio/framework-extra-bundle": "^5.2",
"wizards/rest-api": "0.9.0"
},
"require-dev": {
"symfony/form": "^4.4|^5.0",
"phpstan/phpstan": "^0.12",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.9",
"phpunit/phpunit": "^9.2",
"symfony/phpunit-bridge": "^4.4|^5.0",
"symfony/var-dumper": "^4.4|^5.0"
},
"autoload": {
"psr-0": { "Wizards\\RestBundle": "" }
},
"autoload-dev": {
"psr-0": {
"WizardsTest": "tests/"
}
},
"target-dir": "Wizards/RestBundle"
}