diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0dd2959..3c4a02b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: true matrix: - php: [ "8.0", "8.1", "8.2" ] + php: [ "8.1", "8.2", "8.3" ] runs-on: ubuntu-latest name: PHP@${{ matrix.php }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f52782..324359d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.1.0] - 2024-02-27 +### Added +- Support for PHP 8.3 +- Support for `psr/cache` ^2.0 and ^3.0 +- Support for `illuminate/support` v11 +- Support for `illuminate/session` v11 + +### Updated +- `pestphp/pest` to v2 + +### Removed +- Support for PHP 8.0 +- Support for `illuminate/support` v9 +- Support for `illuminate/session` v9 + ## [3.0.0] - 2023-03-01 ### Added - Support for PHP 8.2. diff --git a/composer.json b/composer.json index 3a6d851..b497210 100644 --- a/composer.json +++ b/composer.json @@ -19,15 +19,15 @@ ], "license": "Apache-2.0", "require": { - "php": "8.0.* | 8.1.* | 8.2.*", - "illuminate/support": "^9.0 || ^10.0", - "illuminate/session": "^9.0 || ^10.0", - "psr/cache": "^1.0" + "php": "8.1.* || 8.2.*|| 8.3.*", + "illuminate/support": "^10.0 || ^11.0", + "illuminate/session": "^10.0 || ^11.0", + "psr/cache": "^1.0 || ^2.0 || ^3.0 " }, "require-dev": { "mockery/mockery": "^1.0", - "pestphp/pest": "^1.22", - "laravel/pint": "^1.5 | ^1.6", + "pestphp/pest": "^2.0", + "laravel/pint": "^1.6", "phpstan/phpstan": "^1.10" }, "extra": { diff --git a/phpunit.xml b/phpunit.xml index 74ed317..444153f 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,23 +1,17 @@ - - - - ./tests - - - - - ./src - - - ./src/StateServiceProvider.php - ./src/StoreFacade.php - - + + + + ./tests + + + + + ./src + + + ./src/StateServiceProvider.php + ./src/StoreFacade.php + +