-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
47 lines (47 loc) · 1.12 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
{
"name": "arodu/cakelte",
"description": "CakeLTE: AdminLTE plugin for CakePHP",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"almasaeed2010/adminlte": "^3.2",
"cakephp/cakephp": "^5.0",
"friendsofcake/bootstrap-ui": "^5.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"phpunit/phpunit": "^10.1.0",
"phpstan/phpstan": "^1.10",
"cakedc/cakephp-phpstan": "^3.1"
},
"autoload": {
"psr-4": {
"CakeLte\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeLte\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"post-install-cmd": [
"bin/cake cakelte install"
],
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p",
"cs-fix": "phpcbf --colors -p",
"stan": "phpstan analyse",
"test": "phpunit --colors=always",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html webroot/coverage --colors=always"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}