-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathcomposer.json
63 lines (63 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
{
"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": ">=7.2.0",
"cakephp/cakephp": "^4.0",
"markstory/mini-asset": ">=1.4.0 <2.0.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~8.5.0",
"cakephp/cakephp-codesniffer": "^4.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 --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/TestCase/",
"cs-fix": "phpcbf --standard=vendor/cakephp/cakephp-codesniffer/CakePHP 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:^0.12 vimeo/psalm:^3.0 && mv composer.backup composer.json",
"coverage-test": "phpunit --stderr --coverage-clover=clover.xml"
}
}