-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
47 lines (47 loc) · 1.26 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
{
"name": "valorin/random",
"description": "Random is a simple helper package designed to make it easy to generate a range of different cryptographically secure random values.",
"license": "MIT",
"type": "library",
"keywords": [
"PHP"
],
"authors": [
{
"name": "Stephen Rees-Carter",
"email": "stephen@rees-carter.net",
"homepage": "https://stephenreescarter.net/"
}
],
"homepage": "https://github.com/valorin/random",
"support": {
"issues": "https://github.com/valorin/random/issues",
"source": "https://github.com/valorin/random"
},
"require": {
"php": "^7.1 || ^8.0",
"arokettu/random-polyfill": "^1.0"
},
"require-dev": {
"illuminate/support": "^5.0 || ^10.0 || ^11.0",
"phpunit/phpunit": "^7.0 || ^9.6 || ^10.5"
},
"autoload": {
"psr-4": {
"Valorin\\Random\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": false
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}