forked from cakephp/app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.17 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "jacricelli/cakephp-app",
"description": "Plantilla de aplicación para proyectos de CakePHP 3",
"homepage": "https://github.com/jacricelli/cakephp-app",
"keywords": [
"php",
"cakephp",
"cakephp-app",
"cakephp-template",
"cakephp-skeleton"
],
"type": "project",
"license": "MIT",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
},
"require": {
"php": ">=5.6",
"ext-mbstring": "*",
"cakephp/cakephp": "3.6.*",
"cakephp/plugin-installer": "^1.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^3.0"
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump",
"check": [
"@cs-check"
],
"cs-check": "phpcs -p --extensions=php --standard=./phpcs.xml.dist --ignore=*/vendor/* ."
}
}