Skip to content

Commit

Permalink
Enhancement: composer setup
Browse files Browse the repository at this point in the history
  • Loading branch information
till committed Feb 17, 2014
1 parent e12dee3 commit 94f517b
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
# composer related
composer.lock
composer.phar
vendor
31 changes: 31 additions & 0 deletions composer.json
@@ -0,0 +1,31 @@
{
"authors": [
{
"email": "hm2k@php.net",
"name": "James Wade",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"Services_Mailman": "./"
}
},
"description": "Allows the easy integration of Mailman into a dynamic website without using Python or requiring permission to Mailman binaries",
"include-path": [
"./"
],
"license": "BSD License",
"name": "pear/services_mailman",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Services_Mailman",
"source": "https://github.com/pear/Services_Mailman"
},
"type": "library",
"require": {
"pear/pear_exception": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}

0 comments on commit 94f517b

Please sign in to comment.