-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.15 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
{
"name": "progminer/maintenance-screen",
"description": "The \"Maintenance mode\" screen library",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eridan Domoratskiy",
"email": "eridan200@mail.ru"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"progminer/util-template-renderer": "^1.0",
"symfony/config": "^4.0",
"symfony/http-foundation": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7",
"symfony/yaml": "^4.0",
"twig/twig": "^2.4"
},
"suggest": {
"symfony/yaml": "To use the yaml file loader",
"twig/twig": "To use the twig template renderer"
},
"autoload": {
"psr-4": {
"MaintenanceScreen\\": "lib"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": "phpunit --testdox --disallow-todo-tests",
"install-sami": "curl -O http://get.sensiolabs.org/sami.phar",
"regen-docs": "@php sami.phar update sami-config.php"
}
}