-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.91 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
51
52
53
54
55
56
57
58
{
"name": "baserproject/baser-core",
"description": "baserCMS plugin for CakePHP",
"homepage": "https://basercms.net",
"type": "cakephp-plugin",
"license": "MIT",
"vendor-dir": "../../vendor",
"require": {
"php": ">=8.1",
"cakephp/cakephp": "5.0.*",
"cakephp/authentication": "^3.0",
"cakephp/migrations": "^4.0.0",
"cakephp/plugin-installer": "^2.0",
"doctrine/annotations": "^1.12",
"firebase/php-jwt": "6.1.0",
"mobiledetect/mobiledetectlib": "^3.74",
"ext-json": "*",
"baserproject/bc-admin-third": "5.1.3",
"baserproject/bc-blog": "5.1.3",
"baserproject/bc-content-link": "5.1.3",
"baserproject/bc-custom-content": "5.1.3",
"baserproject/bc-editor-template": "5.1.3",
"baserproject/bc-favorite": "5.1.3",
"baserproject/bc-front": "5.1.3",
"baserproject/bc-installer": "5.1.3",
"baserproject/bc-mail": "5.1.3",
"baserproject/bc-search-index": "5.1.3",
"baserproject/bc-theme-config": "5.1.3",
"baserproject/bc-theme-file": "5.1.3",
"baserproject/bc-uploader": "5.1.3",
"baserproject/bc-widget-area": "5.1.3",
"ext-mbstring": "*",
"ext-zip": "*",
"ext-gd": "*"
},
"require-dev": {
"cakephp/bake": "^3.0.0",
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/debug_kit": "^5.0.0",
"josegonzalez/dotenv": "^4.0",
"phpunit/phpunit": "10.5.31",
"symplify/monorepo-builder": "^11.2",
"vierge-noire/cakephp-fixture-factories": "^3.0",
"vierge-noire/cakephp-test-suite-light": "^3.0",
"ext-xdebug": "*"
},
"autoload": {
"psr-4": {
"BaserCore\\": "src",
"Cake\\Routing\\": "src/Routing"
}
},
"autoload-dev": {
"psr-4": {
"BaserCore\\Test\\": "tests/"
}
}
}