This repository has been archived by the owner on Jul 25, 2023. It is now read-only.
forked from overblog/GraphiQLBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.78 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
{
"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": ">=5.6",
"symfony/framework-bundle": "^3.4 || ^4.0 || ^5.0",
"symfony/twig-bundle": "^3.4 || ^4.0 || ^5.0"
},
"require-dev": {
"overblog/graphql-bundle": ">=0.9",
"phpunit/phpunit": "^5.7 || ^6.0",
"sensio/framework-extra-bundle": "^3.0 || ^4.0 || ^5.0",
"symfony/browser-kit": "^3.4 || ^4.0 || ^5.0",
"symfony/templating": "^3.4 || ^4.0 || ^5.0",
"symfony/yaml": "^3.4 || ^4.0 || ^5.0"
},
"autoload": {
"psr-4": { "Overblog\\GraphiQLBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"scripts": {
"test": "bin/phpunit --color=always -v --debug",
"install-cs": "test -f php-cs-fixer.phar || wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.15.3/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"
]
}
}