-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
74 lines (74 loc) · 1.8 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
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
{
"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"
}
],
"support": {
"issues": "https://github.com/neilime/php-css-lint/issues"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-json": "*"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"pcov/clobber": "^2.0",
"phpunit/phpunit": "^9.5.27"
},
"autoload": {
"psr-4": {
"CssLint\\": "src/CssLint"
}
},
"autoload-dev": {
"psr-4": {
"TestSuite\\": "tests/TestSuite"
}
},
"bin": [
"scripts/php-css-lint"
],
"scripts": {
"test": "phpunit --colors --configuration tests/phpunit.xml",
"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",
"ci": [
"@php-cs-fixer",
"@rector",
"@phpstan",
"@test:ci"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}