mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Add composer.json for the app/
This will act as a stub for developers to extend and improve upon when they build their apps. Hopefully people don't find the two composer.json files overly confusing. Refs #8765
This commit is contained in:
parent
c02b269bcb
commit
c7a48acd10
1 changed files with 35 additions and 0 deletions
35
app/composer.json
Normal file
35
app/composer.json
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"name": "cakephp/app",
|
||||
"description": "CakePHP Application skeleton",
|
||||
"type": "library",
|
||||
"keywords": ["application", "cakephp"],
|
||||
"homepage": "http://cakephp.org",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "CakePHP Community",
|
||||
"homepage": "https://github.com/cakephp/cakephp/graphs/contributors"
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/cakephp/cakephp/issues",
|
||||
"forum": "http://stackoverflow.com/tags/cakephp",
|
||||
"irc": "irc://irc.freenode.org/cakephp",
|
||||
"source": "https://github.com/cakephp/cakephp"
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0",
|
||||
"ext-mcrypt": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "3.7.*",
|
||||
"cakephp/cakephp": "~2.8",
|
||||
"cakephp/cakephp-codesniffer": "^1.0.0"
|
||||
},
|
||||
"bin": [
|
||||
"lib/Cake/Console/cake"
|
||||
],
|
||||
"config": {
|
||||
"vendor-dir": "Vendor/"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue