alzpk/restcountries-php-api-wrapper

Restcountries.com API PHP wrapper

1.0.1 2022-07-25 15:53 UTC

This package is auto-updated.

Last update: 2024-10-25 20:45:22 UTC


README

Requirements

{
  "php": "^7.4|^8.0",
  "guzzlehttp/guzzle": "^7.4",
  "ext-json": "*"
}

Installation

composer require alzpk/restcountries-php-api-wrapper

Usage examples

$client = new \Alzpk\RestCountriesPhpApiWrapper\RestCountriesClient();

// Fetch all countries
$countries = $client->all();

// Fetch countries by searching names
$countries = $client->searchByName('Denmark');

Client Map

More info

Check https://github.com/amatosg/restcountries for more info.