user2755140
user2755140

Reputation: 2027

Using Laravel's routing feature and nothing else

I would like to know if it's possible to use the amazing routing function implemented in Laravel and nothing more from the framework. This is a small project and I don't want to use the whole thing.

Upvotes: 1

Views: 70

Answers (1)

Alexey Mezenin
Alexey Mezenin

Reputation: 163898

It's possible to use Illuminate components as standalone components in non-Laravel application. I'm sure this project will be helpful. An example for the Routing component can be found here.

Upvotes: 2

Related Questions