-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.7 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
{
"name": "arokettu/random-polyfill",
"description": "Random Extension Polyfill for PHP",
"keywords": ["random", "polyfill"],
"type": "library",
"license": "BSD-3-Clause",
"homepage": "https://sandfox.dev/php/random-polyfill.html",
"support": {
"issues": "https://github.com/arokettu/php-random-polyfill/issues",
"source": "https://github.com/arokettu/php-random-polyfill",
"docs": "https://php-random-polyfill.readthedocs.io/",
"chat": "https://gitter.im/arokettu/community"
},
"authors": [{
"name": "Anton Smirnov",
"email": "[email protected]",
"role": "developer",
"homepage": "https://sandfox.me/"
}],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
},
"sort-packages": true
},
"autoload": {
"psr-0": {
"Arokettu\\Random\\": "src",
"Random\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Arokettu\\Random\\Tests\\": "tests"
}
},
"require": {
"php": "^7.1 | ^8.0",
"arokettu/unsigned": "^1.2.1",
"symfony/polyfill-php80": "^1.22",
"symfony/polyfill-php81": "^1.22",
"symfony/polyfill-php82": "^1.27"
},
"require-dev": {
"phpunit/phpunit": "^7.5 | ^8.5 | 9.5.*",
"psy/psysh": "*",
"sandfox.dev/code-standard": "^1",
"squizlabs/php_codesniffer": "*",
"vimeo/psalm": "^4.24"
},
"provide": {
"ext-random": "8.2.0"
},
"suggest": {
"ext-gmp": "For significantly faster calculation"
}
}