Skip to content
This repository has been archived by the owner on Dec 7, 2018. It is now read-only.

Composer support #70

Merged
merged 9 commits into from
Sep 18, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"name": "phpunit/dbunit",
"description": "DbUnit port for PHP/PHPUnit to support database interaction testing.",
"type": "library",
"keywords": [
"database",
"testing",
"xunit"
],
"homepage": "http://www.phpunit.de/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sebastian Bergmann",
"email": "sb@sebastian-bergmann.de",
"role": "lead"
}
],
"version": "1.2.0RC1",
"time": "2012-08-18",
"support": {
"issues": "https://github.com/sebastianbergmann/dbunit/issues",
"irc": "irc://irc.freenode.net/phpunit"
},
"require": {
"php": ">=5.3.3",
"phpunit/phpunit": ">=3.7.0",
"symfony/yaml": ">=2.1.0RC1",
"ext-pdo": "*",
"ext-reflection": "*",
"ext-simplexml": "*",
"ext-spl": "*"
},
"bin": [
"dbunit.php",
"dbunit.bat"
],
"config": {
"bin-dir": "bin"
},
"autoload": {
"files": [
"PHPUnit/Extentions/Database/Autoload.php"
Copy link

Choose a reason for hiding this comment

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

"PHPUnit/Extentions/Database/Autoload.php"
should be
"PHPUnit/Extensions/Database/Autoload.php"

]
},
"include-path": [
""
]
}
23 changes: 23 additions & 0 deletions package-composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"keywords": [ "database", "testing", "xunit" ],
"license": "BSD-3-Clause",
"homepage": "http://www.phpunit.de/",
"dependency_map": {
"pear.phpunit.de/PHPUnit": "phpunit/phpunit",
"pear.symfony.com/YAML": "symfony/yaml"
},
"support": {
"issues": "https://github.com/sebastianbergmann/dbunit/issues",
"irc": "irc://irc.freenode.net/phpunit"
},
"autoload": {
"files": ["PHPUnit/Extentions/Database/Autoload.php"]
Copy link

Choose a reason for hiding this comment

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

"PHPUnit/Extentions/Database/Autoload.php"
should be
"PHPUnit/Extensions/Database/Autoload.php"

This one too. This is great to see composer support being added!

},
"include_path": [
""
],
"bin": [
"dbunit.php",
"dbunit.bat"
]
}