Package Data | |
---|---|
Maintainer Username: | Arul |
Maintainer Contact: | arul@luracast.com (Arul Kumaran) |
Package Create Date: | 2014-05-20 |
Package Last Update: | 2022-02-20 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-17 03:03:47 |
Package Statistics | |
---|---|
Total Downloads: | 32,381 |
Monthly Downloads: | 308 |
Daily Downloads: | 0 |
Total Stars: | 86 |
Total Watchers: | 8 |
Total Forks: | 12 |
Total Open Issues: | 4 |
Provides full laravel database functionality for your non laravel projects adds Migration, Seeding and Artisan support to Illuminate Database.
Laravel is a web application framework with expressive, elegant syntax. We extracted the database functionality from it and made it available for other frameworks
The Illuminate Database component is a full database toolkit for PHP, providing an expressive query builder, ActiveRecord style ORM, and schema builder. It currently supports MySQL, Postgres, SQL Server, and SQLite. We combined it with Illuminate FileSystem and Illuminate Console to make Artisan work with database related commands.
Laravel Database utilizes Composer to manage its dependencies. First, download a copy of the composer.phar
. Once you have the PHAR archive, you can either keep it in your local project directory or move to usr/local/bin
to use it globally on your system. On Windows, you can use the Composer Windows installer.
Install Laravel Database by issuing the Composer create-project command in your terminal:
composer create-project laravel/database --prefer-dist
From your public index.php
include the autoload.php
in bootstrap
folder this internally uses composer autoloader.
This enables lazy loading of all db related classes. Only when you call one of the DB related class, database engine is initialized.
Even when using version 5.2.*
the folder structure will be the same as 4.2.*
For instructions on how to add more laravel components or compatible third party service providers etc., read the comments
in app/config/app.php
file
Documentation for the entire framework can be found on the Laravel website. Refer to all database related sections from there.
Note:- For folder structure refer to version 4.2 of the documentation, for everything else refer to the version corresponding to the version you use here
All the credits for the Laravel Database goes to the Laravel Framework developers. We are only putting the pieces together here
Issues and pull requests relating to this integration should be filed on the laravel/database repository.
The Laravel Database is open-sourced software licensed under the MIT license