43

Is it possible to use Eloquent without Laravel or does somebody knows a equally easy to use ORM?

Script47
  • 14,230
  • 4
  • 45
  • 66
Andre Zimpel
  • 2,323
  • 4
  • 27
  • 42

3 Answers3

44

Yes you can. A while ago Dan Horrigan released a package called Capsule for Laravel 4 which allowed Eloquent to be used independently and with minimal setup. The package itself has been merged with the L4 core so you no longer need to use the package.

If you refer to the illuminate/database repository there is a nice little introduction on using Eloquent without the framework.

Here is a small excerpt of getting it up and running.

$capsule = new Illuminate\Database\Capsule($config);

$capsule->bootEloquent();

$capsule->connection()->table('users')->where('id', 1)->first();

Update

Dan Horrigan has since removed his Capsule implementation as it is now built directly into Eloquent. Refer to the above illuminate/database link for more details on how to use Capsule.

Jason Lewis
  • 18,537
  • 4
  • 61
  • 64
1

Check out https://github.com/Luracast/Laravel-Database it provides full eloquent support including artisan migrations and more for the latest Laravel 8.* components.

It uses capsule and lazy loads the components when they are used.

Disclosure: I'm the author of this repository

Arul Kumaran
  • 983
  • 7
  • 23
0

In Laravel 4.*, Eloquent is automatically independent because it's shipped with Dan Horrigan's Capsule. You don't need to download any extras. For a how to please visit: https://github.com/illuminate/database/blob/master/README.md

Nick
  • 167
  • 3
  • 9