-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 3.34 KB
/
composer.json
File metadata and controls
88 lines (88 loc) · 3.34 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
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
{
"name": "b23prodtm/myphpcms",
"description": "CMS featuring CakePHP Framework",
"homepage": "https://www.sourceforge.net/projects/pohse",
"license": "Apache-2.0",
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/cakephp/graphs/contributors"
},
{
"name": "B23:production GNU",
"homepage": "https://github.com/b23prodtm"
}
],
"support": {
"source": "https://www.sourceforge.net/projects/pohse/support"
},
"bin": [
"bin/cake"
],
"require": {
"php": "^7 || ^8",
"betothreeprod/markdown-plugin": "^0.9.3",
"betothreeprod/updateshell": "^0.1.6",
"cakephp/app": "^3.10",
"cakephp/cakephp": "3.10.*",
"cakephp/migrations": "^2.0.0",
"cakephp/plugin-installer": "^1.3",
"mobiledetect/mobiledetectlib": "2.*"
},
"require-dev": {
"cakephp/bake": "^1.9.0",
"cakephp/cakephp-codesniffer": "^3.0",
"cakephp/debug_kit": "^3.17.0",
"josegonzalez/dotenv": "3.*",
"psy/psysh": "@stable",
"phpunit/phpunit": "*",
"php-coveralls/php-coveralls": "^1 || ^2.1",
"phpunit/phpcov": "*"
},
"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.",
"ext-openssl": "You need to install ext-openssl or ext-mcrypt to use AES-256 encryption",
"ext-mcrypt": "You need to install ext-openssl or ext-mcrypt to use AES-256 encryption"
},
"autoload": {
"psr-4": {
"App\\": "vendor/cakephp/app/src",
"Config\\Schema\\": "app/Config/Schema/",
"Michelf\\": "vendor/michelf/php-markdown/michelf/michelf"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "vendor/cakephp/app/tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"DebugKit\\": "vendor/cakephp/debug_kit/src/"
}
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/ config/ webroot/",
"cs-fix": "phpcbf --colors -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/ config/ webroot/",
"stan": "phpstan analyse -l 5 src/",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan-shim:^0.11 && mv composer.backup composer.json",
"test": "phpunit --colors=always",
"alltests": "cake test core AllTests --stderr"
},
"prefer-stable": true,
"config": {
"vendor-dir": "vendor/",
"audit": {
"block-insecure": false
},
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cakephp/plugin-installer": true
}
}
}