-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
41 lines (41 loc) · 1.1 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
{
"name": "studiopress/genesis-custom-blocks",
"type": "wordpress-plugin",
"description": "The easy way to build custom blocks for Gutenberg.",
"homepage": "https://github.com/studiopress/genesis-custom-blocks",
"license": "GPL-2.0",
"require": {
"php": "^7 || ^8"
},
"require-dev": {
"brain/monkey": "^2",
"dealerdirect/phpcodesniffer-composer-installer": "^1",
"mockery/mockery": "^1",
"phpcompatibility/phpcompatibility-wp": "^2.1.4",
"squizlabs/php_codesniffer": "^3.7.2",
"wp-coding-standards/wpcs": "dev-develop#2.3.0-fix-vsprintf",
"phpunit/phpunit": "^5.7 || ^7 || ^9",
"yoast/phpunit-polyfills": "^1"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Genesis\\CustomBlocks\\": "php/"
}
},
"scripts": {
"lint": [
"phpcs"
],
"lint-fix": [
"phpcbf"
],
"test": [
"phpunit"
]
}
}