-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
38 lines (38 loc) · 1.16 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
{
"name": "thebrandonallen/edit-author-slug",
"description": "Allows an admin (or capable user) to edit the author slug of a user, and change the author base.",
"type": "wordpress-plugin",
"require": {
"php": ">=5.6.0",
"composer/installers": "^1.12.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^2.3",
"wp-phpunit/wp-phpunit": "^6.6",
"yoast/phpunit-polyfills": "^1.1"
},
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Brandon Allen",
"homepage": "https://github.com/thebrandonallen"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"discard-changes": true,
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": "@php ./vendor/phpunit/phpunit/phpunit"
}
}