diff options
author | Thomas B. <thomas@roundcube.net> | 2012-10-24 09:25:16 -0700 |
---|---|---|
committer | Thomas B. <thomas@roundcube.net> | 2012-10-24 09:25:16 -0700 |
commit | 2342acd93a4aa44fe9d4213e0a71edf6897dc1bf (patch) | |
tree | a23aecf64990f4e9fdba945f9f5a394bc1774484 | |
parent | e04e3144407b7a863999d8aeaf6c3a653219359f (diff) | |
parent | 8aa528b6f7ddd00d6ee42c827f2222596a77bb5f (diff) |
Merge pull request #39 from roundcube/topics/composer
Basic composer support
-rw-r--r-- | .gitignore | 7 | ||||
-rw-r--r-- | composer.json | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index f55131f8c..c410c9b8b 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,9 @@ logs/* temp/* config/* -plugins/*/config.inc.php
\ No newline at end of file +plugins/*/config.inc.php + +# composer-related +composer.phar +composer.lock +vendor diff --git a/composer.json b/composer.json new file mode 100644 index 000000000..104b572c4 --- /dev/null +++ b/composer.json @@ -0,0 +1,33 @@ +{ + "name": "roundcube/roundcubemail", + "description": "The Roundcube Webmail suite", + "license": "GPL-3.0", + "repositories": [ + { + "packagist": false + }, + { + "type": "pear", + "url": "http://pear.php.net/" + }, + { + "type": "package", + "package": { + "name": "Net_SMTP", + "version": "dev-master", + "source": { + "url": "http://github.com/pear/Net_SMTP", + "type": "git", + "reference": "master" + } + } + } + ], + "require" : { + "pear-pear/Mail_Mime": ">=1.8.1", + "pear-pear/Mail_mimeDecode": ">=1.5.5", + "Net_SMTP": "dev-master", + "pear-pear/Net_IDNA2": ">=0.1.1", + "pear-pear/Auth_SASL": ">=1.0.6" + } +} |