forked from nuwave/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 2.14 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "nuwave/lighthouse",
"description": "Lighthouse is a schema first GraphQL package for Laravel applications.",
"type": "library",
"keywords": [
"api",
"graphql",
"laravel",
"laravel-graphql"
],
"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": ">= 7.0",
"ext-json": "*",
"illuminate/contracts": "5.5.*|5.6.*|5.7.*",
"illuminate/http": "5.5.*|5.6.*|5.7.*",
"illuminate/pagination": "5.5.*|5.6.*|5.7.*",
"illuminate/routing": "5.5.*|5.6.*|5.7.*",
"illuminate/support": "5.5.*|5.6.*|5.7.*",
"illuminate/validation": "5.5.*|5.6.*|5.7.*",
"opis/closure": "^3.0",
"webonyx/graphql-php": "^0.12"
},
"require-dev": {
"orchestra/testbench": "3.5.*|3.6.*|3.7.*",
"orchestra/database": "3.5.*|3.6.*|3.7.*@dev",
"friendsofphp/php-cs-fixer": "^2.10",
"laravel/scout": "^4.0",
"mockery/mockery": "dev-master"
},
"suggest": {
"mll-lab/laravel-graphql-playground": "GraphQL IDE for better development workflows - integrated with Laravel"
},
"autoload": {
"psr-4": {
"Nuwave\\Lighthouse\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test" : "phpunit --colors=always",
"test:unit" : "phpunit --colors=always --testsuite Unit",
"test:integration" : "phpunit --colors=always --testsuite Integration",
"style": "php-cs-fixer fix"
},
"extra": {
"laravel": {
"providers": ["Nuwave\\Lighthouse\\Providers\\LighthouseServiceProvider"],
"aliases": {
"graphql": "Nuwave\\Lighthouse\\GraphQL"
}
}
},
"config": {
"sort-packages": true
}
}