Skip to content

Commit

Permalink
Updated compatibility to Laravel 5.5 (#72)
Browse files Browse the repository at this point in the history
* Include composer compatibility with laravel 5.5

* Also updated the require-dev

* Added package Auto-Discovery.

* Fixed autodiscovery for Facade
  • Loading branch information
rikvdlooi authored and Caleb Fidecaro committed Sep 18, 2017
1 parent cdb0390 commit 8c2a15a
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,26 @@
],
"require": {
"php": ">=5.6.0",
"illuminate/support": "5.2.*|5.3.*|5.4.*"
"illuminate/support": "5.2.*|5.3.*|5.4.*|5.5.*"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "5.5.*",
"laravel/framework": "5.2.*|5.3.*|5.4.*"
"phpunit/phpunit": "5.5.*|6.0.*",
"laravel/framework": "5.2.*|5.3.*|5.4.*|5.5.*"
},
"autoload": {
"psr-4": {
"HipsterJazzbo\\Landlord\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"HipsterJazzbo\\Landlord\\LandlordServiceProvider"
],
"aliases": {
"Landlord": "HipsterJazzbo\\Landlord\\Facades\\Landlord"
}
}
}
}

0 comments on commit 8c2a15a

Please sign in to comment.