-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
45 lines (45 loc) · 1.07 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
{
"name": "10up/10up-experience",
"description": "The 10up Experience plugin configures WordPress to better protect and inform clients, aligned to 10up's best practices",
"minimum-stability": "dev",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"10up"
],
"homepage": "https://github.com/10up/10up-experience",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "10up",
"homepage": "https://10up.com/"
}
],
"autoload": {
"psr-4": {
"TenUpExperience\\": "./includes/classes/"
}
},
"support": {
"issues": "https://github.com/10up/10up-experience/issues",
"source": "https://github.com/10up/10up-experience"
},
"require": {
"yahnis-elsts/plugin-update-checker": "5.1",
"bjeavons/zxcvbn-php": "^1.0"
},
"require-dev": {
"10up/phpcs-composer": "dev-trunk"
},
"scripts": {
"lint": "phpcs --extensions=php --warning-severity=8 -s .",
"lint-fix": "phpcbf ."
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}