-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
50 lines (50 loc) · 1.37 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": "chh/pipe",
"bin": ["bin/pipe", "bin/pipe-server", "bin/pipe-compile"],
"description": "Put your assets into the Pipe and smoke them.",
"keywords": [
"assets"
],
"license": "MIT",
"homepage": "https://github.com/CHH/pipe",
"authors": [
{
"name": "Christoph Hochstrasser",
"email": "[email protected]",
"homepage": "http://christophh.net"
}
],
"require": {
"php": ">=5.3.3",
"chh/meta-template": "~1.0@dev",
"chh/shellwords": "~0.1",
"chh/fileutils": "~1.0@dev",
"symfony/yaml": "~2.0",
"ulrichsg/getopt-php": "@dev",
"monolog/monolog": "~1.0",
"psr/log": "~1.0"
},
"suggest": {
"react/http": "Enable the standalone asset server (~0.2.0)",
"symfony/http-kernel": "Enable dynamic asset serving with Pipe\\Server",
"imagine/imagine": "Enable image compressors"
},
"require-dev": {
"react/http": "~0.2.0",
"symfony/http-kernel": "~2.1",
"imagine/imagine": "~0.4",
"mikey179/vfsStream": "~1.1",
"chh/bob": "1.0.*@dev",
"phpunit/phpunit": "~3.7"
},
"autoload": {
"psr-0": {
"Pipe": "lib/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}