Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1 from pear/topics/composer-for-pear
Updated/New Composer support for Net_POP3
  • Loading branch information
till committed Feb 20, 2014
2 parents d5c4667 + c7bfec8 commit 54004b2
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
# composer related
composer.lock
composer.phar
vendor
45 changes: 45 additions & 0 deletions composer.json
@@ -0,0 +1,45 @@
{
"authors": [
{
"email": "richard@php.net",
"name": "Richard Heyes",
"role": "Lead"
},
{
"email": "damlists@cnba.uba.ar",
"name": "Damian Fernandez Sosa",
"role": "Lead"
},
{
"email": "george@omniti.com",
"name": "George Schlossnagle",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"Net": "./"
}
},
"description": "More info available on: http://pear.php.net/package/Net_POP3",
"include-path": [
"./"
],
"license": "BSD",
"name": "pear/net_pop3",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Net_POP3",
"source": "https://github.com/pear/Net_POP3"
},
"type": "library",
"require": {
"pear/pear_exception": "*",
"pear/net_socket": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"suggest": {
"pear/auth_sasl": "Install optionally via your project's composer.json"
}
}

2 comments on commit 54004b2

@Neustradamus
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@pear team: Can you add "Issues" section in this repository?

@Neustradamus
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@till, @ashnazg: Can you add "Issues" section for this repository?

Please sign in to comment.