Skip to content

Releases: LaravelBA/route-binder

Don't export tests suite to projects

29 Jun 17:08
Compare
Choose a tag to compare
4.0.3

Ignore tests from git export

Allow route caching

14 Sep 17:54
Compare
Choose a tag to compare

Route caching is a powerful Laravel5 feature. As this project standed, you couldn't safely bind routes and allow route caching, as you'd lose any binding done in the RouteBinder object, or always load them altogether.

Now, the RouteBinderServiceProvider will allow for route caching by using the same methods usually found in the RouteServiceProvider in your app. This means you can safely remove that service provider from your app/Providers and only use RouteBinder objects again!

NOTE: This package does not use Laravel 5's Controller namespacing feature. You should use the php 5.5 ::class syntax and either:

  • Import your controller to the RouteBinder object via the use clause, or
  • Use the fully qualified class name

Please avoid using literal strings, as this would risk breaking changes while refactoring, even on the most advanced IDEs.

Namespace change

12 Feb 17:26
Compare
Choose a tag to compare

To respect SemVer, I'm forcing an early 3.0 to reflect background compatibility breakage in this new version.

Updated to Laravel 5

04 Feb 18:10
Compare
Choose a tag to compare

Now using Illuminate\Contracts instead of the concrete Router.

The ServiceProvider needed a bit of revision.

Initial release

29 Jan 02:03
Compare
Choose a tag to compare
Moved config to standard Laravel path cause... well, Laravel being La…

…ravel.