-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
42 lines (42 loc) · 1011 Bytes
/
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
{
"name": "tonicforhealth/dukpt",
"description": "Derived unique key per transaction (ANSI X9.24 part 1)",
"homepage": "https://github.com/tonicforhealth/dukpt",
"license": "MIT",
"keywords": ["tonicforhealth", "dukpt"],
"authors": [
{
"name": "Vitalii Ekert",
"email": "vitalii.ekert@tonicforhealth.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.5 || ^7.0",
"ext-openssl": "*",
"lib-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.3",
"phpunit/php-invoker": "^1.1"
},
"autoload": {
"psr-4": {
"TonicForHealth\\DUKPT\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TonicForHealth\\DUKPT\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}