-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
57 lines (57 loc) · 1.1 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
53
54
55
56
57
{
"name": "duzun/p2peg",
"type": "library",
"description": "Peer to Peer Entropy Generator (or Random numbers generator with p2p seeding)",
"version": "0.6.6",
"minimum-stability": "RC",
"prefer-stable": true,
"author": {
"name": "Dumitru Uzun",
"email": "[email protected]",
"url": "http://DUzun.Me/"
},
"main": "P2PEG.php",
"autoload": {
"classmap": [
"P2PEG.php"
]
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/duzun/P2PEG/issues",
"source": "https://github.com/duzun/P2PEG"
},
"homepage": "https://github.com/duzun/P2PEG",
"keywords": [
"P2P",
"random",
"entropy",
"cryptography",
"javascript",
"PHP",
"RNG",
"PRNG",
"seed"
],
"repository": {
"type": "git",
"url": "https://github.com/duzun/P2PEG.git"
},
"archive": {
"exclude": [
"/tests",
"/tools",
"/docs",
"/scripts",
"/.*"
]
},
"license": "MIT",
"require": {
"php": ">=5.0.0"
},
"require-dev": {
"apigen/apigen": "~4.1@RC",
"phpunit/phpunit": "^6.1"
}
}