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