-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.09 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
{
"name": "devly/css-generator",
"description": "Generate CSS on the fly using PHP",
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Valentin Jebelev",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Devly\\CssGenerator\\": "src/CssGenerator"
}
},
"autoload-dev": {
"psr-4": {
"Devly\\CssGenerator\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"squizlabs/php_codesniffer": "^3.6",
"slevomat/coding-standard": "^7.0",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.2"
},
"scripts": {
"lint": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"phpstan": "@php ./vendor/bin/phpstan",
"test": "@php ./vendor/bin/phpunit"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}