Skip to content

Instantly share code, notes, and snippets.

@stephpy
Created August 27, 2012 10:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save stephpy/3487319 to your computer and use it in GitHub Desktop.
Save stephpy/3487319 to your computer and use it in GitHub Desktop.
composer
{
"name": "rezzza/myproject",
"description": "myproject",
"authors": [
{
"name": "Chuck norris",
"email": "chuck@norris.com"
}
],
"licence": "MIT",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"twitter/bootstrap": "master",
},
"repositories": [
{
"type": "package",
"package": {
"version": "master",
"name": "twitter/bootstrap",
"source": {
"url": "https://github.com/twitter/bootstrap.git",
"type": "git",
"reference": "master"
},
"dist": {
"url": "https://github.com/twitter/bootstrap/zipball/master",
"type": "zip"
}
}
}
],
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment