-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 1.85 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
{
"name": "jbernavaprah/lighthouse-error-handler",
"description": "An Error handler for Lighthouse",
"license": "MIT",
"type": "library",
"keywords": [
"graphql",
"laravel",
"laravel-graphql",
"lighthouse-php",
"error-handler"
],
"authors": [
{
"name": "Jure Bernava PRah",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/jBernavaPrah/lighthouse-error-handler/issues",
"source": "https://github.com/jBernavaPrah/lighthouse-error-handler"
},
"require": {
"php": "^8.1",
"laravel/framework": "^9.0",
"nuwave/lighthouse": "^5.5",
"jasny/phpdoc-parser": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.5",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^7.0",
"orchestra/testbench-core": "^7.0",
"phpoption/phpoption": "^1.8",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5",
"thecodingmachine/safe": "^2.0",
"jetbrains/phpstorm-attributes": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"JBernavaPrah\\LighthouseErrorHandler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JBernavaPrah\\LighthouseErrorHandler\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"JBernavaPrah\\LighthouseErrorHandler\\LighthouseErrorHandlerServiceProvider"
]
}
},
"scripts": {
"analyze": "vendor/phpstan/phpstan/phpstan analyse",
"check-style": [
"php-cs-fixer fix --diff --dry-run",
"php-cs-fixer fix --diff --dry-run --config=.php_cs.tests.php"
],
"coverage": "vendor/bin/phpunit",
"fix-style": [
"php-cs-fixer fix"
],
"test": "vendor/bin/phpunit --no-coverage"
}
}