From 6b1a10d8edb6b73aba1000f6b3950ca2539c5c25 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 7 Feb 2018 17:04:06 +0100 Subject: duplicate v3 spec --- composer.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..2588fb9 --- /dev/null +++ b/composer.json @@ -0,0 +1,39 @@ +{ + "name": "phpunit/dbunit", + "description": "PHPUnit extension for database interaction testing", + "type": "library", + "keywords": [ + "database", + "testing", + "xunit" + ], + "homepage": "https://github.com/sebastianbergmann/dbunit/", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/dbunit/issues" + }, + "require": { + "php": "^7.0", + "phpunit/phpunit": "^6.0", + "symfony/yaml": "^3.0 || ^4.0", + "ext-pdo": "*", + "ext-simplexml": "*" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + } +} -- cgit