This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
71 lines (71 loc) · 1.95 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
{
"name": "digiaonline/graphql",
"description": "A PHP7 implementation of the GraphQL specifications.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christoffer Niska",
"email": "[email protected]"
},
{
"name": "Hung Nguyen",
"email": "[email protected]"
},
{
"name": "Sam Stenvall",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"ext-mbstring": "*",
"league/container": "^3.2",
"react/promise": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"phpstan/phpstan": "^0.9.2"
},
"autoload": {
"files": [
"./src/Error/helpers.php",
"./src/Language/blockStringValue.php",
"./src/Language/utils.php",
"./src/Schema/utils.php",
"./src/Type/definition.php",
"./src/Type/directives.php",
"./src/Type/introspection.php",
"./src/Type/scalars.php",
"./src/Util/utils.php",
"./src/Validation/messages.php",
"./src/api.php"
],
"psr-4": {
"Digia\\GraphQL\\": "./src"
}
},
"scripts": {
"test": [
"phpunit",
"phpstan analyse -l 4 src/"
],
"ci": [
"phpunit --coverage-clover build/logs/clover.xml",
"phpstan analyse -l 4 src/"
]
},
"autoload-dev": {
"files": [
"./tests/Functional/Execution/testClasses.php",
"./tests/Functional/Validation/errors.php",
"./tests/Functional/Validation/harness.php",
"./tests/Functional/starWarsData.php",
"./tests/Functional/starWarsSchema.php",
"./tests/utils.php"
],
"psr-4": {
"Digia\\GraphQL\\Test\\": "./tests"
}
}
}