diff --git a/.github/workflows/phpunits.yaml b/.github/workflows/phpunits.yaml index adb5e65..153a328 100644 --- a/.github/workflows/phpunits.yaml +++ b/.github/workflows/phpunits.yaml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - php-versions: [7.4, 8.0, 8.1] + php-versions: [8.0, 8.1] steps: - name: Checkout diff --git a/.github/workflows/rector.yaml b/.github/workflows/rector.yaml index 1db2923..2820981 100644 --- a/.github/workflows/rector.yaml +++ b/.github/workflows/rector.yaml @@ -17,7 +17,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 7.4 + php-version: 8.0 - name: Validate composer.json and composer.lock run: composer validate --strict diff --git a/changelog.md b/changelog.md index 6bd64c8..278c1c5 100644 --- a/changelog.md +++ b/changelog.md @@ -6,10 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0] - 2022-02-16 +### Added +- Add support laravel-wallet ^8.0 (laravel ^9.0) + ## [1.0.0] - 2021-11-30 ### Added - Add provider `WarmUpServiceProvider`. - Add command `WarmUpCommand`. -[Unreleased]: https://github.com/bavix/laravel-wallet-warmup/compare/1.0.0...develop +[Unreleased]: https://github.com/bavix/laravel-wallet-warmup/compare/2.0.0...develop +[2.0.0]: https://github.com/bavix/laravel-wallet-warmup/commit/1.0.0...2.0.0 [1.0.0]: https://github.com/bavix/laravel-wallet-warmup/commit/3fad9a9e1ed58f3452d7ed1a6c52e0163110a57e diff --git a/composer.json b/composer.json index 95b4ae3..25c75a7 100644 --- a/composer.json +++ b/composer.json @@ -22,16 +22,15 @@ } ], "require": { - "php": "^7.4|^8.0", - "bavix/laravel-wallet": "^7.0" + "php": "^8.0", + "bavix/laravel-wallet": "^8.0" }, "require-dev": { "ergebnis/phpstan-rules": "^1.0", - "infection/infection": "^0.25.3", - "orchestra/testbench": "^6.0", + "infection/infection": "^0.26", + "orchestra/testbench": "^7.0", "phpstan/phpstan": "^1.2", "phpunit/phpunit": "^9.5", - "psalm/plugin-laravel": "^1.5", "rector/rector": "^0.12.5", "symplify/easy-coding-standard": "^10.0", "vimeo/psalm": "^4.13" diff --git a/infection.json.dist b/infection.json.dist index 1945c7a..188dcdb 100644 --- a/infection.json.dist +++ b/infection.json.dist @@ -7,8 +7,8 @@ }, "logs": { "text": "build/infection.log", - "badge": { - "branch": "master" + "stryker": { + "badge": "master" } }, "mutators": { diff --git a/psalm.xml b/psalm.xml index 41b5120..f5e279d 100644 --- a/psalm.xml +++ b/psalm.xml @@ -9,4 +9,4 @@ - + diff --git a/rector.php b/rector.php index 5f07439..eb34aa6 100644 --- a/rector.php +++ b/rector.php @@ -19,7 +19,7 @@ // Define what rule sets will be applied $containerConfigurator->import(LaravelSetList::LARAVEL_60); $containerConfigurator->import(SetList::DEAD_CODE); - $containerConfigurator->import(SetList::PHP_74); + $containerConfigurator->import(SetList::PHP_80); // get services (needed for register a single rule) $services = $containerConfigurator->services();