2017 © Pedro Peláez
 

library dribbble

image

devdojo/dribbble

  • Tuesday, March 11, 2014
  • by thedevdojo
  • Repository
  • 2 Watchers
  • 5 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 6 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Dribbble API

A Dribbble API Package for Laravel, (*1)

Installation

Begin by installing this package through Composer. Edit your project's composer.json file to require devdojo/dribbble., (*2)

"require": {
    "devdojo/dribbble": "dev-master"
}

Next, update Composer from the Terminal:, (*3)

composer update

Once this operation completes, the final step is to add the service provider. Open app/config/app.php, and add a new item to the providers array., (*4)

'Devdojo\Dribbble\DribbbleServiceProvider',

That's it! You're all set to go., (*5)

Usage

Here's an example of how to get the most popular shots and display them on the screen., (*6)



@foreach($List->shots as $shot)

    <img  src="{{ $shot->image_url }}" /><br />

@endforeach

For further info on using the dribble API, be sure to checkout: http://dribbble.com/api, (*7)

Hope you enjoy :), (*8)

The Versions

11/03 2014

dev-master

9999999-dev

  Sources   Download

The Requires

 

by devdojo