2024-06-08 23:58:45 +00:00
|
|
|
{
|
|
|
|
"name": "bit-badger/pdo-document",
|
2024-06-25 14:42:26 +00:00
|
|
|
"description": "Treat SQLite and PostgreSQL as document stores",
|
|
|
|
"keywords": ["database", "document", "sqlite", "pdo", "postgresql"],
|
2024-06-08 23:58:45 +00:00
|
|
|
"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",
|
2024-07-22 02:02:16 +00:00
|
|
|
"rss": "https://git.bitbadger.solutions/bit-badger/pdo-document.rss",
|
|
|
|
"docs": "https://bitbadger.solutions/open-source/pdo-document/"
|
2024-06-08 23:58:45 +00:00
|
|
|
},
|
|
|
|
"require": {
|
2024-10-01 00:29:12 +00:00
|
|
|
"php": "8.2 - 8.3",
|
2024-07-28 23:21:37 +00:00
|
|
|
"bit-badger/inspired-by-fsharp": "^1",
|
2024-06-08 23:58:45 +00:00
|
|
|
"netresearch/jsonmapper": "^4",
|
2024-07-28 23:45:29 +00:00
|
|
|
"ext-pdo": "*"
|
2024-06-08 23:58:45 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2024-09-27 02:15:00 +00:00
|
|
|
"square/pjson": "^0.5.0",
|
2024-11-17 21:30:53 +00:00
|
|
|
"phpstan/phpstan": "^1.12",
|
|
|
|
"pestphp/pest": "^3.2"
|
2024-06-08 23:58:45 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"BitBadger\\PDODocument\\": "./src",
|
|
|
|
"BitBadger\\PDODocument\\Mapper\\": "./src/Mapper",
|
|
|
|
"BitBadger\\PDODocument\\Query\\": "./src/Query"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2024-06-29 15:46:16 +00:00
|
|
|
"Test\\": "./tests",
|
2024-11-17 21:30:53 +00:00
|
|
|
"Test\\Integration\\": "./tests/Integration",
|
|
|
|
"Test\\Integration\\PostgreSQL\\": "./tests/Integration/PostgreSQL",
|
|
|
|
"Test\\Integration\\SQLite\\": "./tests/Integration/SQLite"
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
2024-06-10 01:12:10 +00:00
|
|
|
},
|
|
|
|
"archive": {
|
|
|
|
"exclude": [ "/tests", "/.gitattributes", "/.gitignore", "/.git", "/composer.lock" ]
|
2024-11-17 21:30:53 +00:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"allow-plugins": {
|
|
|
|
"pestphp/pest-plugin": true
|
|
|
|
}
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
2024-06-25 02:04:11 +00:00
|
|
|
}
|