update .gitignore, composer update, MCP

This commit is contained in:
Bob Molitor
2025-10-31 12:57:06 +01:00
parent a8324e764d
commit ba20459c71
6 changed files with 230 additions and 165 deletions
+30 -2
View File
@@ -11,7 +11,7 @@ The Laravel Boost guidelines are specifically curated by Laravel maintainers for
## Foundational Context ## Foundational Context
This application is a Laravel application and its main Laravel ecosystems package & versions are below. You are an expert with them all. Ensure you abide by these specific packages & versions. This application is a Laravel application and its main Laravel ecosystems package & versions are below. You are an expert with them all. Ensure you abide by these specific packages & versions.
- php - 8.4.13 - php - 8.4.14
- laravel/fortify (FORTIFY) - v1 - laravel/fortify (FORTIFY) - v1
- laravel/framework (LARAVEL) - v12 - laravel/framework (LARAVEL) - v12
- laravel/prompts (PROMPTS) - v0 - laravel/prompts (PROMPTS) - v0
@@ -25,7 +25,6 @@ This application is a Laravel application and its main Laravel ecosystems packag
- phpunit/phpunit (PHPUNIT) - v12 - phpunit/phpunit (PHPUNIT) - v12
- tailwindcss (TAILWINDCSS) - v4 - tailwindcss (TAILWINDCSS) - v4
## Conventions ## Conventions
- You must follow all existing code conventions used in this application. When creating or editing a file, check sibling files for the correct structure, approach, naming. - You must follow all existing code conventions used in this application. When creating or editing a file, check sibling files for the correct structure, approach, naming.
- Use descriptive names for variables and methods. For example, `isRegisteredForDiscounts`, not `discount()`. - Use descriptive names for variables and methods. For example, `isRegisteredForDiscounts`, not `discount()`.
@@ -575,4 +574,33 @@ $pages->assertNoJavascriptErrors()->assertNoConsoleLogs();
- Every change must be programmatically tested. Write a new test or update an existing test, then run the affected tests to make sure they pass. - Every change must be programmatically tested. Write a new test or update an existing test, then run the affected tests to make sure they pass.
- Run the minimum number of tests needed to ensure code quality and speed. Use `php artisan test` with a specific filename or filter. - Run the minimum number of tests needed to ensure code quality and speed. Use `php artisan test` with a specific filename or filter.
=== laravel/fortify rules ===
## Laravel Fortify
Fortify is a headless authentication backend that provides authentication routes and controllers for Laravel applications.
**Before implementing any authentication features, use the `search-docs` tool to get the latest docs for that specific feature.**
### Configuration & Setup
- Check `config/fortify.php` to see what's enabled. Use `search-docs` for detailed information on specific features.
- Enable features by adding them to the `'features' => []` array: `Features::registration()`, `Features::resetPasswords()`, etc.
- To see the all Fortify registered routes, use the `list-routes` tool with the `only_vendor: true` and `action: "Fortify"` parameters.
- Fortify includes view routes by default (login, register). Set `'views' => false` in the configuration file to disable them if you're handling views yourself.
### Customization
- Views can be customized in `FortifyServiceProvider`'s `boot()` method using `Fortify::loginView()`, `Fortify::registerView()`, etc.
- Customize authentication logic with `Fortify::authenticateUsing()` for custom user retrieval / validation.
- Actions in `app/Actions/Fortify/` handle business logic (user creation, password reset, etc.). They're fully customizable, so you can modify them to change feature behavior.
## Available Features
- `Features::registration()` for user registration.
- `Features::emailVerification()` to verify new user emails.
- `Features::twoFactorAuthentication()` for 2FA with QR codes and recovery codes.
- Add options: `['confirmPassword' => true, 'confirm' => true]` to require password confirmation and OTP confirmation before enabling 2FA.
- `Features::updateProfileInformation()` to let users update their profile.
- `Features::updatePasswords()` to let users change their passwords.
- `Features::resetPasswords()` for password reset via email.
</laravel-boost-guidelines> </laravel-boost-guidelines>
+3 -1
View File
@@ -23,4 +23,6 @@ yarn-error.log
.DS_Store .DS_Store
env env
*.mcp* *.mcp*
*.mdc *.mdc
.mcp.json
AGENTS*.*
+5 -3
View File
@@ -13,7 +13,7 @@
"/Applications/Herd.app/Contents/Resources/herd-mcp.phar" "/Applications/Herd.app/Contents/Resources/herd-mcp.phar"
], ],
"env": { "env": {
"SITE_PATH": "/Users/sebastianfrohlich/Herd/frontend" "SITE_PATH": "/Users/bobmolitor/Herd/trusted_ai"
} }
}, },
"filesystem": { "filesystem": {
@@ -30,8 +30,10 @@
}, },
"bear": { "bear": {
"command": "node", "command": "node",
"args": ["/Users/sebastianfrohlich/Projekte/bear-notes-mcp/dist/index.js"], "args": [
"env": {} "/Users/sebastianfrohlich/Projekte/bear-notes-mcp/dist/index.js"
],
"env": []
}, },
"postgresql": { "postgresql": {
"command": "npx", "command": "npx",
+30 -2
View File
@@ -8,7 +8,7 @@ The Laravel Boost guidelines are specifically curated by Laravel maintainers for
## Foundational Context ## Foundational Context
This application is a Laravel application and its main Laravel ecosystems package & versions are below. You are an expert with them all. Ensure you abide by these specific packages & versions. This application is a Laravel application and its main Laravel ecosystems package & versions are below. You are an expert with them all. Ensure you abide by these specific packages & versions.
- php - 8.4.13 - php - 8.4.14
- laravel/fortify (FORTIFY) - v1 - laravel/fortify (FORTIFY) - v1
- laravel/framework (LARAVEL) - v12 - laravel/framework (LARAVEL) - v12
- laravel/prompts (PROMPTS) - v0 - laravel/prompts (PROMPTS) - v0
@@ -22,7 +22,6 @@ This application is a Laravel application and its main Laravel ecosystems packag
- phpunit/phpunit (PHPUNIT) - v12 - phpunit/phpunit (PHPUNIT) - v12
- tailwindcss (TAILWINDCSS) - v4 - tailwindcss (TAILWINDCSS) - v4
## Conventions ## Conventions
- You must follow all existing code conventions used in this application. When creating or editing a file, check sibling files for the correct structure, approach, naming. - You must follow all existing code conventions used in this application. When creating or editing a file, check sibling files for the correct structure, approach, naming.
- Use descriptive names for variables and methods. For example, `isRegisteredForDiscounts`, not `discount()`. - Use descriptive names for variables and methods. For example, `isRegisteredForDiscounts`, not `discount()`.
@@ -572,4 +571,33 @@ $pages->assertNoJavascriptErrors()->assertNoConsoleLogs();
- Every change must be programmatically tested. Write a new test or update an existing test, then run the affected tests to make sure they pass. - Every change must be programmatically tested. Write a new test or update an existing test, then run the affected tests to make sure they pass.
- Run the minimum number of tests needed to ensure code quality and speed. Use `php artisan test` with a specific filename or filter. - Run the minimum number of tests needed to ensure code quality and speed. Use `php artisan test` with a specific filename or filter.
=== laravel/fortify rules ===
## Laravel Fortify
Fortify is a headless authentication backend that provides authentication routes and controllers for Laravel applications.
**Before implementing any authentication features, use the `search-docs` tool to get the latest docs for that specific feature.**
### Configuration & Setup
- Check `config/fortify.php` to see what's enabled. Use `search-docs` for detailed information on specific features.
- Enable features by adding them to the `'features' => []` array: `Features::registration()`, `Features::resetPasswords()`, etc.
- To see the all Fortify registered routes, use the `list-routes` tool with the `only_vendor: true` and `action: "Fortify"` parameters.
- Fortify includes view routes by default (login, register). Set `'views' => false` in the configuration file to disable them if you're handling views yourself.
### Customization
- Views can be customized in `FortifyServiceProvider`'s `boot()` method using `Fortify::loginView()`, `Fortify::registerView()`, etc.
- Customize authentication logic with `Fortify::authenticateUsing()` for custom user retrieval / validation.
- Actions in `app/Actions/Fortify/` handle business logic (user creation, password reset, etc.). They're fully customizable, so you can modify them to change feature behavior.
## Available Features
- `Features::registration()` for user registration.
- `Features::emailVerification()` to verify new user emails.
- `Features::twoFactorAuthentication()` for 2FA with QR codes and recovery codes.
- Add options: `['confirmPassword' => true, 'confirm' => true]` to require password confirmation and OTP confirmation before enabling 2FA.
- `Features::updateProfileInformation()` to let users update their profile.
- `Features::updatePasswords()` to let users change their passwords.
- `Features::resetPasswords()` for password reset via email.
</laravel-boost-guidelines> </laravel-boost-guidelines>
+2 -1
View File
@@ -61,7 +61,8 @@
"@php artisan package:discover --ansi" "@php artisan package:discover --ansi"
], ],
"post-update-cmd": [ "post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force" "@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan boost:update --ansi"
], ],
"post-root-package-install": [ "post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
Generated
+160 -156
View File
@@ -1159,16 +1159,16 @@
}, },
{ {
"name": "laravel/fortify", "name": "laravel/fortify",
"version": "v1.31.1", "version": "v1.31.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/fortify.git", "url": "https://github.com/laravel/fortify.git",
"reference": "e39a49592e1440508337a765cdc913ff5bcba66f" "reference": "a046d52ee087ee52c9852b840cf4bbad19f10934"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/fortify/zipball/e39a49592e1440508337a765cdc913ff5bcba66f", "url": "https://api.github.com/repos/laravel/fortify/zipball/a046d52ee087ee52c9852b840cf4bbad19f10934",
"reference": "e39a49592e1440508337a765cdc913ff5bcba66f", "reference": "a046d52ee087ee52c9852b840cf4bbad19f10934",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1220,20 +1220,20 @@
"issues": "https://github.com/laravel/fortify/issues", "issues": "https://github.com/laravel/fortify/issues",
"source": "https://github.com/laravel/fortify" "source": "https://github.com/laravel/fortify"
}, },
"time": "2025-10-03T09:10:57+00:00" "time": "2025-10-21T14:47:38+00:00"
}, },
{ {
"name": "laravel/framework", "name": "laravel/framework",
"version": "v12.34.0", "version": "v12.36.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/framework.git", "url": "https://github.com/laravel/framework.git",
"reference": "f9ec5a5d88bc8c468f17b59f88e05c8ac3c8d687" "reference": "cad110d7685fbab990a6bb8184d0cfd847d7c4d8"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/f9ec5a5d88bc8c468f17b59f88e05c8ac3c8d687", "url": "https://api.github.com/repos/laravel/framework/zipball/cad110d7685fbab990a6bb8184d0cfd847d7c4d8",
"reference": "f9ec5a5d88bc8c468f17b59f88e05c8ac3c8d687", "reference": "cad110d7685fbab990a6bb8184d0cfd847d7c4d8",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1439,7 +1439,7 @@
"issues": "https://github.com/laravel/framework/issues", "issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework" "source": "https://github.com/laravel/framework"
}, },
"time": "2025-10-14T13:58:31+00:00" "time": "2025-10-29T14:20:57+00:00"
}, },
{ {
"name": "laravel/prompts", "name": "laravel/prompts",
@@ -1818,16 +1818,16 @@
}, },
{ {
"name": "league/flysystem", "name": "league/flysystem",
"version": "3.30.0", "version": "3.30.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/thephpleague/flysystem.git", "url": "https://github.com/thephpleague/flysystem.git",
"reference": "2203e3151755d874bb2943649dae1eb8533ac93e" "reference": "c139fd65c1f796b926f4aec0df37f6caa959a8da"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2203e3151755d874bb2943649dae1eb8533ac93e", "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/c139fd65c1f796b926f4aec0df37f6caa959a8da",
"reference": "2203e3151755d874bb2943649dae1eb8533ac93e", "reference": "c139fd65c1f796b926f4aec0df37f6caa959a8da",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1895,9 +1895,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/thephpleague/flysystem/issues", "issues": "https://github.com/thephpleague/flysystem/issues",
"source": "https://github.com/thephpleague/flysystem/tree/3.30.0" "source": "https://github.com/thephpleague/flysystem/tree/3.30.1"
}, },
"time": "2025-06-25T13:29:59+00:00" "time": "2025-10-20T15:35:26+00:00"
}, },
{ {
"name": "league/flysystem-local", "name": "league/flysystem-local",
@@ -2180,16 +2180,16 @@
}, },
{ {
"name": "livewire/flux", "name": "livewire/flux",
"version": "v2.6.0", "version": "v2.6.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/livewire/flux.git", "url": "https://github.com/livewire/flux.git",
"reference": "3cb2ea40978449da74b3814eeef75f0388124224" "reference": "227b88db0a02db91666af2303ea6727a3af78c51"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/livewire/flux/zipball/3cb2ea40978449da74b3814eeef75f0388124224", "url": "https://api.github.com/repos/livewire/flux/zipball/227b88db0a02db91666af2303ea6727a3af78c51",
"reference": "3cb2ea40978449da74b3814eeef75f0388124224", "reference": "227b88db0a02db91666af2303ea6727a3af78c51",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -2197,7 +2197,7 @@
"illuminate/support": "^10.0|^11.0|^12.0", "illuminate/support": "^10.0|^11.0|^12.0",
"illuminate/view": "^10.0|^11.0|^12.0", "illuminate/view": "^10.0|^11.0|^12.0",
"laravel/prompts": "^0.1|^0.2|^0.3", "laravel/prompts": "^0.1|^0.2|^0.3",
"livewire/livewire": "^3.5.19", "livewire/livewire": "^3.5.19|^4.0",
"php": "^8.1", "php": "^8.1",
"symfony/console": "^6.0|^7.0" "symfony/console": "^6.0|^7.0"
}, },
@@ -2240,9 +2240,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/livewire/flux/issues", "issues": "https://github.com/livewire/flux/issues",
"source": "https://github.com/livewire/flux/tree/v2.6.0" "source": "https://github.com/livewire/flux/tree/v2.6.1"
}, },
"time": "2025-10-13T23:17:18+00:00" "time": "2025-10-28T21:12:05+00:00"
}, },
{ {
"name": "livewire/livewire", "name": "livewire/livewire",
@@ -2322,21 +2322,21 @@
}, },
{ {
"name": "livewire/volt", "name": "livewire/volt",
"version": "v1.7.2", "version": "v1.8.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/livewire/volt.git", "url": "https://github.com/livewire/volt.git",
"reference": "91ba934e72bbd162442840862959ade24dbe728a" "reference": "2d9783a340d612d32f4ffd38070780ca7d7e9205"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/livewire/volt/zipball/91ba934e72bbd162442840862959ade24dbe728a", "url": "https://api.github.com/repos/livewire/volt/zipball/2d9783a340d612d32f4ffd38070780ca7d7e9205",
"reference": "91ba934e72bbd162442840862959ade24dbe728a", "reference": "2d9783a340d612d32f4ffd38070780ca7d7e9205",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"laravel/framework": "^10.38.2|^11.0|^12.0", "laravel/framework": "^10.38.2|^11.0|^12.0",
"livewire/livewire": "^3.6.1", "livewire/livewire": "^3.6.1|^4.0",
"php": "^8.1" "php": "^8.1"
}, },
"require-dev": { "require-dev": {
@@ -2390,7 +2390,7 @@
"issues": "https://github.com/livewire/volt/issues", "issues": "https://github.com/livewire/volt/issues",
"source": "https://github.com/livewire/volt" "source": "https://github.com/livewire/volt"
}, },
"time": "2025-08-06T15:40:50+00:00" "time": "2025-10-29T15:52:35+00:00"
}, },
{ {
"name": "monolog/monolog", "name": "monolog/monolog",
@@ -2602,25 +2602,25 @@
}, },
{ {
"name": "nette/schema", "name": "nette/schema",
"version": "v1.3.2", "version": "v1.3.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nette/schema.git", "url": "https://github.com/nette/schema.git",
"reference": "da801d52f0354f70a638673c4a0f04e16529431d" "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d", "url": "https://api.github.com/repos/nette/schema/zipball/2befc2f42d7c715fd9d95efc31b1081e5d765004",
"reference": "da801d52f0354f70a638673c4a0f04e16529431d", "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"nette/utils": "^4.0", "nette/utils": "^4.0",
"php": "8.1 - 8.4" "php": "8.1 - 8.5"
}, },
"require-dev": { "require-dev": {
"nette/tester": "^2.5.2", "nette/tester": "^2.5.2",
"phpstan/phpstan-nette": "^1.0", "phpstan/phpstan-nette": "^2.0@stable",
"tracy/tracy": "^2.8" "tracy/tracy": "^2.8"
}, },
"type": "library", "type": "library",
@@ -2630,6 +2630,9 @@
} }
}, },
"autoload": { "autoload": {
"psr-4": {
"Nette\\": "src"
},
"classmap": [ "classmap": [
"src/" "src/"
] ]
@@ -2658,9 +2661,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/nette/schema/issues", "issues": "https://github.com/nette/schema/issues",
"source": "https://github.com/nette/schema/tree/v1.3.2" "source": "https://github.com/nette/schema/tree/v1.3.3"
}, },
"time": "2024-10-06T23:10:23+00:00" "time": "2025-10-30T22:57:59+00:00"
}, },
{ {
"name": "nette/utils", "name": "nette/utils",
@@ -2753,16 +2756,16 @@
}, },
{ {
"name": "nikic/php-parser", "name": "nikic/php-parser",
"version": "v5.6.1", "version": "v5.6.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nikic/PHP-Parser.git", "url": "https://github.com/nikic/PHP-Parser.git",
"reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2" "reference": "3a454ca033b9e06b63282ce19562e892747449bb"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2", "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/3a454ca033b9e06b63282ce19562e892747449bb",
"reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2", "reference": "3a454ca033b9e06b63282ce19562e892747449bb",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -2805,9 +2808,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/nikic/PHP-Parser/issues", "issues": "https://github.com/nikic/PHP-Parser/issues",
"source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1" "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.2"
}, },
"time": "2025-08-13T20:13:15+00:00" "time": "2025-10-21T19:32:17+00:00"
}, },
{ {
"name": "nunomaduro/termwind", "name": "nunomaduro/termwind",
@@ -3506,16 +3509,16 @@
}, },
{ {
"name": "psy/psysh", "name": "psy/psysh",
"version": "v0.12.12", "version": "v0.12.14",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/bobthecow/psysh.git", "url": "https://github.com/bobthecow/psysh.git",
"reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7" "reference": "95c29b3756a23855a30566b745d218bee690bef2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/cd23863404a40ccfaf733e3af4db2b459837f7e7", "url": "https://api.github.com/repos/bobthecow/psysh/zipball/95c29b3756a23855a30566b745d218bee690bef2",
"reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7", "reference": "95c29b3756a23855a30566b745d218bee690bef2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -3530,11 +3533,12 @@
"symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
}, },
"require-dev": { "require-dev": {
"bamarni/composer-bin-plugin": "^1.2" "bamarni/composer-bin-plugin": "^1.2",
"composer/class-map-generator": "^1.6"
}, },
"suggest": { "suggest": {
"composer/class-map-generator": "Improved tab completion performance with better class discovery.",
"ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
"ext-pdo-sqlite": "The doc command requires SQLite to work.",
"ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
}, },
"bin": [ "bin": [
@@ -3578,9 +3582,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/bobthecow/psysh/issues", "issues": "https://github.com/bobthecow/psysh/issues",
"source": "https://github.com/bobthecow/psysh/tree/v0.12.12" "source": "https://github.com/bobthecow/psysh/tree/v0.12.14"
}, },
"time": "2025-09-20T13:46:31+00:00" "time": "2025-10-27T17:15:31+00:00"
}, },
{ {
"name": "ralouphie/getallheaders", "name": "ralouphie/getallheaders",
@@ -3856,16 +3860,16 @@
}, },
{ {
"name": "symfony/console", "name": "symfony/console",
"version": "v7.3.4", "version": "v7.3.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/console.git", "url": "https://github.com/symfony/console.git",
"reference": "2b9c5fafbac0399a20a2e82429e2bd735dcfb7db" "reference": "cdb80fa5869653c83cfe1a9084a673b6daf57ea7"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/2b9c5fafbac0399a20a2e82429e2bd735dcfb7db", "url": "https://api.github.com/repos/symfony/console/zipball/cdb80fa5869653c83cfe1a9084a673b6daf57ea7",
"reference": "2b9c5fafbac0399a20a2e82429e2bd735dcfb7db", "reference": "cdb80fa5869653c83cfe1a9084a673b6daf57ea7",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -3930,7 +3934,7 @@
"terminal" "terminal"
], ],
"support": { "support": {
"source": "https://github.com/symfony/console/tree/v7.3.4" "source": "https://github.com/symfony/console/tree/v7.3.5"
}, },
"funding": [ "funding": [
{ {
@@ -3950,7 +3954,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-09-22T15:31:00+00:00" "time": "2025-10-14T15:46:26+00:00"
}, },
{ {
"name": "symfony/css-selector", "name": "symfony/css-selector",
@@ -4327,16 +4331,16 @@
}, },
{ {
"name": "symfony/finder", "name": "symfony/finder",
"version": "v7.3.2", "version": "v7.3.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/finder.git", "url": "https://github.com/symfony/finder.git",
"reference": "2a6614966ba1074fa93dae0bc804227422df4dfe" "reference": "9f696d2f1e340484b4683f7853b273abff94421f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/finder/zipball/2a6614966ba1074fa93dae0bc804227422df4dfe", "url": "https://api.github.com/repos/symfony/finder/zipball/9f696d2f1e340484b4683f7853b273abff94421f",
"reference": "2a6614966ba1074fa93dae0bc804227422df4dfe", "reference": "9f696d2f1e340484b4683f7853b273abff94421f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -4371,7 +4375,7 @@
"description": "Finds files and directories via an intuitive fluent interface", "description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/finder/tree/v7.3.2" "source": "https://github.com/symfony/finder/tree/v7.3.5"
}, },
"funding": [ "funding": [
{ {
@@ -4391,20 +4395,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-07-15T13:41:35+00:00" "time": "2025-10-15T18:45:57+00:00"
}, },
{ {
"name": "symfony/http-foundation", "name": "symfony/http-foundation",
"version": "v7.3.4", "version": "v7.3.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-foundation.git", "url": "https://github.com/symfony/http-foundation.git",
"reference": "c061c7c18918b1b64268771aad04b40be41dd2e6" "reference": "ce31218c7cac92eab280762c4375fb70a6f4f897"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/c061c7c18918b1b64268771aad04b40be41dd2e6", "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ce31218c7cac92eab280762c4375fb70a6f4f897",
"reference": "c061c7c18918b1b64268771aad04b40be41dd2e6", "reference": "ce31218c7cac92eab280762c4375fb70a6f4f897",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -4454,7 +4458,7 @@
"description": "Defines an object-oriented layer for the HTTP specification", "description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/http-foundation/tree/v7.3.4" "source": "https://github.com/symfony/http-foundation/tree/v7.3.5"
}, },
"funding": [ "funding": [
{ {
@@ -4474,20 +4478,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-09-16T08:38:17+00:00" "time": "2025-10-24T21:42:11+00:00"
}, },
{ {
"name": "symfony/http-kernel", "name": "symfony/http-kernel",
"version": "v7.3.4", "version": "v7.3.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-kernel.git", "url": "https://github.com/symfony/http-kernel.git",
"reference": "b796dffea7821f035047235e076b60ca2446e3cf" "reference": "24fd3f123532e26025f49f1abefcc01a69ef15ab"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/b796dffea7821f035047235e076b60ca2446e3cf", "url": "https://api.github.com/repos/symfony/http-kernel/zipball/24fd3f123532e26025f49f1abefcc01a69ef15ab",
"reference": "b796dffea7821f035047235e076b60ca2446e3cf", "reference": "24fd3f123532e26025f49f1abefcc01a69ef15ab",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -4572,7 +4576,7 @@
"description": "Provides a structured process for converting a Request into a Response", "description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/http-kernel/tree/v7.3.4" "source": "https://github.com/symfony/http-kernel/tree/v7.3.5"
}, },
"funding": [ "funding": [
{ {
@@ -4592,20 +4596,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-09-27T12:32:17+00:00" "time": "2025-10-28T10:19:01+00:00"
}, },
{ {
"name": "symfony/mailer", "name": "symfony/mailer",
"version": "v7.3.4", "version": "v7.3.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/mailer.git", "url": "https://github.com/symfony/mailer.git",
"reference": "ab97ef2f7acf0216955f5845484235113047a31d" "reference": "fd497c45ba9c10c37864e19466b090dcb60a50ba"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/mailer/zipball/ab97ef2f7acf0216955f5845484235113047a31d", "url": "https://api.github.com/repos/symfony/mailer/zipball/fd497c45ba9c10c37864e19466b090dcb60a50ba",
"reference": "ab97ef2f7acf0216955f5845484235113047a31d", "reference": "fd497c45ba9c10c37864e19466b090dcb60a50ba",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -4656,7 +4660,7 @@
"description": "Helps sending emails", "description": "Helps sending emails",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/mailer/tree/v7.3.4" "source": "https://github.com/symfony/mailer/tree/v7.3.5"
}, },
"funding": [ "funding": [
{ {
@@ -4676,7 +4680,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-09-17T05:51:54+00:00" "time": "2025-10-24T14:27:20+00:00"
}, },
{ {
"name": "symfony/mime", "name": "symfony/mime",
@@ -6172,16 +6176,16 @@
}, },
{ {
"name": "symfony/var-dumper", "name": "symfony/var-dumper",
"version": "v7.3.4", "version": "v7.3.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/var-dumper.git", "url": "https://github.com/symfony/var-dumper.git",
"reference": "b8abe7daf2730d07dfd4b2ee1cecbf0dd2fbdabb" "reference": "476c4ae17f43a9a36650c69879dcf5b1e6ae724d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/b8abe7daf2730d07dfd4b2ee1cecbf0dd2fbdabb", "url": "https://api.github.com/repos/symfony/var-dumper/zipball/476c4ae17f43a9a36650c69879dcf5b1e6ae724d",
"reference": "b8abe7daf2730d07dfd4b2ee1cecbf0dd2fbdabb", "reference": "476c4ae17f43a9a36650c69879dcf5b1e6ae724d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -6235,7 +6239,7 @@
"dump" "dump"
], ],
"support": { "support": {
"source": "https://github.com/symfony/var-dumper/tree/v7.3.4" "source": "https://github.com/symfony/var-dumper/tree/v7.3.5"
}, },
"funding": [ "funding": [
{ {
@@ -6255,7 +6259,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-09-11T10:12:26+00:00" "time": "2025-09-27T09:00:46+00:00"
}, },
{ {
"name": "tijsverkoyen/css-to-inline-styles", "name": "tijsverkoyen/css-to-inline-styles",
@@ -6472,28 +6476,28 @@
}, },
{ {
"name": "webmozart/assert", "name": "webmozart/assert",
"version": "1.11.0", "version": "1.12.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/webmozarts/assert.git", "url": "https://github.com/webmozarts/assert.git",
"reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" "reference": "9be6926d8b485f55b9229203f962b51ed377ba68"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", "url": "https://api.github.com/repos/webmozarts/assert/zipball/9be6926d8b485f55b9229203f962b51ed377ba68",
"reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", "reference": "9be6926d8b485f55b9229203f962b51ed377ba68",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-ctype": "*", "ext-ctype": "*",
"ext-date": "*",
"ext-filter": "*",
"php": "^7.2 || ^8.0" "php": "^7.2 || ^8.0"
}, },
"conflict": { "suggest": {
"phpstan/phpstan": "<0.12.20", "ext-intl": "",
"vimeo/psalm": "<4.6.1 || 4.6.2" "ext-simplexml": "",
}, "ext-spl": ""
"require-dev": {
"phpunit/phpunit": "^8.5.13"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
@@ -6524,24 +6528,24 @@
], ],
"support": { "support": {
"issues": "https://github.com/webmozarts/assert/issues", "issues": "https://github.com/webmozarts/assert/issues",
"source": "https://github.com/webmozarts/assert/tree/1.11.0" "source": "https://github.com/webmozarts/assert/tree/1.12.1"
}, },
"time": "2022-06-03T18:03:27+00:00" "time": "2025-10-29T15:56:20+00:00"
} }
], ],
"packages-dev": [ "packages-dev": [
{ {
"name": "brianium/paratest", "name": "brianium/paratest",
"version": "v7.14.1", "version": "v7.14.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/paratestphp/paratest.git", "url": "https://github.com/paratestphp/paratest.git",
"reference": "e1a93c38a94f4808faf75552e835666d3a6f8bb2" "reference": "de06de1ae1203b11976c6ca01d6a9081c8b33d45"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/paratestphp/paratest/zipball/e1a93c38a94f4808faf75552e835666d3a6f8bb2", "url": "https://api.github.com/repos/paratestphp/paratest/zipball/de06de1ae1203b11976c6ca01d6a9081c8b33d45",
"reference": "e1a93c38a94f4808faf75552e835666d3a6f8bb2", "reference": "de06de1ae1203b11976c6ca01d6a9081c8b33d45",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -6555,7 +6559,7 @@
"phpunit/php-code-coverage": "^12.4.0", "phpunit/php-code-coverage": "^12.4.0",
"phpunit/php-file-iterator": "^6", "phpunit/php-file-iterator": "^6",
"phpunit/php-timer": "^8", "phpunit/php-timer": "^8",
"phpunit/phpunit": "^12.4.0", "phpunit/phpunit": "^12.4.1",
"sebastian/environment": "^8.0.3", "sebastian/environment": "^8.0.3",
"symfony/console": "^6.4.20 || ^7.3.4", "symfony/console": "^6.4.20 || ^7.3.4",
"symfony/process": "^6.4.20 || ^7.3.4" "symfony/process": "^6.4.20 || ^7.3.4"
@@ -6565,7 +6569,7 @@
"ext-pcntl": "*", "ext-pcntl": "*",
"ext-pcov": "*", "ext-pcov": "*",
"ext-posix": "*", "ext-posix": "*",
"phpstan/phpstan": "^2.1.30", "phpstan/phpstan": "^2.1.31",
"phpstan/phpstan-deprecation-rules": "^2.0.3", "phpstan/phpstan-deprecation-rules": "^2.0.3",
"phpstan/phpstan-phpunit": "^2.0.7", "phpstan/phpstan-phpunit": "^2.0.7",
"phpstan/phpstan-strict-rules": "^2.0.7", "phpstan/phpstan-strict-rules": "^2.0.7",
@@ -6609,7 +6613,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/paratestphp/paratest/issues", "issues": "https://github.com/paratestphp/paratest/issues",
"source": "https://github.com/paratestphp/paratest/tree/v7.14.1" "source": "https://github.com/paratestphp/paratest/tree/v7.14.2"
}, },
"funding": [ "funding": [
{ {
@@ -6621,7 +6625,7 @@
"type": "paypal" "type": "paypal"
} }
], ],
"time": "2025-10-06T08:26:52+00:00" "time": "2025-10-24T07:20:53+00:00"
}, },
{ {
"name": "doctrine/deprecations", "name": "doctrine/deprecations",
@@ -6979,16 +6983,16 @@
}, },
{ {
"name": "laravel/boost", "name": "laravel/boost",
"version": "v1.4.0", "version": "v1.6.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/boost.git", "url": "https://github.com/laravel/boost.git",
"reference": "8d2dedf7779c2e175a02a176dec38e6f9b35352b" "reference": "29d1c7c5a816d2b55c39f50bb07bdbca6c595b09"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/boost/zipball/8d2dedf7779c2e175a02a176dec38e6f9b35352b", "url": "https://api.github.com/repos/laravel/boost/zipball/29d1c7c5a816d2b55c39f50bb07bdbca6c595b09",
"reference": "8d2dedf7779c2e175a02a176dec38e6f9b35352b", "reference": "29d1c7c5a816d2b55c39f50bb07bdbca6c595b09",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -6999,7 +7003,7 @@
"illuminate/support": "^10.49.0|^11.45.3|^12.28.1", "illuminate/support": "^10.49.0|^11.45.3|^12.28.1",
"laravel/mcp": "^0.2.0|^0.3.0", "laravel/mcp": "^0.2.0|^0.3.0",
"laravel/prompts": "0.1.25|^0.3.6", "laravel/prompts": "0.1.25|^0.3.6",
"laravel/roster": "^0.2.8", "laravel/roster": "^0.2.9",
"php": "^8.1" "php": "^8.1"
}, },
"require-dev": { "require-dev": {
@@ -7041,20 +7045,20 @@
"issues": "https://github.com/laravel/boost/issues", "issues": "https://github.com/laravel/boost/issues",
"source": "https://github.com/laravel/boost" "source": "https://github.com/laravel/boost"
}, },
"time": "2025-10-14T01:13:19+00:00" "time": "2025-10-28T17:43:53+00:00"
}, },
{ {
"name": "laravel/mcp", "name": "laravel/mcp",
"version": "v0.3.0", "version": "v0.3.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/mcp.git", "url": "https://github.com/laravel/mcp.git",
"reference": "4e1389eedb4741a624e26cc3660b31bae04c4342" "reference": "dc722a4c388f172365dec70461f0413ac366f360"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/mcp/zipball/4e1389eedb4741a624e26cc3660b31bae04c4342", "url": "https://api.github.com/repos/laravel/mcp/zipball/dc722a4c388f172365dec70461f0413ac366f360",
"reference": "4e1389eedb4741a624e26cc3660b31bae04c4342", "reference": "dc722a4c388f172365dec70461f0413ac366f360",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -7075,7 +7079,7 @@
"orchestra/testbench": "^8.36.0|^9.15.0|^10.6.0", "orchestra/testbench": "^8.36.0|^9.15.0|^10.6.0",
"pestphp/pest": "^2.36.0|^3.8.4|^4.1.0", "pestphp/pest": "^2.36.0|^3.8.4|^4.1.0",
"phpstan/phpstan": "^2.1.27", "phpstan/phpstan": "^2.1.27",
"rector/rector": "^2.1.7" "rector/rector": "^2.2.4"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
@@ -7114,7 +7118,7 @@
"issues": "https://github.com/laravel/mcp/issues", "issues": "https://github.com/laravel/mcp/issues",
"source": "https://github.com/laravel/mcp" "source": "https://github.com/laravel/mcp"
}, },
"time": "2025-10-07T14:28:56+00:00" "time": "2025-10-29T14:26:01+00:00"
}, },
{ {
"name": "laravel/pail", "name": "laravel/pail",
@@ -7263,16 +7267,16 @@
}, },
{ {
"name": "laravel/roster", "name": "laravel/roster",
"version": "v0.2.8", "version": "v0.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/roster.git", "url": "https://github.com/laravel/roster.git",
"reference": "832a6db43743bf08a58691da207f977ec8dc43aa" "reference": "82bbd0e2de614906811aebdf16b4305956816fa6"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/roster/zipball/832a6db43743bf08a58691da207f977ec8dc43aa", "url": "https://api.github.com/repos/laravel/roster/zipball/82bbd0e2de614906811aebdf16b4305956816fa6",
"reference": "832a6db43743bf08a58691da207f977ec8dc43aa", "reference": "82bbd0e2de614906811aebdf16b4305956816fa6",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -7320,20 +7324,20 @@
"issues": "https://github.com/laravel/roster/issues", "issues": "https://github.com/laravel/roster/issues",
"source": "https://github.com/laravel/roster" "source": "https://github.com/laravel/roster"
}, },
"time": "2025-09-22T13:28:47+00:00" "time": "2025-10-20T09:56:46+00:00"
}, },
{ {
"name": "laravel/sail", "name": "laravel/sail",
"version": "v1.46.0", "version": "v1.47.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/sail.git", "url": "https://github.com/laravel/sail.git",
"reference": "eb90c4f113c4a9637b8fdd16e24cfc64f2b0ae6e" "reference": "9a11e822238167ad8b791e4ea51155d25cf4d8f2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/sail/zipball/eb90c4f113c4a9637b8fdd16e24cfc64f2b0ae6e", "url": "https://api.github.com/repos/laravel/sail/zipball/9a11e822238167ad8b791e4ea51155d25cf4d8f2",
"reference": "eb90c4f113c4a9637b8fdd16e24cfc64f2b0ae6e", "reference": "9a11e822238167ad8b791e4ea51155d25cf4d8f2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -7346,7 +7350,7 @@
}, },
"require-dev": { "require-dev": {
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
"phpstan/phpstan": "^1.10" "phpstan/phpstan": "^2.0"
}, },
"bin": [ "bin": [
"bin/sail" "bin/sail"
@@ -7383,7 +7387,7 @@
"issues": "https://github.com/laravel/sail/issues", "issues": "https://github.com/laravel/sail/issues",
"source": "https://github.com/laravel/sail" "source": "https://github.com/laravel/sail"
}, },
"time": "2025-09-23T13:44:39+00:00" "time": "2025-10-28T13:55:29+00:00"
}, },
{ {
"name": "mockery/mockery", "name": "mockery/mockery",
@@ -7629,16 +7633,16 @@
}, },
{ {
"name": "pestphp/pest", "name": "pestphp/pest",
"version": "v4.1.2", "version": "v4.1.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/pestphp/pest.git", "url": "https://github.com/pestphp/pest.git",
"reference": "08b09f2e98fc6830050c0237968b233768642d46" "reference": "477d20a54fd9329ddfb0f8d4eb90dca7bc81b027"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/pestphp/pest/zipball/08b09f2e98fc6830050c0237968b233768642d46", "url": "https://api.github.com/repos/pestphp/pest/zipball/477d20a54fd9329ddfb0f8d4eb90dca7bc81b027",
"reference": "08b09f2e98fc6830050c0237968b233768642d46", "reference": "477d20a54fd9329ddfb0f8d4eb90dca7bc81b027",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -7650,12 +7654,12 @@
"pestphp/pest-plugin-mutate": "^4.0.1", "pestphp/pest-plugin-mutate": "^4.0.1",
"pestphp/pest-plugin-profanity": "^4.1.0", "pestphp/pest-plugin-profanity": "^4.1.0",
"php": "^8.3.0", "php": "^8.3.0",
"phpunit/phpunit": "^12.4.0", "phpunit/phpunit": "^12.4.1",
"symfony/process": "^7.3.4" "symfony/process": "^7.3.4"
}, },
"conflict": { "conflict": {
"filp/whoops": "<2.18.3", "filp/whoops": "<2.18.3",
"phpunit/phpunit": ">12.4.0", "phpunit/phpunit": ">12.4.1",
"sebastian/exporter": "<7.0.0", "sebastian/exporter": "<7.0.0",
"webmozart/assert": "<1.11.0" "webmozart/assert": "<1.11.0"
}, },
@@ -7729,7 +7733,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/pestphp/pest/issues", "issues": "https://github.com/pestphp/pest/issues",
"source": "https://github.com/pestphp/pest/tree/v4.1.2" "source": "https://github.com/pestphp/pest/tree/v4.1.3"
}, },
"funding": [ "funding": [
{ {
@@ -7741,7 +7745,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2025-10-05T19:09:49+00:00" "time": "2025-10-29T22:45:27+00:00"
}, },
{ {
"name": "pestphp/pest-plugin", "name": "pestphp/pest-plugin",
@@ -8035,16 +8039,16 @@
}, },
{ {
"name": "pestphp/pest-plugin-profanity", "name": "pestphp/pest-plugin-profanity",
"version": "v4.1.0", "version": "v4.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/pestphp/pest-plugin-profanity.git", "url": "https://github.com/pestphp/pest-plugin-profanity.git",
"reference": "e279c844b6868da92052be27b5202c2ad7216e80" "reference": "c37e5e2c7136ee4eae12082e7952332bc1c6600a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/pestphp/pest-plugin-profanity/zipball/e279c844b6868da92052be27b5202c2ad7216e80", "url": "https://api.github.com/repos/pestphp/pest-plugin-profanity/zipball/c37e5e2c7136ee4eae12082e7952332bc1c6600a",
"reference": "e279c844b6868da92052be27b5202c2ad7216e80", "reference": "c37e5e2c7136ee4eae12082e7952332bc1c6600a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -8085,9 +8089,9 @@
"unit" "unit"
], ],
"support": { "support": {
"source": "https://github.com/pestphp/pest-plugin-profanity/tree/v4.1.0" "source": "https://github.com/pestphp/pest-plugin-profanity/tree/v4.2.0"
}, },
"time": "2025-09-10T06:17:03+00:00" "time": "2025-10-28T23:14:11+00:00"
}, },
{ {
"name": "phar-io/manifest", "name": "phar-io/manifest",
@@ -8765,16 +8769,16 @@
}, },
{ {
"name": "phpunit/phpunit", "name": "phpunit/phpunit",
"version": "12.4.0", "version": "12.4.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git", "url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "f62aab5794e36ccd26860db2d1bbf89ac19028d9" "reference": "fc5413a2e6d240d2f6d9317bdf7f0a24e73de194"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f62aab5794e36ccd26860db2d1bbf89ac19028d9", "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fc5413a2e6d240d2f6d9317bdf7f0a24e73de194",
"reference": "f62aab5794e36ccd26860db2d1bbf89ac19028d9", "reference": "fc5413a2e6d240d2f6d9317bdf7f0a24e73de194",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -8842,7 +8846,7 @@
"support": { "support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues", "issues": "https://github.com/sebastianbergmann/phpunit/issues",
"security": "https://github.com/sebastianbergmann/phpunit/security/policy", "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
"source": "https://github.com/sebastianbergmann/phpunit/tree/12.4.0" "source": "https://github.com/sebastianbergmann/phpunit/tree/12.4.1"
}, },
"funding": [ "funding": [
{ {
@@ -8866,7 +8870,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-10-03T04:28:03+00:00" "time": "2025-10-09T14:08:29+00:00"
}, },
{ {
"name": "sebastian/cli-parser", "name": "sebastian/cli-parser",
@@ -9819,16 +9823,16 @@
}, },
{ {
"name": "symfony/yaml", "name": "symfony/yaml",
"version": "v7.3.3", "version": "v7.3.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/yaml.git", "url": "https://github.com/symfony/yaml.git",
"reference": "d4f4a66866fe2451f61296924767280ab5732d9d" "reference": "90208e2fc6f68f613eae7ca25a2458a931b1bacc"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/yaml/zipball/d4f4a66866fe2451f61296924767280ab5732d9d", "url": "https://api.github.com/repos/symfony/yaml/zipball/90208e2fc6f68f613eae7ca25a2458a931b1bacc",
"reference": "d4f4a66866fe2451f61296924767280ab5732d9d", "reference": "90208e2fc6f68f613eae7ca25a2458a931b1bacc",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -9871,7 +9875,7 @@
"description": "Loads and dumps YAML files", "description": "Loads and dumps YAML files",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/yaml/tree/v7.3.3" "source": "https://github.com/symfony/yaml/tree/v7.3.5"
}, },
"funding": [ "funding": [
{ {
@@ -9891,7 +9895,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-08-27T11:34:33+00:00" "time": "2025-09-27T09:00:46+00:00"
}, },
{ {
"name": "ta-tikoma/phpunit-architecture-test", "name": "ta-tikoma/phpunit-architecture-test",