-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 767 Bytes
/
Copy pathcomposer.json
File metadata and controls
34 lines (34 loc) · 767 Bytes
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
{
"name": "leigh/php-cryptopals",
"description": "The Matasano crypto challenges completed using PHP",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Leigh",
"homepage": "https://github.com/lt"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/lt/PHP-AES"
},
{
"type": "vcs",
"url": "https://github.com/lt/PHP-MT19937"
}
],
"require": {
"php-64bit": ">=7.0",
"ext-gmp": "*",
"leigh/PHP-AES": "dev-master#4ee9e5ec9015b595a76af44f296b760bfd7aa6ef",
"leigh/mt-rand": "dev-master#6e3c7a31f791e929f341b2946dcf987dd04b1051",
"rdlowrey/auryn": "~1.4.0"
},
"autoload": {
"psr-4": {
"Cryptopals\\": "Cryptopals"
}
}
}