Skip to content

Commit 4abb147

Browse files
committed
Initial commit
0 parents  commit 4abb147

11 files changed

+2114
-0
lines changed

.github/workflows/ci.yml

Whitespace-only changes.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.phpunit.cache
2+
vendor/

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# cspray/database-testing-phpunit
2+
3+
A PHPUnit Extension for [cspray/database-testing](https://github.com/cspray/database-testing), designed to facilitate setting up a test database suitable for automated testing.
4+
5+
## Installation
6+
7+
Composer is the only supported method for installing this library.
8+
9+
```shell
10+
composer require --dev cspray/database-testing-phpunit
11+
```

composer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "cspray/database-testing-phpunit",
3+
"description": "",
4+
"require": {
5+
"php": "^8.3",
6+
"cspray/database-testing": "dev-main",
7+
"phpunit/phpunit": "^11"
8+
},
9+
"require-dev": {
10+
"cspray/database-testing-pdo": "dev-main"
11+
},
12+
"autoload": {
13+
"psr-4": {
14+
"Cspray\\DatabaseTesting\\PhpUnit\\": "src"
15+
}
16+
},
17+
"autoload-dev": {
18+
"psr-4": {
19+
"Cspray\\DatabaseTesting\\PhpUnit\\Tests\\": "tests"
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)