From 2177033620fb565654062a374adef18b27d818c8 Mon Sep 17 00:00:00 2001 From: Josh Campbell Date: Wed, 11 Mar 2026 11:23:52 -0500 Subject: [PATCH 1/3] fix: clarify onboarding setup flow and order of operations - composer setup is now host-safe and idempotent for cache/config clearing --- README.md | 25 ++++++++++++++++++++++--- composer.json | 6 +++++- 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 58a545bb..97a4dc06 100644 --- a/README.md +++ b/README.md @@ -16,15 +16,34 @@ - For Linux: [Docker Desktop](https://docs.docker.com/desktop/install/linux-install/) - Navigate to the project directory and run `composer install` - Duplicate the .env.example: `cp .env.example .env` +- Start the project containers: `sail up -d` - Generate a new APP_KEY: `sail artisan key:generate`. This will automatically update the .env file for the APP_KEY value. +- Run initial DB migration scripts: `sail artisan migrate --seed` +- Run setup scripts: `composer setup` - For running sail commands, by default, you are required to enter the full path to the executable in `vendor/bin/sail`. Most devs prefer to create an alias in their shell so they only have to type `sail`. Read the sail docs about [configuring a sail alias](https://laravel.com/docs/11.x/sail#configuring-a-shell-alias). Further documentation will assume an alias exists in your shell. +- Note: `composer setup` is host-safe and idempotent for onboarding cache/config clearing, but DB migrations still require Sail to be running. ## Installing Current Project Dependencies - All project contributors should run these commands every week to ensure your local project is using the current project dependencies. - - `composer install` - - `npm install` - - `npm run build` + +First-time setup order: + +- `composer install` +- `cp .env.example .env` +- `sail up -d` +- `sail artisan key:generate` +- `sail artisan migrate --seed` +- `composer setup` +- `npm install` +- `npm run build` + +Ongoing weekly dependency update order: + +- `composer install` +- `composer setup` +- `npm install` +- `npm run build` ## Updating the Project Dependencies diff --git a/composer.json b/composer.json index 4a5fc760..ec69fe4e 100644 --- a/composer.json +++ b/composer.json @@ -48,6 +48,10 @@ } }, "scripts": { + "setup": [ + "@php artisan config:clear", + "@php artisan cache:clear file" + ], "post-autoload-dump": [ "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", "@php artisan package:discover --ansi" @@ -102,4 +106,4 @@ }, "minimum-stability": "stable", "prefer-stable": true -} +} \ No newline at end of file From b02b8d6c45d7fdab77ab96181d383bf0819efcdf Mon Sep 17 00:00:00 2001 From: Josh Campbell Date: Wed, 11 Mar 2026 11:27:36 -0500 Subject: [PATCH 2/3] fix: align Sail and Composer with PHP 8.4 --- README.md | 3 ++- composer.json | 2 +- composer.lock | 6 +++--- docker-compose.yml | 4 ++-- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 97a4dc06..717dba1a 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,13 @@ ## Project Setup -- [Install PHP](https://www.php.net/manual/en/install.php) +- [Install PHP 8.4](https://www.php.net/manual/en/install.php) - [Install Composer](https://getcomposer.org/doc/00-intro.md) - Install Docker - For Mac: [Docker Desktop](https://docs.docker.com/desktop/install/mac-install/) | [Orbstack](https://docs.orbstack.dev/quick-start#installation) - For Windows: [Docker Desktop](https://docs.docker.com/desktop/install/windows-install/) - For Linux: [Docker Desktop](https://docs.docker.com/desktop/install/linux-install/) +- PHP 8.4 is required for the current Composer dependency set. - Navigate to the project directory and run `composer install` - Duplicate the .env.example: `cp .env.example .env` - Start the project containers: `sail up -d` diff --git a/composer.json b/composer.json index ec69fe4e..6d584e34 100644 --- a/composer.json +++ b/composer.json @@ -8,7 +8,7 @@ ], "license": "MIT", "require": { - "php": "^8.2", + "php": "^8.4", "diglactic/laravel-breadcrumbs": "*", "glhd/gretel": "^1.9", "inertiajs/inertia-laravel": "^2.0", diff --git a/composer.lock b/composer.lock index 45cbd42d..f7db9316 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "cec2341b2a197def35acf7dae38284bb", + "content-hash": "cb22507fef14bbb06b158bb1708fc669", "packages": [ { "name": "brick/math", @@ -13214,8 +13214,8 @@ "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": "^8.2" + "php": "^8.4" }, "platform-dev": {}, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.9.0" } diff --git a/docker-compose.yml b/docker-compose.yml index c76bd355..76d48a30 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,11 +1,11 @@ services: laravel.test: build: - context: ./docker/8.3 + context: ./docker/8.4 dockerfile: Dockerfile args: WWWGROUP: '${WWWGROUP}' - image: sail-8.3/app + image: sail-8.4/app extra_hosts: - 'host.docker.internal:host-gateway' ports: From e2761f84cd8e8913d1bfccb81594dec345291415 Mon Sep 17 00:00:00 2001 From: Josh Campbell Date: Wed, 11 Mar 2026 11:31:00 -0500 Subject: [PATCH 3/3] chore: remove tracked bootstrap cache artifacts --- bootstrap/cache/config.php | 1189 ------------------- bootstrap/cache/events.php | 5 - bootstrap/cache/packages.php | 126 -- bootstrap/cache/routes-v7.php | 2086 --------------------------------- bootstrap/cache/services.php | 282 ----- composer.json | 2 +- 6 files changed, 1 insertion(+), 3689 deletions(-) delete mode 100644 bootstrap/cache/config.php delete mode 100644 bootstrap/cache/events.php delete mode 100755 bootstrap/cache/packages.php delete mode 100644 bootstrap/cache/routes-v7.php delete mode 100755 bootstrap/cache/services.php diff --git a/bootstrap/cache/config.php b/bootstrap/cache/config.php deleted file mode 100644 index 311cb834..00000000 --- a/bootstrap/cache/config.php +++ /dev/null @@ -1,1189 +0,0 @@ - 'hashing', - 8 => 'concurrency', - 10 => 'broadcasting', - 11 => 'view', - 12 => 'cors', - 'app' => - array ( - 'name' => 'Good Dads', - 'env' => 'local', - 'debug' => true, - 'url' => 'http://localhost', - 'frontend_url' => 'http://localhost:3000', - 'asset_url' => NULL, - 'timezone' => 'UTC', - 'locale' => 'en', - 'fallback_locale' => 'en', - 'faker_locale' => 'en_US', - 'cipher' => 'AES-256-CBC', - 'key' => 'base64:yjp7xxjYgZoR0zDXtcCpt/fiXdVERVA7ncR+Sb+i+6I=', - 'previous_keys' => - array ( - ), - 'maintenance' => - array ( - 'driver' => 'file', - 'store' => 'database', - ), - 'providers' => - array ( - 0 => 'Illuminate\\Auth\\AuthServiceProvider', - 1 => 'Illuminate\\Broadcasting\\BroadcastServiceProvider', - 2 => 'Illuminate\\Bus\\BusServiceProvider', - 3 => 'Illuminate\\Cache\\CacheServiceProvider', - 4 => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 5 => 'Illuminate\\Concurrency\\ConcurrencyServiceProvider', - 6 => 'Illuminate\\Cookie\\CookieServiceProvider', - 7 => 'Illuminate\\Database\\DatabaseServiceProvider', - 8 => 'Illuminate\\Encryption\\EncryptionServiceProvider', - 9 => 'Illuminate\\Filesystem\\FilesystemServiceProvider', - 10 => 'Illuminate\\Foundation\\Providers\\FoundationServiceProvider', - 11 => 'Illuminate\\Hashing\\HashServiceProvider', - 12 => 'Illuminate\\Mail\\MailServiceProvider', - 13 => 'Illuminate\\Notifications\\NotificationServiceProvider', - 14 => 'Illuminate\\Pagination\\PaginationServiceProvider', - 15 => 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider', - 16 => 'Illuminate\\Pipeline\\PipelineServiceProvider', - 17 => 'Illuminate\\Queue\\QueueServiceProvider', - 18 => 'Illuminate\\Redis\\RedisServiceProvider', - 19 => 'Illuminate\\Session\\SessionServiceProvider', - 20 => 'Illuminate\\Translation\\TranslationServiceProvider', - 21 => 'Illuminate\\Validation\\ValidationServiceProvider', - 22 => 'Illuminate\\View\\ViewServiceProvider', - 23 => 'App\\Providers\\AppServiceProvider', - ), - 'aliases' => - array ( - 'App' => 'Illuminate\\Support\\Facades\\App', - 'Arr' => 'Illuminate\\Support\\Arr', - 'Artisan' => 'Illuminate\\Support\\Facades\\Artisan', - 'Auth' => 'Illuminate\\Support\\Facades\\Auth', - 'Blade' => 'Illuminate\\Support\\Facades\\Blade', - 'Broadcast' => 'Illuminate\\Support\\Facades\\Broadcast', - 'Bus' => 'Illuminate\\Support\\Facades\\Bus', - 'Cache' => 'Illuminate\\Support\\Facades\\Cache', - 'Concurrency' => 'Illuminate\\Support\\Facades\\Concurrency', - 'Config' => 'Illuminate\\Support\\Facades\\Config', - 'Context' => 'Illuminate\\Support\\Facades\\Context', - 'Cookie' => 'Illuminate\\Support\\Facades\\Cookie', - 'Crypt' => 'Illuminate\\Support\\Facades\\Crypt', - 'Date' => 'Illuminate\\Support\\Facades\\Date', - 'DB' => 'Illuminate\\Support\\Facades\\DB', - 'Eloquent' => 'Illuminate\\Database\\Eloquent\\Model', - 'Event' => 'Illuminate\\Support\\Facades\\Event', - 'File' => 'Illuminate\\Support\\Facades\\File', - 'Gate' => 'Illuminate\\Support\\Facades\\Gate', - 'Hash' => 'Illuminate\\Support\\Facades\\Hash', - 'Http' => 'Illuminate\\Support\\Facades\\Http', - 'Js' => 'Illuminate\\Support\\Js', - 'Lang' => 'Illuminate\\Support\\Facades\\Lang', - 'Log' => 'Illuminate\\Support\\Facades\\Log', - 'Mail' => 'Illuminate\\Support\\Facades\\Mail', - 'Notification' => 'Illuminate\\Support\\Facades\\Notification', - 'Number' => 'Illuminate\\Support\\Number', - 'Password' => 'Illuminate\\Support\\Facades\\Password', - 'Process' => 'Illuminate\\Support\\Facades\\Process', - 'Queue' => 'Illuminate\\Support\\Facades\\Queue', - 'RateLimiter' => 'Illuminate\\Support\\Facades\\RateLimiter', - 'Redirect' => 'Illuminate\\Support\\Facades\\Redirect', - 'Request' => 'Illuminate\\Support\\Facades\\Request', - 'Response' => 'Illuminate\\Support\\Facades\\Response', - 'Route' => 'Illuminate\\Support\\Facades\\Route', - 'Schedule' => 'Illuminate\\Support\\Facades\\Schedule', - 'Schema' => 'Illuminate\\Support\\Facades\\Schema', - 'Session' => 'Illuminate\\Support\\Facades\\Session', - 'Storage' => 'Illuminate\\Support\\Facades\\Storage', - 'Str' => 'Illuminate\\Support\\Str', - 'URL' => 'Illuminate\\Support\\Facades\\URL', - 'Uri' => 'Illuminate\\Support\\Uri', - 'Validator' => 'Illuminate\\Support\\Facades\\Validator', - 'View' => 'Illuminate\\Support\\Facades\\View', - 'Vite' => 'Illuminate\\Support\\Facades\\Vite', - ), - ), - 'auth' => - array ( - 'defaults' => - array ( - 'guard' => 'web', - 'passwords' => 'users', - ), - 'guards' => - array ( - 'web' => - array ( - 'driver' => 'session', - 'provider' => 'users', - ), - 'sanctum' => - array ( - 'driver' => 'sanctum', - 'provider' => NULL, - ), - ), - 'providers' => - array ( - 'users' => - array ( - 'driver' => 'eloquent', - 'model' => 'App\\Models\\User', - ), - ), - 'passwords' => - array ( - 'users' => - array ( - 'provider' => 'users', - 'table' => 'password_reset_tokens', - 'expire' => 60, - 'throttle' => 60, - ), - ), - 'password_timeout' => 10800, - 'testUsers' => - array ( - 'admin' => - array ( - 'firstName' => 'Admin', - 'lastName' => 'User', - 'email' => 'admin@example.com', - 'phoneNumber' => '1234567890', - 'password' => 'password123', - ), - 'director' => - array ( - 'firstName' => 'Director', - 'lastName' => 'User', - 'email' => 'director@example.com', - 'phoneNumber' => '1234567890', - 'password' => 'password123', - ), - 'regionDirector' => - array ( - 'firstName' => 'Region Director', - 'lastName' => 'User', - 'email' => 'region_director@example.com', - 'phoneNumber' => '1234567890', - 'password' => 'password123', - ), - 'programDirector' => - array ( - 'firstName' => 'Program Director', - 'lastName' => 'User', - 'email' => 'program_director@example.com', - 'phoneNumber' => '1234567890', - 'password' => 'password123', - ), - 'facilitator' => - array ( - 'firstName' => 'Facilitator', - 'lastName' => 'User', - 'email' => 'facilitator@example.com', - 'phoneNumber' => '1234567890', - 'password' => 'password123', - ), - 'auditor' => - array ( - 'firstName' => 'Auditor', - 'lastName' => 'User', - 'email' => 'auditor@example.com', - 'phoneNumber' => '1234567890', - 'password' => 'password123', - ), - 'participant' => - array ( - 'firstName' => 'Participant', - 'lastName' => 'User', - 'email' => 'participant@example.com', - 'phoneNumber' => '1234567890', - 'password' => 'password123', - ), - ), - ), - 'cache' => - array ( - 'default' => 'database', - 'stores' => - array ( - 'array' => - array ( - 'driver' => 'array', - 'serialize' => false, - ), - 'database' => - array ( - 'driver' => 'database', - 'table' => 'cache', - 'connection' => NULL, - 'lock_connection' => NULL, - ), - 'file' => - array ( - 'driver' => 'file', - 'path' => '/var/www/html/storage/framework/cache/data', - 'lock_path' => '/var/www/html/storage/framework/cache/data', - ), - 'memcached' => - array ( - 'driver' => 'memcached', - 'persistent_id' => NULL, - 'sasl' => - array ( - 0 => NULL, - 1 => NULL, - ), - 'options' => - array ( - ), - 'servers' => - array ( - 0 => - array ( - 'host' => '127.0.0.1', - 'port' => 11211, - 'weight' => 100, - ), - ), - ), - 'redis' => - array ( - 'driver' => 'redis', - 'connection' => 'cache', - 'lock_connection' => 'default', - ), - 'dynamodb' => - array ( - 'driver' => 'dynamodb', - 'key' => '', - 'secret' => '', - 'region' => 'us-east-1', - 'table' => 'cache', - 'endpoint' => NULL, - ), - 'octane' => - array ( - 'driver' => 'octane', - ), - ), - 'prefix' => '', - ), - 'database' => - array ( - 'default' => 'mysql', - 'connections' => - array ( - 'sqlite' => - array ( - 'driver' => 'sqlite', - 'url' => NULL, - 'database' => 'laravel', - 'prefix' => '', - 'foreign_key_constraints' => true, - ), - 'mysql' => - array ( - 'driver' => 'mysql', - 'url' => NULL, - 'host' => 'mysql', - 'port' => '3306', - 'database' => 'laravel', - 'username' => 'laravel', - 'password' => 'password', - 'unix_socket' => '', - 'charset' => 'utf8mb4', - 'collation' => 'utf8mb4_unicode_ci', - 'prefix' => '', - 'prefix_indexes' => true, - 'strict' => true, - 'engine' => NULL, - 'options' => - array ( - ), - ), - 'mariadb' => - array ( - 'driver' => 'mariadb', - 'url' => NULL, - 'host' => 'mysql', - 'port' => '3306', - 'database' => 'laravel', - 'username' => 'laravel', - 'password' => 'password', - 'unix_socket' => '', - 'charset' => 'utf8mb4', - 'collation' => 'utf8mb4_unicode_ci', - 'prefix' => '', - 'prefix_indexes' => true, - 'strict' => true, - 'engine' => NULL, - 'options' => - array ( - ), - ), - 'pgsql' => - array ( - 'driver' => 'pgsql', - 'url' => NULL, - 'host' => 'mysql', - 'port' => '3306', - 'database' => 'laravel', - 'username' => 'laravel', - 'password' => 'password', - 'charset' => 'utf8', - 'prefix' => '', - 'prefix_indexes' => true, - 'search_path' => 'public', - 'sslmode' => 'prefer', - ), - 'sqlsrv' => - array ( - 'driver' => 'sqlsrv', - 'url' => NULL, - 'host' => 'mysql', - 'port' => '3306', - 'database' => 'laravel', - 'username' => 'laravel', - 'password' => 'password', - 'charset' => 'utf8', - 'prefix' => '', - 'prefix_indexes' => true, - ), - ), - 'migrations' => - array ( - 'table' => 'migrations', - 'update_date_on_publish' => true, - ), - 'redis' => - array ( - 'client' => 'phpredis', - 'options' => - array ( - 'cluster' => 'redis', - 'prefix' => 'good_dads_database_', - ), - 'default' => - array ( - 'url' => NULL, - 'host' => '127.0.0.1', - 'username' => NULL, - 'password' => NULL, - 'port' => '6379', - 'database' => '0', - ), - 'cache' => - array ( - 'url' => NULL, - 'host' => '127.0.0.1', - 'username' => NULL, - 'password' => NULL, - 'port' => '6379', - 'database' => '1', - ), - ), - ), - 'filesystems' => - array ( - 'default' => 'local', - 'disks' => - array ( - 'local' => - array ( - 'driver' => 'local', - 'root' => '/var/www/html/storage/app', - 'throw' => false, - ), - 'public' => - array ( - 'driver' => 'local', - 'root' => '/var/www/html/storage/app/public', - 'url' => 'http://localhost/storage', - 'visibility' => 'public', - 'throw' => false, - ), - 's3' => - array ( - 'driver' => 's3', - 'key' => '', - 'secret' => '', - 'region' => 'us-east-1', - 'bucket' => '', - 'url' => NULL, - 'endpoint' => NULL, - 'use_path_style_endpoint' => false, - 'throw' => false, - ), - ), - 'links' => - array ( - '/var/www/html/public/storage' => '/var/www/html/storage/app/public', - ), - ), - 'gretel' => - array ( - 'view' => 'gretel::tailwind', - 'packages' => - array ( - 'inertiajs/inertia-laravel' => true, - ), - 'static_closures' => true, - ), - 'logging' => - array ( - 'default' => 'stack', - 'deprecations' => - array ( - 'channel' => NULL, - 'trace' => false, - ), - 'channels' => - array ( - 'stack' => - array ( - 'driver' => 'stack', - 'channels' => - array ( - 0 => 'single', - ), - 'ignore_exceptions' => false, - ), - 'single' => - array ( - 'driver' => 'single', - 'path' => '/var/www/html/storage/logs/laravel.log', - 'level' => 'debug', - 'replace_placeholders' => true, - ), - 'daily' => - array ( - 'driver' => 'daily', - 'path' => '/var/www/html/storage/logs/laravel.log', - 'level' => 'debug', - 'days' => 14, - 'replace_placeholders' => true, - ), - 'slack' => - array ( - 'driver' => 'slack', - 'url' => NULL, - 'username' => 'Laravel Log', - 'emoji' => ':boom:', - 'level' => 'debug', - 'replace_placeholders' => true, - ), - 'papertrail' => - array ( - 'driver' => 'monolog', - 'level' => 'debug', - 'handler' => 'Monolog\\Handler\\SyslogUdpHandler', - 'handler_with' => - array ( - 'host' => NULL, - 'port' => NULL, - 'connectionString' => 'tls://:', - ), - 'processors' => - array ( - 0 => 'Monolog\\Processor\\PsrLogMessageProcessor', - ), - ), - 'stderr' => - array ( - 'driver' => 'monolog', - 'level' => 'debug', - 'handler' => 'Monolog\\Handler\\StreamHandler', - 'formatter' => NULL, - 'with' => - array ( - 'stream' => 'php://stderr', - ), - 'processors' => - array ( - 0 => 'Monolog\\Processor\\PsrLogMessageProcessor', - ), - ), - 'syslog' => - array ( - 'driver' => 'syslog', - 'level' => 'debug', - 'facility' => 8, - 'replace_placeholders' => true, - ), - 'errorlog' => - array ( - 'driver' => 'errorlog', - 'level' => 'debug', - 'replace_placeholders' => true, - ), - 'null' => - array ( - 'driver' => 'monolog', - 'handler' => 'Monolog\\Handler\\NullHandler', - ), - 'emergency' => - array ( - 'path' => '/var/www/html/storage/logs/laravel.log', - ), - 'deprecations' => - array ( - 'driver' => 'monolog', - 'handler' => 'Monolog\\Handler\\NullHandler', - ), - ), - ), - 'mail' => - array ( - 'default' => 'smtp', - 'mailers' => - array ( - 'smtp' => - array ( - 'transport' => 'smtp', - 'url' => NULL, - 'host' => 'mailpit', - 'port' => '1025', - 'encryption' => NULL, - 'username' => NULL, - 'password' => NULL, - 'timeout' => NULL, - 'local_domain' => 'localhost', - ), - 'ses' => - array ( - 'transport' => 'ses', - ), - 'postmark' => - array ( - 'transport' => 'postmark', - ), - 'resend' => - array ( - 'transport' => 'resend', - ), - 'sendmail' => - array ( - 'transport' => 'sendmail', - 'path' => '/usr/sbin/sendmail -bs -i', - ), - 'log' => - array ( - 'transport' => 'log', - 'channel' => NULL, - ), - 'array' => - array ( - 'transport' => 'array', - ), - 'failover' => - array ( - 'transport' => 'failover', - 'mailers' => - array ( - 0 => 'smtp', - 1 => 'log', - ), - ), - 'roundrobin' => - array ( - 'transport' => 'roundrobin', - 'mailers' => - array ( - 0 => 'ses', - 1 => 'postmark', - ), - ), - ), - 'from' => - array ( - 'address' => 'hello@example.com', - 'name' => 'Good Dads', - ), - 'markdown' => - array ( - 'theme' => 'default', - 'paths' => - array ( - 0 => '/var/www/html/resources/views/vendor/mail', - ), - ), - ), - 'permission' => - array ( - 'models' => - array ( - 'permission' => 'App\\Models\\Permission', - 'role' => 'App\\Models\\Role', - ), - 'table_names' => - array ( - 'roles' => 'roles', - 'permissions' => 'permissions', - 'model_has_permissions' => 'model_has_permissions', - 'model_has_roles' => 'model_has_roles', - 'role_has_permissions' => 'role_has_permissions', - ), - 'column_names' => - array ( - 'role_pivot_key' => NULL, - 'permission_pivot_key' => NULL, - 'model_morph_key' => 'model_uuid', - 'team_foreign_key' => 'team_id', - ), - 'register_permission_check_method' => true, - 'register_octane_reset_listener' => false, - 'events_enabled' => false, - 'teams' => false, - 'team_resolver' => 'Spatie\\Permission\\DefaultTeamResolver', - 'use_passport_client_credentials' => false, - 'display_permission_in_exception' => false, - 'display_role_in_exception' => false, - 'enable_wildcard_permission' => false, - 'cache' => - array ( - 'expiration_time' => - \DateInterval::__set_state(array( - 'from_string' => true, - 'date_string' => '24 hours', - )), - 'key' => 'spatie.permission.cache', - 'store' => 'default', - ), - ), - 'queue' => - array ( - 'default' => 'database', - 'connections' => - array ( - 'sync' => - array ( - 'driver' => 'sync', - ), - 'database' => - array ( - 'driver' => 'database', - 'connection' => NULL, - 'table' => 'jobs', - 'queue' => 'default', - 'retry_after' => 90, - 'after_commit' => false, - ), - 'beanstalkd' => - array ( - 'driver' => 'beanstalkd', - 'host' => 'localhost', - 'queue' => 'default', - 'retry_after' => 90, - 'block_for' => 0, - 'after_commit' => false, - ), - 'sqs' => - array ( - 'driver' => 'sqs', - 'key' => '', - 'secret' => '', - 'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id', - 'queue' => 'default', - 'suffix' => NULL, - 'region' => 'us-east-1', - 'after_commit' => false, - ), - 'redis' => - array ( - 'driver' => 'redis', - 'connection' => 'default', - 'queue' => 'default', - 'retry_after' => 90, - 'block_for' => NULL, - 'after_commit' => false, - ), - ), - 'batching' => - array ( - 'database' => 'mysql', - 'table' => 'job_batches', - ), - 'failed' => - array ( - 'driver' => 'database-uuids', - 'database' => 'mysql', - 'table' => 'failed_jobs', - ), - ), - 'services' => - array ( - 'postmark' => - array ( - 'token' => NULL, - ), - 'ses' => - array ( - 'key' => '', - 'secret' => '', - 'region' => 'us-east-1', - ), - 'resend' => - array ( - 'key' => NULL, - ), - 'slack' => - array ( - 'notifications' => - array ( - 'bot_user_oauth_token' => NULL, - 'channel' => NULL, - ), - ), - ), - 'session' => - array ( - 'driver' => 'database', - 'lifetime' => '120', - 'expire_on_close' => false, - 'encrypt' => false, - 'files' => '/var/www/html/storage/framework/sessions', - 'connection' => NULL, - 'table' => 'sessions', - 'store' => NULL, - 'lottery' => - array ( - 0 => 2, - 1 => 100, - ), - 'cookie' => 'good_dads_session', - 'path' => '/', - 'domain' => NULL, - 'secure' => NULL, - 'http_only' => true, - 'same_site' => 'lax', - 'partitioned' => false, - ), - 'typescript-transformer' => - array ( - 'auto_discover_types' => - array ( - 0 => '/var/www/html/app', - ), - 'collectors' => - array ( - 0 => 'Spatie\\TypeScriptTransformer\\Collectors\\DefaultCollector', - 1 => 'Spatie\\TypeScriptTransformer\\Collectors\\EnumCollector', - ), - 'transformers' => - array ( - 0 => 'Spatie\\LaravelTypeScriptTransformer\\Transformers\\SpatieStateTransformer', - 1 => 'Spatie\\TypeScriptTransformer\\Transformers\\EnumTransformer', - 2 => 'Spatie\\TypeScriptTransformer\\Transformers\\SpatieEnumTransformer', - 3 => 'Spatie\\LaravelTypeScriptTransformer\\Transformers\\DtoTransformer', - ), - 'default_type_replacements' => - array ( - 'DateTime' => 'string', - 'DateTimeImmutable' => 'string', - 'Carbon\\CarbonInterface' => 'string', - 'Carbon\\CarbonImmutable' => 'string', - 'Carbon\\Carbon' => 'string', - ), - 'output_file' => '/var/www/html/resources/js/types/generated.d.ts', - 'writer' => 'Spatie\\TypeScriptTransformer\\Writers\\ModuleWriter', - 'formatter' => NULL, - 'transform_to_native_enums' => false, - 'transform_null_to_optional' => true, - ), - 'hashing' => - array ( - 'driver' => 'bcrypt', - 'bcrypt' => - array ( - 'rounds' => '12', - 'verify' => true, - ), - 'argon' => - array ( - 'memory' => 65536, - 'threads' => 1, - 'time' => 4, - 'verify' => true, - ), - 'rehash_on_login' => true, - ), - 'concurrency' => - array ( - 'default' => 'process', - ), - 'broadcasting' => - array ( - 'default' => 'log', - 'connections' => - array ( - 'reverb' => - array ( - 'driver' => 'reverb', - 'key' => NULL, - 'secret' => NULL, - 'app_id' => NULL, - 'options' => - array ( - 'host' => NULL, - 'port' => 443, - 'scheme' => 'https', - 'useTLS' => true, - ), - 'client_options' => - array ( - ), - ), - 'pusher' => - array ( - 'driver' => 'pusher', - 'key' => NULL, - 'secret' => NULL, - 'app_id' => NULL, - 'options' => - array ( - 'cluster' => NULL, - 'host' => 'api-mt1.pusher.com', - 'port' => 443, - 'scheme' => 'https', - 'encrypted' => true, - 'useTLS' => true, - ), - 'client_options' => - array ( - ), - ), - 'ably' => - array ( - 'driver' => 'ably', - 'key' => NULL, - ), - 'log' => - array ( - 'driver' => 'log', - ), - 'null' => - array ( - 'driver' => 'null', - ), - ), - ), - 'view' => - array ( - 'paths' => - array ( - 0 => '/var/www/html/resources/views', - ), - 'compiled' => '/var/www/html/storage/framework/views', - ), - 'cors' => - array ( - 'paths' => - array ( - 0 => 'api/*', - 1 => 'sanctum/csrf-cookie', - ), - 'allowed_methods' => - array ( - 0 => '*', - ), - 'allowed_origins' => - array ( - 0 => '*', - ), - 'allowed_origins_patterns' => - array ( - ), - 'allowed_headers' => - array ( - 0 => '*', - ), - 'exposed_headers' => - array ( - ), - 'max_age' => 0, - 'supports_credentials' => false, - ), - 'inertia' => - array ( - 'ssr' => - array ( - 'enabled' => true, - 'url' => 'http://127.0.0.1:13714', - ), - 'testing' => - array ( - 'ensure_pages_exist' => true, - 'page_paths' => - array ( - 0 => '/var/www/html/resources/js/Pages', - ), - 'page_extensions' => - array ( - 0 => 'js', - 1 => 'jsx', - 2 => 'svelte', - 3 => 'ts', - 4 => 'tsx', - 5 => 'vue', - ), - ), - 'history' => - array ( - 'encrypt' => false, - ), - ), - 'sanctum' => - array ( - 'stateful' => - array ( - 0 => 'localhost', - 1 => 'localhost:3000', - 2 => '127.0.0.1', - 3 => '127.0.0.1:8000', - 4 => '::1', - 5 => 'localhost', - ), - 'guard' => - array ( - 0 => 'web', - ), - 'expiration' => NULL, - 'token_prefix' => '', - 'middleware' => - array ( - 'authenticate_session' => 'Laravel\\Sanctum\\Http\\Middleware\\AuthenticateSession', - 'encrypt_cookies' => 'Illuminate\\Cookie\\Middleware\\EncryptCookies', - 'validate_csrf_token' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidateCsrfToken', - ), - ), - 'data' => - array ( - 'date_format' => 'Y-m-d\\TH:i:sP', - 'date_timezone' => NULL, - 'features' => - array ( - 'cast_and_transform_iterables' => false, - 'ignore_exception_when_trying_to_set_computed_property_value' => false, - ), - 'transformers' => - array ( - 'DateTimeInterface' => 'Spatie\\LaravelData\\Transformers\\DateTimeInterfaceTransformer', - 'Illuminate\\Contracts\\Support\\Arrayable' => 'Spatie\\LaravelData\\Transformers\\ArrayableTransformer', - 'BackedEnum' => 'Spatie\\LaravelData\\Transformers\\EnumTransformer', - ), - 'casts' => - array ( - 'DateTimeInterface' => 'Spatie\\LaravelData\\Casts\\DateTimeInterfaceCast', - 'BackedEnum' => 'Spatie\\LaravelData\\Casts\\EnumCast', - ), - 'rule_inferrers' => - array ( - 0 => 'Spatie\\LaravelData\\RuleInferrers\\SometimesRuleInferrer', - 1 => 'Spatie\\LaravelData\\RuleInferrers\\NullableRuleInferrer', - 2 => 'Spatie\\LaravelData\\RuleInferrers\\RequiredRuleInferrer', - 3 => 'Spatie\\LaravelData\\RuleInferrers\\BuiltInTypesRuleInferrer', - 4 => 'Spatie\\LaravelData\\RuleInferrers\\AttributesRuleInferrer', - ), - 'normalizers' => - array ( - 0 => 'Spatie\\LaravelData\\Normalizers\\ModelNormalizer', - 1 => 'Spatie\\LaravelData\\Normalizers\\ArrayableNormalizer', - 2 => 'Spatie\\LaravelData\\Normalizers\\ObjectNormalizer', - 3 => 'Spatie\\LaravelData\\Normalizers\\ArrayNormalizer', - 4 => 'Spatie\\LaravelData\\Normalizers\\JsonNormalizer', - ), - 'wrap' => NULL, - 'var_dumper_caster_mode' => 'development', - 'structure_caching' => - array ( - 'enabled' => true, - 'directories' => - array ( - 0 => '/var/www/html/app/Data', - ), - 'cache' => - array ( - 'store' => 'database', - 'prefix' => 'laravel-data', - 'duration' => NULL, - ), - 'reflection_discovery' => - array ( - 'enabled' => true, - 'base_path' => '/var/www/html', - 'root_namespace' => NULL, - ), - ), - 'validation_strategy' => 'only_requests', - 'name_mapping_strategy' => - array ( - 'input' => NULL, - 'output' => NULL, - ), - 'ignore_invalid_partials' => false, - 'max_transformation_depth' => NULL, - 'throw_when_max_transformation_depth_reached' => true, - 'commands' => - array ( - 'make' => - array ( - 'namespace' => 'Data', - 'suffix' => 'Data', - ), - ), - 'livewire' => - array ( - 'enable_synths' => false, - ), - ), - 'flare' => - array ( - 'key' => NULL, - 'flare_middleware' => - array ( - 0 => 'Spatie\\FlareClient\\FlareMiddleware\\RemoveRequestIp', - 1 => 'Spatie\\FlareClient\\FlareMiddleware\\AddGitInformation', - 2 => 'Spatie\\LaravelIgnition\\FlareMiddleware\\AddNotifierName', - 3 => 'Spatie\\LaravelIgnition\\FlareMiddleware\\AddEnvironmentInformation', - 4 => 'Spatie\\LaravelIgnition\\FlareMiddleware\\AddExceptionInformation', - 5 => 'Spatie\\LaravelIgnition\\FlareMiddleware\\AddDumps', - 'Spatie\\LaravelIgnition\\FlareMiddleware\\AddLogs' => - array ( - 'maximum_number_of_collected_logs' => 200, - ), - 'Spatie\\LaravelIgnition\\FlareMiddleware\\AddQueries' => - array ( - 'maximum_number_of_collected_queries' => 200, - 'report_query_bindings' => true, - ), - 'Spatie\\LaravelIgnition\\FlareMiddleware\\AddJobs' => - array ( - 'max_chained_job_reporting_depth' => 5, - ), - 6 => 'Spatie\\LaravelIgnition\\FlareMiddleware\\AddContext', - 7 => 'Spatie\\LaravelIgnition\\FlareMiddleware\\AddExceptionHandledStatus', - 'Spatie\\FlareClient\\FlareMiddleware\\CensorRequestBodyFields' => - array ( - 'censor_fields' => - array ( - 0 => 'password', - 1 => 'password_confirmation', - ), - ), - 'Spatie\\FlareClient\\FlareMiddleware\\CensorRequestHeaders' => - array ( - 'headers' => - array ( - 0 => 'API-KEY', - 1 => 'Authorization', - 2 => 'Cookie', - 3 => 'Set-Cookie', - 4 => 'X-CSRF-TOKEN', - 5 => 'X-XSRF-TOKEN', - ), - ), - ), - 'send_logs_as_events' => true, - ), - 'ignition' => - array ( - 'editor' => 'phpstorm', - 'theme' => 'auto', - 'enable_share_button' => true, - 'register_commands' => false, - 'solution_providers' => - array ( - 0 => 'Spatie\\Ignition\\Solutions\\SolutionProviders\\BadMethodCallSolutionProvider', - 1 => 'Spatie\\Ignition\\Solutions\\SolutionProviders\\MergeConflictSolutionProvider', - 2 => 'Spatie\\Ignition\\Solutions\\SolutionProviders\\UndefinedPropertySolutionProvider', - 3 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\IncorrectValetDbCredentialsSolutionProvider', - 4 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\MissingAppKeySolutionProvider', - 5 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\DefaultDbNameSolutionProvider', - 6 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\TableNotFoundSolutionProvider', - 7 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\MissingImportSolutionProvider', - 8 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\InvalidRouteActionSolutionProvider', - 9 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\ViewNotFoundSolutionProvider', - 10 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\RunningLaravelDuskInProductionProvider', - 11 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\MissingColumnSolutionProvider', - 12 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\UnknownValidationSolutionProvider', - 13 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\MissingMixManifestSolutionProvider', - 14 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\MissingViteManifestSolutionProvider', - 15 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\MissingLivewireComponentSolutionProvider', - 16 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\UndefinedViewVariableSolutionProvider', - 17 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\GenericLaravelExceptionSolutionProvider', - 18 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\OpenAiSolutionProvider', - 19 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\SailNetworkSolutionProvider', - 20 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\UnknownMysql8CollationSolutionProvider', - 21 => 'Spatie\\LaravelIgnition\\Solutions\\SolutionProviders\\UnknownMariadbCollationSolutionProvider', - ), - 'ignored_solution_providers' => - array ( - ), - 'enable_runnable_solutions' => NULL, - 'remote_sites_path' => '/var/www/html', - 'local_sites_path' => '/Users/nathantoombs/Sites/gooddads', - 'housekeeping_endpoint_prefix' => '_ignition', - 'settings_file_path' => '', - 'recorders' => - array ( - 0 => 'Spatie\\LaravelIgnition\\Recorders\\DumpRecorder\\DumpRecorder', - 1 => 'Spatie\\LaravelIgnition\\Recorders\\JobRecorder\\JobRecorder', - 2 => 'Spatie\\LaravelIgnition\\Recorders\\LogRecorder\\LogRecorder', - 3 => 'Spatie\\LaravelIgnition\\Recorders\\QueryRecorder\\QueryRecorder', - ), - 'open_ai_key' => NULL, - 'with_stack_frame_arguments' => true, - 'argument_reducers' => - array ( - 0 => 'Spatie\\Backtrace\\Arguments\\Reducers\\BaseTypeArgumentReducer', - 1 => 'Spatie\\Backtrace\\Arguments\\Reducers\\ArrayArgumentReducer', - 2 => 'Spatie\\Backtrace\\Arguments\\Reducers\\StdClassArgumentReducer', - 3 => 'Spatie\\Backtrace\\Arguments\\Reducers\\EnumArgumentReducer', - 4 => 'Spatie\\Backtrace\\Arguments\\Reducers\\ClosureArgumentReducer', - 5 => 'Spatie\\Backtrace\\Arguments\\Reducers\\DateTimeArgumentReducer', - 6 => 'Spatie\\Backtrace\\Arguments\\Reducers\\DateTimeZoneArgumentReducer', - 7 => 'Spatie\\Backtrace\\Arguments\\Reducers\\SymphonyRequestArgumentReducer', - 8 => 'Spatie\\LaravelIgnition\\ArgumentReducers\\ModelArgumentReducer', - 9 => 'Spatie\\LaravelIgnition\\ArgumentReducers\\CollectionArgumentReducer', - 10 => 'Spatie\\Backtrace\\Arguments\\Reducers\\StringableArgumentReducer', - ), - ), - 'structure-discoverer' => - array ( - 'ignored_files' => - array ( - ), - 'structure_scout_directories' => - array ( - 0 => '/var/www/html/app', - ), - 'cache' => - array ( - 'driver' => 'Spatie\\StructureDiscoverer\\Cache\\LaravelDiscoverCacheDriver', - 'store' => NULL, - ), - ), - 'breadcrumbs' => - array ( - 'view' => 'breadcrumbs::bootstrap5', - 'files' => '/var/www/html/routes/breadcrumbs.php', - 'unnamed-route-exception' => true, - 'missing-route-bound-breadcrumb-exception' => true, - 'invalid-named-breadcrumb-exception' => true, - 'manager-class' => 'Diglactic\\Breadcrumbs\\Manager', - 'generator-class' => 'Diglactic\\Breadcrumbs\\Generator', - ), - 'tinker' => - array ( - 'commands' => - array ( - ), - 'alias' => - array ( - ), - 'dont_alias' => - array ( - 0 => 'App\\Nova', - ), - ), -); diff --git a/bootstrap/cache/events.php b/bootstrap/cache/events.php deleted file mode 100644 index 43ef8682..00000000 --- a/bootstrap/cache/events.php +++ /dev/null @@ -1,5 +0,0 @@ - - array ( - ), -); \ No newline at end of file diff --git a/bootstrap/cache/packages.php b/bootstrap/cache/packages.php deleted file mode 100755 index 123c71ec..00000000 --- a/bootstrap/cache/packages.php +++ /dev/null @@ -1,126 +0,0 @@ - - array ( - 'aliases' => - array ( - 'Breadcrumbs' => 'Diglactic\\Breadcrumbs\\Breadcrumbs', - ), - 'providers' => - array ( - 0 => 'Diglactic\\Breadcrumbs\\ServiceProvider', - ), - ), - 'glhd/gretel' => - array ( - 'aliases' => - array ( - 'Gretel' => 'Glhd\\Gretel\\Support\\Facades\\Gretel', - ), - 'providers' => - array ( - 0 => 'Glhd\\Gretel\\Support\\GretelServiceProvider', - ), - ), - 'inertiajs/inertia-laravel' => - array ( - 'providers' => - array ( - 0 => 'Inertia\\ServiceProvider', - ), - ), - 'laravel/breeze' => - array ( - 'providers' => - array ( - 0 => 'Laravel\\Breeze\\BreezeServiceProvider', - ), - ), - 'laravel/sail' => - array ( - 'providers' => - array ( - 0 => 'Laravel\\Sail\\SailServiceProvider', - ), - ), - 'laravel/sanctum' => - array ( - 'providers' => - array ( - 0 => 'Laravel\\Sanctum\\SanctumServiceProvider', - ), - ), - 'laravel/tinker' => - array ( - 'providers' => - array ( - 0 => 'Laravel\\Tinker\\TinkerServiceProvider', - ), - ), - 'nesbot/carbon' => - array ( - 'providers' => - array ( - 0 => 'Carbon\\Laravel\\ServiceProvider', - ), - ), - 'nunomaduro/collision' => - array ( - 'providers' => - array ( - 0 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider', - ), - ), - 'nunomaduro/termwind' => - array ( - 'providers' => - array ( - 0 => 'Termwind\\Laravel\\TermwindServiceProvider', - ), - ), - 'spatie/laravel-data' => - array ( - 'providers' => - array ( - 0 => 'Spatie\\LaravelData\\LaravelDataServiceProvider', - ), - ), - 'spatie/laravel-ignition' => - array ( - 'aliases' => - array ( - 'Flare' => 'Spatie\\LaravelIgnition\\Facades\\Flare', - ), - 'providers' => - array ( - 0 => 'Spatie\\LaravelIgnition\\IgnitionServiceProvider', - ), - ), - 'spatie/laravel-permission' => - array ( - 'providers' => - array ( - 0 => 'Spatie\\Permission\\PermissionServiceProvider', - ), - ), - 'spatie/laravel-typescript-transformer' => - array ( - 'providers' => - array ( - 0 => 'Spatie\\LaravelTypeScriptTransformer\\TypeScriptTransformerServiceProvider', - ), - ), - 'spatie/php-structure-discoverer' => - array ( - 'providers' => - array ( - 0 => 'Spatie\\StructureDiscoverer\\StructureDiscovererServiceProvider', - ), - ), - 'tightenco/ziggy' => - array ( - 'providers' => - array ( - 0 => 'Tighten\\Ziggy\\ZiggyServiceProvider', - ), - ), -); \ No newline at end of file diff --git a/bootstrap/cache/routes-v7.php b/bootstrap/cache/routes-v7.php deleted file mode 100644 index a594ab68..00000000 --- a/bootstrap/cache/routes-v7.php +++ /dev/null @@ -1,2086 +0,0 @@ -setCompiledRoutes( - array ( - 'compiled' => - array ( - 0 => false, - 1 => - array ( - '/sanctum/csrf-cookie' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'sanctum.csrf-cookie', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/_ignition/health-check' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'ignition.healthCheck', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/_ignition/execute-solution' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'ignition.executeSolution', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/_ignition/update-config' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'ignition.updateConfig', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/up' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'generated::0icFG5xKzqSSsQrb', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'index', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/privacy-policy' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'privacy-policy', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/terms-of-service' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'terms-of-service', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/register' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'auth.register.create', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'auth.register.store', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/profile' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'profile.edit', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'profile.update', - ), - 1 => NULL, - 2 => - array ( - 'PATCH' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 2 => - array ( - 0 => - array ( - '_route' => 'profile.destroy', - ), - 1 => NULL, - 2 => - array ( - 'DELETE' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/users' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'users.list', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'users.store', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 2 => - array ( - 0 => - array ( - '_route' => 'users.destroyMultiple', - ), - 1 => NULL, - 2 => - array ( - 'DELETE' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/users/create' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'users.create', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/curriculum' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'curriculum.list', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/classes' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'classes.list', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/reports' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'reports.list', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/login' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'login', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/forgot-password' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'password.request', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'password.email', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/reset-password' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'password.store', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/verify-email' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'verification.notice', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/email/verification-notification' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'verification.send', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/confirm-password' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'password.confirm', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'generated::CWRUEndi5qqjW9sT', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/password' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'password.update', - ), - 1 => NULL, - 2 => - array ( - 'PUT' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/logout' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'logout', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - ), - 2 => - array ( - 0 => '{^(?|/users/([^/]++)(?|(*:25)|/edit(*:37)|(*:44))|/reset\\-password/([^/]++)(*:77)|/verify\\-email/([^/]++)/([^/]++)(*:116))/?$}sDu', - ), - 3 => - array ( - 25 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'users.show', - ), - 1 => - array ( - 0 => 'user', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - ), - 37 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'users.edit', - ), - 1 => - array ( - 0 => 'user', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - 44 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'users.update', - ), - 1 => - array ( - 0 => 'user', - ), - 2 => - array ( - 'PUT' => 0, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'users.destroy', - ), - 1 => - array ( - 0 => 'user', - ), - 2 => - array ( - 'DELETE' => 0, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - ), - 77 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'password.reset', - ), - 1 => - array ( - 0 => 'token', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - ), - 116 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'verification.verify', - ), - 1 => - array ( - 0 => 'id', - 1 => 'hash', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - 1 => - array ( - 0 => NULL, - 1 => NULL, - 2 => NULL, - 3 => NULL, - 4 => false, - 5 => false, - 6 => 0, - ), - ), - ), - 4 => NULL, - ), - 'attributes' => - array ( - 'sanctum.csrf-cookie' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'sanctum/csrf-cookie', - 'action' => - array ( - 'uses' => 'Laravel\\Sanctum\\Http\\Controllers\\CsrfCookieController@show', - 'controller' => 'Laravel\\Sanctum\\Http\\Controllers\\CsrfCookieController@show', - 'namespace' => NULL, - 'prefix' => 'sanctum', - 'where' => - array ( - ), - 'middleware' => - array ( - 0 => 'web', - ), - 'as' => 'sanctum.csrf-cookie', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'ignition.healthCheck' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => '_ignition/health-check', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'Spatie\\LaravelIgnition\\Http\\Middleware\\RunnableSolutionsEnabled', - ), - 'uses' => 'Spatie\\LaravelIgnition\\Http\\Controllers\\HealthCheckController@__invoke', - 'controller' => 'Spatie\\LaravelIgnition\\Http\\Controllers\\HealthCheckController', - 'as' => 'ignition.healthCheck', - 'namespace' => NULL, - 'prefix' => '_ignition', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'ignition.executeSolution' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => '_ignition/execute-solution', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'Spatie\\LaravelIgnition\\Http\\Middleware\\RunnableSolutionsEnabled', - ), - 'uses' => 'Spatie\\LaravelIgnition\\Http\\Controllers\\ExecuteSolutionController@__invoke', - 'controller' => 'Spatie\\LaravelIgnition\\Http\\Controllers\\ExecuteSolutionController', - 'as' => 'ignition.executeSolution', - 'namespace' => NULL, - 'prefix' => '_ignition', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'ignition.updateConfig' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => '_ignition/update-config', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'Spatie\\LaravelIgnition\\Http\\Middleware\\RunnableSolutionsEnabled', - ), - 'uses' => 'Spatie\\LaravelIgnition\\Http\\Controllers\\UpdateConfigController@__invoke', - 'controller' => 'Spatie\\LaravelIgnition\\Http\\Controllers\\UpdateConfigController', - 'as' => 'ignition.updateConfig', - 'namespace' => NULL, - 'prefix' => '_ignition', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::0icFG5xKzqSSsQrb' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'up', - 'action' => - array ( - 'uses' => 'O:55:"Laravel\\SerializableClosure\\UnsignedSerializableClosure":1:{s:12:"serializable";O:46:"Laravel\\SerializableClosure\\Serializers\\Native":5:{s:3:"use";a:0:{}s:8:"function";s:807:"function () { - $exception = null; - - try { - \\Illuminate\\Support\\Facades\\Event::dispatch(new \\Illuminate\\Foundation\\Events\\DiagnosingHealth); - } catch (\\Throwable $e) { - if (app()->hasDebugModeEnabled()) { - throw $e; - } - - report($e); - - $exception = $e->getMessage(); - } - - return response(\\Illuminate\\Support\\Facades\\View::file(\'/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Configuration\'.\'/../resources/health-up.blade.php\', [ - \'exception\' => $exception, - ]), status: $exception ? 500 : 200); - }";s:5:"scope";s:54:"Illuminate\\Foundation\\Configuration\\ApplicationBuilder";s:4:"this";N;s:4:"self";s:32:"00000000000006d40000000000000000";}}', - 'as' => 'generated::0icFG5xKzqSSsQrb', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'index' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => '/', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - ), - 'uses' => 'App\\Http\\Controllers\\HomeController@index', - 'controller' => 'App\\Http\\Controllers\\HomeController@index', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'index', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'privacy-policy' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'privacy-policy', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - ), - 'uses' => 'App\\Http\\Controllers\\LegalController@privacyPolicy', - 'controller' => 'App\\Http\\Controllers\\LegalController@privacyPolicy', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'privacy-policy', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'terms-of-service' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'terms-of-service', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - ), - 'uses' => 'App\\Http\\Controllers\\LegalController@termsOfService', - 'controller' => 'App\\Http\\Controllers\\LegalController@termsOfService', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'terms-of-service', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'auth.register.create' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'register', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\UserRegistrationController@create', - 'controller' => 'App\\Http\\Controllers\\Auth\\UserRegistrationController@create', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'auth.register.create', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'auth.register.store' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'register', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\UserRegistrationController@store', - 'controller' => 'App\\Http\\Controllers\\Auth\\UserRegistrationController@store', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'auth.register.store', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'profile.edit' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'profile', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\ProfileController@edit', - 'controller' => 'App\\Http\\Controllers\\ProfileController@edit', - 'as' => 'profile.edit', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'profile.update' => - array ( - 'methods' => - array ( - 0 => 'PATCH', - ), - 'uri' => 'profile', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\ProfileController@update', - 'controller' => 'App\\Http\\Controllers\\ProfileController@update', - 'as' => 'profile.update', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'profile.destroy' => - array ( - 'methods' => - array ( - 0 => 'DELETE', - ), - 'uri' => 'profile', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\ProfileController@destroy', - 'controller' => 'App\\Http\\Controllers\\ProfileController@destroy', - 'as' => 'profile.destroy', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'users.list' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'users', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\UsersController@list', - 'controller' => 'App\\Http\\Controllers\\UsersController@list', - 'as' => 'users.list', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'users.create' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'users/create', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\UsersController@create', - 'controller' => 'App\\Http\\Controllers\\UsersController@create', - 'as' => 'users.create', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'users.show' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'users/{user}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\UsersController@show', - 'controller' => 'App\\Http\\Controllers\\UsersController@show', - 'as' => 'users.show', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'users.edit' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'users/{user}/edit', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\UsersController@edit', - 'controller' => 'App\\Http\\Controllers\\UsersController@edit', - 'as' => 'users.edit', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'users.store' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'users', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\UsersController@store', - 'controller' => 'App\\Http\\Controllers\\UsersController@store', - 'as' => 'users.store', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'users.update' => - array ( - 'methods' => - array ( - 0 => 'PUT', - ), - 'uri' => 'users/{user}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\UsersController@update', - 'controller' => 'App\\Http\\Controllers\\UsersController@update', - 'as' => 'users.update', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'users.destroy' => - array ( - 'methods' => - array ( - 0 => 'DELETE', - ), - 'uri' => 'users/{user}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\UsersController@destroy', - 'controller' => 'App\\Http\\Controllers\\UsersController@destroy', - 'as' => 'users.destroy', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'users.destroyMultiple' => - array ( - 'methods' => - array ( - 0 => 'DELETE', - ), - 'uri' => 'users', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\UsersController@destroyMultiple', - 'controller' => 'App\\Http\\Controllers\\UsersController@destroyMultiple', - 'as' => 'users.destroyMultiple', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'curriculum.list' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'curriculum', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\CurriculumController@list', - 'controller' => 'App\\Http\\Controllers\\CurriculumController@list', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'curriculum.list', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'classes.list' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'classes', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\ClassesController@list', - 'controller' => 'App\\Http\\Controllers\\ClassesController@list', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'classes.list', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'reports.list' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'reports', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\ReportsController@list', - 'controller' => 'App\\Http\\Controllers\\ReportsController@list', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'reports.list', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'login' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'login', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'guest', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\AuthenticatedSessionController@store', - 'controller' => 'App\\Http\\Controllers\\Auth\\AuthenticatedSessionController@store', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'login', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'password.request' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'forgot-password', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'guest', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\PasswordResetLinkController@create', - 'controller' => 'App\\Http\\Controllers\\Auth\\PasswordResetLinkController@create', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'password.request', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'password.email' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'forgot-password', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'guest', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\PasswordResetLinkController@store', - 'controller' => 'App\\Http\\Controllers\\Auth\\PasswordResetLinkController@store', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'password.email', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'password.reset' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'reset-password/{token}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'guest', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\NewPasswordController@create', - 'controller' => 'App\\Http\\Controllers\\Auth\\NewPasswordController@create', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'password.reset', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'password.store' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'reset-password', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'guest', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\NewPasswordController@store', - 'controller' => 'App\\Http\\Controllers\\Auth\\NewPasswordController@store', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'password.store', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'verification.notice' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'verify-email', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\EmailVerificationPromptController@__invoke', - 'controller' => 'App\\Http\\Controllers\\Auth\\EmailVerificationPromptController', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'verification.notice', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'verification.verify' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'verify-email/{id}/{hash}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - 2 => 'signed', - 3 => 'throttle:6,1', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\VerifyEmailController@__invoke', - 'controller' => 'App\\Http\\Controllers\\Auth\\VerifyEmailController', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'verification.verify', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'verification.send' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'email/verification-notification', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - 2 => 'throttle:6,1', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\EmailVerificationNotificationController@store', - 'controller' => 'App\\Http\\Controllers\\Auth\\EmailVerificationNotificationController@store', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'verification.send', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'password.confirm' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'confirm-password', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\ConfirmablePasswordController@show', - 'controller' => 'App\\Http\\Controllers\\Auth\\ConfirmablePasswordController@show', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'password.confirm', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::CWRUEndi5qqjW9sT' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'confirm-password', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\ConfirmablePasswordController@store', - 'controller' => 'App\\Http\\Controllers\\Auth\\ConfirmablePasswordController@store', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'generated::CWRUEndi5qqjW9sT', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'password.update' => - array ( - 'methods' => - array ( - 0 => 'PUT', - ), - 'uri' => 'password', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\PasswordController@update', - 'controller' => 'App\\Http\\Controllers\\Auth\\PasswordController@update', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'password.update', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'logout' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'logout', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'App\\Http\\Controllers\\Auth\\AuthenticatedSessionController@destroy', - 'controller' => 'App\\Http\\Controllers\\Auth\\AuthenticatedSessionController@destroy', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'logout', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - ), -) -); diff --git a/bootstrap/cache/services.php b/bootstrap/cache/services.php deleted file mode 100755 index 81bb699f..00000000 --- a/bootstrap/cache/services.php +++ /dev/null @@ -1,282 +0,0 @@ - - array ( - 0 => 'Illuminate\\Auth\\AuthServiceProvider', - 1 => 'Illuminate\\Broadcasting\\BroadcastServiceProvider', - 2 => 'Illuminate\\Bus\\BusServiceProvider', - 3 => 'Illuminate\\Cache\\CacheServiceProvider', - 4 => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 5 => 'Illuminate\\Concurrency\\ConcurrencyServiceProvider', - 6 => 'Illuminate\\Cookie\\CookieServiceProvider', - 7 => 'Illuminate\\Database\\DatabaseServiceProvider', - 8 => 'Illuminate\\Encryption\\EncryptionServiceProvider', - 9 => 'Illuminate\\Filesystem\\FilesystemServiceProvider', - 10 => 'Illuminate\\Foundation\\Providers\\FoundationServiceProvider', - 11 => 'Illuminate\\Hashing\\HashServiceProvider', - 12 => 'Illuminate\\Mail\\MailServiceProvider', - 13 => 'Illuminate\\Notifications\\NotificationServiceProvider', - 14 => 'Illuminate\\Pagination\\PaginationServiceProvider', - 15 => 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider', - 16 => 'Illuminate\\Pipeline\\PipelineServiceProvider', - 17 => 'Illuminate\\Queue\\QueueServiceProvider', - 18 => 'Illuminate\\Redis\\RedisServiceProvider', - 19 => 'Illuminate\\Session\\SessionServiceProvider', - 20 => 'Illuminate\\Translation\\TranslationServiceProvider', - 21 => 'Illuminate\\Validation\\ValidationServiceProvider', - 22 => 'Illuminate\\View\\ViewServiceProvider', - 23 => 'Diglactic\\Breadcrumbs\\ServiceProvider', - 24 => 'Glhd\\Gretel\\Support\\GretelServiceProvider', - 25 => 'Inertia\\ServiceProvider', - 26 => 'Laravel\\Breeze\\BreezeServiceProvider', - 27 => 'Laravel\\Sail\\SailServiceProvider', - 28 => 'Laravel\\Sanctum\\SanctumServiceProvider', - 29 => 'Laravel\\Tinker\\TinkerServiceProvider', - 30 => 'Carbon\\Laravel\\ServiceProvider', - 31 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider', - 32 => 'Termwind\\Laravel\\TermwindServiceProvider', - 33 => 'Spatie\\LaravelData\\LaravelDataServiceProvider', - 34 => 'Spatie\\LaravelIgnition\\IgnitionServiceProvider', - 35 => 'Spatie\\Permission\\PermissionServiceProvider', - 36 => 'Spatie\\LaravelTypeScriptTransformer\\TypeScriptTransformerServiceProvider', - 37 => 'Spatie\\StructureDiscoverer\\StructureDiscovererServiceProvider', - 38 => 'Tighten\\Ziggy\\ZiggyServiceProvider', - 39 => 'App\\Providers\\AppServiceProvider', - ), - 'eager' => - array ( - 0 => 'Illuminate\\Auth\\AuthServiceProvider', - 1 => 'Illuminate\\Cookie\\CookieServiceProvider', - 2 => 'Illuminate\\Database\\DatabaseServiceProvider', - 3 => 'Illuminate\\Encryption\\EncryptionServiceProvider', - 4 => 'Illuminate\\Filesystem\\FilesystemServiceProvider', - 5 => 'Illuminate\\Foundation\\Providers\\FoundationServiceProvider', - 6 => 'Illuminate\\Notifications\\NotificationServiceProvider', - 7 => 'Illuminate\\Pagination\\PaginationServiceProvider', - 8 => 'Illuminate\\Session\\SessionServiceProvider', - 9 => 'Illuminate\\View\\ViewServiceProvider', - 10 => 'Glhd\\Gretel\\Support\\GretelServiceProvider', - 11 => 'Inertia\\ServiceProvider', - 12 => 'Laravel\\Sanctum\\SanctumServiceProvider', - 13 => 'Carbon\\Laravel\\ServiceProvider', - 14 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider', - 15 => 'Termwind\\Laravel\\TermwindServiceProvider', - 16 => 'Spatie\\LaravelData\\LaravelDataServiceProvider', - 17 => 'Spatie\\LaravelIgnition\\IgnitionServiceProvider', - 18 => 'Spatie\\Permission\\PermissionServiceProvider', - 19 => 'Spatie\\LaravelTypeScriptTransformer\\TypeScriptTransformerServiceProvider', - 20 => 'Spatie\\StructureDiscoverer\\StructureDiscovererServiceProvider', - 21 => 'Tighten\\Ziggy\\ZiggyServiceProvider', - 22 => 'App\\Providers\\AppServiceProvider', - ), - 'deferred' => - array ( - 'Illuminate\\Broadcasting\\BroadcastManager' => 'Illuminate\\Broadcasting\\BroadcastServiceProvider', - 'Illuminate\\Contracts\\Broadcasting\\Factory' => 'Illuminate\\Broadcasting\\BroadcastServiceProvider', - 'Illuminate\\Contracts\\Broadcasting\\Broadcaster' => 'Illuminate\\Broadcasting\\BroadcastServiceProvider', - 'Illuminate\\Bus\\Dispatcher' => 'Illuminate\\Bus\\BusServiceProvider', - 'Illuminate\\Contracts\\Bus\\Dispatcher' => 'Illuminate\\Bus\\BusServiceProvider', - 'Illuminate\\Contracts\\Bus\\QueueingDispatcher' => 'Illuminate\\Bus\\BusServiceProvider', - 'Illuminate\\Bus\\BatchRepository' => 'Illuminate\\Bus\\BusServiceProvider', - 'Illuminate\\Bus\\DatabaseBatchRepository' => 'Illuminate\\Bus\\BusServiceProvider', - 'cache' => 'Illuminate\\Cache\\CacheServiceProvider', - 'cache.store' => 'Illuminate\\Cache\\CacheServiceProvider', - 'cache.psr6' => 'Illuminate\\Cache\\CacheServiceProvider', - 'memcached.connector' => 'Illuminate\\Cache\\CacheServiceProvider', - 'Illuminate\\Cache\\RateLimiter' => 'Illuminate\\Cache\\CacheServiceProvider', - 'Illuminate\\Foundation\\Console\\AboutCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Cache\\Console\\ClearCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Cache\\Console\\ForgetCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ClearCompiledCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Auth\\Console\\ClearResetsCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ConfigCacheCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ConfigClearCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ConfigShowCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\DbCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\MonitorCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\PruneCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\ShowCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\TableCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\WipeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\DownCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\EnvironmentCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\EnvironmentDecryptCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\EnvironmentEncryptCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\EventCacheCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\EventClearCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\EventListCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Concurrency\\Console\\InvokeSerializedClosureCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\KeyGenerateCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\OptimizeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\OptimizeClearCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\PackageDiscoverCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Cache\\Console\\PruneStaleTagsCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\ClearCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\ListFailedCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\FlushFailedCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\ForgetFailedCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\ListenCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\MonitorCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\PruneBatchesCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\PruneFailedJobsCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\RestartCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\RetryCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\RetryBatchCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\WorkCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\RouteCacheCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\RouteClearCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\RouteListCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\DumpCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\Seeds\\SeedCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Console\\Scheduling\\ScheduleFinishCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Console\\Scheduling\\ScheduleListCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Console\\Scheduling\\ScheduleRunCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Console\\Scheduling\\ScheduleClearCacheCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Console\\Scheduling\\ScheduleTestCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Console\\Scheduling\\ScheduleWorkCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Console\\Scheduling\\ScheduleInterruptCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\ShowModelCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\StorageLinkCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\StorageUnlinkCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\UpCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ViewCacheCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ViewClearCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ApiInstallCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\BroadcastingInstallCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Cache\\Console\\CacheTableCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\CastMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ChannelListCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ChannelMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ClassMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ComponentMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ConfigPublishCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ConsoleMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Routing\\Console\\ControllerMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\DocsCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\EnumMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\EventGenerateCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\EventMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ExceptionMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\InterfaceMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\JobMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\JobMiddlewareMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\LangPublishCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ListenerMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\MailMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Routing\\Console\\MiddlewareMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ModelMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\NotificationMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Notifications\\Console\\NotificationTableCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ObserverMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\PolicyMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ProviderMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\FailedTableCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\TableCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Queue\\Console\\BatchesTableCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\RequestMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ResourceMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\RuleMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ScopeMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Session\\Console\\SessionTableCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ServeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\StubPublishCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\TestMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\TraitMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\VendorPublishCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Foundation\\Console\\ViewMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'migrator' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'migration.repository' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'migration.creator' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\Migrations\\MigrateCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\Migrations\\FreshCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\Migrations\\InstallCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\Migrations\\RefreshCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\Migrations\\ResetCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\Migrations\\RollbackCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\Migrations\\StatusCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'composer' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', - 'Illuminate\\Concurrency\\ConcurrencyManager' => 'Illuminate\\Concurrency\\ConcurrencyServiceProvider', - 'hash' => 'Illuminate\\Hashing\\HashServiceProvider', - 'hash.driver' => 'Illuminate\\Hashing\\HashServiceProvider', - 'mail.manager' => 'Illuminate\\Mail\\MailServiceProvider', - 'mailer' => 'Illuminate\\Mail\\MailServiceProvider', - 'Illuminate\\Mail\\Markdown' => 'Illuminate\\Mail\\MailServiceProvider', - 'auth.password' => 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider', - 'auth.password.broker' => 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider', - 'Illuminate\\Contracts\\Pipeline\\Hub' => 'Illuminate\\Pipeline\\PipelineServiceProvider', - 'pipeline' => 'Illuminate\\Pipeline\\PipelineServiceProvider', - 'queue' => 'Illuminate\\Queue\\QueueServiceProvider', - 'queue.connection' => 'Illuminate\\Queue\\QueueServiceProvider', - 'queue.failer' => 'Illuminate\\Queue\\QueueServiceProvider', - 'queue.listener' => 'Illuminate\\Queue\\QueueServiceProvider', - 'queue.worker' => 'Illuminate\\Queue\\QueueServiceProvider', - 'redis' => 'Illuminate\\Redis\\RedisServiceProvider', - 'redis.connection' => 'Illuminate\\Redis\\RedisServiceProvider', - 'translator' => 'Illuminate\\Translation\\TranslationServiceProvider', - 'translation.loader' => 'Illuminate\\Translation\\TranslationServiceProvider', - 'validator' => 'Illuminate\\Validation\\ValidationServiceProvider', - 'validation.presence' => 'Illuminate\\Validation\\ValidationServiceProvider', - 'Illuminate\\Contracts\\Validation\\UncompromisedVerifier' => 'Illuminate\\Validation\\ValidationServiceProvider', - 'Diglactic\\Breadcrumbs\\Manager' => 'Diglactic\\Breadcrumbs\\ServiceProvider', - 'Laravel\\Breeze\\Console\\InstallCommand' => 'Laravel\\Breeze\\BreezeServiceProvider', - 'Laravel\\Sail\\Console\\InstallCommand' => 'Laravel\\Sail\\SailServiceProvider', - 'Laravel\\Sail\\Console\\PublishCommand' => 'Laravel\\Sail\\SailServiceProvider', - 'command.tinker' => 'Laravel\\Tinker\\TinkerServiceProvider', - ), - 'when' => - array ( - 'Illuminate\\Broadcasting\\BroadcastServiceProvider' => - array ( - ), - 'Illuminate\\Bus\\BusServiceProvider' => - array ( - ), - 'Illuminate\\Cache\\CacheServiceProvider' => - array ( - ), - 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider' => - array ( - ), - 'Illuminate\\Concurrency\\ConcurrencyServiceProvider' => - array ( - ), - 'Illuminate\\Hashing\\HashServiceProvider' => - array ( - ), - 'Illuminate\\Mail\\MailServiceProvider' => - array ( - ), - 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider' => - array ( - ), - 'Illuminate\\Pipeline\\PipelineServiceProvider' => - array ( - ), - 'Illuminate\\Queue\\QueueServiceProvider' => - array ( - ), - 'Illuminate\\Redis\\RedisServiceProvider' => - array ( - ), - 'Illuminate\\Translation\\TranslationServiceProvider' => - array ( - ), - 'Illuminate\\Validation\\ValidationServiceProvider' => - array ( - ), - 'Diglactic\\Breadcrumbs\\ServiceProvider' => - array ( - ), - 'Laravel\\Breeze\\BreezeServiceProvider' => - array ( - ), - 'Laravel\\Sail\\SailServiceProvider' => - array ( - ), - 'Laravel\\Tinker\\TinkerServiceProvider' => - array ( - ), - ), -); \ No newline at end of file diff --git a/composer.json b/composer.json index 6d584e34..00114e52 100644 --- a/composer.json +++ b/composer.json @@ -106,4 +106,4 @@ }, "minimum-stability": "stable", "prefer-stable": true -} \ No newline at end of file +}