-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
46 lines (46 loc) · 1.19 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
{
"name": "unwiredbrain/php-emv",
"description": "A collection of EMV tools and utilities for PHP 5.3+",
"type": "library",
"keywords": [
"emv",
"codec",
"encoder",
"decoder",
"ber",
"ber-tlv",
"tlv"
],
"homepage": "https://github.com/unwiredbrain/php-emv",
"license": "MIT",
"authors": [
{
"name": "Massimo Lombardo",
"email": "unwiredbrain@gmail.com",
"homepage": "http://unwiredbrain.com"
},
{
"name": "Open Source Community",
"homepage": "https://github.com/unwiredbrain/php-emv/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/unwiredbrain/php-emv/issues",
"wiki": "https://github.com/unwiredbrain/php-emv/wiki",
"source": "https://github.com/unwiredbrain/php-emv"
},
"minimum-stability": "stable",
"require": {
"php": ">=5.3.0",
"ext-ctype": "*"
},
"require-dev": {
"phpunit/phpunit": "4.0.*"
},
"autoload": {
"psr-4": { "Emv\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Emv\\Test\\": "test/" }
}
}