Skip to content

Commit a7327fe

Browse files
committed
prepare for v0.9 release
only using a single GitHub workflow for CI + coverage
1 parent 2f7c71e commit a7327fe

File tree

5 files changed

+11
-29
lines changed

5 files changed

+11
-29
lines changed

.github/workflows/ci-coverage.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@ jobs:
1414
- name: PHPUnit Tests
1515
uses: php-actions/phpunit@v2
1616
with:
17+
php_extensions: xdebug
1718
configuration: phpunit.xml
18-
args: --coverage-text
19+
args: --coverage-text
20+
env:
21+
XDEBUG_MODE: coverage

CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# CHANGELOG
22

3-
## [v1.0.1 (Unreleased)](https://github.com/onlime/laravel-sql-reporter/compare/v1.0...main)
3+
## [v0.9.1 (Unreleased)](https://github.com/onlime/laravel-sql-reporter/compare/v0.9...main)
44

55

6-
## [v1.0 (2021-06-01)](https://github.com/onlime/laravel-sql-reporter/releases/tag/v1.0)
6+
## [v0.9 (2021-06-01)](https://github.com/onlime/laravel-sql-reporter/releases/tag/v0.9)
77

8-
### Added
9-
- Log SQL queries
8+
- Initial release

LICENSE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
The MIT License (MIT)
22

3-
Copyright (c) Philip Iezzi, Onlime GmbH - https://www.onlime.ch
3+
Copyright (c) 2021 Philip Iezzi, Onlime GmbH - https://www.onlime.ch
4+
Copyright (c) 2016 Marcin Nabiałek
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
[![Packagist Downloads](https://img.shields.io/packagist/dt/onlime/laravel-sql-reporter.svg)](https://packagist.org/packages/onlime/laravel-sql-reporter)
55
[![PHP from Packagist](https://img.shields.io/packagist/php-v/onlime/laravel-sql-reporter.svg)](https://packagist.org/packages/onlime/laravel-sql-reporter)
66
[![Build Status](https://github.com/onlime/laravel-sql-reporter/actions/workflows/ci.yml/badge.svg)](https://github.com/onlime/laravel-sql-reporter/actions/workflows/ci.yml)
7-
[![Coverage Status](https://coveralls.io/repos/github/onlime/laravel-sql-reporter/badge.svg)](https://coveralls.io/github/onlime/laravel-sql-reporter)
87
[![GitHub License](https://img.shields.io/github/license/onlime/laravel-sql-reporter.svg)](https://github.com/onlime/laravel-sql-reporter/blob/main/LICENSE)
98

109
This module allows you to log SQL queries to log file in Laravel framework. It's useful mainly
@@ -22,7 +21,7 @@ It reports a lot of metadata like total query count, total execution time, origi
2221
```
2322
in console to install this module (Notice `--dev` flag - it's recommended to use this package only for development).
2423

25-
Laravel uses Package Auto-Discovery and it will automatically load this service provider so you don't need to add anything into the `providers` section of `config/app.php`.
24+
Laravel uses package auto-discovery, and it will automatically load this service provider, so you don't need to add anything into the `providers` section of `config/app.php`.
2625

2726
2. Run the following in your console to publish the default configuration file:
2827

@@ -154,6 +153,7 @@ All changes are listed in [CHANGELOG](CHANGELOG.md)
154153
## Todo
155154

156155
- [ ] Improve unit testing to reach 100% coverage
156+
- [ ] Integrate Coveralls.io and add test coverage status badge to README
157157
- [ ] Add browser type information to log headers, using hisorange/browser-detect
158158
- [ ] Support for Lumen
159159

0 commit comments

Comments
 (0)