-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
71 lines (71 loc) · 1.77 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
{
"name": "cakephp/cakephp-org",
"description": "CakePHP.org website",
"homepage": "https://cakephp.org",
"type": "project",
"license": "MIT",
"require": {
"php": ">=8.2",
"cakephp/cakephp": "^4.4.0",
"cakephp/migrations": "^3.8.2",
"mobiledetect/mobiledetectlib": "2.*",
"cakephp/plugin-installer": "^1.3",
"markstory/asset_compress": "^4.1.0",
"cakedc/users": "^11.2.1",
"burzum/cakephp-imagine-plugin": "^4.0.0",
"muffin/tags": "^2.0.0-beta",
"muffin/slug": "^2.1.1",
"josegonzalez/cakephp-upload": "^7.0.1",
"google/recaptcha": "~1.1",
"league/flysystem": "^2.2",
"linkorb/jsmin-php": "^1.0",
"natxet/cssmin": "^3.0",
"cakedc/cakephp-cached-routing": "^1.0",
"paragonie/csp-builder": "^2.9"
},
"require-dev": {
"psy/psysh": "@stable",
"cakephp/debug_kit": "^4.9.4",
"cakephp/bake": "^2.9.3",
"cakephp/cakephp-codesniffer": "^3.0",
"phpunit/phpunit": "^9.5",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "1.7.15",
"psalm/phar": "^4.18.1",
"dereuromark/cakephp-ide-helper": "@stable"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"config": {
"secure-http": false,
"allow-plugins": {
"cakephp/plugin-installer": true,
"phpstan/extension-installer": true
}
},
"extra": {
"installer-paths": {
"plugins/Showcase": ["cakedc/showcase"]
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors -p src/ tests/ config/",
"cs-fix": "phpcbf --colors -p src/ tests/ config/",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
}
}