Skip to content

Commit

Permalink
Bump laravel/framework from 11.0.6 to 11.31.0 (#35)
Browse files Browse the repository at this point in the history
* Bump laravel/framework from 11.0.6 to 11.31.0

Bumps [laravel/framework](https://github.com/laravel/framework) from 11.0.6 to 11.31.0.
- [Release notes](https://github.com/laravel/framework/releases)
- [Changelog](https://github.com/laravel/framework/blob/11.x/CHANGELOG.md)
- [Commits](laravel/framework@v11.0.6...v11.31.0)

---
updated-dependencies:
- dependency-name: laravel/framework
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: include BC check as dev dependency

* chore: allow older BC check

* chore: update installation step

* chore: cleanup

* chore: update phpstan config

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Rubél <michael@laravel.software>
  • Loading branch information
dependabot[bot] and michael-rubel authored Nov 14, 2024
1 parent 5ebf4a1 commit 7cd0168
Show file tree
Hide file tree
Showing 5 changed files with 3,252 additions and 1,894 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bc-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
php-version: "8.3"
- name: "Install dependencies"
run: "composer install"
- name: "Install BC check"
run: "composer require --dev roave/backward-compatibility-check"
- name: "Composer install"
run: "composer install -n --prefer-dist"
- name: "Check for BC breaks"
run: "vendor/bin/roave-backward-compatibility-check"
6 changes: 4 additions & 2 deletions .github/workflows/infection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ jobs:
path: vendor
key: composer-${{ hashFiles('composer.lock') }}

- name: Run composer install
run: composer install -n --prefer-dist
- name: Install dependencies
run: |
composer require "laravel/framework:10.*" "nesbot/carbon:^2.64.1" --dev --no-interaction --no-update
composer update --prefer-stable --prefer-dist --no-interaction
- name: Run infection
run: ./vendor/bin/infection --show-mutations --min-msi=100 --min-covered-msi=100
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@
"require-dev": {
"brianium/paratest": "^6.3|^7.4",
"infection/infection": "^0.27.3",
"larastan/larastan": "^2.0",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.0|^8.0",
"larastan/larastan": "^2.0",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.5"
"phpunit/phpunit": "^9.5|^10.5",
"roave/backward-compatibility-check": "^7.0|^8.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 7cd0168

Please sign in to comment.