Compare commits

...

4 Commits

9 changed files with 227 additions and 175 deletions

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.2.29 - php - 8.2.30
- laravel/fortify (FORTIFY) - v1 - laravel/fortify (FORTIFY) - v1
- laravel/framework (LARAVEL) - v12 - laravel/framework (LARAVEL) - v12
- laravel/prompts (PROMPTS) - v0 - laravel/prompts (PROMPTS) - v0

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.2.29 - php - 8.2.30
- laravel/fortify (FORTIFY) - v1 - laravel/fortify (FORTIFY) - v1
- laravel/framework (LARAVEL) - v12 - laravel/framework (LARAVEL) - v12
- laravel/prompts (PROMPTS) - v0 - laravel/prompts (PROMPTS) - v0

View File

@ -0,0 +1,22 @@
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Http;
class MemberListController extends Controller
{
public function __invoke()
{
$schools = cache()->remember('audition_admin_schools', now()->addMinutes(5), function () {
$response = Http::withToken(config('services.audition_admin.token'))
->accept('application/json')
->get(config('services.audition_admin.url') . '/api/v1/school');
return json_decode($response->body());
});
return view('member-list', compact('schools'));
}
}

View File

@ -3,7 +3,9 @@
namespace App\Http\Controllers; namespace App\Http\Controllers;
use App\Models\NewsStory; use App\Models\NewsStory;
use Illuminate\Support\Facades\Http;
use function json_decode;
use function siteData; use function siteData;
class WelcomeController extends Controller class WelcomeController extends Controller

View File

@ -20,6 +20,10 @@ class App extends Component
'name' => 'Home', 'name' => 'Home',
'link' => route('welcome'), 'link' => route('welcome'),
], ],
[
'name' => 'Members',
'link' => route('members'),
],
[ [
'name' => 'Audition Information', 'name' => 'Audition Information',
'link' => route('audition-information'), 'link' => route('audition-information'),

351
composer.lock generated
View File

@ -836,24 +836,24 @@
}, },
{ {
"name": "graham-campbell/result-type", "name": "graham-campbell/result-type",
"version": "v1.1.3", "version": "v1.1.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/GrahamCampbell/Result-Type.git", "url": "https://github.com/GrahamCampbell/Result-Type.git",
"reference": "3ba905c11371512af9d9bdd27d99b782216b6945" "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
"reference": "3ba905c11371512af9d9bdd27d99b782216b6945", "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^7.2.5 || ^8.0", "php": "^7.2.5 || ^8.0",
"phpoption/phpoption": "^1.9.3" "phpoption/phpoption": "^1.9.5"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
}, },
"type": "library", "type": "library",
"autoload": { "autoload": {
@ -882,7 +882,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/GrahamCampbell/Result-Type/issues", "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
"source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3" "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
}, },
"funding": [ "funding": [
{ {
@ -894,7 +894,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2024-07-20T21:45:45+00:00" "time": "2025-12-27T19:43:20+00:00"
}, },
{ {
"name": "guzzlehttp/guzzle", "name": "guzzlehttp/guzzle",
@ -1309,16 +1309,16 @@
}, },
{ {
"name": "laravel/fortify", "name": "laravel/fortify",
"version": "v1.32.1", "version": "v1.33.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/fortify.git", "url": "https://github.com/laravel/fortify.git",
"reference": "26db37ed915770e5f0f91f6b7e153d9b3e6c09e8" "reference": "e0666dabeec0b6428678af1d51f436dcfb24e3a9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/fortify/zipball/26db37ed915770e5f0f91f6b7e153d9b3e6c09e8", "url": "https://api.github.com/repos/laravel/fortify/zipball/e0666dabeec0b6428678af1d51f436dcfb24e3a9",
"reference": "26db37ed915770e5f0f91f6b7e153d9b3e6c09e8", "reference": "e0666dabeec0b6428678af1d51f436dcfb24e3a9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -1368,20 +1368,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-11-21T01:53:28+00:00" "time": "2025-12-15T14:48:33+00:00"
}, },
{ {
"name": "laravel/framework", "name": "laravel/framework",
"version": "v12.42.0", "version": "v12.44.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/framework.git", "url": "https://github.com/laravel/framework.git",
"reference": "509b33095564c5165366d81bbaa0afaac28abe75" "reference": "592bbf1c036042958332eb98e3e8131b29102f33"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/509b33095564c5165366d81bbaa0afaac28abe75", "url": "https://api.github.com/repos/laravel/framework/zipball/592bbf1c036042958332eb98e3e8131b29102f33",
"reference": "509b33095564c5165366d81bbaa0afaac28abe75", "reference": "592bbf1c036042958332eb98e3e8131b29102f33",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -1590,7 +1590,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-12-09T15:51:23+00:00" "time": "2025-12-23T15:29:43+00:00"
}, },
{ {
"name": "laravel/prompts", "name": "laravel/prompts",
@ -2339,16 +2339,16 @@
}, },
{ {
"name": "monolog/monolog", "name": "monolog/monolog",
"version": "3.9.0", "version": "3.10.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/Seldaek/monolog.git", "url": "https://github.com/Seldaek/monolog.git",
"reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6" "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6", "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
"reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6", "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2366,7 +2366,7 @@
"graylog2/gelf-php": "^1.4.2 || ^2.0", "graylog2/gelf-php": "^1.4.2 || ^2.0",
"guzzlehttp/guzzle": "^7.4.5", "guzzlehttp/guzzle": "^7.4.5",
"guzzlehttp/psr7": "^2.2", "guzzlehttp/psr7": "^2.2",
"mongodb/mongodb": "^1.8", "mongodb/mongodb": "^1.8 || ^2.0",
"php-amqplib/php-amqplib": "~2.4 || ^3", "php-amqplib/php-amqplib": "~2.4 || ^3",
"php-console/php-console": "^3.1.8", "php-console/php-console": "^3.1.8",
"phpstan/phpstan": "^2", "phpstan/phpstan": "^2",
@ -2426,7 +2426,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/Seldaek/monolog/issues", "issues": "https://github.com/Seldaek/monolog/issues",
"source": "https://github.com/Seldaek/monolog/tree/3.9.0" "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
}, },
"funding": [ "funding": [
{ {
@ -2438,7 +2438,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-03-24T10:02:05+00:00" "time": "2026-01-02T08:56:05+00:00"
}, },
{ {
"name": "nesbot/carbon", "name": "nesbot/carbon",
@ -2612,16 +2612,16 @@
}, },
{ {
"name": "nette/utils", "name": "nette/utils",
"version": "v4.1.0", "version": "v4.1.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nette/utils.git", "url": "https://github.com/nette/utils.git",
"reference": "fa1f0b8261ed150447979eb22e373b7b7ad5a8e0" "reference": "c99059c0315591f1a0db7ad6002000288ab8dc72"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nette/utils/zipball/fa1f0b8261ed150447979eb22e373b7b7ad5a8e0", "url": "https://api.github.com/repos/nette/utils/zipball/c99059c0315591f1a0db7ad6002000288ab8dc72",
"reference": "fa1f0b8261ed150447979eb22e373b7b7ad5a8e0", "reference": "c99059c0315591f1a0db7ad6002000288ab8dc72",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2695,9 +2695,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/nette/utils/issues", "issues": "https://github.com/nette/utils/issues",
"source": "https://github.com/nette/utils/tree/v4.1.0" "source": "https://github.com/nette/utils/tree/v4.1.1"
}, },
"time": "2025-12-01T17:49:23+00:00" "time": "2025-12-22T12:14:32+00:00"
}, },
{ {
"name": "nikic/php-parser", "name": "nikic/php-parser",
@ -2915,16 +2915,16 @@
}, },
{ {
"name": "phpoption/phpoption", "name": "phpoption/phpoption",
"version": "1.9.4", "version": "1.9.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/schmittjoh/php-option.git", "url": "https://github.com/schmittjoh/php-option.git",
"reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d" "reference": "75365b91986c2405cf5e1e012c5595cd487a98be"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/schmittjoh/php-option/zipball/638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d", "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be",
"reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d", "reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2974,7 +2974,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/schmittjoh/php-option/issues", "issues": "https://github.com/schmittjoh/php-option/issues",
"source": "https://github.com/schmittjoh/php-option/tree/1.9.4" "source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
}, },
"funding": [ "funding": [
{ {
@ -2986,7 +2986,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-08-21T11:53:16+00:00" "time": "2025-12-27T19:41:33+00:00"
}, },
{ {
"name": "pragmarx/google2fa", "name": "pragmarx/google2fa",
@ -3454,16 +3454,16 @@
}, },
{ {
"name": "psy/psysh", "name": "psy/psysh",
"version": "v0.12.16", "version": "v0.12.18",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/bobthecow/psysh.git", "url": "https://github.com/bobthecow/psysh.git",
"reference": "ee6d5028be4774f56c6c2c85ec4e6bc9acfe6b67" "reference": "ddff0ac01beddc251786fe70367cd8bbdb258196"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/ee6d5028be4774f56c6c2c85ec4e6bc9acfe6b67", "url": "https://api.github.com/repos/bobthecow/psysh/zipball/ddff0ac01beddc251786fe70367cd8bbdb258196",
"reference": "ee6d5028be4774f56c6c2c85ec4e6bc9acfe6b67", "reference": "ddff0ac01beddc251786fe70367cd8bbdb258196",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -3527,9 +3527,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.16" "source": "https://github.com/bobthecow/psysh/tree/v0.12.18"
}, },
"time": "2025-12-07T03:39:01+00:00" "time": "2025-12-17T14:35:46+00:00"
}, },
{ {
"name": "ralouphie/getallheaders", "name": "ralouphie/getallheaders",
@ -3653,20 +3653,20 @@
}, },
{ {
"name": "ramsey/uuid", "name": "ramsey/uuid",
"version": "4.9.1", "version": "4.9.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/ramsey/uuid.git", "url": "https://github.com/ramsey/uuid.git",
"reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440" "reference": "8429c78ca35a09f27565311b98101e2826affde0"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/ramsey/uuid/zipball/81f941f6f729b1e3ceea61d9d014f8b6c6800440", "url": "https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0",
"reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440", "reference": "8429c78ca35a09f27565311b98101e2826affde0",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14", "brick/math": "^0.8.16 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14",
"php": "^8.0", "php": "^8.0",
"ramsey/collection": "^1.2 || ^2.0" "ramsey/collection": "^1.2 || ^2.0"
}, },
@ -3725,9 +3725,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/ramsey/uuid/issues", "issues": "https://github.com/ramsey/uuid/issues",
"source": "https://github.com/ramsey/uuid/tree/4.9.1" "source": "https://github.com/ramsey/uuid/tree/4.9.2"
}, },
"time": "2025-09-04T20:59:21+00:00" "time": "2025-12-14T04:43:48+00:00"
}, },
{ {
"name": "symfony/clock", "name": "symfony/clock",
@ -3809,16 +3809,16 @@
}, },
{ {
"name": "symfony/console", "name": "symfony/console",
"version": "v7.4.1", "version": "v7.4.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/console.git", "url": "https://github.com/symfony/console.git",
"reference": "6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e" "reference": "732a9ca6cd9dfd940c639062d5edbde2f6727fb6"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e", "url": "https://api.github.com/repos/symfony/console/zipball/732a9ca6cd9dfd940c639062d5edbde2f6727fb6",
"reference": "6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e", "reference": "732a9ca6cd9dfd940c639062d5edbde2f6727fb6",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -3883,7 +3883,7 @@
"terminal" "terminal"
], ],
"support": { "support": {
"source": "https://github.com/symfony/console/tree/v7.4.1" "source": "https://github.com/symfony/console/tree/v7.4.3"
}, },
"funding": [ "funding": [
{ {
@ -3903,7 +3903,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-12-05T15:23:39+00:00" "time": "2025-12-23T14:50:43+00:00"
}, },
{ {
"name": "symfony/css-selector", "name": "symfony/css-selector",
@ -4286,16 +4286,16 @@
}, },
{ {
"name": "symfony/finder", "name": "symfony/finder",
"version": "v7.4.0", "version": "v7.4.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/finder.git", "url": "https://github.com/symfony/finder.git",
"reference": "340b9ed7320570f319028a2cbec46d40535e94bd" "reference": "fffe05569336549b20a1be64250b40516d6e8d06"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/finder/zipball/340b9ed7320570f319028a2cbec46d40535e94bd", "url": "https://api.github.com/repos/symfony/finder/zipball/fffe05569336549b20a1be64250b40516d6e8d06",
"reference": "340b9ed7320570f319028a2cbec46d40535e94bd", "reference": "fffe05569336549b20a1be64250b40516d6e8d06",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -4330,7 +4330,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.4.0" "source": "https://github.com/symfony/finder/tree/v7.4.3"
}, },
"funding": [ "funding": [
{ {
@ -4350,20 +4350,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-11-05T05:42:40+00:00" "time": "2025-12-23T14:50:43+00:00"
}, },
{ {
"name": "symfony/http-foundation", "name": "symfony/http-foundation",
"version": "v7.4.1", "version": "v7.4.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-foundation.git", "url": "https://github.com/symfony/http-foundation.git",
"reference": "bd1af1e425811d6f077db240c3a588bdb405cd27" "reference": "a70c745d4cea48dbd609f4075e5f5cbce453bd52"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/bd1af1e425811d6f077db240c3a588bdb405cd27", "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a70c745d4cea48dbd609f4075e5f5cbce453bd52",
"reference": "bd1af1e425811d6f077db240c3a588bdb405cd27", "reference": "a70c745d4cea48dbd609f4075e5f5cbce453bd52",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -4412,7 +4412,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.4.1" "source": "https://github.com/symfony/http-foundation/tree/v7.4.3"
}, },
"funding": [ "funding": [
{ {
@ -4432,20 +4432,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-12-07T11:13:10+00:00" "time": "2025-12-23T14:23:49+00:00"
}, },
{ {
"name": "symfony/http-kernel", "name": "symfony/http-kernel",
"version": "v7.4.2", "version": "v7.4.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-kernel.git", "url": "https://github.com/symfony/http-kernel.git",
"reference": "f6e6f0a5fa8763f75a504b930163785fb6dd055f" "reference": "885211d4bed3f857b8c964011923528a55702aa5"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/f6e6f0a5fa8763f75a504b930163785fb6dd055f", "url": "https://api.github.com/repos/symfony/http-kernel/zipball/885211d4bed3f857b8c964011923528a55702aa5",
"reference": "f6e6f0a5fa8763f75a504b930163785fb6dd055f", "reference": "885211d4bed3f857b8c964011923528a55702aa5",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -4531,7 +4531,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.4.2" "source": "https://github.com/symfony/http-kernel/tree/v7.4.3"
}, },
"funding": [ "funding": [
{ {
@ -4551,20 +4551,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-12-08T07:43:37+00:00" "time": "2025-12-31T08:43:57+00:00"
}, },
{ {
"name": "symfony/mailer", "name": "symfony/mailer",
"version": "v7.4.0", "version": "v7.4.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/mailer.git", "url": "https://github.com/symfony/mailer.git",
"reference": "a3d9eea8cfa467ece41f0f54ba28185d74bd53fd" "reference": "e472d35e230108231ccb7f51eb6b2100cac02ee4"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/mailer/zipball/a3d9eea8cfa467ece41f0f54ba28185d74bd53fd", "url": "https://api.github.com/repos/symfony/mailer/zipball/e472d35e230108231ccb7f51eb6b2100cac02ee4",
"reference": "a3d9eea8cfa467ece41f0f54ba28185d74bd53fd", "reference": "e472d35e230108231ccb7f51eb6b2100cac02ee4",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -4615,7 +4615,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.4.0" "source": "https://github.com/symfony/mailer/tree/v7.4.3"
}, },
"funding": [ "funding": [
{ {
@ -4635,7 +4635,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-11-21T15:26:00+00:00" "time": "2025-12-16T08:02:06+00:00"
}, },
{ {
"name": "symfony/mime", "name": "symfony/mime",
@ -5557,16 +5557,16 @@
}, },
{ {
"name": "symfony/process", "name": "symfony/process",
"version": "v7.4.0", "version": "v7.4.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/process.git", "url": "https://github.com/symfony/process.git",
"reference": "7ca8dc2d0dcf4882658313aba8be5d9fd01026c8" "reference": "2f8e1a6cdf590ca63715da4d3a7a3327404a523f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/process/zipball/7ca8dc2d0dcf4882658313aba8be5d9fd01026c8", "url": "https://api.github.com/repos/symfony/process/zipball/2f8e1a6cdf590ca63715da4d3a7a3327404a523f",
"reference": "7ca8dc2d0dcf4882658313aba8be5d9fd01026c8", "reference": "2f8e1a6cdf590ca63715da4d3a7a3327404a523f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -5598,7 +5598,7 @@
"description": "Executes commands in sub-processes", "description": "Executes commands in sub-processes",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/process/tree/v7.4.0" "source": "https://github.com/symfony/process/tree/v7.4.3"
}, },
"funding": [ "funding": [
{ {
@ -5618,20 +5618,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-10-16T11:21:06+00:00" "time": "2025-12-19T10:00:43+00:00"
}, },
{ {
"name": "symfony/routing", "name": "symfony/routing",
"version": "v7.4.0", "version": "v7.4.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/routing.git", "url": "https://github.com/symfony/routing.git",
"reference": "4720254cb2644a0b876233d258a32bf017330db7" "reference": "5d3fd7adf8896c2fdb54e2f0f35b1bcbd9e45090"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/routing/zipball/4720254cb2644a0b876233d258a32bf017330db7", "url": "https://api.github.com/repos/symfony/routing/zipball/5d3fd7adf8896c2fdb54e2f0f35b1bcbd9e45090",
"reference": "4720254cb2644a0b876233d258a32bf017330db7", "reference": "5d3fd7adf8896c2fdb54e2f0f35b1bcbd9e45090",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -5683,7 +5683,7 @@
"url" "url"
], ],
"support": { "support": {
"source": "https://github.com/symfony/routing/tree/v7.4.0" "source": "https://github.com/symfony/routing/tree/v7.4.3"
}, },
"funding": [ "funding": [
{ {
@ -5703,7 +5703,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-11-27T13:27:24+00:00" "time": "2025-12-19T10:00:43+00:00"
}, },
{ {
"name": "symfony/service-contracts", "name": "symfony/service-contracts",
@ -5885,16 +5885,16 @@
}, },
{ {
"name": "symfony/translation", "name": "symfony/translation",
"version": "v7.4.0", "version": "v7.4.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/translation.git", "url": "https://github.com/symfony/translation.git",
"reference": "2d01ca0da3f092f91eeedb46f24aa30d2fca8f68" "reference": "7ef27c65d78886f7599fdd5c93d12c9243ecf44d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/translation/zipball/2d01ca0da3f092f91eeedb46f24aa30d2fca8f68", "url": "https://api.github.com/repos/symfony/translation/zipball/7ef27c65d78886f7599fdd5c93d12c9243ecf44d",
"reference": "2d01ca0da3f092f91eeedb46f24aa30d2fca8f68", "reference": "7ef27c65d78886f7599fdd5c93d12c9243ecf44d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -5961,7 +5961,7 @@
"description": "Provides tools to internationalize your application", "description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/translation/tree/v7.4.0" "source": "https://github.com/symfony/translation/tree/v7.4.3"
}, },
"funding": [ "funding": [
{ {
@ -5981,7 +5981,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-11-27T13:27:24+00:00" "time": "2025-12-29T09:31:36+00:00"
}, },
{ {
"name": "symfony/translation-contracts", "name": "symfony/translation-contracts",
@ -6145,16 +6145,16 @@
}, },
{ {
"name": "symfony/var-dumper", "name": "symfony/var-dumper",
"version": "v7.4.0", "version": "v7.4.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/var-dumper.git", "url": "https://github.com/symfony/var-dumper.git",
"reference": "41fd6c4ae28c38b294b42af6db61446594a0dece" "reference": "7e99bebcb3f90d8721890f2963463280848cba92"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/41fd6c4ae28c38b294b42af6db61446594a0dece", "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7e99bebcb3f90d8721890f2963463280848cba92",
"reference": "41fd6c4ae28c38b294b42af6db61446594a0dece", "reference": "7e99bebcb3f90d8721890f2963463280848cba92",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -6208,7 +6208,7 @@
"dump" "dump"
], ],
"support": { "support": {
"source": "https://github.com/symfony/var-dumper/tree/v7.4.0" "source": "https://github.com/symfony/var-dumper/tree/v7.4.3"
}, },
"funding": [ "funding": [
{ {
@ -6228,7 +6228,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-10-27T20:36:44+00:00" "time": "2025-12-18T07:04:31+00:00"
}, },
{ {
"name": "tijsverkoyen/css-to-inline-styles", "name": "tijsverkoyen/css-to-inline-styles",
@ -6287,26 +6287,26 @@
}, },
{ {
"name": "vlucas/phpdotenv", "name": "vlucas/phpdotenv",
"version": "v5.6.2", "version": "v5.6.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/vlucas/phpdotenv.git", "url": "https://github.com/vlucas/phpdotenv.git",
"reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af" "reference": "955e7815d677a3eaa7075231212f2110983adecc"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af", "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc",
"reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af", "reference": "955e7815d677a3eaa7075231212f2110983adecc",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-pcre": "*", "ext-pcre": "*",
"graham-campbell/result-type": "^1.1.3", "graham-campbell/result-type": "^1.1.4",
"php": "^7.2.5 || ^8.0", "php": "^7.2.5 || ^8.0",
"phpoption/phpoption": "^1.9.3", "phpoption/phpoption": "^1.9.5",
"symfony/polyfill-ctype": "^1.24", "symfony/polyfill-ctype": "^1.26",
"symfony/polyfill-mbstring": "^1.24", "symfony/polyfill-mbstring": "^1.26",
"symfony/polyfill-php80": "^1.24" "symfony/polyfill-php80": "^1.26"
}, },
"require-dev": { "require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2", "bamarni/composer-bin-plugin": "^1.8.2",
@ -6355,7 +6355,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/vlucas/phpdotenv/issues", "issues": "https://github.com/vlucas/phpdotenv/issues",
"source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2" "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3"
}, },
"funding": [ "funding": [
{ {
@ -6367,7 +6367,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-04-30T23:37:27+00:00" "time": "2025-12-27T19:49:13+00:00"
}, },
{ {
"name": "voku/portable-ascii", "name": "voku/portable-ascii",
@ -6447,16 +6447,16 @@
"packages-dev": [ "packages-dev": [
{ {
"name": "barryvdh/laravel-debugbar", "name": "barryvdh/laravel-debugbar",
"version": "v3.16.2", "version": "v3.16.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/barryvdh/laravel-debugbar.git", "url": "https://github.com/barryvdh/laravel-debugbar.git",
"reference": "730dbf8bf41f5691e026dd771e64dd54ad1b10b3" "reference": "c91e57ea113edd6526f5b8cd6b1c6ee02c67b28e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/730dbf8bf41f5691e026dd771e64dd54ad1b10b3", "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/c91e57ea113edd6526f5b8cd6b1c6ee02c67b28e",
"reference": "730dbf8bf41f5691e026dd771e64dd54ad1b10b3", "reference": "c91e57ea113edd6526f5b8cd6b1c6ee02c67b28e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -6465,7 +6465,7 @@
"illuminate/support": "^10|^11|^12", "illuminate/support": "^10|^11|^12",
"php": "^8.1", "php": "^8.1",
"php-debugbar/php-debugbar": "^2.2.4", "php-debugbar/php-debugbar": "^2.2.4",
"symfony/finder": "^6|^7" "symfony/finder": "^6|^7|^8"
}, },
"require-dev": { "require-dev": {
"mockery/mockery": "^1.3.3", "mockery/mockery": "^1.3.3",
@ -6516,7 +6516,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/barryvdh/laravel-debugbar/issues", "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
"source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.16.2" "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.16.3"
}, },
"funding": [ "funding": [
{ {
@ -6528,7 +6528,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2025-12-03T14:52:46+00:00" "time": "2025-12-23T17:37:00+00:00"
}, },
{ {
"name": "brianium/paratest", "name": "brianium/paratest",
@ -6979,25 +6979,25 @@
}, },
{ {
"name": "laravel/boost", "name": "laravel/boost",
"version": "v1.8.5", "version": "v1.8.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/boost.git", "url": "https://github.com/laravel/boost.git",
"reference": "99c15c392f3c6f049f0671dd5dc7b6e9a75cfe7e" "reference": "7a5709a8134ed59d3e7f34fccbd74689830e296c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/boost/zipball/99c15c392f3c6f049f0671dd5dc7b6e9a75cfe7e", "url": "https://api.github.com/repos/laravel/boost/zipball/7a5709a8134ed59d3e7f34fccbd74689830e296c",
"reference": "99c15c392f3c6f049f0671dd5dc7b6e9a75cfe7e", "reference": "7a5709a8134ed59d3e7f34fccbd74689830e296c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"guzzlehttp/guzzle": "^7.9", "guzzlehttp/guzzle": "^7.9",
"illuminate/console": "^10.49.0|^11.45.3|^12.28.1", "illuminate/console": "^10.49.0|^11.45.3|^12.41.1",
"illuminate/contracts": "^10.49.0|^11.45.3|^12.28.1", "illuminate/contracts": "^10.49.0|^11.45.3|^12.41.1",
"illuminate/routing": "^10.49.0|^11.45.3|^12.28.1", "illuminate/routing": "^10.49.0|^11.45.3|^12.41.1",
"illuminate/support": "^10.49.0|^11.45.3|^12.28.1", "illuminate/support": "^10.49.0|^11.45.3|^12.41.1",
"laravel/mcp": "^0.4.1", "laravel/mcp": "^0.5.1",
"laravel/prompts": "0.1.25|^0.3.6", "laravel/prompts": "0.1.25|^0.3.6",
"laravel/roster": "^0.2.9", "laravel/roster": "^0.2.9",
"php": "^8.1" "php": "^8.1"
@ -7041,20 +7041,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-12-08T21:54:49+00:00" "time": "2025-12-19T15:04:12+00:00"
}, },
{ {
"name": "laravel/mcp", "name": "laravel/mcp",
"version": "v0.4.2", "version": "v0.5.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/mcp.git", "url": "https://github.com/laravel/mcp.git",
"reference": "1c7878be3931a19768f791ddf141af29f43fb4ef" "reference": "10dedea054fa4eeaa9ef2ccbfdad6c3e1dbd17a4"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/mcp/zipball/1c7878be3931a19768f791ddf141af29f43fb4ef", "url": "https://api.github.com/repos/laravel/mcp/zipball/10dedea054fa4eeaa9ef2ccbfdad6c3e1dbd17a4",
"reference": "1c7878be3931a19768f791ddf141af29f43fb4ef", "reference": "10dedea054fa4eeaa9ef2ccbfdad6c3e1dbd17a4",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -7114,7 +7114,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-12-07T15:49:15+00:00" "time": "2025-12-17T06:14:23+00:00"
}, },
{ {
"name": "laravel/pail", "name": "laravel/pail",
@ -8146,31 +8146,32 @@
}, },
{ {
"name": "php-debugbar/php-debugbar", "name": "php-debugbar/php-debugbar",
"version": "v2.2.4", "version": "v2.2.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/php-debugbar/php-debugbar.git", "url": "https://github.com/php-debugbar/php-debugbar.git",
"reference": "3146d04671f51f69ffec2a4207ac3bdcf13a9f35" "reference": "abb9fa3c5c8dbe7efe03ddba56782917481de3e8"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/3146d04671f51f69ffec2a4207ac3bdcf13a9f35", "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/abb9fa3c5c8dbe7efe03ddba56782917481de3e8",
"reference": "3146d04671f51f69ffec2a4207ac3bdcf13a9f35", "reference": "abb9fa3c5c8dbe7efe03ddba56782917481de3e8",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^8", "php": "^8.1",
"psr/log": "^1|^2|^3", "psr/log": "^1|^2|^3",
"symfony/var-dumper": "^4|^5|^6|^7" "symfony/var-dumper": "^5.4|^6.4|^7.3|^8.0"
}, },
"replace": { "replace": {
"maximebf/debugbar": "self.version" "maximebf/debugbar": "self.version"
}, },
"require-dev": { "require-dev": {
"dbrekelmans/bdi": "^1", "dbrekelmans/bdi": "^1",
"phpunit/phpunit": "^8|^9", "phpunit/phpunit": "^10",
"symfony/browser-kit": "^6.0|7.0",
"symfony/panther": "^1|^2.1", "symfony/panther": "^1|^2.1",
"twig/twig": "^1.38|^2.7|^3.0" "twig/twig": "^3.11.2"
}, },
"suggest": { "suggest": {
"kriswallsmith/assetic": "The best way to manage assets", "kriswallsmith/assetic": "The best way to manage assets",
@ -8180,7 +8181,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "2.1-dev" "dev-master": "2.2-dev"
} }
}, },
"autoload": { "autoload": {
@ -8213,9 +8214,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/php-debugbar/php-debugbar/issues", "issues": "https://github.com/php-debugbar/php-debugbar/issues",
"source": "https://github.com/php-debugbar/php-debugbar/tree/v2.2.4" "source": "https://github.com/php-debugbar/php-debugbar/tree/v2.2.6"
}, },
"time": "2025-07-22T14:01:30+00:00" "time": "2025-12-22T13:21:32+00:00"
}, },
{ {
"name": "phpdocumentor/reflection-common", "name": "phpdocumentor/reflection-common",
@ -8272,16 +8273,16 @@
}, },
{ {
"name": "phpdocumentor/reflection-docblock", "name": "phpdocumentor/reflection-docblock",
"version": "5.6.5", "version": "5.6.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
"reference": "90614c73d3800e187615e2dd236ad0e2a01bf761" "reference": "5cee1d3dfc2d2aa6599834520911d246f656bcb8"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/90614c73d3800e187615e2dd236ad0e2a01bf761", "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/5cee1d3dfc2d2aa6599834520911d246f656bcb8",
"reference": "90614c73d3800e187615e2dd236ad0e2a01bf761", "reference": "5cee1d3dfc2d2aa6599834520911d246f656bcb8",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -8291,7 +8292,7 @@
"phpdocumentor/reflection-common": "^2.2", "phpdocumentor/reflection-common": "^2.2",
"phpdocumentor/type-resolver": "^1.7", "phpdocumentor/type-resolver": "^1.7",
"phpstan/phpdoc-parser": "^1.7|^2.0", "phpstan/phpdoc-parser": "^1.7|^2.0",
"webmozart/assert": "^1.9.1" "webmozart/assert": "^1.9.1 || ^2"
}, },
"require-dev": { "require-dev": {
"mockery/mockery": "~1.3.5 || ~1.6.0", "mockery/mockery": "~1.3.5 || ~1.6.0",
@ -8330,9 +8331,9 @@
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
"support": { "support": {
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
"source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.5" "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.6"
}, },
"time": "2025-11-27T19:50:05+00:00" "time": "2025-12-22T21:13:58+00:00"
}, },
{ {
"name": "phpdocumentor/type-resolver", "name": "phpdocumentor/type-resolver",
@ -8441,35 +8442,35 @@
}, },
{ {
"name": "phpunit/php-code-coverage", "name": "phpunit/php-code-coverage",
"version": "11.0.11", "version": "11.0.12",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
"reference": "4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4" "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4", "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2c1ed04922802c15e1de5d7447b4856de949cf56",
"reference": "4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4", "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-dom": "*", "ext-dom": "*",
"ext-libxml": "*", "ext-libxml": "*",
"ext-xmlwriter": "*", "ext-xmlwriter": "*",
"nikic/php-parser": "^5.4.0", "nikic/php-parser": "^5.7.0",
"php": ">=8.2", "php": ">=8.2",
"phpunit/php-file-iterator": "^5.1.0", "phpunit/php-file-iterator": "^5.1.0",
"phpunit/php-text-template": "^4.0.1", "phpunit/php-text-template": "^4.0.1",
"sebastian/code-unit-reverse-lookup": "^4.0.1", "sebastian/code-unit-reverse-lookup": "^4.0.1",
"sebastian/complexity": "^4.0.1", "sebastian/complexity": "^4.0.1",
"sebastian/environment": "^7.2.0", "sebastian/environment": "^7.2.1",
"sebastian/lines-of-code": "^3.0.1", "sebastian/lines-of-code": "^3.0.1",
"sebastian/version": "^5.0.2", "sebastian/version": "^5.0.2",
"theseer/tokenizer": "^1.2.3" "theseer/tokenizer": "^1.3.1"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^11.5.2" "phpunit/phpunit": "^11.5.46"
}, },
"suggest": { "suggest": {
"ext-pcov": "PHP extension that provides line coverage", "ext-pcov": "PHP extension that provides line coverage",
@ -8507,7 +8508,7 @@
"support": { "support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
"security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.11" "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.12"
}, },
"funding": [ "funding": [
{ {
@ -8527,7 +8528,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-08-27T14:37:49+00:00" "time": "2025-12-24T07:01:01+00:00"
}, },
{ {
"name": "phpunit/php-file-iterator", "name": "phpunit/php-file-iterator",
@ -10108,23 +10109,23 @@
}, },
{ {
"name": "webmozart/assert", "name": "webmozart/assert",
"version": "1.12.1", "version": "2.0.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/webmozarts/assert.git", "url": "https://github.com/webmozarts/assert.git",
"reference": "9be6926d8b485f55b9229203f962b51ed377ba68" "reference": "1b34b004e35a164bc5bb6ebd33c844b2d8069a54"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/webmozarts/assert/zipball/9be6926d8b485f55b9229203f962b51ed377ba68", "url": "https://api.github.com/repos/webmozarts/assert/zipball/1b34b004e35a164bc5bb6ebd33c844b2d8069a54",
"reference": "9be6926d8b485f55b9229203f962b51ed377ba68", "reference": "1b34b004e35a164bc5bb6ebd33c844b2d8069a54",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-ctype": "*", "ext-ctype": "*",
"ext-date": "*", "ext-date": "*",
"ext-filter": "*", "ext-filter": "*",
"php": "^7.2 || ^8.0" "php": "^8.2"
}, },
"suggest": { "suggest": {
"ext-intl": "", "ext-intl": "",
@ -10134,7 +10135,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.10-dev" "dev-feature/2-0": "2.0-dev"
} }
}, },
"autoload": { "autoload": {
@ -10150,6 +10151,10 @@
{ {
"name": "Bernhard Schussek", "name": "Bernhard Schussek",
"email": "bschussek@gmail.com" "email": "bschussek@gmail.com"
},
{
"name": "Woody Gilk",
"email": "woody.gilk@gmail.com"
} }
], ],
"description": "Assertions to validate method input/output with nice error messages.", "description": "Assertions to validate method input/output with nice error messages.",
@ -10160,9 +10165,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/webmozarts/assert/issues", "issues": "https://github.com/webmozarts/assert/issues",
"source": "https://github.com/webmozarts/assert/tree/1.12.1" "source": "https://github.com/webmozarts/assert/tree/2.0.0"
}, },
"time": "2025-10-29T15:56:20+00:00" "time": "2025-12-16T21:36:00+00:00"
} }
], ],
"aliases": [], "aliases": [],

View File

@ -35,4 +35,9 @@ return [
], ],
], ],
'audition_admin' => [
'url' => env('AUDITION_ADMIN_URL'),
'token' => env('AUDITION_ADMIN_TOKEN'),
],
]; ];

View File

@ -0,0 +1,12 @@
<x-layout.app>
<dl class="columns-1 md:columns-2 lg:columns-3 xl:columns-4 gap-8">
@foreach($schools as $school)
<div class="mt-8 first:mt-0 break-inside-avoid">
<dt>{{ $school->name }}</dt>
@foreach($school->users as $user)
<dd>{{ $user->first_name }} {{ $user->last_name }}</dd>
@endforeach
</div>
@endforeach
</dl>
</x-layout.app>

View File

@ -3,6 +3,7 @@
use App\Http\Controllers\Admin\AuditionEtudeController; use App\Http\Controllers\Admin\AuditionEtudeController;
use App\Http\Controllers\Admin\AuditionEtudeGridController; use App\Http\Controllers\Admin\AuditionEtudeGridController;
use App\Http\Controllers\Admin\DashboardController; use App\Http\Controllers\Admin\DashboardController;
use App\Http\Controllers\Admin\MemberListController;
use App\Http\Controllers\Admin\NewsStoryController; use App\Http\Controllers\Admin\NewsStoryController;
use App\Http\Controllers\Admin\SiteDataController; use App\Http\Controllers\Admin\SiteDataController;
use App\Http\Controllers\Admin\UsersController; use App\Http\Controllers\Admin\UsersController;
@ -16,6 +17,7 @@ Route::get('/', WelcomeController::class)->name('welcome');
Route::get('/audition-information', AuditionInformationPageController::class)->name('audition-information'); Route::get('/audition-information', AuditionInformationPageController::class)->name('audition-information');
Route::get('/clinic-information', ClinicInformationPageController::class)->name('clinic-information'); Route::get('/clinic-information', ClinicInformationPageController::class)->name('clinic-information');
Route::get('/etudes', EtudesController::class)->name('etudes'); Route::get('/etudes', EtudesController::class)->name('etudes');
Route::get('/members', MemberListController::class)->name('members');
Route::middleware(['auth'])->prefix('admin')->name('admin.')->group(function () { Route::middleware(['auth'])->prefix('admin')->name('admin.')->group(function () {
Route::get('/', DashboardController::class)->name('dashboard'); Route::get('/', DashboardController::class)->name('dashboard');