A-Lawrence / laravel-ipboard

A package for interacting with the new IPBoard REST API.
MIT License
9 stars 7 forks source link

Bugfixes that allow the project to work on Laravel versions up to current. #6

Open bddarwin opened 5 years ago

bddarwin commented 5 years ago

Bugfixes that allow the project to work on Laravel versions up to current.

Fixing src/Console/TestCommand.php to use the updated "handle" function to run an artisan command (previous function was fire, which seems to be documented as outdated as of Laravel 5.1 and removed in Laravel 5.5)

Fixing src/ServiceProvider.php to use singleton() instead of share() -- share is removed in Laravel 5.4

Fixing composer.json to add autoloading support, making the config/app.php file edits no longer required.

Fixing readme.md to reference the support for more recent Laravel versions as well as the new autoload support for versions 5.5 and greater

Signed-off-by: bddarwin bddarwin@gmail.com