-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
76 lines (76 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
76
{
"name": "ezsystems/ezplatform-graphql",
"description": "GraphQL server for the eZ Platform Open Source CMS Repository.",
"type": "ezplatform-bundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Bertrand Dunogier",
"email": "[email protected]"
}
],
"replace": {
"bdunogier/ezplatform-graphql-bundle": "self.version"
},
"require": {
"php": "^7.3 || ^8.0",
"ext-dom": "*",
"ezsystems/ezplatform-kernel": "^1.3@dev",
"ezsystems/ezplatform-admin-ui": "^2.0@dev",
"ezsystems/ezplatform-rest": "^1.2@dev",
"ezsystems/ezplatform-richtext": "^2.0@dev",
"ibexa/graphql-php": "^0.13",
"lexik/jwt-authentication-bundle": "^2.8",
"overblog/graphql-bundle": "^0.13",
"erusev/parsedown": "^1.7",
"symfony/dependency-injection": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/console": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/yaml": "^5.0",
"symfony/config": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/serializer": "^5.0"
},
"require-dev": {
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"ezsystems/ez-support-tools": "^2.0@dev",
"ezsystems/ezplatform-content-forms": "^1.0@dev",
"ezsystems/ezplatform-core": "^2.3@dev",
"ezsystems/ezplatform-design-engine": "^3.0@dev",
"ezsystems/ezplatform-http-cache": "^2.3@dev",
"ezsystems/ezplatform-search": "^1.2@dev",
"ezsystems/ezplatform-user": "^2.0@dev",
"overblog/graphiql-bundle": "^0.2",
"phpspec/phpspec": "^7.1",
"friendsofphp/php-cs-fixer": "^2.16.0",
"ezsystems/ezplatform-code-style": "^0.1.0",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformGraphQL\\": "src",
"Ibexa\\GraphQL\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"spec\\EzSystems\\EzPlatformGraphQL\\Tools\\": "spec/Tools",
"spec\\EzSystems\\EzPlatformGraphQL\\": "spec/EzSystems/EzPlatformGraphQL",
"spec\\Ibexa\\GraphQL\\": "spec/Ibexa/GraphQL"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
},
"config": {
"allow-plugins": false
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"check-cs": "@fix-cs --dry-run",
"test": "phpspec run --format=pretty"
}
}