-
Notifications
You must be signed in to change notification settings - Fork 125
/
composer.json
70 lines (70 loc) · 2.15 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
{
"name": "markstory/asset_compress",
"description": "An asset compression plugin for CakePHP. Provides file concatenation and a flexible filter system for preprocessing and minification.",
"type": "cakephp-plugin",
"keywords": ["cakephp", "assets", "minifier", "less", "coffee-script", "sass"],
"homepage": "https://github.com/markstory/asset_compress",
"license": "MIT",
"authors": [
{
"name": "Mark Story",
"homepage": "http://mark-story.com",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/markstory/asset_compress/issues",
"source": "https://github.com/markstory/asset_compress"
},
"require": {
"php": ">=8.1.0",
"cakephp/cakephp": "^5.0",
"markstory/mini-asset": "^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"phpunit/phpunit": "^10.1.0"
},
"autoload": {
"psr-4": {
"AssetCompress\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AssetCompress\\Test\\": "tests",
"TestApp\\": "tests/test_files/src"
}
},
"suggest": {
"natxet/CssMin": "For using the CssMin filter.",
"328/jsqueeze": "For using the JSqueeze filter.",
"patchwork/jshrink": "For using the JShrink filter.",
"scssphp/scssphp": "For using the ScssPHP filter.",
"leafo/lessphp": "For using the LessPHP filter."
},
"scripts": {
"check": [
"@cs-check",
"@test",
"@stan"
],
"cs-check": "phpcs -p src/ tests/TestCase/",
"cs-fix": "phpcbf src/ tests/TestCase/",
"test": "phpunit --stderr",
"stan": "phpstan analyse src/ && psalm --show-info=false",
"stan-test": "phpstan analyse tests/",
"psalm": "psalm",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:~1.8 vimeo/psalm:~4.23 && mv composer.backup composer.json",
"coverage-test": "phpunit --stderr --coverage-clover=clover.xml"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
}
}
}