-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
32 lines (32 loc) · 909 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
{
"name": "scrothers/libsodium-laravel",
"description": "Laravel bindings for libsodium in the encrypter and hasher",
"type": "library",
"homepage": "https://github.com/scrothers/libsodium-laravel",
"require": {
"php": ">=5.5.9",
"ext-libsodium": "*",
"illuminate/contracts": "5.1.*|5.2.*",
"illuminate/encryption": "5.1.*|5.2.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"nesbot/carbon": "~1.14"
},
"license": "MIT",
"authors": [
{
"name": "Steven Crothers",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"scrothers\\laravelsodium\\": "src/"
}
},
"support": {
"issues": "https://github.com/scrothers/libsodium-laravel/issues",
"source": "https://github.com/scrothers/libsodium-laravel"
}
}