forked from laragraph/utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.55 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
{
"name": "laragraph/utils",
"type": "library",
"description": "Utilities for using GraphQL with Laravel",
"homepage": "https://github.com/laragraph/utils",
"license": "MIT",
"authors": [
{
"name": "Benedikt Franke",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"illuminate/contracts": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8",
"illuminate/http": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8",
"thecodingmachine/safe": "^1.1.3",
"webonyx/graphql-php": "^0.13.2 || ^14"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.11.0",
"infection/infection": "~0.20.2",
"jangregor/phpstan-prophecy": "0.8.1",
"orchestra/testbench": "3.6.* || 3.7.* || 3.8.* || 3.9.* || ^4 || ^5 || ^6",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "0.12.57",
"phpstan/phpstan-deprecation-rules": "0.12.5",
"phpstan/phpstan-strict-rules": "0.12.5",
"phpunit/phpunit": "^7.5 || ^8.4",
"thecodingmachine/phpstan-safe-rule": "v1.0.1"
},
"config": {
"platform": {
"php": "7.4.12"
},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Laragraph\\Utils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laragraph\\Utils\\Tests\\": "tests/"
},
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
]
},
"minimum-stability": "dev",
"support": {
"issues": "https://github.com/laragraph/utils/issues",
"source": "https://github.com/laragraph/utils"
}
}