Skip to content

Commit

Permalink
Fix: Package name was in lowercase when it should be in uppercase.
Browse files Browse the repository at this point in the history
  • Loading branch information
ModestasV committed Apr 5, 2016
1 parent 69fce24 commit 28c4095
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"email": "[email protected]"
}
],
"version": "1.1.2",
"version": "1.1.3",
"require": {
"laravelcollective/html": "5.2.*",
"intervention/image": "^2.3",
Expand Down
2 changes: 1 addition & 1 deletion src/QuickadminServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function register()
// Register dependency packages
$this->app->register('Collective\Html\HtmlServiceProvider');
$this->app->register('Intervention\Image\ImageServiceProvider');
$this->app->register('yajra\Datatables\DatatablesServiceProvider');
$this->app->register('Yajra\Datatables\DatatablesServiceProvider');
// Register dependancy aliases
$loader = \Illuminate\Foundation\AliasLoader::getInstance();
$loader->alias('HTML', 'Collective\Html\HtmlFacade');
Expand Down

0 comments on commit 28c4095

Please sign in to comment.