Created
January 10, 2013 04:15
-
-
Save JesseObrien/4499408 to your computer and use it in GitHub Desktop.
Example composer.json.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "organization/packagename", | |
"description": "A package for the ages.", | |
"authors": [ | |
{ | |
"name": "Main Author", | |
"email": "[email protected]" | |
}, | |
{ | |
"name": "Other Author", | |
"email": "[email protected]" | |
} | |
], | |
"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