rcrowe / laravel-database
Brings some missing functionality to the Laravel Database layer.
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/rcrowe/laravel-database
Requires (Dev)
- illuminate/database: 4.0.*
- illuminate/foundation: 4.0.*
- mockery/mockery: 0.7.2
- phpunit/phpunit: 3.7.*
This package is auto-updated.
Last update: 2025-09-29 01:49:19 UTC
README
Provides extra / missing functionality to Laravels database layer.
Installation
Add rcrowe\laravel-database
as a requirement to composer.json:
{ "require": { "rcrowe/laravel-sentry": "0.1.*" } }
Update your packages with composer update
or install with composer install
.
Once Composer has installed or updated your packages you need to register with Laravel itself. Open up app/config/app.php and the existing database service provider 'Illuminate\Database\DatabaseServiceProvider'
and replace it with the following:
'rcrowe\Database\DatabaseServiceProvider'
Functionality
This library provides the following extra functionality:
Schema builder
character
has been added to the schema builder (MySql / Postgre). Use like$table->character('field', 6)
. Taken from http://forums.laravel.io/viewtopic.php?id=7320