Merge pull request #11 from vikas-srivastava/composer

New : Added composer.json

The general plan for module management in SilverStripe 3.1 is to use Composer to manage the modules, and to rely on Composer meta-data as the primary source of information about a module.
This commit is contained in:
Mike Parkhill 2012-09-25 17:20:42 -07:00
commit 229fed8f03

19
composer.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "silverstripe/widgets",
"description": "Widgets are small pieces of functionality such as showing
the latest Comments or Flickr Photos. They normally display on the sidebar
of your website. To check out a what a Widget can do watch the Widget video
and try out the demo site.",
"type": "silverstripe-module",
"keywords": ["silverstripe", "widgets", "blog"],
"authors": [
{
"name": "Ingo Schommer",
"email": "ingo@silverstripe.com"
}
],
"require":
{
"silverstripe/framework": "3.*"
}
}