Skip to content
This repository has been archived by the owner on Apr 8, 2023. It is now read-only.

erickmcarvalho/anteros

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Anteros

Implementations for Laravel 4 Framework

Features

  • Mssql Driver Connection - Using standard features from MSSQL library

Installation

Add erickmcarvalho\anteros as a requirement to composer.json:

{
    "require": {
        "erickmcarvalho/anteros: "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 Anteros and the package it uses (extradb) with Laravel itself. Open up app/config/app.php and find the providers key towards the bottom.

Add the following to the list of providers:

'Anteros\AnterosServiceProvider'

You won't need to add anything to the aliases section.

Configuration

  • Mssql Database

The configuration database is not separate to Anteros. You'll just add a new array to the connections array in app/config/database.php.

		'mssql' => array(
			'driver'   =>   'anteros:mssql',
            'host'     =>   'localhost',
            'database' =>   'database',
            'username' =>   'sa',
            'password' =>   'password',
            'prefix'   =>   ''
		),

Don't forget to update your default database connection.

About

Implementations for Laravel 4 Framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages