diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56bcdfb..25bb1a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.1, 8.2] + php: [8.1, 8.2, 8.3] dependencies: [lowest, highest] experimental: [false] name: 👷 CI PHP-${{ matrix.php }} ${{ matrix.dependencies }} on ${{ matrix.os }} @@ -45,7 +45,7 @@ jobs: - name: 🍱 Install Composer dependencies run: | composer install -q --no-ansi --no-cache --no-interaction --no-scripts --no-progress --prefer-dist - composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist + composer update --${{ matrix.dependencies }} --no-interaction --prefer-dist - name: ✅ Check code lint run: composer lint diff --git a/README.md b/README.md index 1fecab7..10d522e 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ This framework is a Laravel customization for the [sikessem/skeleton](https://pa ## 📋 Requirements -> - **Requires [PHP 8.1+](https://php.net/releases/)** (at least 8.1.19 recommended to avoid potential bugs). +> - **Requires [PHP 8.1+](https://php.net/releases/)** (at least 8.1.27 recommended to avoid potential bugs). > - **Requires [Composer v2+](https://getcomposer.org/)** to manage PHP dependencies. ## ⚡️ Installation diff --git a/composer.json b/composer.json index 942da42..1838e18 100644 --- a/composer.json +++ b/composer.json @@ -23,12 +23,12 @@ "chat": "https://github.com/orgs/sikessem/discussions" }, "require": { - "php": "^8.1||^8.2", - "laravel/framework": "^10.32", + "php": "^8.1||^8.2||^8.3", + "laravel/framework": "^10.43", "sikessem/debugger": "^0.0.0" }, "require-dev": { - "sikessem/laravel-devtools": "^0.8.0" + "sikessem/laravel-devtools": "^0.9.0" }, "autoload": { "psr-4": { diff --git a/rector.php b/rector.php index 091c0bf..19c6316 100644 --- a/rector.php +++ b/rector.php @@ -19,5 +19,6 @@ $rectorConfig->sets([ LevelSetList::UP_TO_PHP_81, LevelSetList::UP_TO_PHP_82, + LevelSetList::UP_TO_PHP_83, ]); };