forked from webonyx/graphql-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.64 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
{
"name": "webonyx/graphql-php",
"description": "A PHP port of GraphQL reference implementation",
"license": "MIT",
"type": "library",
"keywords": [
"graphql",
"API"
],
"homepage": "https://github.com/webonyx/graphql-php",
"require": {
"php": "^7.4 || ^8",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"amphp/amp": "^2.6",
"dms/phpunit-arraysubset-asserts": "^0.3",
"doctrine/coding-standard": "^9",
"ergebnis/composer-normalize": "^2.16",
"nyholm/psr7": "^1.4",
"phpbench/phpbench": "^1.2",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^9.5",
"psr/http-message": "^1",
"react/promise": "^2",
"symfony/polyfill-php81": "^1.23",
"symfony/var-exporter": "^5.3"
},
"suggest": {
"psr/http-message": "To use standard GraphQL server",
"react/promise": "To leverage async resolving on React PHP platform"
},
"autoload": {
"psr-4": {
"GraphQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GraphQL\\Tests\\": "tests/",
"GraphQL\\Benchmarks\\": "benchmarks/",
"GraphQL\\Examples\\Blog\\": "examples/01-blog/Blog/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"baseline": "phpstan --ansi --generate-baseline",
"bench": "phpbench run",
"check": "composer lint && composer stan && composer test",
"docs": "php generate-class-reference.php",
"fix": "phpcbf",
"lint": "phpcs",
"stan": "phpstan --ansi",
"test": "phpunit"
}
}