-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
34 lines (34 loc) · 926 Bytes
/
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
{
"name": "ksungcaya/phpass-laravel",
"description": "PHPass Hashing integration to Laravel 5",
"keywords": ["phpass", "laravel", "hashing", "password"],
"license": "MIT",
"authors": [
{
"name": "Kenneth Sungcaya",
"email": "ksungcaya@gmail.com"
}
],
"require-dev": {
"phpspec/phpspec": "~2.0"
},
"require": {
"php": ">=5.4.0",
"illuminate/contracts": "5.0.x|5.1.x|5.2.x|5.3.x|5.4.x|5.5.x|5.6.x|5.7.x",
"illuminate/support": "5.0.x|5.1.x|5.2.x|5.3.x|5.4.x|5.5.x|5.6.x|5.7.x",
"hautelook/phpass": "*"
},
"autoload": {
"psr-4": {
"Sungcaya\\Phpass\\": "src/Sungcaya/Phpass"
}
},
"minimum-stability" : "stable",
"extra": {
"laravel": {
"providers": [
"Sungcaya\\Phpass\\PhpassHashServiceProvider"
]
}
}
}