-
Notifications
You must be signed in to change notification settings - Fork 138
/
composer.json
52 lines (52 loc) · 1.3 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
{
"name": "florianv/swap",
"description": "Exchange rates library for PHP",
"keywords": ["currency", "money", "rate", "conversion", "exchange rates"],
"license": "MIT",
"authors": [
{
"name": "Florian Voutzinos",
"email": "[email protected]",
"homepage": "https://voutzinos.com"
}
],
"autoload": {
"psr-4": {
"Swap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swap\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.1.3 || ^8.0",
"florianv/exchanger": "^2.0",
"symfony/http-client": "^5.4",
"php-http/message-factory": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^7 || ^8 || ^9",
"php-http/mock-client": "^1.0",
"php-http/message": "^1.7",
"nyholm/psr7": "^1.0",
"php-http/discovery": "^1.0"
},
"suggest": {
"php-http/discovery": "If you are not using `useHttpClient` but instead want to auto-discover HttpClient"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}