forked from player259/graphql-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.05 KB
/
composer.json
File metadata and controls
34 lines (34 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
{
"name": "player259/graphql-bundle",
"description": "Lightweight Symfony GraphQL bundle over webonyx/graphql-php with DI and autowiring",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^7.1.3|^8.0",
"ext-json": "*",
"nyholm/psr7": "^1.2",
"psr/log": "^1|^2",
"symfony/config": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/property-access": "^4.4|^5.0",
"symfony/psr-http-message-bridge": "^2.0",
"webonyx/graphql-php": "^0.12.6|^0.13.0|^14.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5.20|^8.0|^9.0",
"slevomat/coding-standard": "^6.4",
"squizlabs/php_codesniffer": "^3.5",
"symfony/browser-kit": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0"
},
"autoload": {
"psr-4": {
"Player259\\GraphQLBundle\\": ""
}
},
"config": {
"sort-packages": true
}
}