Files
pdo-document/composer.json
T

47 lines
1.3 KiB
JSON
Raw Normal View History

2024-06-08 23:58:45 +00:00
{
"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": {
2024-06-11 11:07:56 +00:00
"php": ">=8.2",
2024-06-08 23:58:45 +00:00
"netresearch/jsonmapper": "^4",
2024-06-24 22:04:11 -04:00
"ext-pdo": "*",
"phpoption/phpoption": "^1.9"
2024-06-08 23:58:45 +00:00
},
"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",
2024-06-21 13:46:41 +00:00
"Test\\Integration\\PostgreSQL\\": "./tests/integration/postgresql",
2024-06-08 23:58:45 +00:00
"Test\\Integration\\SQLite\\": "./tests/integration/sqlite"
}
2024-06-09 21:12:10 -04:00
},
"archive": {
"exclude": [ "/tests", "/.gitattributes", "/.gitignore", "/.git", "/composer.lock" ]
2024-06-08 23:58:45 +00:00
}
2024-06-24 22:04:11 -04:00
}