summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2014-02-18 16:17:13 -0500
committerThomas Park <thomas@thomaspark.me>2014-02-18 16:17:13 -0500
commitcc22f4a5a2aa099b52353f2cd6c4c26e9177cbe1 (patch)
treee00933675595696883627a474da3776047429ada
parent0c2486ced17d5508839d4f4261492ff08bdf8799 (diff)
parent0704afa4c53435009a5381e61068324f0db39812 (diff)
Merge pull request #216 from kraksoft/gh-pages
Allow installation of components via Composer in assetic dir for Symfony2
-rw-r--r--composer.json32
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/*"
+ ]
+ }
+ }
}