ph-7 / image-unsplash
Get easily any Unsplash images with a clean PHP class
v3.2
2017-09-04 08:20 UTC
Requires
- php: >=7.1.0
Requires (Dev)
- phpunit/phpunit: ^6.3
This package is auto-updated.
Last update: 2024-11-13 13:41:48 UTC
README
Get Unsplash Images Easily
Get easily any Unsplash images with a clean PHP class.
It's a really lightweight and simple PHP class that helps you to get easily any images from Unsplash.com while keeping your project clean.
Example
use PH7\Image\Unsplash; $unsplash = new Unsplash(); $unsplash->setWidth(600) ->setHeight(400) ->setQuality(80) ->setImageId('photo-1462045504115-6c1d931f07d1'); echo '<img src="' . $unsplash->getImage() . '">'; $unsplash->setImageId('photo-1500045992661-f978470eaf7b'); $unsplash->setFit(Unsplash::MAX_FIT); echo '<img src="' . $unsplash->getImage() . '">';
Installation
- Install Composer (https://getcomposer.org)
- Include it in your project:
composer require ph-7/image-unsplash
Requirements
- PHP 7.1 or higher
- Composer
Author
Made with ♥ and care by Pierre-Henry Soria
License
MIT License. Enjoy! 😃