File: //var/www/html/vendor/florianv/exchanger/composer.json
{
"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": "florian@voutzinos.com",
"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"
}
}