forked from 10up/distributor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (50 loc) · 1.38 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
{
"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",
"authors": [
{
"name": "10up",
"email": "[email protected]"
}
],
"repositories": [
{
"type":"package",
"package": {
"name": "georgestephanis/application-passwords",
"version":"0.1.1",
"source": {
"url": "https://github.com/WordPress/application-passwords.git",
"type": "git",
"reference":"aaa502d70190d13fbc45d58ff47db1635f7dbe1c"
}
}
}
],
"require": {
"php": ">=5.6",
"yahnis-elsts/plugin-update-checker": "^4.4",
"georgestephanis/application-passwords": "0.1.1",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Distributor\\": "includes/classes/"
}
},
"require-dev": {
"10up/wpacceptance": "dev-master",
"10up/wp_mock": "~0.4",
"phpunit/phpunit": "~7.5",
"10up/phpcs-composer": "dev-master"
},
"scripts": {
"lint": "./vendor/bin/phpcs . --runtime-set testVersion 5.6-",
"lint-fix": "phpcbf . --runtime-set testVersion 5.6-"
},
"minimum-stability": "dev",
"prefer-stable": true
}