-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
38 lines (38 loc) · 1 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
{
"name": "tubalmartin/cssmin",
"description": "A PHP port of the YUI CSS compressor",
"keywords": ["yui", "compressor", "css", "cssmin", "compress", "minify"],
"homepage": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Túbal Martín",
"homepage": "http://tubalmartin.me/"
}
],
"support": {
"issues": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port/issues",
"source": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port"
},
"autoload": {
"psr-4": {
"tubalmartin\\CssMin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"tubalmartin\\CssMin\\Tests\\": "tests"
}
},
"bin": [
"cssmin"
],
"require": {
"php": ">=5.3.2",
"ext-pcre": "*"
},
"require-dev": {
"cogpowered/finediff": "0.3.*",
"phpunit/phpunit": "4.8.*"
}
}