forked from markstory/mini-asset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 2.14 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
{
"name": "markstory/mini-asset",
"description": "An asset compression library. Provides file concatenation and a flexible filter system for preprocessing and minification.",
"type": "library",
"keywords": ["cakephp", "assets", "minifier", "less", "coffee-script", "sass", "psr7"],
"homepage": "https://github.com/markstory/mini-asset",
"license": "MIT",
"authors": [
{
"name": "Mark Story",
"homepage": "http://mark-story.com",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/markstory/mini-asset/issues",
"source": "https://github.com/markstory/mini-asset"
},
"require": {
"php": ">=8.1,<9",
"league/climate": "~3.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"squizlabs/php_codesniffer": "*",
"laminas/laminas-diactoros": "~2.0",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"MiniAsset\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MiniAsset\\Test\\": "tests/"
}
},
"bin": ["bin/mini_asset"],
"suggest": {
"matthiasmullie/minify": "For using Minify filter.",
"natxet/CssMin": "For using the CssMin filter.",
"tchwork/jsqueeze": "For using the JSqueeze filter.",
"tedivm/jshrink": "For using the JShrink filter.",
"scssphp/scssphp": "For using the ScssPHP filter.",
"oyejorge/less.php": "For using the LessDotPHP filter, see https://github.com/oyejorge/less.php",
"zendframework/diactoros": "The middleware layer relies on zendframework/diactoros."
},
"scripts": {
"check": [
"@cs-check",
"@test",
"@stan"
],
"cs-check": "phpcs -p src/ tests/TestCase/",
"cs-fix": "phpcbf src/ tests/TestCase/",
"test": "phpunit --stderr",
"stan-test": "phpstan analyse tests/",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.5 psalm/phar:~4.22.0 && mv composer.backup composer.json",
"stan": "phpstan analyse src/ && psalm.phar --show-info=false",
"psalm": "psalm.phar --show-info=false"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}