-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 2.75 KB
/
composer.json
File metadata and controls
82 lines (82 loc) · 2.75 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
{
"name": "bedita/api-template",
"type": "project",
"description": "BEdita5 API project template app",
"homepage": "https://www.bedita.com",
"license": "MIT",
"require": {
"php": ">=8.3",
"bedita/api": "^6.0",
"bedita/aws": "^5.0",
"bedita/core": "^6.0",
"cakephp/cakephp": "~5.2.9",
"cakephp/plugin-installer": "^2.0"
},
"require-dev": {
"bedita/dev-tools": "^3.2",
"cakephp/bake": "^3.5.0",
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/debug_kit": "^5.3.0",
"cakephp/repl": "^2.0.1",
"dereuromark/cakephp-ide-helper": "^2.5.3",
"josegonzalez/dotenv": "^4.0",
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpunit/phpunit": "^11.5 || ^12.1",
"vimeo/psalm": "^6.14"
},
"minimum-stability": "dev",
"suggest": {
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification."
},
"autoload": {
"psr-4": {
"MyApp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MyApp\\Test\\": "tests/",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"post-install-cmd": "MyApp\\Console\\Installer::postInstall",
"post-update-cmd": "MyApp\\Console\\Installer::postInstall",
"post-create-project-cmd": "MyApp\\Console\\Installer::postInstall",
"check": [
"@test",
"@cs-check",
"@stan"
],
"psalm": "vendor/bin/psalm",
"stan": "vendor/bin/phpstan analyse",
"cs-check": "vendor/bin/phpcs -n -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/ config/*.php",
"cs-fix": "vendor/bin/phpcbf -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/ config/*.php",
"test": "vendor/bin/phpunit --colors=always",
"migrate": [
"@cache-clear",
"@migrations",
"@cache-clear",
"@project-model",
"@cache-clear"
],
"cache-clear": "bin/cake cache clear_all",
"migrations": [
"bin/cake migrations migrate -p BEdita/Core",
"bin/cake migrations migrate"
],
"project-model": [
"bin/cake project_model"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}