-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
60 lines (60 loc) · 1.76 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
{
"name": "ishanvyas22/asset-mix",
"description": "Asset Mix plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": ["cakephp", "cakephp-plugin", "assets", "laravel-mix", "minifier", "less", "javascript", "sass"],
"license": "MIT",
"homepage": "https://github.com/ishanvyas22/asset-mix",
"authors": [
{
"name": "Ishan Vyas",
"homepage": "https://github.com/ishanvyas22",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/ishanvyas22/asset-mix/issues",
"source": "https://github.com/ishanvyas22/asset-mix"
},
"require": {
"ext-json": "*",
"ext-mbstring": "*",
"cakephp/cakephp": "^5.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.1.0",
"phpunit/phpunit": "^10.2",
"phpstan/phpstan": "^1.10.27"
},
"autoload": {
"psr-4": {
"AssetMix\\": "src/"
},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {
"AssetMix\\Test\\": "tests/",
"TestApp\\": "tests/test_app/src/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test:types",
"@test"
],
"cs-fix": "vendor/bin/phpcbf --extensions=php ./src ./tests",
"cs-check": "vendor/bin/phpcs -p --extensions=php ./src ./tests",
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test": "phpunit --colors=always",
"test-setup": "cp phpunit.xml.dist phpunit.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}