-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 1.91 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
75
{
"name": "jbernavaprah/lighthouse-translation",
"description": "Translation support for Laravel Lighthouse",
"license": "MIT",
"type": "library",
"keywords": [
"graphql",
"laravel",
"laravel-graphql",
"lighthouse-php",
"lighthouse-translation"
],
"authors": [
{
"name": "Jure Bernava PRah",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/jBernavaPrah/lighthouse-translation/issues",
"source": "https://github.com/jBernavaPrah/lighthouse-translation"
},
"require": {
"php": "^8.1",
"laravel/framework": "^9.0",
"nuwave/lighthouse": "^5.5",
"spatie/data-transfer-object": "^3.7"
},
"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"
},
"autoload-dev": {
"psr-4": {
"JBernavaPrah\\LighthouseTranslation\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"JBernavaPrah\\LighthouseTranslation\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"JBernavaPrah\\LighthouseTranslation\\LighthouseTranslationServiceProvider"
]
}
},
"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": [
"@putenv XDEBUG_MODE=coverage",
"vendor/bin/phpunit"],
"fix-style": [
"php-cs-fixer fix",
"php-cs-fixer fix --config=.php_cs.tests.php"
],
"test": "vendor/bin/phpunit --no-coverage"
}
}