-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.07 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
{
"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": "^4.6"
},
"require-dev": {
"netgen/ibexa-site-api": "^6.1",
"ibexa/graphql": "^4.5",
"phpunit/phpunit": "^10",
"matthiasnoback/symfony-dependency-injection-test": "^4.1"
},
"autoload": {
"psr-4": {
"Netgen\\Bundle\\IbexaAdminUIExtraBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\IbexaAdminUIExtra\\Tests\\": "tests/bundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"allow-plugins": false
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always"
}
}