Skip to content

Commit

Permalink
Merge pull request #8 from bavix/develop
Browse files Browse the repository at this point in the history
add support laravel-wallet ^8.0
  • Loading branch information
rez1dent3 authored Feb 16, 2022
2 parents 0982ddd + 242d2cd commit 36fa8ea
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpunits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
php-versions: [7.4, 8.0, 8.1]
php-versions: [8.0, 8.1]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 6 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions infection.json.dist
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
},
"logs": {
"text": "build/infection.log",
"badge": {
"branch": "master"
"stryker": {
"badge": "master"
}
},
"mutators": {
Expand Down
2 changes: 1 addition & 1 deletion psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
<projectFiles>
<directory name="src"/>
</projectFiles>
<plugins><pluginClass class="Psalm\LaravelPlugin\Plugin"/></plugins></psalm>
</psalm>
2 changes: 1 addition & 1 deletion rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 36fa8ea

Please sign in to comment.