-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 867 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 867 Bytes
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
{
"name": "hexydec/cssdoc",
"description": "A token based CSS Document parser and minifier written in PHP",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/hexydec/cssdoc",
"authors": [
{
"name": "Will Earp",
"email": "will@hexydec.com",
"homepage": "https://github.com/hexydec"
}
],
"keywords": ["css", "stylesheet", "minifier", "minify", "parser", "compiler"],
"minimum-stability": "stable",
"require": {
"php": ">=8.4",
"hexydec/tokenise": "1.0.4"
},
"autoload": {
"classmap": ["src/"]
},
"scripts": {
"analyse": "phpstan analyse --memory-limit=512M",
"test": "phpunit"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"phpstan/phpstan": "^2.0"
},
"config": {
"discard-changes": true
}
}