forked from nuwave/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 959 Bytes
/
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
{
"name": "nuwave/lighthouse",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christopher Moore",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Nuwave\\Lighthouse\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"require-dev": {
"phpunit/phpunit": "4.*",
"orchestra/testbench": "^3.2",
"doctrine/dbal": "^2.5"
},
"autoload-dev": {
"psr-4": {
"Nuwave\\Lighthouse\\Tests\\": "tests/"
}
},
"require": {
"webonyx/graphql-php": "dev-master",
"illuminate/support": "^5.2",
"illuminate/database": "^5.2",
"illuminate/contracts": "^5.2",
"illuminate/routing": "^5.2",
"illuminate/http": "^5.2",
"illuminate/console": "^5.2",
"illuminate/pagination": "^5.2"
}
}