Skip to content

Instantly share code, notes, and snippets.

@JesseObrien
Created January 10, 2013 04:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JesseObrien/4499408 to your computer and use it in GitHub Desktop.
Save JesseObrien/4499408 to your computer and use it in GitHub Desktop.
Example composer.json.
{
"name": "organization/packagename",
"description": "A package for the ages.",
"authors": [
{
"name": "Main Author",
"email": "main.author@example.com"
},
{
"name": "Other Author",
"email": "other.author@example.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"PackageName": "src/"
}
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"mockery/mockery": "0.7.*"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment