pdo-document/composer.json
Daniel J. Summers 1ab961e35a Change PDO to singleton instance
- Add SQLite throwaway DB implementation
- Add integration tests for Custom class
2024-06-07 22:14:17 -04:00

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"
}
}
}