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 }} 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 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 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" },