44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "bit-badger/pdo-document",
|
|
"description": "Treat SQLite (and soon PostgreSQL) as a document store",
|
|
"keywords": ["database", "document", "sqlite", "pdo"],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Daniel J. Summers",
|
|
"email": "daniel@bitbadger.solutions",
|
|
"homepage": "https://bitbadger.solutions",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"support": {
|
|
"email": "daniel@bitbadger.solutions",
|
|
"source": "https://git.bitbadger.solutions/bit-badger/pdo-document",
|
|
"rss": "https://git.bitbadger.solutions/bit-badger/pdo-document.rss"
|
|
},
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"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"
|
|
}
|
|
},
|
|
"archive": {
|
|
"exclude": [ "/tests", "/.gitattributes", "/.gitignore", "/.git", "/composer.lock" ]
|
|
}
|
|
} |