-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 840 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 840 Bytes
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
{
"description": "Bundle to easily create GraphQL types for Overblog GraphQLBundle",
"name": "liinkiing/graphql-maker-bundle",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["generator", "code generator", "scaffolding", "scaffold", "graphql", "graphql types"],
"authors": [
{
"name": "Omar Jbara <omar.jbara2@gmail.com>"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": "^7.0.8",
"symfony/config": "^3.4|^4.0|^5.0",
"symfony/console": "^3.4|^4.0|^5.0",
"symfony/dependency-injection": "^3.4|^4.0|^5.0",
"symfony/maker-bundle": "^1.11.0",
"symfony/http-kernel": "^3.4|^4.0|^5.0",
"overblog/graphql-bundle": "^0.11.0|^0.12.0|^0.13.0"
},
"autoload": {
"psr-4": { "Liinkiing\\GraphQLMakerBundle\\": "src/" }
}
}