-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
54 lines (54 loc) · 1.42 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
{
"name": "netgen/admin-ui-bundle",
"description": "Netgen Admin UI implements an alternate administration UI for eZ Platform, based on eZ Publish Legacy administration interface",
"type": "ezplatform-bundle",
"keywords": [
"ezpublish",
"ezplatform",
"netgen",
"admin-ui-bundle",
"admin-ui",
"admin"
],
"homepage": "https://github.com/netgen/NetgenAdminUIBundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"php": "^7.4",
"ezsystems/ezpublish-kernel": "^7.5",
"lolautruche/ez-core-extra-bundle": "^2.0",
"netgen/ngsymfonytools": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"matthiasnoback/symfony-dependency-injection-test": "^3.1"
},
"conflict": {
"netgen/enhancedselection2": "<2.1",
"netgen/block-manager": "*",
"netgen/layouts-core": "<1.3"
},
"autoload": {
"psr-4": {
"Netgen\\Bundle\\AdminUIBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\Bundle\\AdminUIBundle\\Tests\\": "tests"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always"
},
"extra": {
"branch-alias": {
"dev-master": "2.9.x-dev"
}
}
}