-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
87 lines (87 loc) · 2.35 KB
/
composer.json
File metadata and controls
87 lines (87 loc) · 2.35 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "neilime/php-css-lint",
"type": "library",
"description": "Powerful & memory efficient CSS linter for PHP",
"keywords": [
"CSS",
"lint",
"linter",
"syntax",
"validation"
],
"homepage": "https://neilime.github.io/php-css-lint/",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Neilime",
"homepage": "https://github.com/neilime",
"role": "Developer"
},
{
"name": "ESCEMI",
"homepage": "https://github.com/escemi-tech",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/neilime/php-css-lint/issues"
},
"require": {
"php": "^8.2",
"ext-json": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.10",
"mikey179/vfsstream": "^1.6",
"pcov/clobber": "^2.0",
"phpunit/phpunit": "^9.5.27",
"symfony/cache": "^6.4 || ^7.2",
"symfony/console": "^6.4 || ^7.2",
"symfony/css-selector": "^6.4 || ^7.2",
"symfony/dom-crawler": "^6.4 || ^7.2"
},
"autoload": {
"psr-4": {
"CssLint\\": "src/CssLint"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Fixtures\\": "tests/Fixtures",
"Tests\\TestSuite\\": "tests/TestSuite"
}
},
"bin": [
"scripts/php-css-lint"
],
"scripts": {
"test": "phpunit --colors --configuration tests/phpunit.xml",
"test:load-fixtures": [
"php scripts/css-referential-scraper",
"php scripts/css-popular-downloader"
],
"test:ci": "@test -d pcov.enabled=1 -d max_execution_time=0 --coverage-text --coverage-clover ./build/logs/clover.xml --coverage-html ./build/coverage/",
"php-cs-fixer": "@php-cs-fixer:fix --dry-run",
"php-cs-fixer:fix": "tools/vendor/bin/php-cs-fixer fix --show-progress=dots --diff --config=.php-cs-fixer.dist.php",
"rector": "@rector:fix --dry-run",
"rector:fix": "tools/vendor/bin/rector process src",
"phpstan": "tools/vendor/bin/phpstan analyse --level max src",
"generate-css-referentials": [
"php scripts/css-referential-scraper",
"php scripts/css-referential-generator",
"@php-cs-fixer:fix src/CssLint/Referential",
"tools/vendor/bin/rector process src/CssLint/Referential"
],
"ci": [
"@php-cs-fixer",
"@rector",
"@phpstan",
"@test:ci"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}