-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
36 lines (36 loc) · 1.03 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
{
"name": "sarciszewski/php-future",
"description": "Polyfill new (5.6+) features into old (5.4+) versions of PHP",
"keywords": [
"security",
"future",
"compatibility",
"hash_equals"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Scott Arciszewski",
"email": "[email protected]",
"homepage": "https://appsec.solutions",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/sarciszewski/php-future/issues",
"email": "[email protected]",
"source": "https://github.com/sarciszewski/php-future"
},
"autoload": {
"files": ["autoload.php"]
},
"require": {
"paragonie/random_compat": "^1|^2|^9",
"paragonie/sodium_compat": "^1|^2",
"ircmaxell/password_compat": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "4.5.*"
}
}