forked from middlewares/minifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.28 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
51
{
"name": "http-message-strategies-interop/example-minifier",
"type": "library",
"description": "HTTP Message Strategies to minify Html, CSS and Javascript responses",
"license": "MIT",
"keywords": [
"psr",
"psr-7",
"minify",
"html",
"css",
"js",
"javascript",
"http",
"response",
"strategies"
],
"autoload": {
"psr-4": {
"Interop\\Http\\Message\\Strategies\\Examples\\Minifier\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Interop\\Http\\Message\\Strategies\\Examples\\Minifier\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": "^5.6 || ^7.0",
"http-interop/http-factory": "^0.3.0",
"http-message-strategies-interop/http-message-strategies": "^0.3",
"middlewares/utils": "~0.11",
"mrclay/minify": "^2.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^5.5",
"squizlabs/php_codesniffer": "^2.7",
"zendframework/zend-diactoros": "^1.3"
},
"scripts": {
"cs-fix": "php-cs-fixer fix .",
"test": [
"phpunit",
"phpcs"
]
}
}