-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcomposer.json
51 lines (51 loc) · 1.69 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
44
45
46
47
48
49
50
51
{
"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.3",
"ext-json": "*",
"sensio/framework-extra-bundle": "^5.5|^6.0",
"symfony/orm-pack": "^1.0|^2.0",
"symfony/proxy-manager-bridge": "^4.4|^5.0|^6.0",
"symfony/psr-http-message-bridge": "^2.0",
"symfony/validator": "^4.4|^5.0|^6.0",
"doctrine/inflector": "^2.0",
"woohoolabs/yin": "^4.3",
"nyholm/psr7": "^1.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"opis/json-schema": "^2.2",
"phootwork/collection": "^2.0|^3.0",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1.0",
"roave/security-advisories": "dev-latest",
"symfony/maker-bundle": "^1.36",
"symfony/phpunit-bridge": "^4.4|^5.0|^6.0",
"symfony/process": "^5.0",
"symfony/security-core": "^4.4|^5.0|^6.0",
"symfony/translation": "^4.4|^5.0|^6.0",
"symfony/yaml": "^4.4|^5.0|^6.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": { "Paknahad\\JsonApiBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Paknahad\\JsonApiBundle\\Tests\\": "tests/" }
}
}