diff --git a/.coveralls.yml b/.coveralls.yml deleted file mode 100644 index 30b618e..0000000 --- a/.coveralls.yml +++ /dev/null @@ -1,2 +0,0 @@ -coverage_clover: build/logs/clover.xml -json_path: build/logs/coveralls-upload.json diff --git a/README.md b/README.md index 5041c9c..dda3e19 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,29 @@ A tiny extension of `MySqlConnection` that manages **session** system variables composer require mpyw/laravel-mysql-system-variable-manager ``` -The default implementation is provided by the automatically-discovered service provider. - ## Basic Usage +The default implementation is provided by `LaravelMySqlSystemVariableManagerServiceProvider`, however, **package discovery is not available**. +Be careful that you MUST register it in **`config/app.php`** by yourself. + +```php + [ + /* ... */ + + Mpyw\LaravelMySqlSystemVariableManager\LaravelMySqlSystemVariableManagerServiceProvider::class, + + /* ... */ + ], + +]; +``` + ```php