forked from lexik/LexikMaintenanceBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.42 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
{
"name": "ady/maintenance-bundle",
"type": "symfony-bundle",
"description": "This bundle allows you to place your website in maintenance mode by calling two commands from your console.",
"keywords": ["Symfony", "bundle", "maintenance"],
"homepage": "https://gitlab.com/adynemo/maintenance-bundle",
"license": "MIT",
"authors": [
{
"name": "Gilles Gauthier",
"email": "[email protected]"
},
{
"name": "Dev Lexik",
"email": "[email protected]"
},
{
"name": "Djuri Baars",
"email" : "[email protected]"
},
{
"name": "Ady",
"email" : "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-pdo": "*",
"symfony/framework-bundle": "^4.4|^5.4|^6.0",
"symfony/translation": "^4.4|^5.4|^6.0",
"symfony/console": "^4.4|^5.4|^6.0",
"symfony/deprecation-contracts": "^2.1|^3"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4|^5.4|^6.0",
"phpunit/phpunit": "^7.5.15|^8.5|^9.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"suggest": {
"doctrine/doctrine-bundle": ">=2.0.*",
"doctrine/orm": ">=2.0.*",
"ext-memcache": "*",
"ext-sysvshm": "*"
},
"autoload": {
"psr-4": {
"Ady\\Bundle\\MaintenanceBundle\\": ""
}
}
}