-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (46 loc) · 1.12 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
{
"name": "mitquinn/currency-captain",
"description": "A simply way to handle currency.",
"type": "library",
"authors": [
{
"name": "Mitchell Quinn",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php" : "^7.2",
"ext-intl" : "*",
"symfony/cache": "^4.0",
"psr/log": "^1.0",
"psr/http-message": "^1.0",
"php-http/httplug": "^1.1",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.3",
"alcohol/iso4217": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"monolog/monolog": "^1.23",
"php-http/mock-client": "^1.1",
"php-http/message": "^1.6",
"guzzlehttp/psr7": "^1.4",
"php-http/guzzle6-adapter": "^1.1"
},
"autoload": {
"psr-4": {
"Currency\\Captain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Currency\\Captain\\": "tests/"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit"
]
}
}