Skip to content

Instantly share code, notes, and snippets.

@simkimsia
Created November 27, 2013 08:31
Show Gist options
  • Save simkimsia/7672469 to your computer and use it in GitHub Desktop.
Save simkimsia/7672469 to your computer and use it in GitHub Desktop.
Template for composer.json of CakePHP 2.x plugin
{
"name": "__github-username__/__packagist-package-name__",
"version": "0.1.0",
"description": "",
"type": "cakephp-plugin",
"keywords": [
"cakephp"
],
"homepage": "http://github.com/__github-username__/__PluginName__",
"license": "MIT",
"authors": [
{
"name": "__author-name__",
"role": "Maintainer"
}
],
"require": {
"composer/installers": "*"
},
"support": {
"issues": "https://github.com/__github-username__/__PluginName__/issues",
"source": "https://github.com/__github-username__/__PluginName__"
},
"extra": {
"installer-name": "__PluginName__"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment