Skip to content

Instantly share code, notes, and snippets.

@junichi11
Created April 16, 2013 05:12

Revisions

  1. junichi11 created this gist Apr 16, 2013.
    31 changes: 31 additions & 0 deletions composer.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,31 @@
    {
    "minimum-stability": "dev",
    "config": {
    "vendor-dir": "vendors"
    },
    "repositories" : [
    {
    "type": "package",
    "package": {
    "name" : "cakephp/cakephp",
    "version" : "2.3.1",
    "source" : {
    "type" : "git",
    "url" : "git://github.com/cakephp/cakephp.git",
    "reference" : "2.3.1"
    },
    "bin" : ["lib/Cake/Console/cake"]
    }
    }
    ],
    "extra": {
    "installer-paths": {
    "app/Plugin/DebugKit": ["cakephp/debug_kit"]
    }
    },
    "require" : {
    "php": ">=5.2",
    "cakephp/cakephp" : "2.3.1",
    "cakephp/debug_kit": "2.2.*"
    }
    }