-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 978 Bytes
/
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
{
"name": "kmadejski/ezplatform-maintenance-mode",
"description": "Maintenance mode bundle for Ibexa DXP v2.5+",
"license": "GPL-2.0-only",
"type": "ezplatform-bundle",
"homepage": "https://github.com/kmadejski/ezplatform-maintenance-mode",
"authors": [
{
"name": "Kamil Madejski",
"email": "[email protected]"
}
],
"prefer-stable": true,
"require": {
"php": "^7.3",
"ezsystems/ezplatform-kernel": "^1.2",
"symfony/dependency-injection": "^5.1",
"symfony/config": "^5.1",
"symfony/event-dispatcher": "^5.1",
"symfony/http-foundation": "^5.1",
"symfony/http-kernel": "^5.1"
},
"require-dev": {
"phpunit/phpunit": "^7.2.5",
"friendsofphp/php-cs-fixer": "~2.15.0"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformMaintenanceModeBundle\\": "src/bundle"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\EzPlatformMaintenanceModeBundle\\Tests\\": "tests/bundle"
}
}
}