-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
36 lines (36 loc) · 849 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
{
"name": "andrewcarteruk/cryptokey",
"description": "A command line tool for generating keys using a CSPRNG.",
"keywords": [
"key",
"gen",
"keygen",
"generator",
"crypto"
],
"homepage": "http://github.com/AndrewCarterUK/CryptoKey",
"license": "MIT",
"authors" : [
{
"name": "Andrew Carter",
"email": "andrewcarter1992@gmail.com",
"homepage": "http://andrewcarteruk.github.io/"
}
],
"require": {
"php": ">=5.4",
"paragonie/random_compat": "^1.1|^2.0",
"symfony/console": "^2.8|^3.2"
},
"require-dev": {
"phpunit/phpunit": "~4.4"
},
"autoload": {
"psr-4": {
"AndrewCarterUK\\CryptoKey\\": "src/"
}
},
"bin": [
"cryptokey"
]
}