-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
67 lines (67 loc) · 1.82 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
60
61
62
63
64
65
66
67
{
"name": "kasparsd/contact-form-7-extras",
"description": "Simple controls for some of the advanced Contact Form 7 plugin functionality.",
"homepage": "https://formcontrols.com",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Kaspars Dambis",
"homepage": "https://kaspars.net"
}
],
"support": {
"issues": "https://github.com/kasparsd/contact-form-7-extras/issues",
"source": "https://github.com/kasparsd/contact-form-7-extras",
"docs": "https://formcontrols.com/docs"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"require-dev": {
"wp-coding-standards/wpcs": "^3.1",
"roots/wordpress": "^6.7",
"wpackagist-plugin/contact-form-7": "^6.0",
"roots/wordpress-core-installer": "^1.100",
"wpackagist-theme/twentytwentyfive": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"wp-phpunit/wp-phpunit": "^6.7",
"yoast/phpunit-polyfills": "^3.0",
"wpackagist-plugin/query-monitor": "^3.17",
"wpackagist-plugin/wp-mail-debugger": "^1.1",
"wpackagist-plugin/tablepress": "^3.0"
},
"scripts": {
"lint": [
"phpcs",
"composer validate"
],
"format": [
"phpcbf"
],
"test": [
"phpunit"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true,
"composer/installers": true
}
},
"extra": {
"wordpress-install-dir": "tools/local/wordpress",
"installer-paths": {
"tools/local/wp-content/plugins/{$name}/": [ "type:wordpress-plugin" ],
"tools/local/wp-content/themes/{$name}/": [ "type:wordpress-theme" ]
}
}
}