2017 © Pedro Peláez
 

library easyrouting

Make route handling in Laravel easier

image

avnir/easyrouting

Make route handling in Laravel easier

  • Wednesday, August 5, 2015
  • by avnir
  • Repository
  • 1 Watchers
  • 1 Stars
  • 258 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

Fast Workflow in Laravel With EasyRouting

Major Versions:, (*1)

  • 2.x (YOU ARE HERE) - For laravel/framework:~5.* and avnir/easyrouting:~2
  • 1.x (1.0 branch) - For laravel/framework:4.* and avnir/easyrouting:~1

Installation

Begin by installing this package through Composer. Edit your project's composer.json file to require avnir/EasyRouting., (*2)

{
    "require": {
        "avnir/EasyRouting": "~2"
    }
}

Next, update Composer from the Terminal:, (*3)

php composer.phar update

To use the EasyRouting Provider, you must register the provider when bootstrapping your Laravel application., (*4)

Find the providers key in your config/app.php and register the EasyRouting Provider., (*5)

    'providers' => array(
        // ...
        'Avnir\Easyrouting\EasyroutingServiceProvider::class',
    )

Find the aliases key in your config/app.php and add the AWS facade alias., (*6)

    'aliases' => array(
        // ...
        'Easyrouting' => Avnir\Easyrouting\Easyrouting::class,
    )

Usage

On the routes.php file you need to call, (*7)

\EasyRouting::run();, (*8)

this will setup REST routes for all the public methods of the Controllers., (*9)

If you ever want to exclude a controller from having a route, just add, (*10)

var $exclude = true;, (*11)

into the Controller, (*12)

The Versions

05/08 2015

dev-master

9999999-dev https://github.com/avnir/EasyRouting

Make route handling in Laravel easier

  Sources   Download

MIT

The Requires

 

by Avni Rexhepi

laravel routes

05/08 2015

2.0.1

2.0.1.0 https://github.com/avnir/EasyRouting

Make route handling in Laravel easier

  Sources   Download

MIT

The Requires

 

by Avni Rexhepi

laravel routes

23/07 2015

1.0.x-dev

1.0.9999999.9999999-dev https://github.com/avnir/EasyRouting

Make route handling in Laravel easier

  Sources   Download

MIT

The Requires

 

by Avni Rexhepi

laravel routes

23/07 2015

2.0.0

2.0.0.0 https://github.com/avnir/EasyRouting

Make route handling in Laravel easier

  Sources   Download

MIT

The Requires

 

by Avni Rexhepi

laravel routes

05/05 2015

v1.0.1

1.0.1.0 https://github.com/avnir/EasyRouting

Make route handling in Laravel easier

  Sources   Download

MIT

The Requires

 

by Avni Rexhepi

laravel routes

05/05 2015

v1.0.0

1.0.0.0

  Sources   Download

The Requires

 

by Avni Rexhepi