forked from thecodingmachine/graphqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.53 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
72
73
74
75
{
"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": ">=8.1",
"ext-json": "*",
"composer/package-versions-deprecated": "^1.8",
"phpdocumentor/reflection-docblock": "^4.3 || ^5.0",
"phpdocumentor/type-resolver": "^1.4",
"psr/container": "^1.1 || ^2",
"psr/http-factory": "^1",
"psr/http-message": "^1.0.1 || ^2.0",
"psr/http-server-handler": "^1",
"psr/http-server-middleware": "^1",
"psr/simple-cache": "^1.0.1 || ^2 || ^3",
"symfony/cache": "^4.3 || ^5 || ^6 || ^7",
"symfony/expression-language": "^4 || ^5 || ^6 || ^7",
"thecodingmachine/cache-utils": "^1",
"webonyx/graphql-php": "^v15.0",
"kcs/class-finder": "^0.5.0"
},
"require-dev": {
"beberlei/porpaginas": "^1.2 || ^2.0",
"doctrine/coding-standard": "^11.0 || ^12.0",
"ecodev/graphql-upload": "^7.0",
"laminas/laminas-diactoros": "^2 || ^3",
"myclabs/php-enum": "^1.6.6",
"php-coveralls/php-coveralls": "^2.1",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^10.1 || ^11.0",
"symfony/var-dumper": "^5.4 || ^6.0 || ^7",
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"suggest": {
"beberlei/porpaginas": "If you want automatic pagination in your GraphQL types",
"ecodev/graphql-upload": "If you want to support file upload inside GraphQL input types"
},
"autoload": {
"psr-4": {
"TheCodingMachine\\GraphQLite\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TheCodingMachine\\GraphQLite\\": "tests/"
}
},
"scripts": {
"phpstan": "phpstan analyse -c phpstan.neon --no-progress -vvv --memory-limit=1G",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": ["@cs-check", "@phpstan", "phpunit"]
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}