Skip to content

Commit

Permalink
Merge pull request #39 from roundcube/topics/composer
Browse files Browse the repository at this point in the history
Basic composer support
  • Loading branch information
thomascube committed Oct 24, 2012
2 parents e04e314 + 8aa528b commit 2342acd
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@
logs/*
temp/*
config/*
plugins/*/config.inc.php
plugins/*/config.inc.php

# composer-related
composer.phar
composer.lock
vendor
33 changes: 33 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit 2342acd

Please sign in to comment.