-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
77 lines (77 loc) · 2.23 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
76
77
{
"name": "railt/laravel-provider",
"description": "The Laravel Framework Service Provider for Railt",
"type": "library",
"license": "MIT",
"keywords": ["graphql", "railt", "laravel", "provider", "package", "bridge"],
"homepage": "https://github.com/railt",
"authors": [
{
"name": "Kirill Nesmeyanov",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/railt/railt/issues",
"source": "https://github.com/railt/laravel-provider"
},
"require": {
"php": "^8.1",
"illuminate/http": "^9.0|^10.0",
"illuminate/cache": "^9.0|^10.0",
"illuminate/events": "^9.0|^10.0",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/routing": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"railt/router-extension": "^2.0",
"railt/webonyx-executor": "^2.0",
"railt/foundation": "^2.0"
},
"autoload": {
"psr-4": {
"Railt\\LaravelProvider\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"vimeo/psalm": "^5.14"
},
"autoload-dev": {
"psr-4": {
"Railt\\LaravelProvider\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "@psalm:check",
"psalm:check": "psalm --no-cache",
"psalm:fix": "psalm --no-cache --alter",
"phpcs": "@phpcs:check",
"phpcs:check": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --dry-run",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes",
"test": [
"@test:unit",
"@test:architecture"
],
"test:unit": "phpunit --testdox",
"test:architecture": [
"phpstan clear-result-cache",
"phpstan analyse -c phpstan.neon"
]
},
"extra": {
"laravel": {
"providers": [
"Railt\\LaravelProvider\\RailtServiceProvider"
]
},
"branch-alias": {
"dev-master": "2.x-dev",
"dev-main": "2.x-dev"
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev"
}