devdojo/behance

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

👁 devdojo

Package info

github.com/thedevdojo/behance

pkg:composer/devdojo/behance

Statistics

Installs: 16

Dependents: 0

Suggesters: 0

Stars: 5

Open Issues: 1

dev-master 2014-03-12 00:44 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

Unknown License 6dccda8c01d0649c7f8358fd0287f00527d74152

  • devdojo <tony.woop@devdojo.com>

This package is auto-updated.

Last update: 2026-06-15 07:08:19 UTC


README

Behance API Package for Laravel 4

Installation

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

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

Next, update Composer from the Terminal:

composer update

Once this operation completes, you'll need to add the service provider. Open app/config/app.php, and add a new item to the providers array.

'Devdojo\Behance\BehanceServiceProvider',

Finally, you'll need to publish the config file. Add the following command in Terminal.

php artisan config:publish devdojo/behance

Then open up app/config/packages/devdojo/behance/keys.php and add your Behance Client ID and Client Secret. And that's it! You're all set to go.

Usage

Here's an example of how to get the featured projects from behance.

print_r(Behance::searchProjects());

For further info on using the Behance API, be sure to checkout: https://github.com/behance/network_api_php

Hope you enjoy :)