-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
53 lines (53 loc) · 1.15 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
{
"name": "wp-digital/wp-start-up",
"version": "1.0.0",
"type": "wordpress-muplugin",
"description": "WPStartUp plugin does initial setup after WordPress installation. Create projects in Bugsnag and Pingdom.",
"license": "GPL-2.0+",
"keywords": [
"wordpress",
"plugins",
"initial",
"setup",
"integrations",
"bugsnag",
"pingdom"
],
"authors": [
{
"name": "SMFB Dinamo",
"email": "[email protected]",
"homepage": "https://smfb-dinamo.com/"
},
{
"name": "Oleksandr Zhyian",
"email": "[email protected]"
},
{
"name": "Viktor Kuliebiakin",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*"
},
"require-dev": {
"innocode-digital/php-cs": "^1.0",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml",
"phpcbf": "vendor/bin/phpcbf --standard=phpcs.xml"
},
"autoload": {
"psr-4": {
"WPD\\WPStartUp\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}