diff options
author | Thomas Park <thomas@thomaspark.me> | 2014-02-18 16:17:13 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2014-02-18 16:17:13 -0500 |
commit | cc22f4a5a2aa099b52353f2cd6c4c26e9177cbe1 (patch) | |
tree | e00933675595696883627a474da3776047429ada | |
parent | 0c2486ced17d5508839d4f4261492ff08bdf8799 (diff) | |
parent | 0704afa4c53435009a5381e61068324f0db39812 (diff) |
Merge pull request #216 from kraksoft/gh-pages
Allow installation of components via Composer in assetic dir for Symfony2
-rw-r--r-- | composer.json | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/composer.json b/composer.json index d08a1b5a..b7634fd9 100644 --- a/composer.json +++ b/composer.json @@ -1,11 +1,39 @@ { "name": "thomaspark/bootswatch", "description": "Themes for Bootstrap", - "licenses": "MIT", + "license": "MIT", "authors": [ { "name": "thomaspark", "email": "hello@thomaspark.me" } - ] + ], + "type": "component", + "require": { + "robloach/component-installer": "0.0.*" + }, + "extra": { + "component": { + "name": "bootswatch", + "files": [ + "README.md", + "LICENSE", + "amelia/*", + "cerulean/*", + "cosmo/*", + "cyborg/*", + "flatly/*", + "fonts/*", + "journal/*", + "lumen/*", + "readable/*", + "simplex/*", + "slate/*", + "spacelab/*", + "superhero/*", + "united/*", + "yeti/*" + ] + } + } } |