Skip to content

Comments

Bump the minor-updates group across 1 directory with 25 updates#132

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/composer/main/minor-updates-096f5b228d
Open

Bump the minor-updates group across 1 directory with 25 updates#132
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/composer/main/minor-updates-096f5b228d

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Bumps the minor-updates group with 23 updates in the / directory:

Package From To
brick/money 0.10.3 0.11.1
dedoc/scramble 0.13.6 0.13.14
gotenberg/gotenberg-php 2.15.1 2.17.0
inertiajs/inertia-laravel 2.0.11 2.0.20
laravel/nightwatch 1.19.0 1.22.3
laravel/octane 2.13.1 2.13.5
laravel/passport 13.4.1 13.4.4
laravel/tinker 2.10.2 2.11.1
league/csv 9.27.1 9.28.0
league/flysystem-aws-s3-v3 3.30.1 3.31.0
league/iso3166 4.3.3 4.4.0
spatie/temporary-directory 2.3.0 2.3.1
tightenco/ziggy 2.6.0 2.6.1
barryvdh/laravel-ide-helper 3.6.0 3.6.1
brianium/paratest 7.15.0 7.19.0
fumeapp/modeltyper 3.5.0 3.8.0
larastan/larastan 3.8.0 3.9.2
laravel/pint 1.26.0 1.27.1
laravel/sail 1.48.1 1.53.0
laravel/telescope 5.15.1 5.17.0
nunomaduro/collision 8.8.3 8.9.1
spatie/laravel-ignition 2.9.1 2.11.0
timacdonald/log-fake 2.4.0 2.4.1

Updates brick/money from 0.10.3 to 0.11.1

Release notes

Sourced from brick/money's releases.

0.11.1

⚠️ Deprecations

  • Added explicit trigger_deprecation() calls to methods that were already marked as @deprecated, so deprecation notices are now emitted at runtime

📌 Compatibility

  • Restricted compatibility to brick/math:~0.14.4

👌 Improvements

  • Fixed calls to deprecated brick/math and brick/money APIs

0.11.0

💥 Breaking changes

  • Minimum PHP version is now 8.2
  • The following classes are now final:
    • CurrencyConversionException
    • MoneyMismatchException
    • UnknownCurrencyException
  • CustomContext now validates the step and will throw an exception if an invalid step is given
  • Interface MoneyContainer has been removed (replaced with Monetary)
  • Method AbstractMoney::getAmounts() has been removed (replaced with getMonies())
  • Method MoneyBag::getAmounts() has been removed (replaced with getMonies())
  • CurrencyConverter::convert() and convertToRational() now accept a Monetary instance (which still includes Money, RationalMoney and MoneyBag)
  • MoneyBag::add() and subtract() now accept a Monetary instance (which still includes Money, RationalMoney and MoneyBag)

⚠️ Deprecations

  • Calling Currency::of() with a numeric code is deprecated, use Currency::ofNumericCode() instead
  • Calling ISOCurrencyProvider::getCurrency() with a numeric code is deprecated, use getCurrencyByNumericCode() instead
  • Calling CurrencyConverter::convert() or convertToRational() with a numeric currency code is deprecated, use a Currency instance instead
  • Calling Money::of(), ofMinor(), zero() or convertedTo() with a numeric currency code is deprecated, use a Currency instance instead
  • Calling RationalMoney::of() with a numeric currency code is deprecated, use a Currency instance instead
  • MoneyBag::getAmount() is deprecated, use getMoney() instead
  • Money::formatTo() is deprecated, use Money::formatToLocale() instead
  • Money::formatWith() is deprecated, use MoneyNumberFormatter::format() instead
  • Currency::is() is deprecated, use Currency::isEqualTo() instead

[!IMPORTANT] The convenience of passing a currency by ISO numeric code in addition to alphabetic code has been deprecated, leaving only alphabetic-code lookup in generic APIs. For example, Money::of() will accept Currency|string in the future, instead of Currency|string|int today. This makes explicit the separation between retrieval by alphabetic code, which has strong backwards compatibility guarantees, and retrieval by numeric code, which may change in minor versions due to ISO reassignments. This will require users to explicitly obtain a currency through Currency::ofNumericCode(), which is documented as not being covered by the same BC guarantees.

New features

  • Support for historical currencies in Money::of(), Currency::of(), etc. (#104 by @​survik1)
  • New enum: CurrencyType
  • New methods:

... (truncated)

Changelog

Sourced from brick/money's changelog.

0.11.1 - 2026-02-12

⚠️ Deprecations

  • Added explicit trigger_deprecation() calls to methods that were already marked as @deprecated, so deprecation notices are now emitted at runtime

📌 Compatibility

  • Restricted compatibility to brick/math:~0.14.4

👌 Improvements

  • Fixed calls to deprecated brick/math and brick/money APIs

0.11.0 - 2026-01-22

💥 Breaking changes

  • Minimum PHP version is now 8.2
  • The following classes are now final:
    • CurrencyConversionException
    • MoneyMismatchException
    • UnknownCurrencyException
  • CustomContext now validates the step and will throw an exception if an invalid step is given
  • Interface MoneyContainer has been removed (replaced with Monetary)
  • Method AbstractMoney::getAmounts() has been removed (replaced with getMonies())
  • Method MoneyBag::getAmounts() has been removed (replaced with getMonies())
  • CurrencyConverter::convert() and convertToRational() now accept a Monetary instance (which still includes Money, RationalMoney and MoneyBag)
  • MoneyBag::add() and subtract() now accept a Monetary instance (which still includes Money, RationalMoney and MoneyBag)

⚠️ Deprecations

  • Calling Currency::of() with a numeric code is deprecated, use Currency::ofNumericCode() instead
  • Calling ISOCurrencyProvider::getCurrency() with a numeric code is deprecated, use getCurrencyByNumericCode() instead
  • Calling CurrencyConverter::convert() or convertToRational() with a numeric currency code is deprecated, use a Currency instance instead
  • Calling Money::of(), ofMinor(), zero() or convertedTo() with a numeric currency code is deprecated, use a Currency instance instead
  • Calling RationalMoney::of() with a numeric currency code is deprecated, use a Currency instance instead
  • MoneyBag::getAmount() is deprecated, use getMoney() instead
  • Money::formatTo() is deprecated, use Money::formatToLocale() instead
  • Money::formatWith() is deprecated, use MoneyNumberFormatter::format() instead
  • Currency::is() is deprecated, use Currency::isEqualTo() instead

[!IMPORTANT] The convenience of passing a currency by ISO numeric code in addition to alphabetic code has been deprecated, leaving only alphabetic-code lookup in generic APIs. For example, Money::of() will accept Currency|string in the future, instead of Currency|string|int today. This makes explicit the separation between retrieval by alphabetic code, which has strong backwards compatibility guarantees, and retrieval by numeric code, which may change in minor versions due to ISO reassignments. This will require users to explicitly obtain a currency through Currency::ofNumericCode(), which is documented as not being covered by the same BC guarantees.

New features

  • Support for historical currencies in Money::of(), Currency::of(), etc. (#104 by @​survik1)

... (truncated)

Commits
  • 44f262f Fix deprecated call to stripTrailingZeros()
  • 421de4f Update changelog
  • d365837 Fix calls to deprecated is()
  • 351270a Fix brick/math deprecations, use new RoundingMode cases
  • cf75011 Ignore deprecations in Psalm
  • 9f0861c Add changelog entry
  • 1676b4a Use trigger_deprecation() in deprecated methods
  • aac39fa Document potential changes in getAllCurrenciesForCountry()
  • 56ffc5f Prepare for release
  • a9fda39 Recompute data files and fix tests
  • Additional commits viewable in compare view

Updates dedoc/scramble from 0.13.6 to 0.13.14

Release notes

Sourced from dedoc/scramble's releases.

v0.13.14

What's Changed

Full Changelog: dedoc/scramble@v0.13.13...v0.13.14

v0.13.13

What's Changed

New Contributors

Full Changelog: dedoc/scramble@v0.13.12...v0.13.13

v0.13.12

What's Changed

Full Changelog: dedoc/scramble@v0.13.11...v0.13.12

v0.13.11

What's Changed

Full Changelog: dedoc/scramble@v0.13.10...v0.13.11

v0.13.10

What's Changed

New Contributors

... (truncated)

Commits
  • 8f0c1bb naming updates
  • fdd0e03 Constants as openapi const (#1086)
  • 5192ec8 setting type original during finalization
  • 0c14d1d Fixed keyed array types being properly unpacked when are parts of union (#1094)
  • 9c4a758 Improve @deprecated annotation support on arrays (#1093)
  • a197a13 Revert "Improce doc sort order (#1054)" (#1092)
  • 5983d68 Improce doc sort order (#1054)
  • 81e8ada Fixed model properties with datetime:Y-m-d cast being documented as `date-t...
  • d7d28f0 Fixed evaluation of class const fetch expression when name is 'class' (#1090)
  • 35a3b08 Fix: Correct title rendering logic in docs view to handle null values gracefu...
  • Additional commits viewable in compare view

Updates gotenberg/gotenberg-php from 2.15.1 to 2.17.0

Release notes

Sourced from gotenberg/gotenberg-php's releases.

v2.17.0

This release brings the client up-to-date with the latest Gotenberg version.

New method:

  • $chromium->emulatedMediaFeatures

See https://github.com/gotenberg/gotenberg/releases/tag/v8.27.0 for more details.

v2.16.0

This release brings the client up-to-date with the latest Gotenberg version.

New methods:

  • $chromium->waitForSelector
  • $chromium->ignoreResourceHttpStatusDomains

See https://github.com/gotenberg/gotenberg/releases/tag/v8.26.0 for more details.

Commits
  • 7e6b574 feat(chromium): add emulatedMediaFeatures
  • d5ca513 feat(chromium): add waitForSelector and ignoreResourceHttpStatusDomains methods
  • See full diff in compare view

Updates inertiajs/inertia-laravel from 2.0.11 to 2.0.20

Release notes

Sourced from inertiajs/inertia-laravel's releases.

v2.0.20

What's Changed

New Contributors

Full Changelog: inertiajs/inertia-laravel@v2.0.19...v2.0.20

v2.0.19

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.18...v2.0.19

v2.0.18

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.17...v2.0.18

v2.0.17

What's Changed

New Contributors

Full Changelog: inertiajs/inertia-laravel@v2.0.16...v2.0.17

v2.0.16

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.15...v2.0.16

v2.0.15

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.14...v2.0.15

v2.0.14

What's Changed

... (truncated)

Changelog

Sourced from inertiajs/inertia-laravel's changelog.

v2.0.20 - 2026-02-13

What's Changed

New Contributors

Full Changelog: inertiajs/inertia-laravel@v2.0.19...v2.0.20

v2.0.19 - 2026-01-13

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.18...v2.0.19

v2.0.18 - 2025-12-31

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.17...v2.0.18

v2.0.17 - 2025-12-30

What's Changed

New Contributors

Full Changelog: inertiajs/inertia-laravel@v2.0.16...v2.0.17

v2.0.16 - 2025-12-17

What's Changed

... (truncated)

Commits
  • 02a719d Fix inertia prop modifiers being ignored in provider classes (#821)
  • 18c4cea [2.x] Add assertInertiaFlash and assertInertiaFlashMissing test response ...
  • b9aac60 Removed duplicate import of RedirectResponse (#813)
  • 6e2b39f Revert "Remove $group property from DeferProp (#808)" (#811)
  • 62f15c6 Remove $group property from DeferProp (#808)
  • 466c4b8 Update CHANGELOG
  • 732a991 [2.x] Allow ScrollProp to be deferred (#806)
  • b00898c Update CHANGELOG
  • 90bac97 Add test helpers for Flash Data (#804)
  • e5ac48b Update CHANGELOG
  • Additional commits viewable in compare view

Updates laravel/framework from 12.40.2 to 12.52.0

Release notes

Sourced from laravel/framework's releases.

v12.52.0

... (truncated)

Changelog

Sourced from laravel/framework's changelog.

v12.52.0 - 2026-02-17

... (truncated)

Commits
  • d5511fa Update version to v12.52.0
  • fa95603 [12.x] Display closures and standalone functions correctly in exception trace...
  • cd704ff Revert "[12.x] Fixed precision checks for column types in SQL Server grammar ...
  • f9a2f15 [12.x] Remove unnecessary forgetDriver()from TestCaches (#58878)
  • d892631 Fix typo (#58875)
  • 4400212 [12.x] Allow closure parameters in docblock for when() helper function (#58862)
  • fd5b3c6 refactor: grammar (#58849)
  • 6c90022 Update HttpClientTest.php (#58817)
  • dec90c3 refactor: remove \BackedEnum (#58818)
  • 1cf38ed refactor: remove unnecessary if and return (#58820)
  • Additional commits viewable in compare view

Updates laravel/nightwatch from 1.19.0 to 1.22.3

Release notes

Sourced from laravel/nightwatch's releases.

v1.22.3

What's Changed

Full Changelog: laravel/nightwatch@v1.22.2...v1.22.3

v1.22.2

What's Changed

Full Changelog: laravel/nightwatch@v1.22.1...v1.22.2

v1.22.1

What's Changed

Full Changelog: laravel/nightwatch@v1.22.0...v1.22.1

v1.22.0

What's Changed

Full Changelog: laravel/nightwatch@v1.21.1...v1.22.0

v1.21.1

What's Changed

Full Changelog: https://gith...

Description has been truncated

Bumps the minor-updates group with 23 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [brick/money](https://github.com/brick/money) | `0.10.3` | `0.11.1` |
| [dedoc/scramble](https://github.com/dedoc/scramble) | `0.13.6` | `0.13.14` |
| [gotenberg/gotenberg-php](https://github.com/gotenberg/gotenberg-php) | `2.15.1` | `2.17.0` |
| [inertiajs/inertia-laravel](https://github.com/inertiajs/inertia-laravel) | `2.0.11` | `2.0.20` |
| [laravel/nightwatch](https://github.com/laravel/nightwatch) | `1.19.0` | `1.22.3` |
| [laravel/octane](https://github.com/laravel/octane) | `2.13.1` | `2.13.5` |
| [laravel/passport](https://github.com/laravel/passport) | `13.4.1` | `13.4.4` |
| [laravel/tinker](https://github.com/laravel/tinker) | `2.10.2` | `2.11.1` |
| [league/csv](https://github.com/thephpleague/csv) | `9.27.1` | `9.28.0` |
| [league/flysystem-aws-s3-v3](https://github.com/thephpleague/flysystem-aws-s3-v3) | `3.30.1` | `3.31.0` |
| [league/iso3166](https://github.com/alcohol/iso3166) | `4.3.3` | `4.4.0` |
| [spatie/temporary-directory](https://github.com/spatie/temporary-directory) | `2.3.0` | `2.3.1` |
| [tightenco/ziggy](https://github.com/tighten/ziggy) | `2.6.0` | `2.6.1` |
| [barryvdh/laravel-ide-helper](https://github.com/barryvdh/laravel-ide-helper) | `3.6.0` | `3.6.1` |
| [brianium/paratest](https://github.com/paratestphp/paratest) | `7.15.0` | `7.19.0` |
| [fumeapp/modeltyper](https://github.com/fumeapp/modeltyper) | `3.5.0` | `3.8.0` |
| [larastan/larastan](https://github.com/larastan/larastan) | `3.8.0` | `3.9.2` |
| [laravel/pint](https://github.com/laravel/pint) | `1.26.0` | `1.27.1` |
| [laravel/sail](https://github.com/laravel/sail) | `1.48.1` | `1.53.0` |
| [laravel/telescope](https://github.com/laravel/telescope) | `5.15.1` | `5.17.0` |
| [nunomaduro/collision](https://github.com/nunomaduro/collision) | `8.8.3` | `8.9.1` |
| [spatie/laravel-ignition](https://github.com/spatie/laravel-ignition) | `2.9.1` | `2.11.0` |
| [timacdonald/log-fake](https://github.com/timacdonald/log-fake) | `2.4.0` | `2.4.1` |



Updates `brick/money` from 0.10.3 to 0.11.1
- [Release notes](https://github.com/brick/money/releases)
- [Changelog](https://github.com/brick/money/blob/master/CHANGELOG.md)
- [Commits](brick/money@0.10.3...0.11.1)

Updates `dedoc/scramble` from 0.13.6 to 0.13.14
- [Release notes](https://github.com/dedoc/scramble/releases)
- [Commits](dedoc/scramble@v0.13.6...v0.13.14)

Updates `gotenberg/gotenberg-php` from 2.15.1 to 2.17.0
- [Release notes](https://github.com/gotenberg/gotenberg-php/releases)
- [Commits](gotenberg/gotenberg-php@v2.15.1...v2.17.0)

Updates `inertiajs/inertia-laravel` from 2.0.11 to 2.0.20
- [Release notes](https://github.com/inertiajs/inertia-laravel/releases)
- [Changelog](https://github.com/inertiajs/inertia-laravel/blob/2.x/CHANGELOG.md)
- [Commits](inertiajs/inertia-laravel@v2.0.11...v2.0.20)

Updates `laravel/framework` from 12.40.2 to 12.52.0
- [Release notes](https://github.com/laravel/framework/releases)
- [Changelog](https://github.com/laravel/framework/blob/12.x/CHANGELOG.md)
- [Commits](laravel/framework@v12.40.2...v12.52.0)

Updates `laravel/nightwatch` from 1.19.0 to 1.22.3
- [Release notes](https://github.com/laravel/nightwatch/releases)
- [Changelog](https://github.com/laravel/nightwatch/blob/1.x/CHANGELOG.md)
- [Commits](laravel/nightwatch@v1.19.0...v1.22.3)

Updates `laravel/octane` from 2.13.1 to 2.13.5
- [Release notes](https://github.com/laravel/octane/releases)
- [Changelog](https://github.com/laravel/octane/blob/2.x/CHANGELOG.md)
- [Commits](laravel/octane@v2.13.1...v2.13.5)

Updates `laravel/passport` from 13.4.1 to 13.4.4
- [Release notes](https://github.com/laravel/passport/releases)
- [Changelog](https://github.com/laravel/passport/blob/13.x/CHANGELOG.md)
- [Commits](laravel/passport@v13.4.1...v13.4.4)

Updates `laravel/tinker` from 2.10.2 to 2.11.1
- [Release notes](https://github.com/laravel/tinker/releases)
- [Changelog](https://github.com/laravel/tinker/blob/2.x/CHANGELOG.md)
- [Commits](laravel/tinker@v2.10.2...v2.11.1)

Updates `league/csv` from 9.27.1 to 9.28.0
- [Release notes](https://github.com/thephpleague/csv/releases)
- [Changelog](https://github.com/thephpleague/csv/blob/master/CHANGELOG.md)
- [Commits](thephpleague/csv@9.27.1...9.28.0)

Updates `league/flysystem-aws-s3-v3` from 3.30.1 to 3.31.0
- [Commits](thephpleague/flysystem-aws-s3-v3@3.30.1...3.31.0)

Updates `league/iso3166` from 4.3.3 to 4.4.0
- [Release notes](https://github.com/alcohol/iso3166/releases)
- [Changelog](https://github.com/alcohol/iso3166/blob/main/CHANGELOG.md)
- [Commits](alcohol/iso3166@4.3.3...4.4.0)

Updates `spatie/temporary-directory` from 2.3.0 to 2.3.1
- [Release notes](https://github.com/spatie/temporary-directory/releases)
- [Changelog](https://github.com/spatie/temporary-directory/blob/main/CHANGELOG.md)
- [Commits](spatie/temporary-directory@2.3.0...2.3.1)

Updates `tightenco/ziggy` from 2.6.0 to 2.6.1
- [Release notes](https://github.com/tighten/ziggy/releases)
- [Changelog](https://github.com/tighten/ziggy/blob/2.x/CHANGELOG.md)
- [Commits](tighten/ziggy@v2.6.0...v2.6.1)

Updates `barryvdh/laravel-ide-helper` from 3.6.0 to 3.6.1
- [Release notes](https://github.com/barryvdh/laravel-ide-helper/releases)
- [Changelog](https://github.com/barryvdh/laravel-ide-helper/blob/master/CHANGELOG.md)
- [Commits](barryvdh/laravel-ide-helper@v3.6.0...v3.6.1)

Updates `brianium/paratest` from 7.15.0 to 7.19.0
- [Release notes](https://github.com/paratestphp/paratest/releases)
- [Commits](paratestphp/paratest@v7.15.0...v7.19.0)

Updates `fumeapp/modeltyper` from 3.5.0 to 3.8.0
- [Release notes](https://github.com/fumeapp/modeltyper/releases)
- [Commits](fumeapp/modeltyper@v3.5.0...v3.8.0)

Updates `larastan/larastan` from 3.8.0 to 3.9.2
- [Release notes](https://github.com/larastan/larastan/releases)
- [Changelog](https://github.com/larastan/larastan/blob/3.x/RELEASE.md)
- [Commits](larastan/larastan@v3.8.0...v3.9.2)

Updates `laravel/pint` from 1.26.0 to 1.27.1
- [Release notes](https://github.com/laravel/pint/releases)
- [Changelog](https://github.com/laravel/pint/blob/main/CHANGELOG.md)
- [Commits](laravel/pint@v1.26.0...v1.27.1)

Updates `laravel/sail` from 1.48.1 to 1.53.0
- [Release notes](https://github.com/laravel/sail/releases)
- [Changelog](https://github.com/laravel/sail/blob/1.x/CHANGELOG.md)
- [Commits](laravel/sail@v1.48.1...v1.53.0)

Updates `laravel/telescope` from 5.15.1 to 5.17.0
- [Release notes](https://github.com/laravel/telescope/releases)
- [Changelog](https://github.com/laravel/telescope/blob/5.x/CHANGELOG.md)
- [Commits](laravel/telescope@v5.15.1...v5.17.0)

Updates `nunomaduro/collision` from 8.8.3 to 8.9.1
- [Commits](nunomaduro/collision@v8.8.3...v8.9.1)

Updates `phpunit/phpunit` from 12.4.5 to 12.5.14
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/12.5.14/ChangeLog-12.5.md)
- [Commits](sebastianbergmann/phpunit@12.4.5...12.5.14)

Updates `spatie/laravel-ignition` from 2.9.1 to 2.11.0
- [Release notes](https://github.com/spatie/laravel-ignition/releases)
- [Changelog](https://github.com/spatie/laravel-ignition/blob/main/CHANGELOG.md)
- [Commits](spatie/laravel-ignition@2.9.1...2.11.0)

Updates `timacdonald/log-fake` from 2.4.0 to 2.4.1
- [Release notes](https://github.com/timacdonald/log-fake/releases)
- [Commits](timacdonald/log-fake@v2.4.0...v2.4.1)

---
updated-dependencies:
- dependency-name: brick/money
  dependency-version: 0.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: dedoc/scramble
  dependency-version: 0.13.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: gotenberg/gotenberg-php
  dependency-version: 2.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: inertiajs/inertia-laravel
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: laravel/framework
  dependency-version: 12.52.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/nightwatch
  dependency-version: 1.22.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/octane
  dependency-version: 2.13.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: laravel/passport
  dependency-version: 13.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: laravel/tinker
  dependency-version: 2.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: league/csv
  dependency-version: 9.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: league/flysystem-aws-s3-v3
  dependency-version: 3.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: league/iso3166
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: spatie/temporary-directory
  dependency-version: 2.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: tightenco/ziggy
  dependency-version: 2.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: barryvdh/laravel-ide-helper
  dependency-version: 3.6.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: brianium/paratest
  dependency-version: 7.19.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: fumeapp/modeltyper
  dependency-version: 3.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: larastan/larastan
  dependency-version: 3.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/pint
  dependency-version: 1.27.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/sail
  dependency-version: 1.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/telescope
  dependency-version: 5.17.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: nunomaduro/collision
  dependency-version: 8.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: phpunit/phpunit
  dependency-version: 12.5.14
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: spatie/laravel-ignition
  dependency-version: 2.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: timacdonald/log-fake
  dependency-version: 2.4.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update php code labels Feb 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file php Pull requests that update php code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants