Skip to content

Commit

Permalink
Start adding composer support
Browse files Browse the repository at this point in the history
* Add app and framework composer files.
* Remove globals plugins & vendors directories, they will be unused
  once composer support is complete so remove them now.
* Remove the top level composer file.  It won't be used either.
  • Loading branch information
markstory committed Nov 28, 2012
1 parent 4ac7972 commit 5e25ec0
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions App/composer.json
@@ -0,0 +1,15 @@
{
"name": "cakephp/app",
"description": "CakePHP skeleton app",
"homepage": "http://cakephp.org",
"license": "MIT",
"require": {
"cakephp/framework": "dev-3.0",
"php": ">=5.4"
},
"autoload": {
"psr-0": {
"App\\": "."
}
}
}
File renamed without changes.
6 changes: 3 additions & 3 deletions composer.json → lib/composer.json
@@ -1,5 +1,5 @@
{
"name": "cakephp/cakephp",
"name": "cakephp/framework",
"description": "The CakePHP framework",
"type": "library",
"keywords": ["framework"],
Expand All @@ -22,10 +22,10 @@
},
"autoload": {
"psr-0": {
"Cake": "lib/Cake/"
"Cake\\": "Cake/"
}
},
"bin": [
"lib/Cake/Console/cake"
"Cake/Console/cake"
]
}
Empty file removed plugins/empty
Empty file.
Empty file removed vendors/empty
Empty file.

0 comments on commit 5e25ec0

Please sign in to comment.