-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
62 lines (62 loc) · 1.74 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
{
"name": "ezsystems/ezplatform-design-engine",
"description": "Design fallback mechanism for eZ Platform",
"license": "GPL-2.0-only",
"type": "ezplatform-bundle",
"authors": [
{
"name": "Jerome Vieilledent",
"email": "[email protected]"
},
{
"name": "eZ Systems dev team",
"email": "[email protected]"
}
],
"require": {
"ezsystems/ezplatform-kernel": "^1.0@dev",
"twig/twig": "^3.0",
"symfony/dependency-injection": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/config": "^5.0",
"symfony/finder": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/asset": "^5.0",
"symfony/templating": "^5.0"
},
"require-dev": {
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"ibexa/code-style": "^1.0",
"phpunit/phpunit": "^8.1",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformDesignEngine\\": "lib",
"EzSystems\\EzPlatformDesignEngineBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\EzPlatformDesignEngine\\Tests\\": "tests/lib",
"EzSystems\\EzPlatformDesignEngineBundle\\Tests\\": "tests/bundle"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"conflict": {
"lolautruche/ez-core-extra-bundle": "<2.0"
},
"config": {
"allow-plugins": false
}
}