-
Notifications
You must be signed in to change notification settings - Fork 156
/
composer.json
43 lines (43 loc) · 1.12 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
{
"name": "10up/distributor",
"type": "wordpress-plugin",
"description": "Distributor is a WordPress plugin that makes it easy to distribute and reuse content across your websites — whether in a single multisite or across the web.",
"homepage": "https://distributorplugin.com/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "10up",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"yahnis-elsts/plugin-update-checker": "5.1",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Distributor\\": "includes/classes/"
}
},
"require-dev": {
"10up/phpcs-composer": "dev-master",
"10up/wp_mock": "~0.4",
"phpunit/phpunit": ">=7.0 <9.0",
"yoast/phpunit-polyfills": "^1.0",
"automattic/vipwpcs": "^2.3"
},
"scripts": {
"lint": "@php phpcs . --runtime-set testVersion 7.4-",
"lint-fix": "phpcbf .",
"test": "@php phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}