-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.08 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
{
"name": "ingowalther/image-minify-api",
"homepage": "https://github.com/ingowalther/image-minify-api",
"license": "MIT",
"authors": [
{
"name": "Ingo Walther",
"email": "ingowalther@iwebspace.net"
}
],
"require": {
"silex/silex": "~1.3",
"adambrett/shell-wrapper": "0.6",
"symfony/dependency-injection": "2.7.6",
"symfony/yaml": "2.7.6",
"symfony/config": "2.7.6",
"symfony/console": "2.7.6",
"doctrine/dbal": "2.5.2",
"monolog/monolog": "1.17.2",
"incenteev/composer-parameter-handler": "~2.1"
},
"require-dev": {
"phpunit/phpunit": "5.0.*"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"php bin/console image-minify-api:setup"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "config/parameters.yml"
}
},
"autoload": {
"psr-0": {
"IngoWalther\\ImageMinifyApi\\": "src/"
}
},
"minimum-stability": "dev"
}