-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.46 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
{
"name": "zachwatkins/wordpress-plugin-name",
"description": "A template WordPress plugin.",
"type": "project",
"scripts": {
"preserve": "./.bin/pre-serve.sh",
"serve": "@php -S localhost:8080 -t wordpress -d xdebug.remote_autostart=0 -d xdebug.remote_enable=0 -d xdebug.profiler_enable=0",
"serve:debug": "@php -S localhost:8080 -t wordpress -d xdebug.mode=develop,debug,trace",
"test": [
"@putenv WP_SQLITE_MODE=enabled",
"./vendor/bin/phpunit -c .config/phpunit.xml.dist"
],
"lint": "phpcs --report-full --report-summary",
"format": "phpcbf --report-summary",
"lint:errors": "phpcs -n"
},
"license": "GPL-2.0+",
"authors": [
{
"name": "Zachary K. Watkins",
"email": "zwatkins.it@gmail.com",
"homepage": "https://github.com/zachwatkins"
}
],
"config": {
"platform": {
"php": "8.1"
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"bin-compat": "full",
"allow-plugins": {
"roots/wordpress-core-installer": true,
"composer/installers": true
}
},
"require": {
"thoughtful-web/settings-page-wp": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"roots/wordpress": "^6.2",
"wordpress/sqlite-database-integration": "^2.1",
"wp-phpunit/wp-phpunit": "^6.2",
"yoast/phpunit-polyfills": "^2.0"
},
"repositories": [
{
"url": "https://github.com/wordpress/sqlite-database-integration.git",
"type": "git"
}
],
"minimum-stability": "stable",
"prefer-stable": true
}