forked from ezsystems/ezplatform-admin-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 2.26 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
{
"name": "ezsystems/ezplatform-admin-ui",
"license": "GPL-2.0-only",
"type": "project",
"description": "eZ Platform Admin v2",
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformAdminUiBundle\\": "src/bundle/",
"EzSystems\\EzPlatformAdminUi\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": { "EzSystems\\EzPlatformAdminUi\\Tests\\": "src/lib/Tests" }
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"symfony/http-foundation": "^4.3",
"symfony/security": "^4.3",
"symfony/translation": "^4.3",
"symfony/validator": "^4.3",
"symfony/form": "^4.3",
"symfony/http-kernel": "^4.3",
"symfony/config": "^4.3",
"symfony/dependency-injection": "^4.3",
"symfony/console": "^4.3",
"symfony/event-dispatcher": "^4.3",
"symfony/filesystem": "^4.3",
"symfony/routing": "^4.3",
"symfony/options-resolver": "^4.3",
"symfony/asset": "^4.3",
"symfony/yaml": "^4.3",
"jms/translation-bundle": "^1.4",
"ezsystems/ezpublish-kernel": "^8.0@dev",
"ezsystems/ezplatform-content-forms": "^1.0@dev",
"ezsystems/ezplatform-admin-ui-modules": "^2.0@dev",
"ezsystems/ez-support-tools": "^2.0@dev",
"ezsystems/ezplatform-design-engine": "^3.0@dev",
"ezsystems/ezplatform-user": "^2.0@dev",
"ezsystems/ezplatform-richtext": "^2.0@dev",
"ezsystems/ezplatform-rest": "^1.0@dev",
"white-october/pagerfanta-bundle": "^1.2",
"knplabs/knp-menu-bundle": "^2.2",
"mck89/peast": "^1.9",
"willdurand/js-translation-bundle": "^2.6"
},
"require-dev": {
"behat/behat": "^3.5",
"friendsofphp/php-cs-fixer": "^2.16.0",
"phpunit/phpunit": "^8.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"ezsystems/ezplatform-code-style": "^0.1.0"
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"_ezplatform_branch_for_behat_tests": "master",
"branch-alias": {
"dev-tmp_ci_branch": "2.0.x-dev",
"dev-master": "2.0.x-dev"
}
}
}