-
Notifications
You must be signed in to change notification settings - Fork 94
/
composer.json
44 lines (44 loc) · 1.13 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "aaemnnosttv/wp-sqlite-db",
"description": "SQLite drop-in database driver for WordPress",
"type": "wordpress-dropin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Evan Mattson",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Kojima Toshiyasu",
"homepage": "https://profiles.wordpress.org/kjmtsh",
"role": "Author of SQLite Integration"
}
],
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/src"
}
},
"require": {
"php": ">=5.6",
"ext-PDO": "*",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5 || ^6 || ^7 || ^8 || ^9",
"roots/wordpress": "^6",
"wp-cli/core-command": "^2",
"wp-phpunit/wp-phpunit": "^6",
"yoast/phpunit-polyfills": "^1"
},
"scripts": {
"test": "phpunit"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true,
"composer/installers": true
}
}
}