forked from 10up/distributor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 702 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 702 Bytes
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
{
"name": "10up/distributor",
"type": "wordpress-plugin",
"authors": [
{
"name": "Taylor Lovett",
"email": "taylor.lovett@10up.com"
}
],
"require": {
"php": ">=5.6",
"yahnis-elsts/plugin-update-checker": "^4.4"
},
"autoload": {
"psr-4": {
"Distributor\\": "includes/classes/"
}
},
"require-dev": {
"10up/wp_mock": "~0.4",
"phpunit/phpunit": "~7.5",
"10up/phpcs-composer": "dev-master",
"10up/wpacceptance": "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
}