forked from paknahad/jsonapi-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.34 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"description": "The jsonapi-bundle is a Symfony bundle. it is the fastest way to generate API based on JsonApi.org using woohoolabs/yin",
"name": "paknahad/jsonapi-bundle",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["generator", "code generator", "json-api", "symfony", "php", "RESTful"],
"authors": [
{
"name": "Hamid Paknahad",
"email": "hp.paknahad@gmail.com"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"sensio/framework-extra-bundle": "^5.2",
"symfony/psr-http-message-bridge": "^1.0",
"symfony/orm-pack": "^1.0",
"symfony/validator": "^4.1",
"woohoolabs/yin": "^3.0",
"zendframework/zend-diactoros": "^1.3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.8",
"symfony/maker-bundle": "^1.0",
"symfony/phpunit-bridge": "^4.0",
"symfony/process": "^4.0",
"phootwork/collection" : "~1",
"opis/json-schema": "^1.0",
"symfony/yaml": "^4.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": { "Paknahad\\JsonApiBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Paknahad\\JsonApiBundle\\Tests\\": "tests/" }
}
}