dev-master
9999999-devImplementations for Laravel 4 Framework
MIT
The Requires
0.1.0
0.1.0.0Implementations for Laravel 4 Framework
MIT
The Requires
Wallogit.com
2017 © Pedro Peláez
Implementations for Laravel 4 Framework
Implementations for Laravel 4 Framework, (*1)
Add erickmcarvalho\anteros as a requirement to composer.json:, (*2)
{
"require": {
"erickmcarvalho/anteros: "0.1.*"
}
}
Update your packages with composer update or install with composer install., (*3)
Once Composer has installed or updated your packages you need to register
Anteros and the package it uses (extradb) with Laravel itself.
Open up app/config/app.php and find the providers key towards the bottom., (*4)
Add the following to the list of providers:, (*5)
'Anteros\AnterosServiceProvider'
You won't need to add anything to the aliases section., (*6)
The configuration database is not separate to Anteros. You'll just add a new array to the connections array in app/config/database.php., (*7)
'mssql' => array(
'driver' => 'anteros:mssql',
'host' => 'localhost',
'database' => 'database',
'username' => 'sa',
'password' => 'password',
'prefix' => ''
),
Don't forget to update your default database connection., (*8)
Implementations for Laravel 4 Framework
MIT
Implementations for Laravel 4 Framework
MIT