forked from cakephp/cakephp.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.46 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.46 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
{
"name": "cakephp/cakephp-org",
"description": "CakePHP.org website",
"homepage": "https://cakephp.org",
"type": "project",
"license": "MIT",
"require": {
"php": ">=7.3",
"cakephp/cakephp": "3.8.*",
"cakephp/migrations": "^2.0.0",
"mobiledetect/mobiledetectlib": "2.*",
"cakephp/plugin-installer": "^1.3",
"markstory/asset_compress": "~3.0",
"cakedc/users": "^8.0",
"burzum/cakephp-imagine-plugin": "~2.0",
"muffin/tags": "^1.1",
"muffin/slug": "^1.4",
"josegonzalez/cakephp-upload": "^4.0.0",
"google/recaptcha": "~1.1",
"league/flysystem": "^1.1",
"linkorb/jsmin-php": "^1.0",
"natxet/cssmin": "^3.0"
},
"require-dev": {
"psy/psysh": "@stable",
"cakephp/debug_kit": "~3.2",
"cakephp/bake": "~1.1",
"cakephp/cakephp-codesniffer": "^3.0",
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"config": {
"secure-http": false,
"allow-plugins": {
"cakephp/plugin-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"
}
}