-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.16 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.16 KB
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
{
"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": {
"composer/installers": "^1.0 || ^2.0",
"yahnis-elsts/plugin-update-checker": "5.1",
"bjeavons/zxcvbn-php": "^1.0"
},
"require-dev": {
"10up/phpcs-composer": "^3.0"
},
"scripts": {
"lint": "./vendor/bin/phpcs --standard=phpcs.xml",
"lint-fix": "./vendor/bin/phpcbf --standard=phpcs.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}