| Package Data | |
|---|---|
| Maintainer Username: | SeBuDesign |
| Maintainer Contact: | sven@sebudesign.nl (Sven Buijsrogge) |
| Package Create Date: | 2016-06-08 |
| Package Last Update: | 2017-08-10 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 15:01:20 |
| Package Statistics | |
|---|---|
| Total Downloads: | 1,407 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 6 |
| Total Watchers: | 0 |
| Total Forks: | 3 |
| Total Open Issues: | 0 |
This package optimizes the SQL Server driver from Laravel to optimize your SQL Server performance.
Via Composer
$ composer require sebudesign/laravel-sql-server-grammar
Once composer has been updated and the package has been installed, the service provider will need to be loaded.
For Laravel 4, open app/config/app.php and add following line to the providers array:
'SeBuDesign\SqlServerGrammar\SqlServerGrammarServiceProvider',
For Laravel 5, open config/app.php and add following line to the providers array:
SeBuDesign\SqlServerGrammar\SqlServerGrammarServiceProvider::class,
For Lumen 5, open bootstrap/app.php and add following line under the "Register Service Providers" section:
$app->register(SeBuDesign\SqlServerGrammar\SqlServerGrammarServiceProvider::class);
Once you included the service provider the Laravel/Lumen will start using the custom grammar.
Contributions are very welcome. Please see CONTRIBUTING for details.
If you discover any security related issues, please email sven@sebudesign.nl instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.