From 2342acd93a4aa44fe9d4213e0a71edf6897dc1bf Mon Sep 17 00:00:00 2001
From: Thomas B. <thomas@roundcube.net>
Date: Wed, 24 Oct 2012 12:25:16 -0400
Subject: [PATCH] Merge pull request #39 from roundcube/topics/composer
---
.gitignore | 7 ++++++-
composer.json | 33 +++++++++++++++++++++++++++++++++
2 files changed, 39 insertions(+), 1 deletions(-)
diff --git a/.gitignore b/.gitignore
index f55131f..c410c9b 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 0000000..104b572
--- /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"
+ }
+}
--
Gitblit v1.9.1