-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 836 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 836 Bytes
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
{
"name": "netgen/content-type-list-bundle",
"description": "Netgen Content Type List bundle for Ibexa Platform",
"type": "ibexa-bundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Netgen",
"homepage": "https://netgen.io"
}
],
"require": {
"ibexa/core": "^5.0",
"symfony/form": "^7.3",
"ibexa/content-forms": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^12.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Netgen\\Bundle\\ContentTypeListBundle\\": ""
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}