-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
54 lines (54 loc) · 1.33 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
47
48
49
50
51
52
53
54
{
"name": "fortis/iso-currency",
"description": "A PHP library providing ISO 4217 currencies. Work with currencies by the standard to avoid confusions.",
"type": "library",
"keywords": [
"money",
"currency",
"iso-currency",
"ISO 4217",
"4217",
"ISO",
"currencies",
"library"
],
"homepage": "https://github.com/fortis/iso-currency",
"license": "MIT",
"authors": [
{
"name": "Alan Bondarchuk",
"email": "imacoda@gmail.com"
}
],
"support": {
"issues": "https://github.com/fortis/iso-currency/issues",
"source": "https://github.com/fortis/iso-currency"
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.5",
"satooshi/php-coveralls": "1.*",
"twig/twig": "^1.34",
"php-http/httplug": "^1.1",
"php-http/guzzle6-adapter": "^1.1",
"php-http/message": "^1.6"
},
"autoload": {
"psr-4": {
"Currency\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Currency\\Tests\\": "tests",
"CurrencyGenerator\\": "generator/"
}
},
"scripts": {
"iso-currency-generate": [
"php ./bin/generate.php"
]
}
}