-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
46ec66a
commit fc9946f
Showing
1 changed file
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
# Quicksilver Composer Installer # | ||
|
||
Creates a new "type" in Composer for `quicksilver-modules` so you can treat them separately in Composer installations. | ||
Creates a new "type" in Composer for `quicksilver-modules` so you can treat them separately in Composer installations. This allows you to include Quicksilver scripts as part of a composer based project on Pantheon[https://pantheon.io]. | ||
|
||
## Example composer.json file ## | ||
|
||
``` | ||
{ | ||
"require": { | ||
"rvtraveller/qs-revert-all-features-d7": "1.0" | ||
}, | ||
"extra": { | ||
"installer-paths": { | ||
"web/private/scripts/quicksilver/{$name}": ["type:quicksilver-module"] | ||
} | ||
} | ||
} | ||
``` |