-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.48 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.48 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
{
"name": "brammo/bootstrap-ui",
"description": "Bootstrap helpers for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"plugin",
"bootstrap",
"helper"
],
"homepage": "https://github.com/brammo/bootstrap-ui",
"authors": [
{
"name": "Roman Sidorkin",
"email": "roman.sidorkin@gmail.com"
}
],
"license": "MIT",
"version": "1.2.0",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.3",
"friendsofcake/bootstrap-ui": "^5.1"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.3",
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^2.1",
"vimeo/psalm": "^5.26"
},
"autoload": {
"psr-4": {
"Brammo\\BootstrapUI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brammo\\BootstrapUI\\Test\\": "tests/"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"analyse": [
"@stan",
"@psalm"
],
"cs-check": "phpcs --colors -p src tests",
"cs-fix": "phpcbf --colors -p src tests",
"test": "phpunit --colors=always",
"stan": "phpstan analyse",
"psalm": "psalm --show-info=false"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}