-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from johndoh/roundcube-skin
add support for packages of type roundcube-skin, fix sql execution an…
- Loading branch information
Showing
7 changed files
with
610 additions
and
472 deletions.
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
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,7 +1,7 @@ | ||
{ | ||
"name": "roundcube/plugin-installer", | ||
"description": "A composer-installer for Roundcube plugins.", | ||
"type": "composer-installer", | ||
"description": "A composer-installer for Roundcube plugins and skins.", | ||
"type": "composer-plugin", | ||
"license": "GPL-3.0+", | ||
"authors": [ | ||
{ | ||
|
@@ -11,6 +11,10 @@ | |
{ | ||
"name": "Till Klampaeckel", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Philip Weir", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"autoload": { | ||
|
@@ -19,13 +23,12 @@ | |
} | ||
}, | ||
"extra": { | ||
"class": "Roundcube\\Composer\\PluginInstaller" | ||
"class": [ | ||
"Roundcube\\Composer\\RoundcubeInstaller" | ||
] | ||
}, | ||
"bin": [ | ||
"src/bin/rcubeinitdb.sh" | ||
], | ||
"require": { | ||
"php": ">=5.3.0" | ||
"composer-plugin-api": "^1.0 || ^2.0" | ||
}, | ||
"require-dev": { | ||
"composer/composer": "*" | ||
|
Oops, something went wrong.