-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
62 lines (62 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
{
"name": "laragraph/utils",
"description": "Utilities for using GraphQL with Laravel",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Benedikt Franke",
"email": "benedikt@franke.tech"
}
],
"homepage": "https://github.com/laragraph/utils",
"support": {
"issues": "https://github.com/laragraph/utils/issues",
"source": "https://github.com/laragraph/utils"
},
"require": {
"php": "^7.2 || ^8",
"illuminate/contracts": "~5.6.0 || ~5.7.0 || ~5.8.0 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11",
"illuminate/http": "~5.6.0 || ~5.7.0 || ~5.8.0 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11",
"thecodingmachine/safe": "^1.1 || ^2",
"webonyx/graphql-php": "^0.13.2 || ^14 || ^15"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.11",
"jangregor/phpstan-prophecy": "^1",
"mll-lab/php-cs-fixer-config": "^4",
"orchestra/testbench": "~3.6.0 || ~3.7.0 || ~3.8.0 || ~3.9.0 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 || ^9.x-dev",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1",
"phpstan/phpstan-deprecation-rules": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9 || ^10.5",
"thecodingmachine/phpstan-safe-rule": "^1.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Laragraph\\Utils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laragraph\\Utils\\Tests\\": "tests/"
},
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"kylekatarnls/update-helper": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
}
}