Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/specialtactics/laravel-mysql-provider
Laravel MySQL Provider
https://github.com/specialtactics/laravel-mysql-provider
Last synced: about 1 month ago
JSON representation
Laravel MySQL Provider
- Host: GitHub
- URL: https://github.com/specialtactics/laravel-mysql-provider
- Owner: specialtactics
- Created: 2014-12-18T06:50:44.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-27T01:45:39.000Z (over 8 years ago)
- Last Synced: 2024-10-14T11:09:50.302Z (2 months ago)
- Language: PHP
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel MySQL Provider Extended
Improved and Extended MySQL Builder & Grammar## Installation
Install via composer - edit your `composer.json` to require the package.
```js
"require": {
"scm/mysqle": "dev-master"
}
```Then run `composer update` in your terminal to pull it in.
Once this has finished, you will need to add the service provider to the `providers` array in `app/config/app.php` as follows:
```php
'SCM\MySQLe\DatabaseServiceProvider'
```