-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
41 lines (41 loc) · 1007 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
36
37
38
39
40
41
{
"name": "junaidbhura/gumponents",
"description": "Essential Gutenberg components for WordPress.",
"homepage": "https://github.com/junaidbhura/gumponents",
"keywords": [
"wordpress",
"gutenberg",
"react"
],
"authors": [
{
"name":"Junaid Bhura",
"email":"root@junaid.dev",
"homepage":"https://junaid.dev"
}
],
"support" : {
"issues": "https://github.com/junaidbhura/gumponents/issues",
"source": "https://github.com/junaidbhura/gumponents"
},
"type": "wordpress-plugin",
"require": {
"composer/installers": "~1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "^9.6.7",
"wp-coding-standards/wpcs": "*",
"yoast/phpunit-polyfills": "^1.1.0"
},
"scripts": {
"set-coding-standards": "phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs",
"lint": "phpcs",
"test": "phpunit"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}