forked from GrafiteInc/Crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 870 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
35
36
37
38
{
"name": "grafite/crypto",
"description": "Cryptography tools for Laravel and Lumen",
"license": "MIT",
"authors": [
{
"name": "Matt Lantz",
"email": "mattlantz@gmail.com"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/support": "5.*",
"ramsey/uuid": "^3.8"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"mockery/mockery": "^0.9.4",
"mikey179/vfsStream": "^1.6",
"orchestra/testbench": "^3.3"
},
"autoload": {
"psr-4": {
"Grafite\\Crypto\\": "src/"
},
"files": [
"src/Helpers/crypto.php"
]
},
"extra": {
"laravel": {
"providers": [
"Grafite\\Crypto\\CryptoProvider"
]
}
},
"minimum-stability": "stable"
}