ahmetbarut/pixabay

1 2020-08-22 17:57 UTC

This package is auto-updated.

Last update: 2024-03-29 04:18:50 UTC


README

Pixabay için php api.

Kurulum

    composer require ahmetbarut/pixabay

Basit Kullanım

    require_once "./vendor/autoload.php";

    use Pixabay\Client;

    $pixabay = new Client([
        "key" => "api_key",
        "lang" => "tr",
        "image_type" => "photo",
        "q" => "kediler"
    ]);

    $response = $pixabay->body();

    print_r($response->hits);

Dökümantasyon