-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·92 lines (92 loc) · 3.59 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
{
"name": "impronta/angelacake",
"description": "Angelcake Hybrid CMS",
"homepage": "https://impronta48.it/cakephp",
"type": "project",
"license": "MIT",
"require": {
"php": ">=7.2",
"admad/cakephp-glide": "^4",
"admad/cakephp-i18n": "^2.1",
"admad/cakephp-social-auth": "^1.0",
"cakephp/authentication": "^2.0",
"cakephp/authorization": "^2.0",
"cakephp/cakephp": "^4.5",
"cakephp/migrations": "^3.9",
"cakephp/plugin-installer": "^1.2",
"dereuromark/cakephp-tags": "^1.1",
"erusev/parsedown": "^1.7",
"friendsofcake/bootstrap-ui": "^3",
"google/apiclient": "^2.0",
"hkod/frontmatter": "^1",
"impronta48/ibmwatson": "^1.0",
"intervention/imagecache": "^2.4",
"ishanvyas22/asset-mix": "^1.3",
"josbeir/cakephp-filesystem": "^2.0",
"laminas/laminas-diactoros": "^2.13",
"league/flysystem-webdav": "^1.0",
"mobiledetect/mobiledetectlib": "^2.8",
"phpoffice/phpspreadsheet": "^1.15",
"satispay/gbusiness-api-php-sdk": "^1.3",
"studio-42/elfinder": "^2.1",
"symfony/yaml": "^5.0"
},
"require-dev": {
"cakephp/bake": "^2",
"cakephp/cakephp-codesniffer": "^4",
"cakephp/debug_kit": "^4",
"josegonzalez/dotenv": "^3.2",
"phpunit/phpunit": "^8.5",
"psy/psysh": "@stable"
},
"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."
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Notifications\\": "plugins/Notifications/src/",
"Moma\\": "plugins/Moma/src/",
"Ebike2021\\": "plugins/Ebike2021/src/",
"Mirafiori\\": "plugins/Mirafiori/src/",
"Bossolasco\\": "plugins/Bossolasco/src/",
"Yepp\\": "plugins/Yepp/src/",
"Cribyoo\\": "plugins/Cribyoo/src/",
"Cyclomap\\": "plugins/Cyclomap/src/",
"TelegramLogin\\": "plugins/TelegramLogin/src/",
"Satispay\\": "plugins/Satispay/src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"Cyclomap\\Test\\": "plugins/Cyclomap/tests/",
"Satispay\\Test\\": "plugins/Satispay/tests/"
}
},
"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 --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"cs-fix": "phpcbf --colors --standard=ruleset.xml src/",
"stan": "phpstan analyse src/",
"test": "phpunit --colors=always"
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
},
"platform-check": false
},
"minimum-stability": "dev"
}