Skip to content

Instantly share code, notes, and snippets.

@amacgregor
Created July 26, 2014 19:33
Show Gist options
  • Save amacgregor/245aa792de583039cbe9 to your computer and use it in GitHub Desktop.
Save amacgregor/245aa792de583039cbe9 to your computer and use it in GitHub Desktop.
example json composer file for extension development
{
"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