-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.5 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
{
"name": "netgen/ibexa-forms-bundle",
"description": "Integration of Symfony's Form component with Ibexa Platform Public API",
"type": "ibexa-bundle",
"license": "GPL-2.0-only",
"keywords": [
"ibexa",
"forms",
"netgen",
"ibexa-forms",
"ibexa-forms-bundle"
],
"homepage": "https://github.com/netgen/ibexa-forms-bundle",
"authors": [
{
"name": "Netgen",
"homepage": "http://netgen.io"
}
],
"require": {
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/form": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/options-resolver": "^5.4",
"symfony/property-access": "^5.4",
"symfony/validator": "^5.4",
"ibexa/core": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"matthiasnoback/symfony-config-test": "^4.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Netgen\\Bundle\\IbexaFormsBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\Bundle\\IbexaFormsBundle\\Tests\\": "tests"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always"
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}