-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
68 lines (68 loc) · 2.28 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
{
"name": "overblog/graphiql-bundle",
"type": "symfony-bundle",
"description": "Symfony GraphiQLBundle makes possible to render the UI into your symfony project",
"keywords": [
"GraphQL", "GraphiQL"
],
"license": "MIT",
"authors": [
{
"name": "Renato Mefi",
"email": "[email protected]"
},
{
"name": "Overblog",
"homepage": "http://www.over-blog.com"
}
],
"config" : {
"bin-dir": "bin",
"sort-packages": true
},
"require": {
"php": "^8.0",
"symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
"symfony/twig-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/routing": "^5.4 || ^6.0 || ^7.00"
},
"require-dev": {
"overblog/graphql-bundle": "dev-master",
"webonyx/graphql-php": "^15.4",
"phpunit/phpunit": "^9.5.10",
"symfony/browser-kit": "^5.4 || ^6.0 || ^7.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/dom-crawler": "^5.4 || ^6.0 || ^7.0",
"symfony/expression-language": "^5.4 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/finder": "^5.4 || ^6.0 || ^7.0",
"symfony/templating": "^5.4 || ^6.0 || ^7.0",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0",
"twig/twig": "^3.3.3"
},
"autoload": {
"psr-4": { "Overblog\\GraphiQLBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Overblog\\GraphiQLBundle\\Tests\\": "tests/" }
},
"scripts": {
"test": "bin/phpunit --color=always",
"install-cs": "test -f php-cs-fixer.phar || wget https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases/download/v3.48.0/php-cs-fixer.phar -O php-cs-fixer.phar",
"fix-cs": [
"@install-cs",
"@php php-cs-fixer.phar fix --diff -v --allow-risky=yes --ansi"
],
"check-cs": [
"@install-cs",
"@php php-cs-fixer.phar fix --dry-run --diff -v --allow-risky=yes --ansi"
],
"code-quality": [
"rm composer.lock",
"@composer install --ansi",
"@check-cs"
]
}
}