Skip to content

Commit 8567b33

Browse files
author
Nazar Saikevych
committed
first commit
0 parents  commit 8567b33

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

README.md

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Query Log
2+
3+
[![Build Status](https://travis-ci.org/lemberg/query-log.svg?branch=master)](https://travis-ci.org/lemberg/query-log)
4+
[![styleci](https://styleci.io/repos/CHANGEME/shield)](https://styleci.io/repos/CHANGEME)
5+
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/lemberg/query-log/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/lemberg/query-log/?branch=master)
6+
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/CHANGEME/mini.png)](https://insight.sensiolabs.com/projects/CHANGEME)
7+
[![Coverage Status](https://coveralls.io/repos/github/lemberg/query-log/badge.svg?branch=master)](https://coveralls.io/github/lemberg/query-log?branch=master)
8+
9+
[![Packagist](https://img.shields.io/packagist/v/lemberg/query-log.svg)](https://packagist.org/packages/lemberg/query-log)
10+
[![Packagist](https://poser.pugx.org/lemberg/query-log/d/total.svg)](https://packagist.org/packages/lemberg/query-log)
11+
[![Packagist](https://img.shields.io/packagist/l/lemberg/query-log.svg)](https://packagist.org/packages/lemberg/query-log)
12+
13+
Package description: CHANGE ME
14+
15+
## Installation
16+
17+
Install via composer
18+
```bash
19+
composer require lemberg/laravel-query-log
20+
```
21+
22+
### Register Service Provider
23+
24+
**Note! This and next step are optional if you use laravel>=5.5 with package
25+
auto discovery feature.**
26+
27+
Add service provider to `config/app.php` in `providers` section
28+
```php
29+
Lemberg\LaraveQueryLog\ServiceProvider::class,
30+
```
31+
32+
### Register Facade
33+
34+
Register package facade in `config/app.php` in `aliases` section
35+
```php
36+
Lemberg\LaraveQueryLog\Facades\LaraveQueryLog::class,
37+
```
38+
39+
### Publish Configuration File
40+
41+
```bash
42+
php artisan vendor:publish --provider="Lemberg\LaraveQueryLog\ServiceProvider" --tag="config"
43+
```
44+
45+
## Usage
46+
47+
CHANGE ME
48+
49+
## Security
50+
51+
If you discover any security related issues, please email
52+
instead of using the issue tracker.
53+
54+
## Credits
55+
56+
- [](https://github.com/lemberg/query-log)
57+
- [All contributors](https://github.com/lemberg/query-log/graphs/contributors)
58+
59+
This package is bootstrapped with the help of
60+
[melihovv/laravel-package-generator](https://github.com/melihovv/laravel-package-generator).

0 commit comments

Comments
 (0)