-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
59 lines (59 loc) · 1.32 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
58
59
{
"name": "clickalicious/rng",
"description": "The secure Pseudo Random Number Generator (PRNG) for PHP.",
"type": "library",
"authors": [
{
"name": "Benjamin Carl",
"email": "[email protected]",
"homepage": "https://www.clickalicious.de",
"role": "Lead"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=5.6.0",
"ext-openssl": "*",
"roave/security-advisories": "dev-master as 1.0.x-dev",
"paragonie/random_compat": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"codacy/coverage": "^1.0.5",
"symfony/var-dumper": "^3.2"
},
"autoload": {
"psr-4": {
"Clickalicious\\Rng\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clickalicious\\Rng\\": "tests/"
}
},
"keywords": [
"RNG",
"PRNG",
"Random",
"Randomize",
"Number",
"Generator",
"mersenne",
"mtcrypt",
"openssl"
],
"homepage": "https://github.com/clickalicious/rng",
"license": "MIT",
"support": {
"email": "[email protected]",
"issues": "https://github.com/clickalicious/rng/issues",
"wiki": "https://github.com/clickalicious/rng/wiki",
"tests": "https://clickalicious.github.io/rng"
},
"config": {
"bin-dir": "bin",
"preferred-install": "dist"
}
}