2017 © Pedro Peláez
 

library anteros

Implementations for Laravel 4 Framework

image

erickmcarvalho/anteros

Implementations for Laravel 4 Framework

  • Friday, September 26, 2014
  • by erickmcarvalho
  • Repository
  • 1 Watchers
  • 1 Stars
  • 20 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Laravel Anteros

Implementations for Laravel 4 Framework, (*1)

Features

  • Mssql Driver Connection - Using standard features from MSSQL library

Installation

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)

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., (*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)

The Versions

26/09 2014

dev-master

9999999-dev

Implementations for Laravel 4 Framework

  Sources   Download

MIT

The Requires

 

26/09 2014

0.1.0

0.1.0.0

Implementations for Laravel 4 Framework

  Sources   Download

MIT

The Requires