From 21714331fb43e98c5fe74269914edab062cf5a3c Mon Sep 17 00:00:00 2001 From: Sergiy Petrov Date: Sun, 8 Oct 2023 12:19:58 +0300 Subject: [PATCH 1/4] add composer.lock to gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 20d9dbd..78bc45e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /.vscode /.vagrant .phpunit.result.cache +composer.lock From 0571dfd9f6d1ea942cc3376814a42927ef94b1c8 Mon Sep 17 00:00:00 2001 From: Sergiy Petrov Date: Sun, 8 Oct 2023 12:20:17 +0300 Subject: [PATCH 2/4] style: apply fixes from Pint --- app/Commands/InspireCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Commands/InspireCommand.php b/app/Commands/InspireCommand.php index 4234071..c93c7e0 100644 --- a/app/Commands/InspireCommand.php +++ b/app/Commands/InspireCommand.php @@ -4,6 +4,7 @@ use Illuminate\Console\Scheduling\Schedule; use LaravelZero\Framework\Commands\Command; + use function Termwind\{render}; class InspireCommand extends Command From 90b104aab4f438b007e0e5f8f31a2ee8e8e8bd03 Mon Sep 17 00:00:00 2001 From: Sergiy Petrov Date: Sun, 8 Oct 2023 12:21:31 +0300 Subject: [PATCH 3/4] test against php 8.3 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a433370..c5ca7f5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - php: ['8.1', '8.2'] + php: ['8.1', '8.2', '8.3'] dependency-version: [prefer-lowest, prefer-stable] name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} From 4f2d72f6e1abd694d17c285a434f4d4c383fd30e Mon Sep 17 00:00:00 2001 From: Sergiy Petrov Date: Sun, 8 Oct 2023 12:24:35 +0300 Subject: [PATCH 4/4] bump dependency version of laravel/pint --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 04e3f6d..4dbddc9 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "nunomaduro/termwind": "^1.15.1" }, "require-dev": { - "laravel/pint": "^1.8", + "laravel/pint": "^1.13", "mockery/mockery": "^1.5.1", "pestphp/pest": "^2.5" },