-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.48 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
{
"name": "chialab/frontend-kit",
"description": "BEdita 5 plugin to help with development of websites.",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-intl": "*",
"ext-json": "*",
"bedita/core": "^5.14.0",
"bedita/i18n": "^4.0",
"cakephp/cakephp": "^4.0",
"cakephp/authentication": "^2.0",
"cakephp/twig-view": "^1.3",
"chialab/ip": "^1.0"
},
"require-dev": {
"bedita/placeholders": "^2.0",
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/plugin-installer": "^1.0",
"phpunit/phpunit": "~8.5.0 || ^9.3"
},
"suggest": {
"bedita/placeholders": "To manage placeholders in templates",
"chialab/rna-cakephp": "To manage JavaScript and CSS bundles with RNA"
},
"autoload": {
"psr-4": {
"Chialab\\FrontendKit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BEdita\\Core\\Test\\": "vendor/bedita/core/tests/",
"Chialab\\FrontendKit\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit --colors=always"
},
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}