forked from florianv/exchanger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.5 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": "florianv/exchanger",
"type": "library",
"description": "Currency exchange rates framework for PHP",
"keywords": ["currency", "money", "rate", "conversion", "exchange rates"],
"homepage": "https://github.com/florianv/exchanger",
"license": "MIT",
"authors": [
{
"name": "Florian Voutzinos",
"email": "[email protected]",
"homepage": "https://voutzinos.com"
}
],
"autoload": {
"psr-4": {
"Exchanger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Exchanger\\": "tests/"
}
},
"require": {
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"php": "^7.1.3 || ^8.0",
"php-http/httplug": "^1.0 || ^2.0",
"php-http/discovery": "^1.6",
"php-http/message-factory": "^1.0.2",
"php-http/client-implementation": "^1.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7 || ^8 || ^9.4",
"php-http/message": "^1.7",
"php-http/mock-client": "^1.0",
"nyholm/psr7": "^1.0"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"suggest": {
"php-http/message": "Required to use Guzzle for sending HTTP requests",
"php-http/guzzle6-adapter": "Required to use Guzzle for sending HTTP requests"
}
}