-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.49 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
{
"name": "stayallive/lighthouse-graphql-hive",
"type": "library",
"description": "Performance monitoring Lighthouse with GraphQL Hive.",
"keywords": [
"laravel",
"lighthouse",
"graphql",
"performance",
"monitoring"
],
"homepage": "https://github.com/stayallive/lighthouse-graphql-hive",
"license": "MIT",
"authors": [
{
"name": "Alex Bouma",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7",
"laravel/framework": "^10|^11",
"nuwave/lighthouse": "^6"
},
"autoload": {
"psr-4": {
"Stayallive\\Lighthouse\\GraphQLHive\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Stayallive\\Lighthouse\\GraphQLHive\\ServiceProvider"
]
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.15",
"orchestra/testbench": "^8|^9",
"phpunit/phpunit": "^10|^11"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --stop-on-failure",
"test:ci": "vendor/bin/phpunit",
"phpcs": "vendor/bin/php-cs-fixer fix",
"phpcs:ci": "vendor/bin/php-cs-fixer fix --dry-run --diff"
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
}
}