-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
52 lines (52 loc) · 1.18 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
49
50
51
52
{
"name": "mikemclin/laravel-wp-password",
"description": "Laravel package that checks and creates WordPress password hashes",
"version": "2.0.3",
"type": "laravel-package",
"keywords": [
"laravel",
"wordpress",
"password",
"hashing"
],
"homepage": "https://github.com/mikemclin/laravel-wp-password",
"license": "MIT",
"authors": [
{
"name": "Mike McLin",
"email": "mike@mikemclin.com",
"homepage": "http://mikemclin.net"
}
],
"support": {
"issues": "https://github.com/mikemclin/laravel-wp-password/issues"
},
"require": {
"php": ">=5.3.0",
"illuminate/support": ">=4.0.0",
"bordoni/phpass": "0.3.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"satooshi/php-coveralls": "^2.2"
},
"autoload": {
"psr-4": {
"MikeMcLin\\WpPassword\\": "src/"
}
},
"replace": {
"mikemclin/laravel-wp-password": "self.version"
},
"extra": {
"laravel": {
"providers": [
"MikeMcLin\\WpPassword\\WpPasswordProvider"
],
"aliases": {
"WpPassword": "MikeMcLin\\WpPassword\\Facades\\WpPassword"
}
}
}
}