-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
45 lines (45 loc) · 1.22 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
{
"name": "holt59/cakephp4-bootstrap-helpers",
"description": "Bootstrap Helpers for CakePHP 4.0",
"type": "cakephp-plugin",
"keywords": ["cakephp", "bootstrap"],
"homepage": "https://holt59.github.io/cakephp4-bootstrap-helpers/",
"license": "MIT",
"support": {
"issues": "https://github.com/Holt59/cakephp3-bootstrap-helpers/issues",
"source": "https://github.com/Holt59/cakephp3-bootstrap-helpers"
},
"require": {
"php": ">=7.2",
"cakephp/cakephp": "^4.0",
"cakephp/plugin-installer": "^1.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^4.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Bootstrap\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bootstrap\\Test\\": "tests/",
"Bootstrap\\TestApp\\": "tests/test_app/"
}
},
"extra": {
"installer-name": "Bootstrap"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors -p src/ tests/",
"cs-fix": "phpcbf --colors -p src/ tests/"
},
"prefer-stable": true,
"minimum-stability": "dev"
}