-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.03 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"name": "netgen/ibexa-admin-ui-extra",
"description": "Netgen's extra Admin UI bits for Ibexa CMS",
"type": "ezplatform-bundle",
"homepage": "https://github.com/netgen/ibexa-admin-ui-extra",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"ibexa/admin-ui": "^5.0.2"
},
"require-dev": {
"ibexa/graphql": "^5.0.2",
"phpunit/phpunit": "^10",
"matthiasnoback/symfony-dependency-injection-test": "^6.0.0"
},
"autoload": {
"psr-4": {
"Netgen\\Bundle\\IbexaAdminUIExtraBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\IbexaAdminUIExtra\\Tests\\": "tests/bundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"config": {
"allow-plugins": false
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always"
}
}