composer.json
{
"name": "otherguy/php-currency-api",
"description": "A PHP API Wrapper to offer a unified programming interface for popular Currency Rate APIs.",
"keywords": [
"currency",
"currency rates",
"exchange rates",
"currency conversion",
"currency",
"currency-exchange-rates",
"composer-package",
"php-library",
"currency-converter-php",
"currency-api",
"exchange-rates",
"currency-rate-apis",
"fluent-interface",
"api-wrapper",
"currency-converter",
"currency-conversion",
"currency-exchange",
"exchange-rate-api",
"exchange-rates-api",
"php-package",
"php8",
"php74",
"php73"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexander Graf",
"email": "alex@otherguy.io"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.2"
},
"require-dev": {
"nikic/php-parser": "^4.10",
"php-coveralls/php-coveralls": "^2.4",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.4"
},
"suggest": {
"ext-curl": "Faster HTTP requests"
},
"autoload": {
"psr-4": {
"Otherguy\\Currency\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Currency\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}