-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a forked version of sqllite driver (#37)
Attempt to see if it will work on WP 6.5
- Loading branch information
Showing
1 changed file
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -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, | ||
|