-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
40 lines (40 loc) · 1.13 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
{
"name": "lolautruche/ez-core-extra-bundle",
"description": "Extra sugar for building Ibexa websites",
"require": {
"ibexa/core": "^4.0",
"twig/twig": "^3.0",
"symfony/config": "^5.4",
"symfony/event-dispatcher": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/security-core": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/expression-language": "^5.4",
"symfony/options-resolver": "^5.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Jerome Vieilledent",
"email": "lolautruche@gmail.com"
}
],
"autoload": {
"psr-4": {"Lolautruche\\EzCoreExtraBundle\\": ""}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mikey179/vfsstream": "^1.6.3"
},
"suggest": {
"ibexa/design-engine": "Design fallback mechanism for Ibexa (previously part of EzCoreExtraBundle)"
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}