forked from WyriHaximus/php-css-compress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.65 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.65 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "wyrihaximus/css-compress",
"description": "Compress/minify your CSS",
"license": "MIT",
"keywords": [
"html",
"compress"
],
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com",
"homepage": "http://wyrihaximus.net/"
}
],
"require": {
"php": "^8",
"matthiasmullie/minify": "^1.3",
"thecodingmachine/safe": "^1.0 || ^0.1 || ^2.2",
"tubalmartin/cssmin": "^4.1",
"websharks/css-minifier": "150820",
"wyrihaximus/compress": "^1.1 || ^2.0",
"wyrihaximus/compress-contracts": "^1.0"
},
"require-dev": {
"wyrihaximus/compress-test-utilities": "^2.0",
"wyrihaximus/test-utilities": "^5.0.4"
},
"conflict": {
"matthiasmullie/minify": "1.3.64"
},
"autoload": {
"psr-4": {
"WyriHaximus\\CssCompress\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\CssCompress\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true
},
"platform": {
"php": "8.0.12"
},
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}