-
Notifications
You must be signed in to change notification settings - Fork 130
/
composer.json
130 lines (130 loc) · 5.64 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "baserproject/basercms",
"description": "baserCMS plugin for CakePHP",
"homepage": "https://basercms.net",
"license": "MIT",
"type": "project",
"require": {
"php": ">=8.1",
"ext-gd": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-sqlite3": "*",
"ext-zip": "*",
"cakephp/authentication": "^3.0",
"cakephp/cakephp": "5.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"
},
"require-dev": {
"ext-xdebug": "*",
"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"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"BaserCore\\": "plugins/baser-core/src",
"BcAdminThird\\": "plugins/bc-admin-third/src",
"BcBlog\\": "plugins/bc-blog/src/",
"BcColumn\\": "plugins/BcColumn/src/",
"BcContentLink\\": "plugins/bc-content-link/src/",
"BcCustomContent\\": "plugins/bc-custom-content/src/",
"BcEditorTemplate\\": "plugins/bc-editor-template/src/",
"BcFavorite\\": "plugins/bc-favorite/src/",
"BcFront\\": "plugins/bc-front/src/",
"BcInstaller\\": "plugins/bc-installer/src/",
"BcMail\\": "plugins/bc-mail/src/",
"BcPluginSample\\": "plugins/BcPluginSample/src/",
"BcSearchIndex\\": "plugins/bc-search-index/src/",
"BcThemeConfig\\": "plugins/bc-theme-config/src/",
"BcThemeFile\\": "plugins/bc-theme-file/src/",
"BcThemeSample\\": "plugins/BcThemeSample/src/",
"BcUploader\\": "plugins/bc-uploader/src/",
"BcWidgetArea\\": "plugins/bc-widget-area/src/",
"Cake\\Routing\\": "plugins/baser-core/src/Routing"
}
},
"autoload-dev": {
"psr-4": {
"BaserCore\\Test\\": "plugins/baser-core/tests/",
"BcBlog\\Test\\": "plugins/bc-blog/tests/",
"BcContentLink\\Test\\": "plugins/bc-content-link/tests/",
"BcCustomContent\\Test\\": "plugins/bc-custom-content/tests/",
"BcEditorTemplate\\Test\\": "plugins/bc-editor-template/tests/",
"BcFavorite\\Test\\": "plugins/bc-favorite/tests/",
"BcInstaller\\Test\\": "plugins/bc-installer/tests/",
"BcMail\\Test\\": "plugins/bc-mail/tests/",
"BcSearchIndex\\Test\\": "plugins/bc-search-index/tests/",
"BcThemeConfig\\Test\\": "plugins/bc-theme-config/tests/",
"BcThemeFile\\Test\\": "plugins/bc-theme-file/tests/",
"BcUploader\\Test\\": "plugins/bc-uploader/tests/",
"BcWidgetArea\\Test\\": "plugins/bc-widget-area/tests/"
}
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-update-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p src/ tests/",
"cs-fix": "phpcbf --colors -p src/ tests/",
"stan": "phpstan analyse",
"install": [
"composer install --no-plugins",
"bin/cake setup install",
"bin/cake install https://localhost [email protected] baserCMS1234 basercms --host bc-db --username root --password root"
],
"test": [
"bin/cake setup test",
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit --colors=always"
]
},
"suggest": {
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.",
"dereuromark/cakephp-ide-helper": "After baking your code, this keeps your annotations in sync with the code evolving from there on for maximum IDE and PHPStan/Psalm compatibility.",
"phpstan/phpstan": "PHPStan focuses on finding errors in your code without actually running it. It catches whole classes of bugs even before you write tests for the code.",
"cakephp/repl": "Console tools for a REPL interface for CakePHP applications."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"replace": {
"baserproject/baser-core": "5.1.3",
"baserproject/bc-admin-third": "5.1.3",
"baserproject/bc-blog": "5.1.3",
"baserproject/bc-column": "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-plugin-sample": "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-theme-sample": "5.1.3",
"baserproject/bc-uploader": "5.1.3",
"baserproject/bc-widget-area": "5.1.3"
}
}