forked from marhub/graphqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2.26 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": "thecodingmachine/graphqlite",
"description": "Write your GraphQL queries in simple to write controllers (using webonyx/graphql-php).",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "David Négrier",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"webonyx/graphql-php": "^0.13.4",
"psr/container": "^1",
"doctrine/annotations": "^1.7.0",
"doctrine/cache": "^1.8",
"thecodingmachine/class-explorer": "^1.1.0",
"psr/simple-cache": "^1",
"phpdocumentor/reflection-docblock": "^4.3",
"phpdocumentor/type-resolver": "^1.0.1",
"psr/http-message": "^1",
"ecodev/graphql-upload": "^4.0",
"webmozart/assert": "^1.4",
"symfony/cache": "^4.3 | ^5",
"thecodingmachine/cache-utils": "^1",
"ocramius/package-versions": "^1.4",
"symfony/expression-language": "^4 | ^5",
"ext-json": "*",
"psr/http-server-handler": "^1",
"psr/http-server-middleware": "^1",
"psr/http-factory": "^1"
},
"require-dev": {
"phpunit/phpunit": "^8.2.4",
"php-coveralls/php-coveralls": "^2.1",
"mouf/picotainer": "^1.1",
"phpstan/phpstan": "^0.12.3",
"beberlei/porpaginas": "^1.2",
"myclabs/php-enum": "^1.6.6",
"doctrine/coding-standard": "^7.0",
"phpstan/phpstan-webmozart-assert": "^0.12",
"phpstan/extension-installer": "^1.0",
"thecodingmachine/phpstan-strict-rules": "^0.12",
"zendframework/zend-diactoros": "^2"
},
"suggest": {
"beberlei/porpaginas": "If you want automatic pagination in your GraphQL types"
},
"autoload": {
"psr-4": {
"TheCodingMachine\\GraphQLite\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TheCodingMachine\\GraphQLite\\": "tests/"
}
},
"scripts": {
"phpstan": "phpstan analyse src -c phpstan.neon --level=8 --no-progress -vvv",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": ["@cs-check", "@phpstan", "phpunit"]
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}