Git Product home page Git Product logo

gravel's Introduction

Gravel

Build Status Code Coverage Scrutinizer Code Quality Code Climate Latest Stable Version Latest Unstable Version License

Gravel is a PHP library for working with Gravatar avatars.

Gravel is written and maintained by Bobby Allen, the library is licensed under the MIT license.

Requirements

This library is developed and tested for PHP 5.3+

This library is unit tested against PHP 5.3, 5.4, 5.5, 5.6, HHVM and 7.0!

License

This client library is released under the MIT license, a copy of the license is provided in this package.

Installation

The recommended way of installing Gravel is via. Composer; To install using Composer type the following command at the console:

composer require ballen/gravel

Alternately you can add it to your composer.json file manually in the require section like so:

"ballen/gravel": "^2.0"

Then install the package by running the composer update ballen/gravel command.

You can also manually download the latest version as a zip or tar.gz archive of the library from GitHub and 'include' the Gravatar.php script (library) and use it standalone if you wish.

Laravel 4 and 5 Integration

Gravel has optional support for Laravel 4.x and 5.x and comes with a Service Provider which will register the Facade for easy integration.

Open your Laravel application configuration file config/app.php (or app/config/app.php if you are using Laravel 4.x)and add the following lines.

In the $providers array add the service providers for this package.

Ballen\Gravel\GravelServiceProvider::class,

The Gravatar package will now be autoloaded by the Laravel framework (via. Composer) and use of the library is as simple...

Example usage

If you have installed the library using Composer or manually you can (as long as your application already requires or includes the composer autoload.php) then you can instantiate a new object instance and use it immediately in your application like so:

use Ballen\Gravel\Gravatar;

$avatar = new Gravatar('[email protected]');
$avatar->setSize(100); // We want a 100x100px sized avatar instead of the default 120x120px

/**
* You can then obtain the avatar URL either by using the buildGravatarUrl() method or utilising
* the __toString() class method like so:
*/
<image src="<?php echo $avatar; ?>">

There are a number of other "commented" examples on how you can utilise this library can be found in the examples/Examples.php file.

Laravel example

I decided to implement a Laravel type style (make(), get()) for the Laravel Facades therefore it should keep both the hardcore developers (setter and getter prefixed methods) as well as those developers that appreciate cleanly written method names!

If you have added the Laravel Service Provider and Aliases as documented above, you can utilise the library like so:

# Laravel 4.x example
return View::make('userprofile')
    ->with('gravatar', Gravatar::make('[email protected]')->size(200)->get());

# Laravel 5.x example (using the view() helper method)
return view('userprofile')
    ->with('gravatar', Gravatar::make('[email protected]')->size(200)->get());

Tests and coverage

This library is fully unit tested using PHPUnit.

I use TravisCI for continuous integration, which triggers tests for PHP 5.3, 5.4, 5.5, 5.6, 7.0 and HHVM every time a commit is pushed.

If you wish to run the tests yourself you should run the following:

# Install the Gravel Library with the 'development' packages this then includes PHPUnit!
composer install --dev


# Now we run the unit tests (from the root of the project) like so:
./vendor/bin/phpunit

Code coverage can also be ran and a report generated (this does require XDebug to be installed)...

./vendor/bin/phpunit --coverage-html ./report

Support

I am happy to provide support via. my personal email address, so if you need a hand drop me an email at: [email protected].

gravel's People

Contributors

allebb avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.