-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.04 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.04 KB
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
{
"name" : "mamuz/squeezer",
"type" : "project",
"description" : "PHP library minifier",
"homepage" : "https://github.com/mamuz/Squeezer",
"license" : "MIT",
"keywords" : ["Minify", "Performance", "Improvement"],
"authors" : [
{
"name" : "Marco Muths",
"email": "mamuz.de@gmail.com"
}
],
"support" : {
"issues": "https://github.com/mamuz/Squeezer/issues",
"source": "https://github.com/mamuz/Squeezer"
},
"minimum-stability": "dev",
"prefer-stable" : true,
"require" : {
"php" : ">=5.4",
"nikic/php-parser": "~1.3",
"symfony/console" : "~2.5|~3.0",
"symfony/finder" : "~2.5|~3.0"
},
"require-dev" : {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9.2"
},
"autoload" : {
"psr-4": {
"Squeeze\\": "src/"
}
},
"bin" : ["bin/squeeze"]
}