From f86e1f6054837b7f329356b07ff24ef727ea3960 Mon Sep 17 00:00:00 2001 From: Sam Georges Date: Fri, 19 Sep 2014 18:23:45 +1000 Subject: [PATCH] Add composer files for demo plugin and theme, not sure where these are ignored? --- plugins/october/demo/composer.json | 33 ++++++++++++++++++++++++++++++ themes/demo/composer.json | 27 ++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 plugins/october/demo/composer.json create mode 100644 themes/demo/composer.json diff --git a/plugins/october/demo/composer.json b/plugins/october/demo/composer.json new file mode 100644 index 000000000..bfddf52f1 --- /dev/null +++ b/plugins/october/demo/composer.json @@ -0,0 +1,33 @@ +{ + "name": "october/demo-plugin", + "type": "october-plugin", + "description": "Demo OctoberCMS plugin", + "keywords": ["october", "cms", "demo", "plugin"], + "license": "MIT", + + "authors": [ + { + "name": "Alexey Bobkov", + "email": "aleksey.bobkov@gmail.com", + "role": "Co-founder" + }, + { + "name": "Samuel Georges", + "email": "daftspunky@gmail.com", + "role": "Co-founder" + } + ], + "require": { + "php": ">=5.4", + }, + "autoload": { + "psr-4": { + "October\\Demo\\": "" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + } +} \ No newline at end of file diff --git a/themes/demo/composer.json b/themes/demo/composer.json new file mode 100644 index 000000000..f4188e2a8 --- /dev/null +++ b/themes/demo/composer.json @@ -0,0 +1,27 @@ +{ + "name": "october/demo-theme", + "type": "october-theme", + "description": "Demo OctoberCMS theme", + "keywords": ["october", "cms", "demo", "theme"], + "license": "MIT", + "authors": [ + { + "name": "Alexey Bobkov", + "email": "aleksey.bobkov@gmail.com", + "role": "Co-founder" + }, + { + "name": "Samuel Georges", + "email": "daftspunky@gmail.com", + "role": "Co-founder" + } + ], + "require": { + "php": ">=5.4", + }, + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + } +} \ No newline at end of file