From c0a3899c324f1dd7f3e62d66a69b9fa8011b4d55 Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Wed, 6 Mar 2024 23:09:03 +0200 Subject: [PATCH] Laravel 10 support --- .github/workflows/tests.yml | 4 ++-- .gitignore | 1 + README.md | 7 ++++--- composer.json | 16 ++++++++-------- phpunit.xml.dist | 13 +++++-------- 5 files changed, 20 insertions(+), 21 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 70e4547..a97da73 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.0, 8.1] + php: [8.1, 8.2] stability: [prefer-lowest, prefer-stable] name: PHP ${{ matrix.php }} / ${{ matrix.stability }} @@ -38,7 +38,7 @@ jobs: command: composer update --prefer-dist --${{ matrix.stability }} --no-interaction --no-progress --ansi - name: Run tests - run: vendor/bin/phpunit --verbose --colors=always --coverage-clover ./build/logs/clover.xml + run: vendor/bin/phpunit --colors=always --coverage-clover ./build/logs/clover.xml - name: Code coverage uses: codecov/codecov-action@v1 diff --git a/.gitignore b/.gitignore index ba0252c..d55382e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /.idea +/.phpunit.cache /.vscode /vendor .DS_Store diff --git a/README.md b/README.md index 90eda67..d8c855c 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ [Buy me a coffee](https://buymeacoffee.com/dmitry.ivanov) [![StyleCI](https://github.styleci.io/repos/68023936/shield?branch=master&style=flat)](https://github.styleci.io/repos/68023936?branch=master) -[![Build Status](https://img.shields.io/github/workflow/status/dmitry-ivanov/laravel-db-profiler/tests/master)](https://github.com/dmitry-ivanov/laravel-db-profiler/actions?query=workflow%3Atests+branch%3Amaster) -[![Coverage Status](https://img.shields.io/codecov/c/github/dmitry-ivanov/laravel-db-profiler/master)](https://app.codecov.io/gh/dmitry-ivanov/laravel-db-profiler/branch/master) +[![Build Status](https://img.shields.io/github/actions/workflow/status/dmitry-ivanov/laravel-db-profiler/tests.yml?branch=master)](https://github.com/dmitry-ivanov/laravel-db-profiler/actions?query=workflow%3Atests+branch%3Amaster) +[![Coverage Status](https://img.shields.io/codecov/c/github/dmitry-ivanov/laravel-db-profiler/master)](https://app.codecov.io/gh/dmitry-ivanov/laravel-db-profiler/tree/master) ![Packagist Version](https://img.shields.io/packagist/v/illuminated/db-profiler) ![Packagist Stars](https://img.shields.io/packagist/stars/illuminated/db-profiler) @@ -19,6 +19,8 @@ Database Profiler for Laravel Web and Console Applications. | Laravel | Database Profiler | |---------|------------------------------------------------------------------------| +| 11.x | _[Support](https://buymeacoffee.com/dmitry.ivanov)_ ☕ | +| 10.x | [10.x](https://github.com/dmitry-ivanov/laravel-db-profiler/tree/10.x) | | 9.x | [9.x](https://github.com/dmitry-ivanov/laravel-db-profiler/tree/9.x) | | 8.x | [8.x](https://github.com/dmitry-ivanov/laravel-db-profiler/tree/8.x) | | 7.x | [7.x](https://github.com/dmitry-ivanov/laravel-db-profiler/tree/7.x) | @@ -65,5 +67,4 @@ If you want to force profiling for non-local environments - specify it explicitl Laravel Database Profiler is open-sourced software licensed under the [MIT license](LICENSE.md). -[Support on Patreon](https://patreon.com/dmitryivanov)  [Buy me a coffee](https://buymeacoffee.com/dmitry.ivanov)  diff --git a/composer.json b/composer.json index c23f8ca..6883935 100644 --- a/composer.json +++ b/composer.json @@ -12,16 +12,16 @@ "email": "dmitry.g.ivanov@gmail.com" }], "require": { - "php": "^8.0.2", - "illuminate/database": "^9.0", - "illuminate/support": "^9.0" + "php": "^8.1", + "illuminate/database": "^10.0", + "illuminate/support": "^10.0" }, "require-dev": { - "phpunit/phpunit": "^9.5.10", - "mockery/mockery": "^1.4.4", - "orchestra/testbench": "^7.0", - "illuminated/testing-tools": "^9.0", - "illuminated/helper-functions": "^9.0" + "phpunit/phpunit": "^10.5", + "mockery/mockery": "^1.5.1", + "orchestra/testbench": "^8.0", + "illuminated/testing-tools": "^10.0", + "illuminated/helper-functions": "^10.0" }, "autoload": { "psr-4": { diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 7f8f58c..f23b624 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,18 +1,15 @@ - @@ -20,12 +17,12 @@ - + ./src ./src/DbProfilerDumper.php - +