Skip to content

Instantly share code, notes, and snippets.

@ruslanverbelchuk
Created January 2, 2013 15:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruslanverbelchuk/d2257a926c2489db2b5c to your computer and use it in GitHub Desktop.
Save ruslanverbelchuk/d2257a926c2489db2b5c to your computer and use it in GitHub Desktop.
composer.json fro Zend Framework 2
{
"name": "zendframework/skeleton-application"
,
"description": "Skeleton Application for ZF2"
, "type": "library"
,
"license": "BSD-3-Clause"
,
"keywords": [
"framework",
"zf2"
,"rest","doctrine","orm","module"]
, "homepage": "http://framework.zend.com/"
, "autoload": {
"psr-0": {
"ZendRest": "library/"
}
}
, "repositories": [
{
"type": "composer",
"url": "http://packages.zendframework.com/"
}
]
,
"require": {
"php": ">=5.3.3"
,"doctrine/doctrine-module": ">=0.5.1"
,"doctrine/orm": ">=2.3-dev,<2.5-dev"
,"doctrine/dbal": ">=2.3-dev,<2.5-dev"
,"doctrine/migrations": "1.*"
, "zendframework/zendframework": "2.0.*"
, "phpunit/phpunit": "3.7.*"
, "zendframework/zend-http": "2.0.*"
, "zendframework/zend-uri": "2.0.*"
},
"require-dev": {
"zendframework/zend-developer-tools": "dev-master"
},
"suggest": {
"zendframework/zend-developer-tools": "zend-developer-tools if you want to profile operations executed by the ORM during development"
},
"minimum-stability": "alpha",
"autoload": {
"psr-0": {
"DoctrineORMModule\\": "src/",
"DoctrineORMModuleTest\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.6.x-dev"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment