devdojo/dribbble

There is no license information available for the latest version (dev-master) of this package.
Maintainers

👁 devdojo

Package info

github.com/thedevdojo/dribbble

pkg:composer/devdojo/dribbble

Statistics

Installs: 10

Dependents: 0

Suggesters: 0

Stars: 5

Open Issues: 0

dev-master 2014-03-11 17:25 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

Unknown License 6e6f4f78c5e2637d371a45af07a9b6f2e4b2ed6f

  • devdojo <tony.woop@devdojo.com>

This package is auto-updated.

Last update: 2026-06-15 07:13:14 UTC


README

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 :)