-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.28 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 2.28 KB
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
71
72
73
74
75
76
77
78
79
80
{
"name": "phpdevsr/minifyku",
"description": "Helper versioning and minification your assets in Codeigniter 4",
"license": "MIT",
"type": "library",
"keywords": [
"codeigniter",
"codeigniter4",
"minifyku",
"minify css",
"minify js",
"minification"
],
"authors": [
{
"name": "Denny Septian Panggabean",
"email": "xamidimura@gmail.com",
"role": "Developer"
}
],
"homepage": "https://github.com/PHPDevsr/minifyku",
"require": {
"php": "^8.1",
"ext-json": "*",
"matthiasmullie/minify": "^1.3"
},
"require-dev": {
"codeigniter4/framework": "^4.6",
"codeigniter/coding-standard": "^1.8",
"codeigniter/phpstan-codeigniter": "^1.5.3",
"nexusphp/tachycardia": "^2.4",
"phpstan/phpstan": "^2.1.10",
"phpstan/phpstan-strict-rules": "^2.0.4",
"phpunit/phpcov": "^9",
"phpunit/phpunit": "^10.4",
"rector/rector": "2.3.9"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"PHPDevsr\\Minifyku\\": "src"
},
"files": [
"src/Helpers/minifyku_helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"post-update-cmd": [
"bash admin/setup.sh"
],
"reci": [
"Composer\\Config::disableProcessTimeout",
"@cs",
"@analyze",
"@test"
],
"analyze": [
"@phpstan",
"@rector"
],
"cs-fix": "vendor/bin/php-cs-fixer fix --ansi --verbose --diff --using-cache=no",
"cs": "vendor/bin/php-cs-fixer fix --ansi --verbose --dry-run --diff --using-cache=no",
"rector": "vendor/bin/rector process --dry-run",
"phpstan": "bash -c \"XDEBUG_MODE=off phpstan analyse\"",
"test": "vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml --coverage-php build/cov/coverage.cov --testsuite main"
}
}