-
Notifications
You must be signed in to change notification settings - Fork 64
/
composer.json
executable file
·58 lines (58 loc) · 1.43 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
{
"name": "godaddy/go",
"type": "wordpress-theme",
"authors": [
{
"name": "GoDaddy",
"homepage": "http://www.godaddy.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Go\\": "includes/classes/"
}
},
"repositories": [
{
"type":"composer",
"url":"https://wpackagist.org"
}
],
"extra": {
"installer-paths": {
"../../plugins/{$name}/": [
"type:wordpress-plugin"
]
}
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"oomphinc/composer-installers-extender": true
}
},
"require": {
"php": ">=7.4",
"oomphinc/composer-installers-extender": "^2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"johnpbloch/wordpress-core": "^6.0.1",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^2.1",
"phpunit/phpunit": "^9.5.21",
"wp-phpunit/wp-phpunit": "^6.0.1",
"yoast/phpunit-polyfills": "^1.1.0"
},
"scripts": {
"lint": "@php ./vendor/bin/phpcs --standard=phpcs.xml --extensions=php --colors -s -p -v ./",
"test": "@php ./vendor/bin/phpunit",
"install-phpunit": ".dev/deploy-scripts/local-install-wp-tests.sh wordpress_test root '' localhost latest"
}
}