Daniel J. Summers
1ab961e35a
- Add SQLite throwaway DB implementation - Add integration tests for Custom class
24 lines
567 B
JSON
24 lines
567 B
JSON
{
|
|
"name": "bit-badger/pdo-document",
|
|
"require": {
|
|
"netresearch/jsonmapper": "^4",
|
|
"ext-pdo": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^11"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"BitBadger\\PDODocument\\": "./src",
|
|
"BitBadger\\PDODocument\\Mapper\\": "./src/Mapper",
|
|
"BitBadger\\PDODocument\\Query\\": "./src/Query"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Test\\Unit\\": "./tests/unit",
|
|
"Test\\Integration\\": "./tests/integration",
|
|
"Test\\Integration\\SQLite\\": "./tests/integration/sqlite"
|
|
}
|
|
}
|
|
} |