forked from Cerdic/CSSTidy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 980 Bytes
/
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": "cerdic/css-tidy",
"description": "CSSTidy is a CSS minifier",
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Cédric MORIN",
"email": "changeme@mailinator.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/pear/Text_Diff",
"no-api": true
}
],
"autoload": {
"classmap": [
"class.csstidy_optimise.php",
"class.csstidy_print.php",
"class.csstidy.php"
]
},
"autoload-dev": {
"classmap": [
"testing"
]
},
"require": {
"php": "^7.1 || ^8"
},
"require-dev": {
"pear/text_diff": "^1.2",
"simpletest/simpletest": "dev-master"
},
"bin": ["bin/pcsstidy"],
"archive": {
"exclude": [
"/.gitignore",
"/.travis.yml",
"/testing"
]
}
}