Skip to content
This repository has been archived by the owner on Aug 24, 2022. It is now read-only.

Commit

Permalink
This refs #16
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladar authored and Vladar committed Apr 5, 2015
1 parent 1b6ab60 commit ab2a9e5
Show file tree
Hide file tree
Showing 14 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"phpunit/phpunit": "4.4.*"
},
"autoload": {
"psr-4": {
"psr-0": {
"Jelovac\\Bitly4laravel\\": "src/"
}
},
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function boot()
public function register()
{
$this->app['bitly4laravel'] = $this->app->share(function($app) {
$config = $app['config']->get('bitly4laravel::bitly4laravel');
$config = $app['config']->get('bitly4laravel::config');
return new Bitly4laravel($config);
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Laravel5ServiceProvider extends ServiceProvider
*/
public function boot()
{
$configPath = __DIR__ . '/config/bitly4laravel.php';
$configPath = __DIR__ . '/../../config/config.php';

$paths = array(
$configPath => config_path("bitly4laravel.php"),
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit ab2a9e5

Please sign in to comment.