Skip to content

Commit

Permalink
prepare for v0.9 release
Browse files Browse the repository at this point in the history
only using a single GitHub workflow for CI + coverage
  • Loading branch information
onlime committed Jun 2, 2021
1 parent 2f7c71e commit a7327fe
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 29 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/ci-coverage.yml

This file was deleted.

5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@ jobs:
- name: PHPUnit Tests
uses: php-actions/phpunit@v2
with:
php_extensions: xdebug
configuration: phpunit.xml
args: --coverage-text
args: --coverage-text
env:
XDEBUG_MODE: coverage
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# CHANGELOG

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


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

### Added
- Log SQL queries
- Initial release
3 changes: 2 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

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

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
[![Packagist Downloads](https://img.shields.io/packagist/dt/onlime/laravel-sql-reporter.svg)](https://packagist.org/packages/onlime/laravel-sql-reporter)
[![PHP from Packagist](https://img.shields.io/packagist/php-v/onlime/laravel-sql-reporter.svg)](https://packagist.org/packages/onlime/laravel-sql-reporter)
[![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)
[![Coverage Status](https://coveralls.io/repos/github/onlime/laravel-sql-reporter/badge.svg)](https://coveralls.io/github/onlime/laravel-sql-reporter)
[![GitHub License](https://img.shields.io/github/license/onlime/laravel-sql-reporter.svg)](https://github.com/onlime/laravel-sql-reporter/blob/main/LICENSE)

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

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`.
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`.

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

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

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

Expand Down

0 comments on commit a7327fe

Please sign in to comment.