-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 821 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 821 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
{
"name": "camcima/dukpt-php",
"type": "library",
"description": "DUKPT implementation in PHP",
"keywords": ["dukpt", "php", "des", "3des", "tripledes", "cryptography", "transaction", "encryption", "decryption"],
"homepage": "https://github.com/camcima/dukpt-php",
"license": "MIT",
"authors": [
{
"name": "Carlos Cima",
"role": "Developer"
},
{
"name": "Yuri Teixeira",
"email": "oyuriteixeira@gmail.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.0",
"phpseclib/phpseclib": "^2.0"
},
"autoload": {
"psr-0": {
"DUKPT": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8"
}
}