Created
July 26, 2014 19:33
-
-
Save amacgregor/245aa792de583039cbe9 to your computer and use it in GitHub Desktop.
example json composer file for extension development
This file contains hidden or 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": "vendorname/modulename", | |
"authors": [ | |
{ | |
"name": "author", | |
"email": "[email protected]" | |
} | |
], | |
"config": { | |
"bin-dir": "bin" | |
}, | |
"minimum-stability": "dev", | |
"require-dev": { | |
"phpspec/phpspec": "~2.0", | |
"magetest/magento-phpspec-extension": "~2.0" | |
}, | |
"autoload": { | |
"psr-0": { | |
"": [ | |
"app", | |
"app/code/local", | |
"app/code/community", | |
"lib" | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment