-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
98 lines (98 loc) · 2.66 KB
/
composer.json
File metadata and controls
98 lines (98 loc) · 2.66 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "nziswano/wordpress-docker",
"description": "Dockerized Wordpress using Composer",
"keywords": [
"wordpress",
"blog",
"cms"
],
"type": "project",
"homepage": "https://www.nziswano.co.za",
"license": "GPL-2.0+",
"authors": [
{
"name": "WordPress Community",
"homepage": "http://wordpress.org/about/"
},
{
"name": "Johan Martin",
"homepage": "https://www.nziswano.co.za",
"email": "martin.johan@nziswano.co.za",
"role": "developer"
}
],
"support": {
"email": "info@nziswano.co.za"
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"require": {
"vlucas/phpdotenv": "*",
"johnpbloch/wordpress-core": ">=6",
"johnpbloch/wordpress-core-installer": "^2.0",
"wpackagist-plugin/wp-openapi": "*"
},
"require-dev": {
"captainhook/captainhook": "^5.18",
"civicrm/cli-tools": "^2025.04",
"consolidation/robo": "^4.0",
"friendsofphp/php-cs-fixer": "@stable",
"phpcompatibility/phpcompatibility-wp": "@stable",
"phpmd/phpmd": "@stable",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "*@stable",
"rector/rector": "^0.18.6",
"squizlabs/php_codesniffer": "3.*",
"vimeo/psalm": "^5.15",
"wp-coding-standards/wpcs": "@stable",
"yoast/phpunit-polyfills": "^2.0"
},
"config": {
"vendor-dir": "vendor",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"civicrm/composer-downloads-plugin": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"johnpbloch/wordpress-core-installer": true
},
"platform": {
"php": "7.4"
}
},
"extra": {
"wordpress-install-dir": "wordpress",
"installer-paths": {
"wordpress/wp-content/plugins/{$name}": [
"type:wordpress-plugin"
],
"wordpress/wp-content/mu-plugins/{$name}": [
"type:wordpress-muplugin"
],
"wordpress/wp-content/themes/{$name}": [
"type:wordpress-theme"
]
}
},
"scripts": {
"compat": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --standard=phpcompat.xml.dist --report=summary,source",
"format": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --report=summary,source",
"lint": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --report=summary,source",
"lint:errors": "@lint -n",
"test": [
"Composer\\Config::disableProcessTimeout",
"@php ./vendor/phpunit/phpunit/phpunit"
]
}
}