Skip to content

Commit

Permalink
Merge pull request #1 from pear/topics/composer-for-pear
Browse files Browse the repository at this point in the history
Updated/New Composer support for MDB2_Schema
  • Loading branch information
till committed Feb 21, 2014
2 parents 0310c07 + 10d49f4 commit 623df58
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# composer related
composer.lock
composer.phar
vendor
45 changes: 45 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"authors": [
{
"email": "smith@pooteeweet.org",
"name": "Lukas Kahwe Smith",
"role": "Lead"
},
{
"email": "ifeghali@php.net",
"name": "Igor Feghali",
"role": "Lead"
},
{
"email": "dufuz@php.net",
"name": "Helgi Thormar",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"MDB2": "./"
}
},
"description": "More info available on: http://pear.php.net/package/MDB2_Schema",
"include-path": [
"./"
],
"license": "BSD License",
"name": "pear/mdb2_schema",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=MDB2_Schema",
"source": "https://github.com/pear/MDB2_Schema"
},
"type": "library",
"require": {
"pear/pear_exception": "*",
"pear/mdb2": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"suggest": {
"pear/xml_dtd": "Install optionally via your project's composer.json"
}
}

0 comments on commit 623df58

Please sign in to comment.