forked from chriskite/phactory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
23 lines (23 loc) · 786 Bytes
/
composer.json
File metadata and controls
23 lines (23 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "chriskite/phactory",
"description": "A Database Factory for PHP Unit Tests",
"keywords": ["testing","database","mysql","sqlite","mongodb"],
"homepage": "http://phactory.org",
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"ext-mongo": "*"
},
"suggest": {
"ext-pdo": "Allows use of Phactory for testing against SQL databases",
"ext-pdo_mysql": "Allows use of Phactory for testing against MySQL databases",
"ext-pdo_sqlite": "Allows use of Phactory for testing against SQLite databases",
"ext-mongo": "Allows use of Phactory for testing against MongoDB databases"
},
"autoload": {
"psr-0": {"Phactory": "lib/"}
}
}