-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 loc) · 1.14 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": "bwp/recaptcha",
"type": "wordpress-plugin",
"description": "A WordPress plugin that utilizes the popular anti-spam library, reCAPTCHA, to help your blog stay clear of spams.",
"homepage": "http://betterwp.net",
"license": "GPLv3",
"repositories": [
{
"type": "git",
"url": "https://github.com/kminh/bwp-framework"
},
{
"type": "composer",
"url": "http://wpackagist.org"
}
],
"authors": [
{
"name": "Khang Minh",
"email": "[email protected]"
}
],
"require": {
"kminh/bwp-framework": "3.4.*@dev",
"google/recaptcha": "^1.1",
"composer/installers": "~1.0"
},
"require-dev": {
"wpackagist-plugin/akismet": "~3.1",
"wpackagist-plugin/contact-form-7": "~4.0"
},
"autoload": {
"classmap": [
"includes/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"installer-paths": {
"vendor/wp-plugin/{$name}/": ["type:wordpress-plugin"]
}
}
}