forked from lexik/LexikMaintenanceBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.09 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
{
"name": "lexik/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": ["Symfony2", "bundle", "maintenance"],
"homepage": "https://github.com/lexik/LexikMaintenanceBundle",
"license": "MIT",
"authors": [
{
"name": "Gilles Gauthier",
"email": "[email protected]"
},
{
"name": "Dev Lexik",
"email": "[email protected]"
},
{
"name": "Djuri Baars",
"email" : "[email protected]"
}
],
"require": {
"php": ">=5.3.9",
"symfony/framework-bundle": "~2.7|~3.0|^4.0",
"symfony/translation": "~2.7|~3.0|^4.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~2.7|~3.0|^4.0",
"phpunit/phpunit": "~4.8|~5.7.11"
},
"autoload": {
"psr-4": { "Lexik\\Bundle\\MaintenanceBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}