forked from nuwave/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.55 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
{
"name": "nuwave/lighthouse",
"type": "library",
"keywords": [
"api",
"graphql",
"laravel"
],
"license": "MIT",
"authors": [
{
"name": "Christopher Moore",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/nuwave/lighthouse/issues",
"source": "https://github.com/nuwave/lighthouse"
},
"require": {
"php": ">=5.5.9",
"illuminate/console": "^5.2 || ^5.3",
"illuminate/contracts": "^5.2 || ^5.3",
"illuminate/database": "^5.2 || ^5.3",
"illuminate/http": "^5.2 || ^5.3",
"illuminate/pagination": "^5.2 || ^5.3",
"illuminate/routing": "^5.2 || ^5.3",
"illuminate/support": "^5.2 || ^5.3",
"webonyx/graphql-php": "^0.9"
},
"autoload": {
"psr-4": {
"Nuwave\\Lighthouse\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"require-dev": {
"doctrine/dbal": "^2.5",
"friendsofphp/php-cs-fixer": "~1",
"orchestra/database": "^3.2 || ^3.3",
"orchestra/testbench": "^3.2 || ^3.3",
"phpunit/phpunit": "~4.8 || ~5.0"
},
"autoload-dev": {
"psr-4": {
"Nuwave\\Lighthouse\\Tests\\": "tests/"
}
},
"scripts": {
"test" : "vendor/bin/phpunit --colors=always",
"test:ci": "composer test -- --verbose --coverage-text --coverage-clover=coverage.xml"
},
"config": {
"sort-packages": true
}
}