-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
59 lines (59 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "wordpress/sqlite-database-integration",
"license": "GPL-2.0-or-later",
"description": "SQLite integration plugin for WordPress.",
"homepage": "https://github.com/wordpress/sqlite-database-integration",
"keywords": [ "wordpress", "plugin", "database", "sqlite" ],
"support": {
"issues": "https://github.com/wordpress/sqlite-database-integration/issues"
},
"require": {
"php": ">=7.0",
"ext-pdo": "*",
"ext-pdo_sqlite": "*"
},
"require-dev": {
"ext-mbstring": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/phpcompatibility-wp": "*",
"php-parallel-lint/php-parallel-lint": "^1.3",
"yoast/phpunit-polyfills": "2.0.0",
"phpunit/phpunit": "8.5.38"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"process-timeout": 3600
},
"scripts": {
"check-cs": [
"@php ./vendor/bin/phpcs"
],
"fix-cs": [
"@php ./vendor/bin/phpcbf"
],
"test": [
"phpunit"
],
"wp-setup": [
"./wp-setup.sh"
],
"wp-run": [
"npm --prefix wordpress run"
],
"wp-test-start": [
"npm --prefix wordpress run env:start",
"npm --prefix wordpress run env:install"
],
"wp-test-phpunit": [
"npm --prefix wordpress run test:php --"
],
"wp-test-clean": [
"npm --prefix wordpress run env:clean"
]
}
}