-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.67 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
52
53
54
55
56
57
58
59
{
"name": "trikoder/jsonapibundle",
"description": "Json API bundle for Symfony",
"type": "symfony-bundle",
"require": {
"php": ">=7.0.0|>=7.1.0",
"symfony/framework-bundle": "^3.4|^4.4",
"symfony/dependency-injection": "^3.4|^4.4",
"symfony/config": "^3.4|^4.4",
"sensio/framework-extra-bundle": "^5.3",
"symfony/http-foundation": "^3.4|^4.4",
"symfony/form": "^3.4|^4.4",
"symfony/routing": "^3.4|^4.4",
"symfony/security-bundle": "^3.4|^4.4",
"symfony/translation": "^3.4|^4.4",
"symfony/validator": "^3.4|^4.4",
"symfony/monolog-bundle": "^3.4",
"neomerx/json-api": "^1.0",
"doctrine/orm": "^2.4",
"doctrine/common": "^2|^3",
"doctrine/doctrine-bundle": "^1.11|^2.0",
"ext-json": "*",
"symfony/property-access": "^3.4|^4.4"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"phpunit/php-code-coverage": "^4.0",
"symfony/phpunit-bridge": "^3.4|^4.4",
"justinrainbow/json-schema": "^1.6",
"doctrine/doctrine-fixtures-bundle": "^3.3",
"fzaninotto/faker": "^1.5",
"symfony/twig-bundle": "^3.4|^4.4",
"doctrine/cache": "^1.6",
"symfony/debug-bundle": "^3.4|^4.4",
"symfony/web-profiler-bundle": "^3.4|^4.4",
"symfony/web-server-bundle": "^3.4|^4.4",
"symfony/browser-kit": "^3.4|^4.4",
"friendsofphp/php-cs-fixer": "^2.13"
},
"autoload": {
"psr-4": {
"Trikoder\\JsonApiBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Trikoder\\JsonApiBundle\\Tests\\": "tests/"
},
"files": [
"tests/Resources/app/AppKernel.php"
]
},
"authors": [
{
"name": "Alen Pokos",
"email": "[email protected]"
}
]
}