-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.28 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
{
"name": "cyberpearuk/wp-plugin-security",
"description": "Replaces WordPress password functions with native PHP password functions.",
"type": "library",
"authors": [
{
"name": "James Buncle",
"email": "jbuncle@hotmail.com"
}
],
"autoload": {
"psr-4": {
"CyberPear\\WpPluginSecurity\\": "src/"
}
},
"repositories": [
{
"url": "https://nexus.jbuncle.co.uk/repository/composer-private/",
"type": "composer"
},
{
"type": "package",
"package": {
"name": "wordpress/wordpress",
"version": "5.7.2",
"dist": {
"url": "https://github.com/wordpress/wordpress/archive/5.7.2.zip",
"type": "zip"
}
}
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"jbuncle/php-standards": "@stable",
"phpunit/phpunit": "^8.2",
"phpunit/php-code-coverage": "^7.0",
"wordpress/wordpress": "^5.7.2"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}