-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
35 lines (35 loc) · 971 Bytes
/
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
{
"name": "nk-crew/lazy-blocks",
"type": "package",
"description": "Lazy Blocks plugin for WordPress custom block",
"keywords": [
"WordPress",
"Plugins",
"Blocks"
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"wp-coding-standards/wpcs": "^2.3",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-cli/i18n-command": "^2.4",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"php-stubs/wordpress-stubs": "^6.3",
"php-stubs/wordpress-tests-stubs": "^6.3",
"spatie/phpunit-watcher": "^1.23",
"yoast/phpunit-polyfills": "^1.1"
},
"scripts": {
"lint": "phpcs --standard=phpcs.xml.dist",
"format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"test": "phpunit",
"test:watch": "phpunit-watcher watch < /dev/tty",
"wp": "\"vendor/wp-cli/wp-cli/bin/wp\""
},
"config": {
"allow-plugins": true
}
}