-
Notifications
You must be signed in to change notification settings - Fork 57
/
composer.json
79 lines (79 loc) · 2.66 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
77
78
79
{
"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/",
"Ibexa\\AdminUi\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\EzPlatformAdminUi\\Tests\\": "src/lib/Tests",
"Ibexa\\Tests\\Bundle\\AdminUi\\": "tests/bundle/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"symfony/http-foundation": "^5.0",
"symfony/security-core": "^5.0",
"symfony/security-http": "^5.0",
"symfony/translation": "^5.0",
"symfony/validator": "^5.0",
"symfony/form": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/console": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/routing": "^5.0",
"symfony/options-resolver": "^5.0",
"symfony/asset": "^5.0",
"symfony/yaml": "^5.0",
"jms/translation-bundle": "^1.5",
"ezsystems/ezplatform-kernel": "^1.3.10@dev",
"ezsystems/ezplatform-content-forms": "^1.3@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",
"ezsystems/ezplatform-search": "^1.0@dev",
"babdev/pagerfanta-bundle": "^2.1",
"knplabs/knp-menu-bundle": "^3.0",
"mck89/peast": "^1.9",
"willdurand/js-translation-bundle": "^4.0",
"twig/twig": "^3.0",
"twig/intl-extra": "^3.0",
"twig/string-extra": "^3.0"
},
"require-dev": {
"ibexa/ci-scripts": "^0.1@dev",
"ezsystems/behatbundle": "^8.3@dev",
"friendsofphp/php-cs-fixer": "^2.16.0",
"phpunit/phpunit": "^8.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"ezsystems/ezplatform-code-style": "^1.0",
"ezsystems/ezplatform-http-cache": "^2.3@dev"
},
"config": {
"allow-plugins": {
"*": false
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml"
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
}
}