-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.25 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.25 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
{
"name": "rebolon/api-json-param-converter",
"type": "library",
"description": "A component to use with your project using ApiPlatform to allow easy custom routes creation.",
"keywords": ["REST", "API", "JSON"],
"license": "MIT",
"require": {
"php": "^7.3",
"api-platform/core": "^2.5",
"doctrine/orm": "^2.7",
"sensio/framework-extra-bundle": "^5.5",
"squizlabs/php_codesniffer": "^3.5",
"symfony/http-foundation": "^5.0",
"symfony/property-access": "^5.0",
"symfony/serializer": "^5.0",
"symfony/validator": "^5.0"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-master",
"sensiolabs/security-checker": "^6.0",
"friendsofphp/php-cs-fixer": "^2.16",
"doctrine/common": "^2.12"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Rebolon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rebolon\\Tests\\": "tests/"
}
},
"suggest": {
}
}