Skip to content

samshupac/dribbble

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dribbble API

A Dribbble API Package for Laravel

Installation

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

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

Next, update Composer from the Terminal:

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.

'Devdojo\Dribbble\DribbbleServiceProvider',

That's it! You're all set to go.

Usage

Here's an example of how to get the most popular shots and display them on the screen.

<?php $List = Dribbble::getShotsList('popular'); ?>

@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

Hope you enjoy :)

About

Dribbble API Package for Laravel

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%