Skip to content

Commit

Permalink
Merge pull request #4 from pear/topics/composer-for-pear
Browse files Browse the repository at this point in the history
Updated/New Composer support for Log
  • Loading branch information
jparise committed Feb 17, 2014
2 parents f483447 + 0a17c89 commit ba431c7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Expand Up @@ -11,3 +11,8 @@
/tests/*.log
/tests/*.out
/tests/sqlite-log.db

# composer related
composer.lock
composer.phar
vendor
30 changes: 24 additions & 6 deletions composer.json
Expand Up @@ -2,21 +2,39 @@
"name": "pear/log",
"type": "library",
"description": "PEAR Logging Framework",
"keywords": ["log","logging"],
"keywords": [
"log",
"logging"
],
"homepage": "https://github.com/pear/Log",
"license": "MIT",
"require": {
"php" : ">5.2"
"php": ">5.2",
"pear/pear_exception": "*"
},
"autoload": {
"classmap": ["Log/", "Log.php"]
"psr-0": {
"Log": "./"
}
},
"include-path": [""],
"include-path": [
""
],
"authors": [
{
"name": "Jon Parise",
"email": "jon@php.net",
"role": "Developer"
}
]
}
],
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Log",
"source": "https://github.com/pear/Log"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"suggest": {
"pear/db": "Install optionally via your project's composer.json"
}
}

0 comments on commit ba431c7

Please sign in to comment.