Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a forked version of sqllite driver #37

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,17 @@
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/dingo-d/wp-sqlite-db"
}
],
"require": {
"ext-json": "*",
"ext-zip": "*",
"php": "^7.4 || ^8.0",
"aaemnnosttv/wp-sqlite-db": "^1.2",
"aaemnnosttv/wp-sqlite-db": "^1.0.0",
"guzzlehttp/guzzle": "^7.4",
"pestphp/pest": "^1.2",
"symfony/filesystem": "^5.4",
Expand Down Expand Up @@ -61,6 +67,13 @@
"@test:unit"
]
},
"scripts-descriptions": {
"test:types": "Run the PHPStan script cagainst the entire codebase.",
"test:style": "Run the PHPCS script against the entire codebase.",
"test:unit": "Run unit tests.",
"test:coverage": "Run unit tests with code coverage.",
"test": "Run all checks and tests."
},
"config": {
"allow-plugins": {
"composer/installers": true,
Expand Down
Loading