diff --git a/app/Http/Controllers/Admin/NewsCrudController.php b/app/Http/Controllers/Admin/NewsCrudController.php new file mode 100644 index 0000000..c7934f7 --- /dev/null +++ b/app/Http/Controllers/Admin/NewsCrudController.php @@ -0,0 +1,88 @@ +type('image'); + CRUD::column('date'); + + /** + * Columns can be defined using the fluent syntax or array syntax: + * - CRUD::column('price')->type('number'); + * - CRUD::addColumn(['name' => 'price', 'type' => 'number']); + */ + } + + /** + * Define what happens when the Create operation is loaded. + * + * @see https://backpackforlaravel.com/docs/crud-operation-create + * @return void + */ + protected function setupCreateOperation() + { + CRUD::setValidation(NewsRequest::class); + + CRUD::field('title'); + CRUD::field('short_description'); + CRUD::field('description'); + CRUD::field('image')->type('image'); + CRUD::field('date'); + + /** + * Fields can be defined using the fluent syntax or array syntax: + * - CRUD::field('price')->type('number'); + * - CRUD::addField(['name' => 'price', 'type' => 'number'])); + */ + } + + /** + * Define what happens when the Update operation is loaded. + * + * @see https://backpackforlaravel.com/docs/crud-operation-update + * @return void + */ + protected function setupUpdateOperation() + { + $this->setupCreateOperation(); + } +} diff --git a/app/Http/Controllers/Api/ApiController.php b/app/Http/Controllers/Api/ApiController.php index f12aba6..79eeabc 100644 --- a/app/Http/Controllers/Api/ApiController.php +++ b/app/Http/Controllers/Api/ApiController.php @@ -5,6 +5,7 @@ namespace App\Http\Controllers\Api; use League\Fractal\Manager; use League\Fractal\Resource\Item; use App\Http\Controllers\Controller; +use Illuminate\Http\Request; use League\Fractal\Resource\Collection; use League\Fractal\Pagination\IlluminatePaginatorAdapter; @@ -26,11 +27,13 @@ class ApiController extends Controller * @var Manager $fractal */ protected $fractal; + public $locale; - public function __construct() + public function __construct(Request $request) { $this->fractal = new Manager; + $this->locale = $request->header('X-Localization') ?? 'tk'; } /** diff --git a/app/Http/Controllers/Api/CategoryController.php b/app/Http/Controllers/Api/CategoryController.php new file mode 100644 index 0000000..93aa234 --- /dev/null +++ b/app/Http/Controllers/Api/CategoryController.php @@ -0,0 +1,19 @@ +get(); + return $this->respondWithCollection($categories, new CategoryTransformer($this->locale)); + } +} diff --git a/app/Http/Controllers/Api/NewsController.php b/app/Http/Controllers/Api/NewsController.php new file mode 100644 index 0000000..eb031aa --- /dev/null +++ b/app/Http/Controllers/Api/NewsController.php @@ -0,0 +1,18 @@ +paginate(9); + return $this->respondWithPaginator($news, new NewsTransformer($this->locale)); + } +} diff --git a/app/Http/Controllers/Api/TradingsController.php b/app/Http/Controllers/Api/TradingsController.php index 50b4d96..2983c7e 100644 --- a/app/Http/Controllers/Api/TradingsController.php +++ b/app/Http/Controllers/Api/TradingsController.php @@ -7,8 +7,6 @@ use App\Models\Trading; use App\Transformers\TradingTransformer; use Illuminate\Http\Request; -use function PHPUnit\Framework\isEmpty; - class TradingsController extends ApiController { public function index(Request $request) @@ -41,8 +39,6 @@ class TradingsController extends ApiController $tradings = Trading::hydrate($tradings); return $this->respondWithCollection($tradings, new TradingTransformer); - dd($tradings); - } function getPercentageDifference($new, $old){ diff --git a/app/Http/Controllers/NewsController.php b/app/Http/Controllers/NewsController.php new file mode 100644 index 0000000..d49973a --- /dev/null +++ b/app/Http/Controllers/NewsController.php @@ -0,0 +1,86 @@ +check(); + } + + /** + * Get the validation rules that apply to the request. + * + * @return array + */ + public function rules() + { + return [ + // 'name' => 'required|min:5|max:255' + ]; + } + + /** + * Get the validation attributes that apply to the request. + * + * @return array + */ + public function attributes() + { + return [ + // + ]; + } + + /** + * Get the validation messages that apply to the request. + * + * @return array + */ + public function messages() + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/StoreNewsRequest.php b/app/Http/Requests/StoreNewsRequest.php new file mode 100644 index 0000000..b1e27ac --- /dev/null +++ b/app/Http/Requests/StoreNewsRequest.php @@ -0,0 +1,30 @@ +delete($obj->image); + }); + } + + public function setImageAttribute($value) + { + $attribute_name = "image"; + // or use your own disk, defined in config/filesystems.php + $disk = config('backpack.base.root_disk_name'); + // destination path relative to the disk above + $destination_path = "public/uploads/news"; + + // if the image was erased + if (empty($value)) { + // delete the image from disk + if (isset($this->{$attribute_name}) && !empty($this->{$attribute_name})) { + \Storage::disk($disk)->delete($this->{$attribute_name}); + } + // set null on database column + $this->attributes[$attribute_name] = null; + } + + // if a base64 was sent, store it in the db + if (Str::startsWith($value, 'data:image')) + { + // 0. Make the image + $image = \Image::make($value)->encode('jpg', 90); + + // 1. Generate a filename. + $filename = md5($value.time()).'.jpg'; + + // 2. Store the image on disk. + \Storage::disk($disk)->put($destination_path.'/'.$filename, $image->stream()); + + // 3. Delete the previous image, if there was one. + if (isset($this->{$attribute_name}) && !empty($this->{$attribute_name})) { + \Storage::disk($disk)->delete($this->{$attribute_name}); + } + + // 4. Save the public path to the database + // but first, remove "public/" from the path, since we're pointing to it + // from the root folder; that way, what gets saved in the db + // is the public URL (everything that comes after the domain name) + $public_destination_path = Str::replaceFirst('public/', '', $destination_path); + $this->attributes[$attribute_name] = $public_destination_path.'/'.$filename; + + // TODO + // crop image to 300x300 + } elseif (!empty($value)) { + // if value isn't empty, but it's not an image, assume it's the model value for that attribute. + $this->attributes[$attribute_name] = $this->{$attribute_name}; + } + } +} diff --git a/app/Policies/NewsPolicy.php b/app/Policies/NewsPolicy.php new file mode 100644 index 0000000..ce56dfb --- /dev/null +++ b/app/Policies/NewsPolicy.php @@ -0,0 +1,94 @@ +locale = $locale; + } + + public function transform(Category $category) + { + return [ + 'id' => $category->id, + 'title' => $category->getTranslations('title', [$this->locale]), + ]; + } +} \ No newline at end of file diff --git a/app/Transformers/NewsTransformer.php b/app/Transformers/NewsTransformer.php new file mode 100644 index 0000000..6f441fd --- /dev/null +++ b/app/Transformers/NewsTransformer.php @@ -0,0 +1,29 @@ +locale = $locale; + } + + public function transform(News $news) + { + return [ + 'id' => $news->id, + 'title' => $news->getTranslations('title', [$this->locale]), + 'short_description' => $news->getTranslations('short_description', [$this->locale]), + 'description' => $news->getTranslations('description', [$this->locale]), + 'date' => $news->date, + 'image' => url($news->image), + 'locale' => $this->locale, + ]; + } +} \ No newline at end of file diff --git a/bootstrap/cache/config.php b/bootstrap/cache/config.php deleted file mode 100644 index 34b5192..0000000 --- a/bootstrap/cache/config.php +++ /dev/null @@ -1,1209 +0,0 @@ - - array ( - 'name' => 'Laravel', - 'env' => 'local', - 'debug' => true, - 'url' => 'http://localhost', - 'mix_url' => NULL, - 'asset_url' => NULL, - 'timezone' => 'Asia/Ashgabat', - 'locale' => 'tm', - 'fallback_locale' => 'en', - 'faker_locale' => 'en_US', - 'key' => 'base64:UQrSKPPjjcij2VfL6jm8R+ObTvpoNoE6ajRnzIQTuR8=', - 'cipher' => 'AES-256-CBC', - '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\\Cookie\\CookieServiceProvider', - 6 => 'Illuminate\\Database\\DatabaseServiceProvider', - 7 => 'Illuminate\\Encryption\\EncryptionServiceProvider', - 8 => 'Illuminate\\Filesystem\\FilesystemServiceProvider', - 9 => 'Illuminate\\Foundation\\Providers\\FoundationServiceProvider', - 10 => 'Illuminate\\Hashing\\HashServiceProvider', - 11 => 'Illuminate\\Mail\\MailServiceProvider', - 12 => 'Illuminate\\Notifications\\NotificationServiceProvider', - 13 => 'Illuminate\\Pagination\\PaginationServiceProvider', - 14 => 'Illuminate\\Pipeline\\PipelineServiceProvider', - 15 => 'Illuminate\\Queue\\QueueServiceProvider', - 16 => 'Illuminate\\Redis\\RedisServiceProvider', - 17 => 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider', - 18 => 'Illuminate\\Session\\SessionServiceProvider', - 19 => 'Illuminate\\Translation\\TranslationServiceProvider', - 20 => 'Illuminate\\Validation\\ValidationServiceProvider', - 21 => 'Illuminate\\View\\ViewServiceProvider', - 22 => 'App\\Providers\\AppServiceProvider', - 23 => 'App\\Providers\\AuthServiceProvider', - 24 => 'App\\Providers\\EventServiceProvider', - 25 => 'App\\Providers\\RouteServiceProvider', - 26 => 'App\\Providers\\FortifyServiceProvider', - 27 => 'App\\Providers\\JetstreamServiceProvider', - ), - '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', - 'Config' => 'Illuminate\\Support\\Facades\\Config', - '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', - 'Lang' => 'Illuminate\\Support\\Facades\\Lang', - 'Log' => 'Illuminate\\Support\\Facades\\Log', - 'Mail' => 'Illuminate\\Support\\Facades\\Mail', - 'Notification' => 'Illuminate\\Support\\Facades\\Notification', - 'Password' => 'Illuminate\\Support\\Facades\\Password', - 'Queue' => 'Illuminate\\Support\\Facades\\Queue', - 'Redirect' => 'Illuminate\\Support\\Facades\\Redirect', - 'Request' => 'Illuminate\\Support\\Facades\\Request', - 'Response' => 'Illuminate\\Support\\Facades\\Response', - 'Route' => 'Illuminate\\Support\\Facades\\Route', - 'Schema' => 'Illuminate\\Support\\Facades\\Schema', - 'Session' => 'Illuminate\\Support\\Facades\\Session', - 'Storage' => 'Illuminate\\Support\\Facades\\Storage', - 'Str' => 'Illuminate\\Support\\Str', - 'URL' => 'Illuminate\\Support\\Facades\\URL', - 'Validator' => 'Illuminate\\Support\\Facades\\Validator', - 'View' => 'Illuminate\\Support\\Facades\\View', - ), - ), - 'auth' => - array ( - 'defaults' => - array ( - 'guard' => 'web', - 'passwords' => 'users', - ), - 'guards' => - array ( - 'web' => - array ( - 'driver' => 'session', - 'provider' => 'users', - ), - 'api' => - array ( - 'driver' => 'token', - 'provider' => 'users', - 'hash' => false, - ), - 'sanctum' => - array ( - 'driver' => 'sanctum', - 'provider' => NULL, - ), - 'backpack' => - array ( - 'driver' => 'session', - 'provider' => 'backpack', - ), - ), - 'providers' => - array ( - 'users' => - array ( - 'driver' => 'eloquent', - 'model' => 'App\\Models\\User', - ), - 'backpack' => - array ( - 'driver' => 'eloquent', - 'model' => 'App\\Models\\User', - ), - ), - 'passwords' => - array ( - 'users' => - array ( - 'provider' => 'users', - 'table' => 'password_resets', - 'expire' => 60, - 'throttle' => 60, - ), - 'backpack' => - array ( - 'provider' => 'backpack', - 'table' => 'password_resets', - 'expire' => 60, - 'throttle' => 600, - ), - ), - 'password_timeout' => 10800, - ), - 'backpack' => - array ( - 'base' => - array ( - 'default_date_format' => 'D MMM YYYY', - 'default_datetime_format' => 'D MMM YYYY, HH:mm', - 'html_direction' => 'ltr', - 'project_name' => 'Backpack Admin Panel', - 'home_link' => '', - 'meta_robots_content' => 'noindex, nofollow', - 'show_getting_started' => false, - 'styles' => - array ( - 0 => 'packages/backpack/base/css/bundle.css', - 1 => 'packages/source-sans-pro/source-sans-pro.css', - 2 => 'packages/line-awesome/css/line-awesome.min.css', - ), - 'mix_styles' => - array ( - ), - 'vite_styles' => - array ( - ), - 'project_logo' => 'Backpack', - 'breadcrumbs' => true, - 'header_class' => 'app-header bg-light border-0 navbar', - 'body_class' => 'app aside-menu-fixed sidebar-lg-show', - 'sidebar_class' => 'sidebar sidebar-pills bg-light', - 'footer_class' => 'app-footer d-print-none', - 'developer_name' => 'Cristian Tabacitu', - 'developer_link' => 'http://tabacitu.ro', - 'show_powered_by' => true, - 'scripts' => - array ( - 0 => 'packages/backpack/base/js/bundle.js', - ), - 'mix_scripts' => - array ( - ), - 'vite_scripts' => - array ( - ), - 'cachebusting_string' => '5.4.7@6e1bb116de9f3091530cb9b11edcceb4d252daa8', - 'registration_open' => true, - 'route_prefix' => 'admin', - 'web_middleware' => 'web', - 'setup_auth_routes' => true, - 'setup_dashboard_routes' => true, - 'setup_my_account_routes' => true, - 'setup_password_recovery_routes' => true, - 'password_recovery_throttle_notifications' => 600, - 'password_recovery_throttle_access' => '3,10', - 'user_model_fqn' => 'App\\Models\\User', - 'middleware_class' => - array ( - 0 => 'App\\Http\\Middleware\\CheckIfAdmin', - 1 => 'Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull', - ), - 'middleware_key' => 'admin', - 'authentication_column' => 'email', - 'authentication_column_name' => 'Email', - 'email_column' => 'email', - 'guard' => 'backpack', - 'passwords' => 'backpack', - 'avatar_type' => 'gravatar', - 'gravatar_fallback' => 'blank', - 'view_namespace' => 'backpack::', - 'component_view_namespaces' => - array ( - 'widgets' => - array ( - 0 => 'backpack::widgets', - ), - ), - 'root_disk_name' => 'root', - 'token_username' => false, - ), - 'crud' => - array ( - 'show_translatable_field_icon' => true, - 'translatable_field_icon_position' => 'left', - 'locales' => - array ( - 'en' => 'English', - 'ru' => 'Russian', - 'tk' => 'Turkmen', - ), - 'view_namespaces' => - array ( - 'buttons' => - array ( - 0 => 'crud::buttons', - ), - 'columns' => - array ( - 0 => 'crud::columns', - ), - 'fields' => - array ( - 0 => 'crud::fields', - ), - 'filters' => - array ( - 0 => 'crud::filters', - ), - ), - ), - 'operations' => - array ( - 'create' => - array ( - 'contentClass' => 'col-md-8 bold-labels', - 'tabsType' => 'horizontal', - 'groupedErrors' => true, - 'inlineErrors' => true, - 'autoFocusOnFirstField' => true, - 'defaultSaveAction' => 'save_and_back', - 'showSaveActionChange' => true, - 'showCancelButton' => true, - 'warnBeforeLeaving' => false, - ), - 'list' => - array ( - 'contentClass' => 'col-md-12', - 'responsiveTable' => true, - 'persistentTable' => true, - 'searchableTable' => true, - 'persistentTableDuration' => false, - 'defaultPageLength' => 10, - 'pageLengthMenu' => - array ( - 0 => - array ( - 0 => 10, - 1 => 25, - 2 => 50, - 3 => 100, - 4 => -1, - ), - 1 => - array ( - 0 => 10, - 1 => 25, - 2 => 50, - 3 => 100, - 4 => 'backpack::crud.all', - ), - ), - 'actionsColumnPriority' => 1, - 'resetButton' => true, - 'searchOperator' => 'like', - 'showEntryCount' => true, - ), - 'reorder' => - array ( - 'contentClass' => 'col-md-8 col-md-offset-2', - ), - 'show' => - array ( - 'contentClass' => 'col-md-8', - 'setFromDb' => true, - 'timestamps' => true, - 'softDeletes' => false, - ), - 'update' => - array ( - 'contentClass' => 'col-md-8 bold-labels', - 'tabsType' => 'horizontal', - 'groupedErrors' => true, - 'inlineErrors' => true, - 'autoFocusOnFirstField' => true, - 'defaultSaveAction' => 'save_and_back', - 'showSaveActionChange' => true, - 'showCancelButton' => true, - 'warnBeforeLeaving' => false, - ), - ), - ), - 'broadcasting' => - array ( - 'default' => 'log', - 'connections' => - array ( - 'pusher' => - array ( - 'driver' => 'pusher', - 'key' => '', - 'secret' => '', - 'app_id' => '', - 'options' => - array ( - 'cluster' => 'mt1', - 'useTLS' => true, - ), - ), - 'ably' => - array ( - 'driver' => 'ably', - 'key' => NULL, - ), - 'redis' => - array ( - 'driver' => 'redis', - 'connection' => 'default', - ), - 'log' => - array ( - 'driver' => 'log', - ), - 'null' => - array ( - 'driver' => 'null', - ), - ), - ), - 'cache' => - array ( - 'default' => 'file', - 'stores' => - array ( - 'apc' => - array ( - 'driver' => 'apc', - ), - 'array' => - array ( - 'driver' => 'array', - 'serialize' => false, - ), - 'database' => - array ( - 'driver' => 'database', - 'table' => 'cache', - 'connection' => NULL, - 'lock_connection' => NULL, - ), - 'file' => - array ( - 'driver' => 'file', - 'path' => 'C:\\xampp\\htdocs\\exchange\\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, - ), - ), - 'prefix' => 'laravel_cache', - ), - '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, - ), - 'database' => - array ( - 'default' => 'mysql', - 'connections' => - array ( - 'sqlite' => - array ( - 'driver' => 'sqlite', - 'url' => NULL, - 'database' => 'exchange', - 'prefix' => '', - 'foreign_key_constraints' => true, - ), - 'mysql' => - array ( - 'driver' => 'mysql', - 'url' => NULL, - 'host' => '127.0.0.1', - 'port' => '3306', - 'database' => 'exchange', - 'username' => 'root', - 'password' => '', - 'unix_socket' => '', - 'charset' => 'utf8mb4', - 'collation' => 'utf8mb4_unicode_ci', - 'prefix' => '', - 'prefix_indexes' => true, - 'strict' => true, - 'engine' => NULL, - 'options' => - array ( - ), - ), - 'birzha' => - array ( - 'driver' => 'mysql', - 'url' => NULL, - 'host' => '127.0.0.1', - 'port' => '3306', - 'database' => 'forge', - 'username' => 'forge', - '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' => '127.0.0.1', - 'port' => '3306', - 'database' => 'exchange', - 'username' => 'root', - 'password' => '', - 'charset' => 'utf8', - 'prefix' => '', - 'prefix_indexes' => true, - 'schema' => 'public', - 'sslmode' => 'prefer', - ), - 'sqlsrv' => - array ( - 'driver' => 'sqlsrv', - 'url' => NULL, - 'host' => '127.0.0.1', - 'port' => '3306', - 'database' => 'exchange', - 'username' => 'root', - 'password' => '', - 'charset' => 'utf8', - 'prefix' => '', - 'prefix_indexes' => true, - ), - ), - 'migrations' => 'migrations', - 'redis' => - array ( - 'client' => 'phpredis', - 'options' => - array ( - 'cluster' => 'redis', - 'prefix' => 'laravel_database_', - ), - 'default' => - array ( - 'url' => NULL, - 'host' => '127.0.0.1', - 'password' => NULL, - 'port' => '6379', - 'database' => '0', - ), - 'cache' => - array ( - 'url' => NULL, - 'host' => '127.0.0.1', - 'password' => NULL, - 'port' => '6379', - 'database' => '1', - ), - ), - ), - 'excel' => - array ( - 'exports' => - array ( - 'chunk_size' => 1000, - 'pre_calculate_formulas' => true, - 'strict_null_comparison' => false, - 'csv' => - array ( - 'delimiter' => ',', - 'enclosure' => '"', - 'line_ending' => ' -', - 'use_bom' => false, - 'include_separator_line' => false, - 'excel_compatibility' => false, - ), - 'properties' => - array ( - 'creator' => '', - 'lastModifiedBy' => '', - 'title' => '', - 'description' => '', - 'subject' => '', - 'keywords' => '', - 'category' => '', - 'manager' => '', - 'company' => '', - ), - ), - 'imports' => - array ( - 'read_only' => true, - 'ignore_empty' => false, - 'heading_row' => - array ( - 'formatter' => 'slug', - ), - 'csv' => - array ( - 'delimiter' => ',', - 'enclosure' => '"', - 'escape_character' => '\\', - 'contiguous' => false, - 'input_encoding' => 'UTF-8', - ), - 'properties' => - array ( - 'creator' => '', - 'lastModifiedBy' => '', - 'title' => '', - 'description' => '', - 'subject' => '', - 'keywords' => '', - 'category' => '', - 'manager' => '', - 'company' => '', - ), - ), - 'extension_detector' => - array ( - 'xlsx' => 'Xlsx', - 'xlsm' => 'Xlsx', - 'xltx' => 'Xlsx', - 'xltm' => 'Xlsx', - 'xls' => 'Xls', - 'xlt' => 'Xls', - 'ods' => 'Ods', - 'ots' => 'Ods', - 'slk' => 'Slk', - 'xml' => 'Xml', - 'gnumeric' => 'Gnumeric', - 'htm' => 'Html', - 'html' => 'Html', - 'csv' => 'Csv', - 'tsv' => 'Csv', - 'pdf' => 'Dompdf', - ), - 'value_binder' => - array ( - 'default' => 'Maatwebsite\\Excel\\DefaultValueBinder', - ), - 'cache' => - array ( - 'driver' => 'memory', - 'batch' => - array ( - 'memory_limit' => 60000, - ), - 'illuminate' => - array ( - 'store' => NULL, - ), - ), - 'transactions' => - array ( - 'handler' => 'db', - ), - 'temporary_files' => - array ( - 'local_path' => 'C:\\xampp\\htdocs\\exchange\\storage\\framework/laravel-excel', - 'remote_disk' => NULL, - 'remote_prefix' => NULL, - 'force_resync_remote' => NULL, - ), - ), - 'filesystems' => - array ( - 'default' => 'local', - 'disks' => - array ( - 'local' => - array ( - 'driver' => 'local', - 'root' => 'C:\\xampp\\htdocs\\exchange\\storage\\app', - ), - 'public' => - array ( - 'driver' => 'local', - 'root' => 'C:\\xampp\\htdocs\\exchange\\storage\\app/public', - 'url' => 'http://localhost/storage', - 'visibility' => 'public', - ), - 's3' => - array ( - 'driver' => 's3', - 'key' => '', - 'secret' => '', - 'region' => 'us-east-1', - 'bucket' => '', - 'url' => NULL, - 'endpoint' => NULL, - ), - 'root' => - array ( - 'driver' => 'local', - 'root' => 'C:\\xampp\\htdocs\\exchange', - ), - ), - 'links' => - array ( - 'C:\\xampp\\htdocs\\exchange\\public\\storage' => 'C:\\xampp\\htdocs\\exchange\\storage\\app/public', - ), - ), - 'fortify' => - array ( - 'guard' => 'web', - 'middleware' => - array ( - 0 => 'web', - ), - 'auth_middleware' => 'auth', - 'passwords' => 'users', - 'username' => 'email', - 'email' => 'email', - 'views' => true, - 'home' => '/', - 'prefix' => '', - 'domain' => NULL, - 'limiters' => - array ( - 'login' => 'login', - 'two-factor' => 'two-factor', - ), - 'redirects' => - array ( - 'login' => NULL, - 'logout' => NULL, - 'password-confirmation' => NULL, - 'register' => NULL, - 'email-verification' => NULL, - 'password-reset' => NULL, - ), - 'features' => - array ( - 0 => 'registration', - 1 => 'update-passwords', - ), - ), - 'googlerecaptchav3' => - array ( - 'request_method' => 'curl', - 'is_service_enabled' => true, - 'host_name' => '', - 'secret_key' => '', - 'site_key' => '', - 'inline' => false, - 'background_badge_display' => true, - 'background_mode' => false, - 'is_score_enabled' => false, - 'setting' => - array ( - 0 => - array ( - 'action' => 'create_request', - 'threshold' => 0, - 'score_comparision' => false, - ), - ), - 'skip_ips' => - array ( - ), - 'options' => - array ( - ), - 'api_js_url' => 'https://www.google.com/recaptcha/api.js', - 'site_verify_url' => 'https://www.google.com/recaptcha/api/siteverify', - 'language' => 'en', - ), - 'gravatar' => - array ( - 'default' => - array ( - 'size' => 80, - 'fallback' => 'mp', - 'secure' => false, - 'maximumRating' => 'g', - 'forceDefault' => false, - 'forceExtension' => 'jpg', - ), - ), - 'hashids' => - array ( - 'default' => 'main', - 'connections' => - array ( - 'main' => - array ( - 'salt' => 'exchange', - 'length' => '16', - 'alphabet' => 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890', - ), - ), - ), - 'hashing' => - array ( - 'driver' => 'bcrypt', - 'bcrypt' => - array ( - 'rounds' => 10, - ), - 'argon' => - array ( - 'memory' => 1024, - 'threads' => 2, - 'time' => 2, - ), - ), - 'jetstream' => - array ( - 'stack' => 'inertia', - 'middleware' => - array ( - 0 => 'web', - ), - 'features' => - array ( - 0 => 'account-deletion', - ), - 'profile_photo_disk' => 'public', - ), - 'logging' => - array ( - 'default' => 'stack', - 'channels' => - array ( - 'stack' => - array ( - 'driver' => 'stack', - 'channels' => - array ( - 0 => 'single', - ), - 'ignore_exceptions' => false, - ), - 'single' => - array ( - 'driver' => 'single', - 'path' => 'C:\\xampp\\htdocs\\exchange\\storage\\logs/laravel.log', - 'level' => 'debug', - ), - 'daily' => - array ( - 'driver' => 'daily', - 'path' => 'C:\\xampp\\htdocs\\exchange\\storage\\logs/laravel.log', - 'level' => 'debug', - 'days' => 14, - ), - 'slack' => - array ( - 'driver' => 'slack', - 'url' => NULL, - 'username' => 'Laravel Log', - 'emoji' => ':boom:', - 'level' => 'critical', - ), - 'papertrail' => - array ( - 'driver' => 'monolog', - 'level' => 'debug', - 'handler' => 'Monolog\\Handler\\SyslogUdpHandler', - 'handler_with' => - array ( - 'host' => NULL, - 'port' => NULL, - ), - ), - 'stderr' => - array ( - 'driver' => 'monolog', - 'level' => 'debug', - 'handler' => 'Monolog\\Handler\\StreamHandler', - 'formatter' => NULL, - 'with' => - array ( - 'stream' => 'php://stderr', - ), - ), - 'syslog' => - array ( - 'driver' => 'syslog', - 'level' => 'debug', - ), - 'errorlog' => - array ( - 'driver' => 'errorlog', - 'level' => 'debug', - ), - 'null' => - array ( - 'driver' => 'monolog', - 'handler' => 'Monolog\\Handler\\NullHandler', - ), - 'emergency' => - array ( - 'path' => 'C:\\xampp\\htdocs\\exchange\\storage\\logs/laravel.log', - ), - ), - ), - 'mail' => - array ( - 'default' => 'smtp', - 'mailers' => - array ( - 'smtp' => - array ( - 'transport' => 'smtp', - 'host' => 'smtp.mailtrap.io', - 'port' => '2525', - 'encryption' => NULL, - 'username' => NULL, - 'password' => NULL, - 'timeout' => NULL, - 'auth_mode' => NULL, - ), - 'ses' => - array ( - 'transport' => 'ses', - ), - 'mailgun' => - array ( - 'transport' => 'mailgun', - ), - 'postmark' => - array ( - 'transport' => 'postmark', - ), - 'sendmail' => - array ( - 'transport' => 'sendmail', - 'path' => '/usr/sbin/sendmail -bs', - ), - 'log' => - array ( - 'transport' => 'log', - 'channel' => NULL, - ), - 'array' => - array ( - 'transport' => 'array', - ), - ), - 'from' => - array ( - 'address' => NULL, - 'name' => 'Laravel', - ), - 'markdown' => - array ( - 'theme' => 'default', - 'paths' => - array ( - 0 => 'C:\\xampp\\htdocs\\exchange\\resources\\views/vendor/mail', - ), - ), - ), - 'queue' => - array ( - 'default' => 'sync', - 'connections' => - array ( - 'sync' => - array ( - 'driver' => 'sync', - ), - 'database' => - array ( - 'driver' => 'database', - '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, - ), - ), - 'failed' => - array ( - 'driver' => 'database-uuids', - 'database' => 'mysql', - 'table' => 'failed_jobs', - ), - ), - '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, - 'middleware' => - array ( - 'verify_csrf_token' => 'App\\Http\\Middleware\\VerifyCsrfToken', - 'encrypt_cookies' => 'App\\Http\\Middleware\\EncryptCookies', - ), - ), - 'scout' => - array ( - 'driver' => 'algolia', - 'prefix' => '', - 'queue' => false, - 'after_commit' => false, - 'chunk' => - array ( - 'searchable' => 500, - 'unsearchable' => 500, - ), - 'soft_delete' => false, - 'identify' => false, - 'algolia' => - array ( - 'id' => '', - 'secret' => '', - ), - 'meilisearch' => - array ( - 'host' => 'http://localhost:7700', - 'key' => NULL, - ), - ), - 'services' => - array ( - 'mailgun' => - array ( - 'domain' => NULL, - 'secret' => NULL, - 'endpoint' => 'api.mailgun.net', - ), - 'postmark' => - array ( - 'token' => NULL, - ), - 'ses' => - array ( - 'key' => '', - 'secret' => '', - 'region' => 'us-east-1', - ), - ), - 'session' => - array ( - 'driver' => 'file', - 'lifetime' => '120', - 'expire_on_close' => false, - 'encrypt' => false, - 'files' => 'C:\\xampp\\htdocs\\exchange\\storage\\framework/sessions', - 'connection' => NULL, - 'table' => 'sessions', - 'store' => NULL, - 'lottery' => - array ( - 0 => 2, - 1 => 100, - ), - 'cookie' => 'laravel_session', - 'path' => '/', - 'domain' => NULL, - 'secure' => false, - 'http_only' => true, - 'same_site' => 'lax', - ), - 'translatable' => - array ( - 'fallback_locale' => 'tm', - 'fallback_any' => false, - ), - 'view' => - array ( - 'paths' => - array ( - 0 => 'C:\\xampp\\htdocs\\exchange\\resources\\views', - ), - 'compiled' => 'C:\\xampp\\htdocs\\exchange\\storage\\framework\\views', - ), - 'flare' => - array ( - 'key' => NULL, - 'reporting' => - array ( - 'anonymize_ips' => true, - 'collect_git_information' => false, - 'report_queries' => true, - 'maximum_number_of_collected_queries' => 200, - 'report_query_bindings' => true, - 'report_view_data' => true, - 'grouping_type' => NULL, - 'report_logs' => true, - 'maximum_number_of_collected_logs' => 200, - 'censor_request_body_fields' => - array ( - 0 => 'password', - ), - ), - 'send_logs_as_events' => true, - 'censor_request_body_fields' => - array ( - 0 => 'password', - ), - ), - 'ignition' => - array ( - 'editor' => 'phpstorm', - 'theme' => 'light', - 'enable_share_button' => true, - 'register_commands' => false, - 'ignored_solution_providers' => - array ( - 0 => 'Facade\\Ignition\\SolutionProviders\\MissingPackageSolutionProvider', - ), - 'enable_runnable_solutions' => NULL, - 'remote_sites_path' => '', - 'local_sites_path' => '', - 'housekeeping_endpoint_prefix' => '_ignition', - ), - 'inertia' => - array ( - 'testing' => - array ( - 'ensure_pages_exist' => true, - 'page_paths' => - array ( - 0 => 'C:\\xampp\\htdocs\\exchange\\resources\\js/Pages', - ), - 'page_extensions' => - array ( - 0 => 'js', - 1 => 'jsx', - 2 => 'svelte', - 3 => 'ts', - 4 => 'vue', - ), - ), - ), - 'prologue' => - array ( - 'alerts' => - array ( - 'levels' => - array ( - 0 => 'info', - 1 => 'warning', - 2 => 'error', - 3 => 'success', - ), - 'session_key' => 'alert_messages', - ), - ), - 'trustedproxy' => - array ( - 'proxies' => NULL, - 'headers' => 30, - ), - 'tinker' => - array ( - 'commands' => - array ( - ), - 'alias' => - array ( - ), - 'dont_alias' => - array ( - 0 => 'App\\Nova', - ), - ), -); diff --git a/bootstrap/cache/routes-v7.php b/bootstrap/cache/routes-v7.php deleted file mode 100644 index a07b8e8..0000000 --- a/bootstrap/cache/routes-v7.php +++ /dev/null @@ -1,4640 +0,0 @@ -setCompiledRoutes( - array ( - 'compiled' => - array ( - 0 => false, - 1 => - array ( - '/admin/login' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'backpack.auth.login', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'generated::976fIi82D0dFGjny', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/logout' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'backpack.auth.logout', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'generated::jJaJoECpQUPObm3P', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/register' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'backpack.auth.register', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'generated::OKAf5xb1UacWTkEV', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/password/reset' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'backpack.auth.password.reset', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'generated::gHl6CWSJgPsrR73N', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/password/email' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'backpack.auth.password.email', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/dashboard' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'backpack.dashboard', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'backpack', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/edit-account-info' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'backpack.account.info', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'backpack.account.info.store', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/change-password' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'backpack.account.password', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/category' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'category.index', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'category.store', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/category/search' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'category.search', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/category/create' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'category.create', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/trading' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'trading.index', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'trading.store', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/trading/search' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'trading.search', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/admin/trading/create' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'trading.create', - ), - 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 ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'generated::UCh4MPIo1lO0CLzE', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 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, - ), - ), - '/register' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'register', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'generated::H7NQDZkIbBFVtd0S', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/user/password' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'user-password.update', - ), - 1 => NULL, - 2 => - array ( - 'PUT' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/user/confirm-password' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'generated::EuhqZFYLmStLSWJb', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'password.confirm', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/user/confirmed-password-status' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'password.confirmation', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/user/profile' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'profile.show', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/user/other-browser-sessions' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'other-browser-sessions.destroy', - ), - 1 => NULL, - 2 => - array ( - 'DELETE' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/user/profile-photo' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'current-user-photo.destroy', - ), - 1 => NULL, - 2 => - array ( - 'DELETE' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/user' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'current-user.destroy', - ), - 1 => NULL, - 2 => - array ( - 'DELETE' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/sanctum/csrf-cookie' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'generated::wXT1iFTwNsBNTPI0', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/api/imports' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'api.imports', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/api/exports' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'api.exports', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/api/groups' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'generated::sah6HxAy6J8vaDkf', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/api/categories' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'generated::KAL6pXsCLwiMN8vJ', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/api/other-filters' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'generated::GXRHhNn8EbTEw6Ig', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/api/tradings' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'generated::dQtMfkT380smTppl', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/imports' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'imports', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/tradings' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'tradings', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'exports', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/requests' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'requests.store', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'requests', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/imports/import' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'imports.import', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/exports/import' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'exports.import', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/tradings/import' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'tradings.import', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/import-status' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'import-status', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/lines' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'lines', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'lines.store', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/settings' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'settings', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'settings.store', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/categories' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'categories', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'categories.store', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/groups' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'groups', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'groups.store', - ), - 1 => NULL, - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/upgrade' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'generated::fr0IGQZP3VEQasAv', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - '/logout-confirm' => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'logout_confirm', - ), - 1 => NULL, - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - ), - 2 => - array ( - 0 => '{^(?|/admin/(?|password/reset/([^/]++)(*:40)|category/(?|([^/]++)(?|/(?|details(*:81)|edit(*:92)|show(*:103))|(*:112))|reorder(?|(*:131)))|trading/([^/]++)(?|/(?|details(*:171)|edit(*:183)|show(*:195))|(*:204)))|/download/([^/]++)(*:232)|/l(?|ang/([^/]++)(*:257)|ines/([^/]++)(*:278))|/requests/([^/]++)(*:305)|/categories/([^/]++)(*:333)|/groups/([^/]++)(?|(*:360)))/?$}sDu', - ), - 3 => - array ( - 40 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'backpack.auth.password.reset.token', - ), - 1 => - array ( - 0 => 'token', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - ), - 81 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'category.showDetailsRow', - ), - 1 => - array ( - 0 => 'id', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - 92 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'category.edit', - ), - 1 => - array ( - 0 => 'id', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - 103 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'category.show', - ), - 1 => - array ( - 0 => 'id', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - 112 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'category.update', - ), - 1 => - array ( - 0 => 'id', - ), - 2 => - array ( - 'PUT' => 0, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'category.destroy', - ), - 1 => - array ( - 0 => 'id', - ), - 2 => - array ( - 'DELETE' => 0, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - ), - 131 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'category.reorder', - ), - 1 => - array ( - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'category.save.reorder', - ), - 1 => - array ( - ), - 2 => - array ( - 'POST' => 0, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - 171 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'trading.showDetailsRow', - ), - 1 => - array ( - 0 => 'id', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - 183 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'trading.edit', - ), - 1 => - array ( - 0 => 'id', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - 195 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'trading.show', - ), - 1 => - array ( - 0 => 'id', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => false, - 6 => NULL, - ), - ), - 204 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'trading.update', - ), - 1 => - array ( - 0 => 'id', - ), - 2 => - array ( - 'PUT' => 0, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'trading.destroy', - ), - 1 => - array ( - 0 => 'id', - ), - 2 => - array ( - 'DELETE' => 0, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - ), - 232 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'download', - ), - 1 => - array ( - 0 => 'group', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - ), - 257 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'lang', - ), - 1 => - array ( - 0 => 'lang', - ), - 2 => - array ( - 'GET' => 0, - 'HEAD' => 1, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - ), - 278 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'lines.destroy', - ), - 1 => - array ( - 0 => 'export', - ), - 2 => - array ( - 'DELETE' => 0, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - ), - 305 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'requests.destroy', - ), - 1 => - array ( - 0 => 'request', - ), - 2 => - array ( - 'DELETE' => 0, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - ), - 333 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'categories.destroy', - ), - 1 => - array ( - 0 => 'category', - ), - 2 => - array ( - 'DELETE' => 0, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - ), - 360 => - array ( - 0 => - array ( - 0 => - array ( - '_route' => 'groups.update', - ), - 1 => - array ( - 0 => 'group', - ), - 2 => - array ( - 'PUT' => 0, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - 1 => - array ( - 0 => - array ( - '_route' => 'groups.destroy', - ), - 1 => - array ( - 0 => 'group', - ), - 2 => - array ( - 'DELETE' => 0, - ), - 3 => NULL, - 4 => false, - 5 => true, - 6 => NULL, - ), - 2 => - array ( - 0 => NULL, - 1 => NULL, - 2 => NULL, - 3 => NULL, - 4 => false, - 5 => false, - 6 => 0, - ), - ), - ), - 4 => NULL, - ), - 'attributes' => - array ( - 'backpack.auth.login' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/login', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@showLoginForm', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@showLoginForm', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'backpack.auth.login', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::976fIi82D0dFGjny' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'admin/login', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@login', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@login', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'generated::976fIi82D0dFGjny', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'backpack.auth.logout' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/logout', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@logout', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@logout', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'backpack.auth.logout', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::jJaJoECpQUPObm3P' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'admin/logout', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@logout', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\LoginController@logout', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'generated::jJaJoECpQUPObm3P', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'backpack.auth.register' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/register', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\RegisterController@showRegistrationForm', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\RegisterController@showRegistrationForm', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'backpack.auth.register', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::OKAf5xb1UacWTkEV' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'admin/register', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\RegisterController@register', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\RegisterController@register', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'generated::OKAf5xb1UacWTkEV', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'backpack.auth.password.reset' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/password/reset', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ForgotPasswordController@showLinkRequestForm', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ForgotPasswordController@showLinkRequestForm', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'backpack.auth.password.reset', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::gHl6CWSJgPsrR73N' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'admin/password/reset', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ResetPasswordController@reset', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ResetPasswordController@reset', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'generated::gHl6CWSJgPsrR73N', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'backpack.auth.password.reset.token' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/password/reset/{token}', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ResetPasswordController@showResetForm', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ResetPasswordController@showResetForm', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'backpack.auth.password.reset.token', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'backpack.auth.password.email' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'admin/password/email', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'backpack.throttle.password.recovery:3,10', - ), - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ForgotPasswordController@sendResetLinkEmail', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\Auth\\ForgotPasswordController@sendResetLinkEmail', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'backpack.auth.password.email', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'backpack.dashboard' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/dashboard', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\AdminController@dashboard', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\AdminController@dashboard', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'backpack.dashboard', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'backpack' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\AdminController@redirect', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\AdminController@redirect', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'backpack', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'backpack.account.info' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/edit-account-info', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\MyAccountController@getAccountInfoForm', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\MyAccountController@getAccountInfoForm', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'backpack.account.info', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'backpack.account.info.store' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'admin/edit-account-info', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\MyAccountController@postAccountInfoForm', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\MyAccountController@postAccountInfoForm', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'backpack.account.info.store', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'backpack.account.password' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'admin/change-password', - 'action' => - array ( - 'middleware' => 'web', - 'uses' => 'Backpack\\CRUD\\app\\Http\\Controllers\\MyAccountController@postChangePasswordForm', - 'controller' => 'Backpack\\CRUD\\app\\Http\\Controllers\\MyAccountController@postChangePasswordForm', - 'namespace' => 'Backpack\\CRUD\\app\\Http\\Controllers', - 'prefix' => 'admin', - 'where' => - array ( - ), - 'as' => 'backpack.account.password', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'category.index' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/category', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'category.index', - 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@index', - 'operation' => 'list', - 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@index', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'category.search' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'admin/category/search', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'category.search', - 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@search', - 'operation' => 'list', - 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@search', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'category.showDetailsRow' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/category/{id}/details', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'category.showDetailsRow', - 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@showDetailsRow', - 'operation' => 'list', - 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@showDetailsRow', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'category.create' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/category/create', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'category.create', - 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@create', - 'operation' => 'create', - 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@create', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'category.store' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'admin/category', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'category.store', - 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@store', - 'operation' => 'create', - 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@store', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'category.edit' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/category/{id}/edit', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'category.edit', - 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@edit', - 'operation' => 'update', - 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@edit', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'category.update' => - array ( - 'methods' => - array ( - 0 => 'PUT', - ), - 'uri' => 'admin/category/{id}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'category.update', - 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@update', - 'operation' => 'update', - 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@update', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'category.destroy' => - array ( - 'methods' => - array ( - 0 => 'DELETE', - ), - 'uri' => 'admin/category/{id}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'category.destroy', - 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@destroy', - 'operation' => 'delete', - 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@destroy', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'category.show' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/category/{id}/show', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'category.show', - 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@show', - 'operation' => 'show', - 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@show', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'category.reorder' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/category/reorder', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'category.reorder', - 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@reorder', - 'operation' => 'reorder', - 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@reorder', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'category.save.reorder' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'admin/category/reorder', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'category.save.reorder', - 'uses' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@saveReorder', - 'operation' => 'reorder', - 'controller' => 'App\\Http\\Controllers\\Admin\\CategoryCrudController@saveReorder', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'trading.index' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/trading', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'trading.index', - 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@index', - 'operation' => 'list', - 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@index', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'trading.search' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'admin/trading/search', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'trading.search', - 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@search', - 'operation' => 'list', - 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@search', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'trading.showDetailsRow' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/trading/{id}/details', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'trading.showDetailsRow', - 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@showDetailsRow', - 'operation' => 'list', - 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@showDetailsRow', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'trading.create' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/trading/create', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'trading.create', - 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@create', - 'operation' => 'create', - 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@create', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'trading.store' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'admin/trading', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'trading.store', - 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@store', - 'operation' => 'create', - 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@store', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'trading.edit' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/trading/{id}/edit', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'trading.edit', - 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@edit', - 'operation' => 'update', - 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@edit', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'trading.update' => - array ( - 'methods' => - array ( - 0 => 'PUT', - ), - 'uri' => 'admin/trading/{id}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'trading.update', - 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@update', - 'operation' => 'update', - 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@update', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'trading.destroy' => - array ( - 'methods' => - array ( - 0 => 'DELETE', - ), - 'uri' => 'admin/trading/{id}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'trading.destroy', - 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@destroy', - 'operation' => 'delete', - 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@destroy', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'trading.show' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'admin/trading/{id}/show', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'admin', - ), - 'as' => 'trading.show', - 'uses' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@show', - 'operation' => 'show', - 'controller' => 'App\\Http\\Controllers\\Admin\\TradingCrudController@show', - 'namespace' => 'App\\Http\\Controllers\\Admin', - 'prefix' => 'admin', - 'where' => - array ( - ), - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'login' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'login', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - 1 => 'guest:web', - ), - 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\AuthenticatedSessionController@create', - 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\AuthenticatedSessionController@create', - 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'login', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::UCh4MPIo1lO0CLzE' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'login', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - 1 => 'guest:web', - 2 => 'throttle:login', - ), - 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\AuthenticatedSessionController@store', - 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\AuthenticatedSessionController@store', - 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'generated::UCh4MPIo1lO0CLzE', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'logout' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'logout', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - ), - 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\AuthenticatedSessionController@destroy', - 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\AuthenticatedSessionController@destroy', - 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'logout', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'register' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'register', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - 1 => 'guest:web', - ), - 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\RegisteredUserController@create', - 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\RegisteredUserController@create', - 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'register', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::H7NQDZkIbBFVtd0S' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'register', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - 1 => 'guest:web', - ), - 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\RegisteredUserController@store', - 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\RegisteredUserController@store', - 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'generated::H7NQDZkIbBFVtd0S', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'user-password.update' => - array ( - 'methods' => - array ( - 0 => 'PUT', - ), - 'uri' => 'user/password', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:web', - ), - 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\PasswordController@update', - 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\PasswordController@update', - 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'user-password.update', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::EuhqZFYLmStLSWJb' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'user/confirm-password', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:web', - ), - 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\ConfirmablePasswordController@show', - 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\ConfirmablePasswordController@show', - 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'generated::EuhqZFYLmStLSWJb', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'password.confirmation' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'user/confirmed-password-status', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:web', - ), - 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\ConfirmedPasswordStatusController@show', - 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\ConfirmedPasswordStatusController@show', - 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'password.confirmation', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'password.confirm' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'user/confirm-password', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:web', - ), - 'uses' => 'Laravel\\Fortify\\Http\\Controllers\\ConfirmablePasswordController@store', - 'controller' => 'Laravel\\Fortify\\Http\\Controllers\\ConfirmablePasswordController@store', - 'namespace' => 'Laravel\\Fortify\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'password.confirm', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'profile.show' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'user/profile', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\UserProfileController@show', - 'controller' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\UserProfileController@show', - 'namespace' => 'Laravel\\Jetstream\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'profile.show', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'other-browser-sessions.destroy' => - array ( - 'methods' => - array ( - 0 => 'DELETE', - ), - 'uri' => 'user/other-browser-sessions', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\OtherBrowserSessionsController@destroy', - 'controller' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\OtherBrowserSessionsController@destroy', - 'namespace' => 'Laravel\\Jetstream\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'other-browser-sessions.destroy', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'current-user-photo.destroy' => - array ( - 'methods' => - array ( - 0 => 'DELETE', - ), - 'uri' => 'user/profile-photo', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\ProfilePhotoController@destroy', - 'controller' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\ProfilePhotoController@destroy', - 'namespace' => 'Laravel\\Jetstream\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'current-user-photo.destroy', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'current-user.destroy' => - array ( - 'methods' => - array ( - 0 => 'DELETE', - ), - 'uri' => 'user', - 'action' => - array ( - 'domain' => NULL, - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth', - ), - 'uses' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\CurrentUserController@destroy', - 'controller' => 'Laravel\\Jetstream\\Http\\Controllers\\Inertia\\CurrentUserController@destroy', - 'namespace' => 'Laravel\\Jetstream\\Http\\Controllers', - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'current-user.destroy', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::wXT1iFTwNsBNTPI0' => - 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' => 'generated::wXT1iFTwNsBNTPI0', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'api.imports' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'api/imports', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'api', - ), - 'uses' => 'App\\Http\\Controllers\\Api\\ImportController@index', - 'controller' => 'App\\Http\\Controllers\\Api\\ImportController@index', - 'namespace' => NULL, - 'prefix' => 'api', - 'where' => - array ( - ), - 'as' => 'api.imports', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'api.exports' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'api/exports', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'api', - ), - 'uses' => 'App\\Http\\Controllers\\Api\\ExportController@index', - 'controller' => 'App\\Http\\Controllers\\Api\\ExportController@index', - 'namespace' => NULL, - 'prefix' => 'api', - 'where' => - array ( - ), - 'as' => 'api.exports', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::sah6HxAy6J8vaDkf' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'api/groups', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'api', - ), - 'uses' => 'App\\Http\\Controllers\\Api\\FiltersController@groups', - 'controller' => 'App\\Http\\Controllers\\Api\\FiltersController@groups', - 'namespace' => NULL, - 'prefix' => 'api', - 'where' => - array ( - ), - 'as' => 'generated::sah6HxAy6J8vaDkf', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::KAL6pXsCLwiMN8vJ' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'api/categories', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'api', - ), - 'uses' => 'App\\Http\\Controllers\\Api\\FiltersController@categories', - 'controller' => 'App\\Http\\Controllers\\Api\\FiltersController@categories', - 'namespace' => NULL, - 'prefix' => 'api', - 'where' => - array ( - ), - 'as' => 'generated::KAL6pXsCLwiMN8vJ', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::GXRHhNn8EbTEw6Ig' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'api/other-filters', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'api', - ), - 'uses' => 'App\\Http\\Controllers\\Api\\FiltersController@otherFilters', - 'controller' => 'App\\Http\\Controllers\\Api\\FiltersController@otherFilters', - 'namespace' => NULL, - 'prefix' => 'api', - 'where' => - array ( - ), - 'as' => 'generated::GXRHhNn8EbTEw6Ig', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::dQtMfkT380smTppl' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'api/tradings', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'api', - ), - 'uses' => 'App\\Http\\Controllers\\Api\\TradingsController@index', - 'controller' => 'App\\Http\\Controllers\\Api\\TradingsController@index', - 'namespace' => NULL, - 'prefix' => 'api', - 'where' => - array ( - ), - 'as' => 'generated::dQtMfkT380smTppl', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'imports' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'imports', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'check_october_session', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\ImportController@index', - 'controller' => 'App\\Http\\Controllers\\Web\\ImportController@index', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'imports', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'tradings' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'tradings', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'check_october_session', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\TradingController@index', - 'controller' => 'App\\Http\\Controllers\\Web\\TradingController@index', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'tradings', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'exports' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => '/', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'check_october_session', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\ExportController@index', - 'controller' => 'App\\Http\\Controllers\\Web\\ExportController@index', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'exports', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'download' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'download/{group}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'check_october_session', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\GroupController@download', - 'controller' => 'App\\Http\\Controllers\\Web\\GroupController@download', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'download', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'requests.store' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'requests', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'check_october_session', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\RequestController@store', - 'controller' => 'App\\Http\\Controllers\\Web\\RequestController@store', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'requests.store', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'lang' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'lang/{lang}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'check_october_session', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\HomeController@lang', - 'controller' => 'App\\Http\\Controllers\\Web\\HomeController@lang', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'lang', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'imports.import' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'imports/import', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\ImportController@import', - 'controller' => 'App\\Http\\Controllers\\Web\\ImportController@import', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'imports.import', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'exports.import' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'exports/import', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\ExportController@import', - 'controller' => 'App\\Http\\Controllers\\Web\\ExportController@import', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'exports.import', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'tradings.import' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'tradings/import', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\TradingController@import', - 'controller' => 'App\\Http\\Controllers\\Web\\TradingController@import', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'tradings.import', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'import-status' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'import-status', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\ExportController@status', - 'controller' => 'App\\Http\\Controllers\\Web\\ExportController@status', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'import-status', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'lines' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'lines', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\LineController@index', - 'controller' => 'App\\Http\\Controllers\\Web\\LineController@index', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'lines', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'lines.store' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'lines', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\LineController@store', - 'controller' => 'App\\Http\\Controllers\\Web\\LineController@store', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'lines.store', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'lines.destroy' => - array ( - 'methods' => - array ( - 0 => 'DELETE', - ), - 'uri' => 'lines/{export}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\LineController@destroy', - 'controller' => 'App\\Http\\Controllers\\Web\\LineController@destroy', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'lines.destroy', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'requests' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'requests', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\RequestController@index', - 'controller' => 'App\\Http\\Controllers\\Web\\RequestController@index', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'requests', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'requests.destroy' => - array ( - 'methods' => - array ( - 0 => 'DELETE', - ), - 'uri' => 'requests/{request}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\RequestController@destroy', - 'controller' => 'App\\Http\\Controllers\\Web\\RequestController@destroy', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'requests.destroy', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'settings' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'settings', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\SettingController@index', - 'controller' => 'App\\Http\\Controllers\\Web\\SettingController@index', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'settings', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'settings.store' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'settings', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\SettingController@store', - 'controller' => 'App\\Http\\Controllers\\Web\\SettingController@store', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'settings.store', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'categories' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'categories', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\CategoryController@index', - 'controller' => 'App\\Http\\Controllers\\Web\\CategoryController@index', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'categories', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'categories.store' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'categories', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\CategoryController@store', - 'controller' => 'App\\Http\\Controllers\\Web\\CategoryController@store', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'categories.store', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'categories.destroy' => - array ( - 'methods' => - array ( - 0 => 'DELETE', - ), - 'uri' => 'categories/{category}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\CategoryController@destroy', - 'controller' => 'App\\Http\\Controllers\\Web\\CategoryController@destroy', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'categories.destroy', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'groups' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'groups', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\GroupController@index', - 'controller' => 'App\\Http\\Controllers\\Web\\GroupController@index', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'groups', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'groups.store' => - array ( - 'methods' => - array ( - 0 => 'POST', - ), - 'uri' => 'groups', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\GroupController@store', - 'controller' => 'App\\Http\\Controllers\\Web\\GroupController@store', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'groups.store', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'groups.update' => - array ( - 'methods' => - array ( - 0 => 'PUT', - ), - 'uri' => 'groups/{group}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\GroupController@update', - 'controller' => 'App\\Http\\Controllers\\Web\\GroupController@update', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'groups.update', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'groups.destroy' => - array ( - 'methods' => - array ( - 0 => 'DELETE', - ), - 'uri' => 'groups/{group}', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\GroupController@destroy', - 'controller' => 'App\\Http\\Controllers\\Web\\GroupController@destroy', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'groups.destroy', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'generated::fr0IGQZP3VEQasAv' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'upgrade', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\HomeController@upgrade', - 'controller' => 'App\\Http\\Controllers\\Web\\HomeController@upgrade', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'generated::fr0IGQZP3VEQasAv', - ), - 'fallback' => false, - 'defaults' => - array ( - ), - 'wheres' => - array ( - ), - 'bindingFields' => - array ( - ), - 'lockSeconds' => NULL, - 'waitSeconds' => NULL, - 'withTrashed' => false, - ), - 'logout_confirm' => - array ( - 'methods' => - array ( - 0 => 'GET', - 1 => 'HEAD', - ), - 'uri' => 'logout-confirm', - 'action' => - array ( - 'middleware' => - array ( - 0 => 'web', - 1 => 'auth:sanctum', - ), - 'uses' => 'App\\Http\\Controllers\\Web\\HomeController@logoutConfirm', - 'controller' => 'App\\Http\\Controllers\\Web\\HomeController@logoutConfirm', - 'namespace' => NULL, - 'prefix' => '', - 'where' => - array ( - ), - 'as' => 'logout_confirm', - ), - '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 index 40e3c39..45284e4 100644 --- a/bootstrap/cache/services.php +++ b/bootstrap/cache/services.php @@ -114,6 +114,7 @@ 'command.config.cache' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'command.config.clear' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'Illuminate\\Database\\Console\\DbCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', + 'command.db.prune' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'command.db.wipe' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'command.down' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'command.environment' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', @@ -129,7 +130,9 @@ 'command.queue.flush' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'command.queue.forget' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'command.queue.listen' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', + 'command.queue.monitor' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'command.queue.prune-batches' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', + 'command.queue.prune-failed-jobs' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'command.queue.restart' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'command.queue.retry' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'command.queue.retry-batch' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', @@ -142,6 +145,7 @@ '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', 'command.storage.link' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', diff --git a/composer.lock b/composer.lock index 9cfda12..2f3de76 100644 --- a/composer.lock +++ b/composer.lock @@ -8,31 +8,31 @@ "packages": [ { "name": "asm89/stack-cors", - "version": "v2.0.3", + "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/asm89/stack-cors.git", - "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714" + "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/asm89/stack-cors/zipball/9cb795bf30988e8c96dd3c40623c48a877bc6714", - "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a", + "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a", "shasum": "" }, "require": { - "php": "^7.0|^8.0", - "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0", - "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0" + "php": "^7.2|^8.0", + "symfony/http-foundation": "^4|^5|^6", + "symfony/http-kernel": "^4|^5|^6" }, "require-dev": { - "phpunit/phpunit": "^6|^7|^8|^9", + "phpunit/phpunit": "^7|^9", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "2.1-dev" } }, "autoload": { @@ -58,9 +58,9 @@ ], "support": { "issues": "https://github.com/asm89/stack-cors/issues", - "source": "https://github.com/asm89/stack-cors/tree/v2.0.3" + "source": "https://github.com/asm89/stack-cors/tree/v2.1.1" }, - "time": "2021-03-11T06:42:03+00:00" + "time": "2022-01-18T09:12:03+00:00" }, { "name": "backpack/crud", @@ -221,16 +221,16 @@ }, { "name": "bacon/bacon-qr-code", - "version": "2.0.3", + "version": "2.0.7", "source": { "type": "git", "url": "https://github.com/Bacon/BaconQrCode.git", - "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4" + "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4", - "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4", + "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/d70c840f68657ce49094b8d91f9ee0cc07fbf66c", + "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c", "shasum": "" }, "require": { @@ -239,8 +239,9 @@ "php": "^7.1 || ^8.0" }, "require-dev": { - "phly/keep-a-changelog": "^1.4", + "phly/keep-a-changelog": "^2.1", "phpunit/phpunit": "^7 | ^8 | ^9", + "spatie/phpunit-snapshot-assertions": "^4.2.9", "squizlabs/php_codesniffer": "^3.4" }, "suggest": { @@ -268,32 +269,32 @@ "homepage": "https://github.com/Bacon/BaconQrCode", "support": { "issues": "https://github.com/Bacon/BaconQrCode/issues", - "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.3" + "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.7" }, - "time": "2020-10-30T02:02:47+00:00" + "time": "2022-03-14T02:02:36+00:00" }, { "name": "brick/math", - "version": "0.9.2", + "version": "0.10.2", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0" + "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0", - "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0", + "url": "https://api.github.com/repos/brick/math/zipball/459f2781e1a08d52ee56b0b1444086e038561e3f", + "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f", "shasum": "" }, "require": { "ext-json": "*", - "php": "^7.1 || ^8.0" + "php": "^7.4 || ^8.0" }, "require-dev": { "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0", - "vimeo/psalm": "4.3.2" + "phpunit/phpunit": "^9.0", + "vimeo/psalm": "4.25.0" }, "type": "library", "autoload": { @@ -318,28 +319,28 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.9.2" + "source": "https://github.com/brick/math/tree/0.10.2" }, "funding": [ { - "url": "https://tidelift.com/funding/github/packagist/brick/math", - "type": "tidelift" + "url": "https://github.com/BenMorel", + "type": "github" } ], - "time": "2021-01-20T22:51:39+00:00" + "time": "2022-08-10T22:54:19+00:00" }, { "name": "clue/stream-filter", - "version": "v1.5.0", + "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/clue/stream-filter.git", - "reference": "aeb7d8ea49c7963d3b581378955dbf5bc49aa320" + "reference": "d6169430c7731d8509da7aecd0af756a5747b78e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/clue/stream-filter/zipball/aeb7d8ea49c7963d3b581378955dbf5bc49aa320", - "reference": "aeb7d8ea49c7963d3b581378955dbf5bc49aa320", + "url": "https://api.github.com/repos/clue/stream-filter/zipball/d6169430c7731d8509da7aecd0af756a5747b78e", + "reference": "d6169430c7731d8509da7aecd0af756a5747b78e", "shasum": "" }, "require": { @@ -350,12 +351,12 @@ }, "type": "library", "autoload": { - "psr-4": { - "Clue\\StreamFilter\\": "src/" - }, "files": [ "src/functions_include.php" - ] + ], + "psr-4": { + "Clue\\StreamFilter\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -380,7 +381,7 @@ ], "support": { "issues": "https://github.com/clue/stream-filter/issues", - "source": "https://github.com/clue/stream-filter/tree/v1.5.0" + "source": "https://github.com/clue/stream-filter/tree/v1.6.0" }, "funding": [ { @@ -392,20 +393,20 @@ "type": "github" } ], - "time": "2020-10-02T12:38:20+00:00" + "time": "2022-02-21T13:15:14+00:00" }, { "name": "composer/package-versions-deprecated", - "version": "1.11.99.2", + "version": "1.11.99.5", "source": { "type": "git", "url": "https://github.com/composer/package-versions-deprecated.git", - "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c" + "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c6522afe5540d5fc46675043d3ed5a45a740b27c", - "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c", + "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d", + "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d", "shasum": "" }, "require": { @@ -449,7 +450,7 @@ "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", "support": { "issues": "https://github.com/composer/package-versions-deprecated/issues", - "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.2" + "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5" }, "funding": [ { @@ -465,7 +466,7 @@ "type": "tidelift" } ], - "time": "2021-05-24T07:46:03+00:00" + "time": "2022-01-17T14:14:24+00:00" }, { "name": "creativeorange/gravatar", @@ -578,38 +579,107 @@ "time": "2020-10-02T16:03:48+00:00" }, { - "name": "doctrine/cache", - "version": "1.11.3", + "name": "dflydev/dot-access-data", + "version": "v3.0.2", "source": { "type": "git", - "url": "https://github.com/doctrine/cache.git", - "reference": "3bb5588cec00a0268829cc4a518490df6741af9d" + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "f41715465d65213d644d3141a6a93081be5d3549" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/3bb5588cec00a0268829cc4a518490df6741af9d", - "reference": "3bb5588cec00a0268829cc4a518490df6741af9d", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", + "reference": "f41715465d65213d644d3141a6a93081be5d3549", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" + }, + "time": "2022-10-27T11:44:00+00:00" + }, + { + "name": "doctrine/cache", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/cache.git", + "reference": "1ca8f21980e770095a31456042471a57bc4c68fb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb", + "reference": "1ca8f21980e770095a31456042471a57bc4c68fb", "shasum": "" }, "require": { "php": "~7.1 || ^8.0" }, "conflict": { - "doctrine/common": ">2.2,<2.4", - "psr/cache": ">=3" + "doctrine/common": ">2.2,<2.4" }, "require-dev": { - "alcaeus/mongo-php-adapter": "^1.1", "cache/integration-tests": "dev-master", - "doctrine/coding-standard": "^8.0", - "mongodb/mongodb": "^1.1", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", - "predis/predis": "~1.0", - "psr/cache": "^1.0 || ^2.0", - "symfony/cache": "^4.4 || ^5.2" - }, - "suggest": { - "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" + "doctrine/coding-standard": "^9", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "psr/cache": "^1.0 || ^2.0 || ^3.0", + "symfony/cache": "^4.4 || ^5.4 || ^6", + "symfony/var-exporter": "^4.4 || ^5.4 || ^6" }, "type": "library", "autoload": { @@ -658,7 +728,7 @@ ], "support": { "issues": "https://github.com/doctrine/cache/issues", - "source": "https://github.com/doctrine/cache/tree/1.11.3" + "source": "https://github.com/doctrine/cache/tree/2.2.0" }, "funding": [ { @@ -674,39 +744,42 @@ "type": "tidelift" } ], - "time": "2021-05-25T09:01:55+00:00" + "time": "2022-05-20T20:07:39+00:00" }, { "name": "doctrine/dbal", - "version": "3.1.0", + "version": "3.5.1", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "5ba62e7e40df119424866064faf2cef66cb5232a" + "reference": "f38ee8aaca2d58ee88653cb34a6a3880c23f38a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/5ba62e7e40df119424866064faf2cef66cb5232a", - "reference": "5ba62e7e40df119424866064faf2cef66cb5232a", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/f38ee8aaca2d58ee88653cb34a6a3880c23f38a5", + "reference": "f38ee8aaca2d58ee88653cb34a6a3880c23f38a5", "shasum": "" }, "require": { - "composer/package-versions-deprecated": "^1.11.99", - "doctrine/cache": "^1.0", - "doctrine/deprecations": "^0.5.3", - "doctrine/event-manager": "^1.0", - "php": "^7.3 || ^8.0" + "composer-runtime-api": "^2", + "doctrine/cache": "^1.11|^2.0", + "doctrine/deprecations": "^0.5.3|^1", + "doctrine/event-manager": "^1|^2", + "php": "^7.4 || ^8.0", + "psr/cache": "^1|^2|^3", + "psr/log": "^1|^2|^3" }, "require-dev": { - "doctrine/coding-standard": "8.2.0", - "jetbrains/phpstorm-stubs": "2020.2", - "phpstan/phpstan": "0.12.81", - "phpstan/phpstan-strict-rules": "^0.12.2", - "phpunit/phpunit": "9.5.0", - "psalm/plugin-phpunit": "0.13.0", - "squizlabs/php_codesniffer": "3.6.0", - "symfony/console": "^2.0.5|^3.0|^4.0|^5.0", - "vimeo/psalm": "4.6.4" + "doctrine/coding-standard": "10.0.0", + "jetbrains/phpstorm-stubs": "2022.2", + "phpstan/phpstan": "1.8.10", + "phpstan/phpstan-strict-rules": "^1.4", + "phpunit/phpunit": "9.5.25", + "psalm/plugin-phpunit": "0.17.0", + "squizlabs/php_codesniffer": "3.7.1", + "symfony/cache": "^5.4|^6.0", + "symfony/console": "^4.4|^5.4|^6.0", + "vimeo/psalm": "4.29.0" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." @@ -766,7 +839,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.1.0" + "source": "https://github.com/doctrine/dbal/tree/3.5.1" }, "funding": [ { @@ -782,29 +855,29 @@ "type": "tidelift" } ], - "time": "2021-04-19T17:51:23+00:00" + "time": "2022-10-24T07:26:18+00:00" }, { "name": "doctrine/deprecations", - "version": "v0.5.3", + "version": "v1.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "9504165960a1f83cc1480e2be1dd0a0478561314" + "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314", - "reference": "9504165960a1f83cc1480e2be1dd0a0478561314", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", + "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", "shasum": "" }, "require": { "php": "^7.1|^8.0" }, "require-dev": { - "doctrine/coding-standard": "^6.0|^7.0|^8.0", - "phpunit/phpunit": "^7.0|^8.0|^9.0", - "psr/log": "^1.0" + "doctrine/coding-standard": "^9", + "phpunit/phpunit": "^7.5|^8.5|^9.5", + "psr/log": "^1|^2|^3" }, "suggest": { "psr/log": "Allows logging deprecations via PSR-3 logger implementation" @@ -823,43 +896,41 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/v0.5.3" + "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" }, - "time": "2021-03-21T12:59:47+00:00" + "time": "2022-05-02T15:47:09+00:00" }, { "name": "doctrine/event-manager", - "version": "1.1.1", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/doctrine/event-manager.git", - "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f" + "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f", - "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520", + "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520", "shasum": "" }, "require": { + "doctrine/deprecations": "^0.5.3 || ^1", "php": "^7.1 || ^8.0" }, "conflict": { - "doctrine/common": "<2.9@dev" + "doctrine/common": "<2.9" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpunit/phpunit": "^7.0" + "doctrine/coding-standard": "^9 || ^10", + "phpstan/phpstan": "~1.4.10 || ^1.8.8", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "vimeo/psalm": "^4.24" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, "autoload": { "psr-4": { - "Doctrine\\Common\\": "lib/Doctrine/Common" + "Doctrine\\Common\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -903,7 +974,7 @@ ], "support": { "issues": "https://github.com/doctrine/event-manager/issues", - "source": "https://github.com/doctrine/event-manager/tree/1.1.x" + "source": "https://github.com/doctrine/event-manager/tree/1.2.0" }, "funding": [ { @@ -919,38 +990,34 @@ "type": "tidelift" } ], - "time": "2020-05-29T18:28:51+00:00" + "time": "2022-10-12T20:51:15+00:00" }, { "name": "doctrine/inflector", - "version": "2.0.3", + "version": "2.0.6", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210" + "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210", - "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", + "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", "shasum": "" }, "require": { "php": "^7.2 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^7.0", - "phpstan/phpstan": "^0.11", - "phpstan/phpstan-phpunit": "^0.11", - "phpstan/phpstan-strict-rules": "^0.11", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + "doctrine/coding-standard": "^10", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" @@ -998,7 +1065,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.x" + "source": "https://github.com/doctrine/inflector/tree/2.0.6" }, "funding": [ { @@ -1014,36 +1081,32 @@ "type": "tidelift" } ], - "time": "2020-05-29T15:13:26+00:00" + "time": "2022-10-20T09:10:12+00:00" }, { "name": "doctrine/lexer", - "version": "1.2.1", + "version": "1.2.3", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "e864bbf5904cb8f5bb334f99209b48018522f042" + "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042", - "reference": "e864bbf5904cb8f5bb334f99209b48018522f042", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229", + "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpstan/phpstan": "^0.11.8", - "phpunit/phpunit": "^8.2" + "doctrine/coding-standard": "^9.0", + "phpstan/phpstan": "^1.3", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "vimeo/psalm": "^4.11" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.2.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" @@ -1078,7 +1141,7 @@ ], "support": { "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/1.2.1" + "source": "https://github.com/doctrine/lexer/tree/1.2.3" }, "funding": [ { @@ -1094,33 +1157,33 @@ "type": "tidelift" } ], - "time": "2020-05-25T17:44:05+00:00" + "time": "2022-02-28T11:07:21+00:00" }, { "name": "dragonmantank/cron-expression", - "version": "v3.1.0", + "version": "v3.3.2", "source": { "type": "git", "url": "https://github.com/dragonmantank/cron-expression.git", - "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c" + "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c", - "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8", + "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8", "shasum": "" }, "require": { "php": "^7.2|^8.0", - "webmozart/assert": "^1.7.0" + "webmozart/assert": "^1.0" }, "replace": { "mtdowling/cron-expression": "^1.0" }, "require-dev": { "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-webmozart-assert": "^0.12.7", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-webmozart-assert": "^1.0", "phpunit/phpunit": "^7.0|^8.0|^9.0" }, "type": "library", @@ -1147,7 +1210,7 @@ ], "support": { "issues": "https://github.com/dragonmantank/cron-expression/issues", - "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0" + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2" }, "funding": [ { @@ -1155,7 +1218,7 @@ "type": "github" } ], - "time": "2020-11-24T19:55:57+00:00" + "time": "2022-09-10T18:51:20+00:00" }, { "name": "egulias/email-validator", @@ -1227,32 +1290,39 @@ }, { "name": "ezyang/htmlpurifier", - "version": "v4.13.0", + "version": "v4.16.0", "source": { "type": "git", "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75" + "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75", - "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8", + "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8", "shasum": "" }, "require": { - "php": ">=5.2" + "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0" }, "require-dev": { - "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd" + "cerdic/css-tidy": "^1.7 || ^2.0", + "simpletest/simpletest": "dev-master" + }, + "suggest": { + "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", + "ext-bcmath": "Used for unit conversion and imagecrash protection", + "ext-iconv": "Converts text to and from non-UTF-8 encodings", + "ext-tidy": "Used for pretty-printing HTML" }, "type": "library", "autoload": { - "psr-0": { - "HTMLPurifier": "library/" - }, "files": [ "library/HTMLPurifier.composer.php" ], + "psr-0": { + "HTMLPurifier": "library/" + }, "exclude-from-classmap": [ "/library/HTMLPurifier/Language/" ] @@ -1275,22 +1345,22 @@ ], "support": { "issues": "https://github.com/ezyang/htmlpurifier/issues", - "source": "https://github.com/ezyang/htmlpurifier/tree/master" + "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0" }, - "time": "2020-06-29T00:56:53+00:00" + "time": "2022-09-18T07:06:19+00:00" }, { "name": "fideloper/proxy", - "version": "4.4.1", + "version": "4.4.2", "source": { "type": "git", "url": "https://github.com/fideloper/TrustedProxy.git", - "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0" + "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0", - "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0", + "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750", + "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750", "shasum": "" }, "require": { @@ -1300,7 +1370,7 @@ "require-dev": { "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0", "mockery/mockery": "^1.0", - "phpunit/phpunit": "^6.0" + "phpunit/phpunit": "^8.5.8|^9.3.3" }, "type": "library", "extra": { @@ -1333,34 +1403,32 @@ ], "support": { "issues": "https://github.com/fideloper/TrustedProxy/issues", - "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1" + "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2" }, - "time": "2020-10-22T13:48:01+00:00" + "time": "2022-02-09T13:33:34+00:00" }, { "name": "fruitcake/laravel-cors", - "version": "v2.0.4", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/fruitcake/laravel-cors.git", - "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a" + "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/a8ccedc7ca95189ead0e407c43b530dc17791d6a", - "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a", + "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534", + "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534", "shasum": "" }, "require": { "asm89/stack-cors": "^2.0.1", "illuminate/contracts": "^6|^7|^8|^9", "illuminate/support": "^6|^7|^8|^9", - "php": ">=7.2", - "symfony/http-foundation": "^4|^5", - "symfony/http-kernel": "^4.3.4|^5" + "php": ">=7.2" }, "require-dev": { - "laravel/framework": "^6|^7|^8", + "laravel/framework": "^6|^7.24|^8", "orchestra/testbench-dusk": "^4|^5|^6|^7", "phpunit/phpunit": "^6|^7|^8|^9", "squizlabs/php_codesniffer": "^3.5" @@ -1368,7 +1436,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "2.1-dev" }, "laravel": { "providers": [ @@ -1404,40 +1472,44 @@ ], "support": { "issues": "https://github.com/fruitcake/laravel-cors/issues", - "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.4" + "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0" }, "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, { "url": "https://github.com/barryvdh", "type": "github" } ], - "time": "2021-04-26T11:24:25+00:00" + "time": "2022-02-23T14:25:13+00:00" }, { "name": "graham-campbell/manager", - "version": "v4.6.0", + "version": "v4.7.0", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Laravel-Manager.git", - "reference": "e18c29f98adb770bd890b6d66b27ba4730272599" + "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/e18c29f98adb770bd890b6d66b27ba4730272599", - "reference": "e18c29f98adb770bd890b6d66b27ba4730272599", + "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/b4cafa6491b9c92ecf7ce17521580050a27b8308", + "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308", "shasum": "" }, "require": { - "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0", - "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0", + "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0", + "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0", "php": "^7.1.3 || ^8.0" }, "require-dev": { "graham-campbell/analyzer": "^2.4 || ^3.0", - "graham-campbell/testbench-core": "^3.2", + "graham-campbell/testbench-core": "^3.4", "mockery/mockery": "^1.3.1", - "phpunit/phpunit": "^6.5 || ^7.5 || ^8.4 || ^9.0" + "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7" }, "type": "library", "autoload": { @@ -1452,7 +1524,8 @@ "authors": [ { "name": "Graham Campbell", - "email": "graham@alt-three.com" + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" } ], "description": "Manager Provides Some Manager Functionality For Laravel", @@ -1469,7 +1542,7 @@ ], "support": { "issues": "https://github.com/GrahamCampbell/Laravel-Manager/issues", - "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/4.6" + "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/v4.7.0" }, "funding": [ { @@ -1481,35 +1554,30 @@ "type": "tidelift" } ], - "time": "2020-07-25T18:02:52+00:00" + "time": "2022-01-24T01:59:19+00:00" }, { "name": "graham-campbell/result-type", - "version": "v1.0.1", + "version": "v1.1.0", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Result-Type.git", - "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb" + "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/7e279d2cd5d7fbb156ce46daada972355cea27bb", - "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8", + "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8", "shasum": "" }, "require": { - "php": "^7.0|^8.0", - "phpoption/phpoption": "^1.7.3" + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9" }, "require-dev": { - "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0" + "phpunit/phpunit": "^8.5.28 || ^9.5.21" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, "autoload": { "psr-4": { "GrahamCampbell\\ResultType\\": "src/" @@ -1522,7 +1590,8 @@ "authors": [ { "name": "Graham Campbell", - "email": "graham@alt-three.com" + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" } ], "description": "An Implementation Of The Result Type", @@ -1535,7 +1604,7 @@ ], "support": { "issues": "https://github.com/GrahamCampbell/Result-Type/issues", - "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.1" + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0" }, "funding": [ { @@ -1547,38 +1616,39 @@ "type": "tidelift" } ], - "time": "2020-04-13T13:17:36+00:00" + "time": "2022-07-30T15:56:11+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "7.3.0", + "version": "7.5.0", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "7008573787b430c1c1f650e3722d9bba59967628" + "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628", - "reference": "7008573787b430c1c1f650e3722d9bba59967628", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba", + "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.4", - "guzzlehttp/psr7": "^1.7 || ^2.0", + "guzzlehttp/promises": "^1.5", + "guzzlehttp/psr7": "^1.9 || ^2.4", "php": "^7.2.5 || ^8.0", - "psr/http-client": "^1.0" + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" }, "provide": { "psr/http-client-implementation": "1.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", + "bamarni/composer-bin-plugin": "^1.8.1", "ext-curl": "*", "php-http/client-integration-tests": "^3.0", - "phpunit/phpunit": "^8.5.5 || ^9.3.5", - "psr/log": "^1.1" + "phpunit/phpunit": "^8.5.29 || ^9.5.23", + "psr/log": "^1.1 || ^2.0 || ^3.0" }, "suggest": { "ext-curl": "Required for CURL handler support", @@ -1587,36 +1657,64 @@ }, "type": "library", "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, "branch-alias": { - "dev-master": "7.3-dev" + "dev-master": "7.5-dev" } }, "autoload": { - "psr-4": { - "GuzzleHttp\\": "src/" - }, "files": [ "src/functions_include.php" - ] + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, { "name": "Márk Sági-Kazár", "email": "mark.sagikazar@gmail.com", - "homepage": "https://sagikazarmark.hu" + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" } ], "description": "Guzzle is a PHP HTTP client library", - "homepage": "http://guzzlephp.org/", "keywords": [ "client", "curl", @@ -1630,7 +1728,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.3.0" + "source": "https://github.com/guzzle/guzzle/tree/7.5.0" }, "funding": [ { @@ -1642,28 +1740,24 @@ "type": "github" }, { - "url": "https://github.com/alexeyshockov", - "type": "github" - }, - { - "url": "https://github.com/gmponos", - "type": "github" + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" } ], - "time": "2021-03-23T11:33:13+00:00" + "time": "2022-08-28T15:39:27+00:00" }, { "name": "guzzlehttp/promises", - "version": "1.4.1", + "version": "1.5.2", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d" + "reference": "b94b2807d85443f9719887892882d0329d1e2598" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d", - "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d", + "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598", + "reference": "b94b2807d85443f9719887892882d0329d1e2598", "shasum": "" }, "require": { @@ -1675,26 +1769,41 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4-dev" + "dev-master": "1.5-dev" } }, "autoload": { - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - }, "files": [ "src/functions_include.php" - ] + ], + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" } ], "description": "Guzzle promises library", @@ -1703,66 +1812,110 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/1.4.1" + "source": "https://github.com/guzzle/promises/tree/1.5.2" }, - "time": "2021-03-07T09:25:29+00:00" + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2022-08-28T14:55:35+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.8.2", + "version": "2.4.3", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "dc960a912984efb74d0a90222870c72c87f10c91" + "reference": "67c26b443f348a51926030c83481b85718457d3d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91", - "reference": "dc960a912984efb74d0a90222870c72c87f10c91", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d", + "reference": "67c26b443f348a51926030c83481b85718457d3d", "shasum": "" }, "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.0", + "ralouphie/getallheaders": "^3.0" }, "provide": { + "psr/http-factory-implementation": "1.0", "psr/http-message-implementation": "1.0" }, "require-dev": { - "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" + "bamarni/composer-bin-plugin": "^1.8.1", + "http-interop/http-factory-tests": "^0.9", + "phpunit/phpunit": "^8.5.29 || ^9.5.23" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, "branch-alias": { - "dev-master": "1.7-dev" + "dev-master": "2.4-dev" } }, "autoload": { "psr-4": { "GuzzleHttp\\Psr7\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, { "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" } ], "description": "PSR-7 message implementation that also provides common utility methods", @@ -1778,60 +1931,23 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/1.8.2" + "source": "https://github.com/guzzle/psr7/tree/2.4.3" }, - "time": "2021-04-26T09:17:50+00:00" - }, - { - "name": "hamcrest/hamcrest-php", - "version": "v2.0.1", - "source": { - "type": "git", - "url": "https://github.com/hamcrest/hamcrest-php.git", - "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", - "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", - "shasum": "" - }, - "require": { - "php": "^5.3|^7.0|^8.0" - }, - "replace": { - "cordoval/hamcrest-php": "*", - "davedevelopment/hamcrest-php": "*", - "kodova/hamcrest-php": "*" - }, - "require-dev": { - "phpunit/php-file-iterator": "^1.4 || ^2.0", - "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.1-dev" + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" } - }, - "autoload": { - "classmap": [ - "hamcrest" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" ], - "description": "This is the PHP port of Hamcrest Matchers", - "keywords": [ - "test" - ], - "support": { - "issues": "https://github.com/hamcrest/hamcrest-php/issues", - "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" - }, - "time": "2020-07-09T08:09:16+00:00" + "time": "2022-10-26T14:07:24+00:00" }, { "name": "hashids/hashids", @@ -1905,28 +2021,32 @@ }, { "name": "http-interop/http-factory-guzzle", - "version": "1.0.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/http-interop/http-factory-guzzle.git", - "reference": "34861658efb9899a6618cef03de46e2a52c80fc0" + "reference": "8f06e92b95405216b237521cc64c804dd44c4a81" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/http-interop/http-factory-guzzle/zipball/34861658efb9899a6618cef03de46e2a52c80fc0", - "reference": "34861658efb9899a6618cef03de46e2a52c80fc0", + "url": "https://api.github.com/repos/http-interop/http-factory-guzzle/zipball/8f06e92b95405216b237521cc64c804dd44c4a81", + "reference": "8f06e92b95405216b237521cc64c804dd44c4a81", "shasum": "" }, "require": { - "guzzlehttp/psr7": "^1.4.2", + "guzzlehttp/psr7": "^1.7||^2.0", + "php": ">=7.3", "psr/http-factory": "^1.0" }, "provide": { "psr/http-factory-implementation": "^1.0" }, "require-dev": { - "http-interop/http-factory-tests": "^0.5", - "phpunit/phpunit": "^6.5" + "http-interop/http-factory-tests": "^0.9", + "phpunit/phpunit": "^9.5" + }, + "suggest": { + "guzzlehttp/psr7": "Includes an HTTP factory starting in version 2.0" }, "type": "library", "autoload": { @@ -1953,22 +2073,22 @@ ], "support": { "issues": "https://github.com/http-interop/http-factory-guzzle/issues", - "source": "https://github.com/http-interop/http-factory-guzzle/tree/master" + "source": "https://github.com/http-interop/http-factory-guzzle/tree/1.2.0" }, - "time": "2018-07-31T19:32:56+00:00" + "time": "2021-07-21T13:50:14+00:00" }, { "name": "inertiajs/inertia-laravel", - "version": "v0.4.2", + "version": "v0.4.5", "source": { "type": "git", "url": "https://github.com/inertiajs/inertia-laravel.git", - "reference": "7ea4e730d82b90b658ca3e863968d2ffd6cc4d06" + "reference": "406b15af162e78be5c7793b25aadd5a183eea84b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/inertiajs/inertia-laravel/zipball/7ea4e730d82b90b658ca3e863968d2ffd6cc4d06", - "reference": "7ea4e730d82b90b658ca3e863968d2ffd6cc4d06", + "url": "https://api.github.com/repos/inertiajs/inertia-laravel/zipball/406b15af162e78be5c7793b25aadd5a183eea84b", + "reference": "406b15af162e78be5c7793b25aadd5a183eea84b", "shasum": "" }, "require": { @@ -1990,12 +2110,12 @@ } }, "autoload": { - "psr-4": { - "Inertia\\": "src" - }, "files": [ "./helpers.php" - ] + ], + "psr-4": { + "Inertia\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -2015,7 +2135,7 @@ ], "support": { "issues": "https://github.com/inertiajs/inertia-laravel/issues", - "source": "https://github.com/inertiajs/inertia-laravel/tree/v0.4.2" + "source": "https://github.com/inertiajs/inertia-laravel/tree/v0.4.5" }, "funding": [ { @@ -2023,7 +2143,7 @@ "type": "github" } ], - "time": "2021-05-10T09:56:05+00:00" + "time": "2021-10-27T09:37:59+00:00" }, { "name": "intervention/image", @@ -2111,16 +2231,16 @@ }, { "name": "jaybizzle/crawler-detect", - "version": "v1.2.106", + "version": "v1.2.112", "source": { "type": "git", "url": "https://github.com/JayBizzle/Crawler-Detect.git", - "reference": "78bf6792cbf9c569dc0bf2465481978fd2ed0de9" + "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/78bf6792cbf9c569dc0bf2465481978fd2ed0de9", - "reference": "78bf6792cbf9c569dc0bf2465481978fd2ed0de9", + "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f", + "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f", "shasum": "" }, "require": { @@ -2157,9 +2277,9 @@ ], "support": { "issues": "https://github.com/JayBizzle/Crawler-Detect/issues", - "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.106" + "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.112" }, - "time": "2021-05-24T20:30:32+00:00" + "time": "2022-10-05T21:52:44+00:00" }, { "name": "jenssegers/agent", @@ -2246,28 +2366,28 @@ }, { "name": "laravel/fortify", - "version": "v1.7.13", + "version": "v1.13.7", "source": { "type": "git", "url": "https://github.com/laravel/fortify.git", - "reference": "1753d05c80f930cc2715051858900965b49f32d9" + "reference": "28c2dc66639571ac656c13617a1a0876a82319b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/fortify/zipball/1753d05c80f930cc2715051858900965b49f32d9", - "reference": "1753d05c80f930cc2715051858900965b49f32d9", + "url": "https://api.github.com/repos/laravel/fortify/zipball/28c2dc66639571ac656c13617a1a0876a82319b1", + "reference": "28c2dc66639571ac656c13617a1a0876a82319b1", "shasum": "" }, "require": { "bacon/bacon-qr-code": "^2.0", "ext-json": "*", - "illuminate/support": "^8.0", + "illuminate/support": "^8.82|^9.0", "php": "^7.3|^8.0", "pragmarx/google2fa": "^7.0|^8.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^6.0", + "orchestra/testbench": "^6.0|^7.0", "phpunit/phpunit": "^9.3" }, "type": "library", @@ -2305,20 +2425,20 @@ "issues": "https://github.com/laravel/fortify/issues", "source": "https://github.com/laravel/fortify" }, - "time": "2021-05-25T16:35:21+00:00" + "time": "2022-11-04T20:57:17+00:00" }, { "name": "laravel/framework", - "version": "v8.44.0", + "version": "v8.83.26", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "7b3b27dc8911ab02a69731af2ba97b5130b2ddb8" + "reference": "7411d9fa71c1b0fd73a33e225f14512b74e6c81e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/7b3b27dc8911ab02a69731af2ba97b5130b2ddb8", - "reference": "7b3b27dc8911ab02a69731af2ba97b5130b2ddb8", + "url": "https://api.github.com/repos/laravel/framework/zipball/7411d9fa71c1b0fd73a33e225f14512b74e6c81e", + "reference": "7411d9fa71c1b0fd73a33e225f14512b74e6c81e", "shasum": "" }, "require": { @@ -2328,34 +2448,37 @@ "ext-json": "*", "ext-mbstring": "*", "ext-openssl": "*", - "league/commonmark": "^1.3", + "laravel/serializable-closure": "^1.0", + "league/commonmark": "^1.3|^2.0.2", "league/flysystem": "^1.1", "monolog/monolog": "^2.0", - "nesbot/carbon": "^2.31", + "nesbot/carbon": "^2.53.1", "opis/closure": "^3.6", "php": "^7.3|^8.0", "psr/container": "^1.0", + "psr/log": "^1.0|^2.0", "psr/simple-cache": "^1.0", - "ramsey/uuid": "^4.0", - "swiftmailer/swiftmailer": "^6.0", - "symfony/console": "^5.1.4", - "symfony/error-handler": "^5.1.4", - "symfony/finder": "^5.1.4", - "symfony/http-foundation": "^5.1.4", - "symfony/http-kernel": "^5.1.4", - "symfony/mime": "^5.1.4", - "symfony/process": "^5.1.4", - "symfony/routing": "^5.1.4", - "symfony/var-dumper": "^5.1.4", + "ramsey/uuid": "^4.2.2", + "swiftmailer/swiftmailer": "^6.3", + "symfony/console": "^5.4", + "symfony/error-handler": "^5.4", + "symfony/finder": "^5.4", + "symfony/http-foundation": "^5.4", + "symfony/http-kernel": "^5.4", + "symfony/mime": "^5.4", + "symfony/process": "^5.4", + "symfony/routing": "^5.4", + "symfony/var-dumper": "^5.4", "tijsverkoyen/css-to-inline-styles": "^2.2.2", - "vlucas/phpdotenv": "^5.2", - "voku/portable-ascii": "^1.4.8" + "vlucas/phpdotenv": "^5.4.1", + "voku/portable-ascii": "^1.6.1" }, "conflict": { "tightenco/collect": "<5.5.33" }, "provide": { - "psr/container-implementation": "1.0" + "psr/container-implementation": "1.0", + "psr/simple-cache-implementation": "1.0" }, "replace": { "illuminate/auth": "self.version", @@ -2391,22 +2514,24 @@ "illuminate/view": "self.version" }, "require-dev": { - "aws/aws-sdk-php": "^3.155", - "doctrine/dbal": "^2.6|^3.0", - "filp/whoops": "^2.8", + "aws/aws-sdk-php": "^3.198.1", + "doctrine/dbal": "^2.13.3|^3.1.4", + "filp/whoops": "^2.14.3", "guzzlehttp/guzzle": "^6.5.5|^7.0.1", "league/flysystem-cached-adapter": "^1.0", - "mockery/mockery": "^1.4.2", - "orchestra/testbench-core": "^6.8", + "mockery/mockery": "^1.4.4", + "orchestra/testbench-core": "^6.27", "pda/pheanstalk": "^4.0", - "phpunit/phpunit": "^8.5.8|^9.3.3", - "predis/predis": "^1.1.1", - "symfony/cache": "^5.1.4" + "phpunit/phpunit": "^8.5.19|^9.5.8", + "predis/predis": "^1.1.9", + "symfony/cache": "^5.4" }, "suggest": { - "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).", + "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).", "brianium/paratest": "Required to run tests in parallel (^6.0).", - "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6|^3.0).", + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).", + "ext-bcmath": "Required to use the multiple_of validation rule.", "ext-ftp": "Required to use the Flysystem FTP driver.", "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", "ext-memcached": "Required to use the memcache cache driver.", @@ -2414,21 +2539,21 @@ "ext-posix": "Required to use all features of the queue worker.", "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", - "filp/whoops": "Required for friendly error pages in development (^2.8).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).", "laravel/tinker": "Required to use the tinker console command (^2.0).", "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).", "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).", "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).", - "mockery/mockery": "Required to use mocking (^1.4.2).", + "mockery/mockery": "Required to use mocking (^1.4.4).", "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", - "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).", - "predis/predis": "Required to use the predis connector (^1.1.2).", + "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).", + "predis/predis": "Required to use the predis connector (^1.1.9).", "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", - "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0).", - "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).", - "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^5.4).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).", "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).", "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)." }, @@ -2473,35 +2598,34 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-05-27T16:46:06+00:00" + "time": "2022-11-01T14:48:50+00:00" }, { "name": "laravel/jetstream", - "version": "v2.3.6", + "version": "v2.9.0", "source": { "type": "git", "url": "https://github.com/laravel/jetstream.git", - "reference": "c1f1f4e4a7a690eda215286e2e56bb8acd626160" + "reference": "c46f16295782e95e179da286f97c513ef8da7612" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/jetstream/zipball/c1f1f4e4a7a690eda215286e2e56bb8acd626160", - "reference": "c1f1f4e4a7a690eda215286e2e56bb8acd626160", + "url": "https://api.github.com/repos/laravel/jetstream/zipball/c46f16295782e95e179da286f97c513ef8da7612", + "reference": "c46f16295782e95e179da286f97c513ef8da7612", "shasum": "" }, "require": { "ext-json": "*", - "illuminate/support": "^8.0", + "illuminate/support": "^8.37|^9.0", "jenssegers/agent": "^2.6", - "laravel/fortify": "^1.6.1", - "league/commonmark": "^1.3", + "laravel/fortify": "^1.12", "php": "^7.3|^8.0" }, "require-dev": { - "inertiajs/inertia-laravel": "^0.3", - "laravel/sanctum": "^2.6", + "inertiajs/inertia-laravel": "^0.5.2", + "laravel/sanctum": "^2.7", "mockery/mockery": "^1.0", - "orchestra/testbench": "^6.0", + "orchestra/testbench": "^6.0|^7.0", "phpunit/phpunit": "^9.3" }, "type": "library", @@ -2540,32 +2664,33 @@ "issues": "https://github.com/laravel/jetstream/issues", "source": "https://github.com/laravel/jetstream" }, - "time": "2021-05-18T15:34:01+00:00" + "time": "2022-06-28T11:52:25+00:00" }, { "name": "laravel/sanctum", - "version": "v2.11.1", + "version": "v2.15.1", "source": { "type": "git", "url": "https://github.com/laravel/sanctum.git", - "reference": "5de9d0ced8ae50dacb00c16077115f32e94d13f2" + "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sanctum/zipball/5de9d0ced8ae50dacb00c16077115f32e94d13f2", - "reference": "5de9d0ced8ae50dacb00c16077115f32e94d13f2", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473", + "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473", "shasum": "" }, "require": { "ext-json": "*", - "illuminate/contracts": "^6.9|^7.0|^8.0", - "illuminate/database": "^6.9|^7.0|^8.0", - "illuminate/support": "^6.9|^7.0|^8.0", + "illuminate/console": "^6.9|^7.0|^8.0|^9.0", + "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0", + "illuminate/database": "^6.9|^7.0|^8.0|^9.0", + "illuminate/support": "^6.9|^7.0|^8.0|^9.0", "php": "^7.2|^8.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^4.0|^5.0|^6.0", + "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0", "phpunit/phpunit": "^8.0|^9.3" }, "type": "library", @@ -2604,41 +2729,41 @@ "issues": "https://github.com/laravel/sanctum/issues", "source": "https://github.com/laravel/sanctum" }, - "time": "2021-05-25T16:43:06+00:00" + "time": "2022-04-08T13:39:49+00:00" }, { "name": "laravel/scout", - "version": "v9.1.0", + "version": "v9.4.12", "source": { "type": "git", "url": "https://github.com/laravel/scout.git", - "reference": "b31bc1edb6498ae5807011091cb41624f109e0d5" + "reference": "83f0027f37dd950d50efe4ecfc84a6eb4a476e15" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/scout/zipball/b31bc1edb6498ae5807011091cb41624f109e0d5", - "reference": "b31bc1edb6498ae5807011091cb41624f109e0d5", + "url": "https://api.github.com/repos/laravel/scout/zipball/83f0027f37dd950d50efe4ecfc84a6eb4a476e15", + "reference": "83f0027f37dd950d50efe4ecfc84a6eb4a476e15", "shasum": "" }, "require": { - "illuminate/bus": "^8.0", - "illuminate/contracts": "^8.0", - "illuminate/database": "^8.0", - "illuminate/http": "^8.0", - "illuminate/pagination": "^8.0", - "illuminate/queue": "^8.0", - "illuminate/support": "^8.0", + "illuminate/bus": "^8.0|^9.0", + "illuminate/contracts": "^8.0|^9.0", + "illuminate/database": "^8.0|^9.0", + "illuminate/http": "^8.0|^9.0", + "illuminate/pagination": "^8.0|^9.0", + "illuminate/queue": "^8.0|^9.0", + "illuminate/support": "^8.0|^9.0", "php": "^7.3|^8.0" }, "require-dev": { - "meilisearch/meilisearch-php": "^0.17", + "meilisearch/meilisearch-php": "^0.19", "mockery/mockery": "^1.0", - "orchestra/testbench": "^6.17", + "orchestra/testbench": "^6.17|^7.0", "phpunit/phpunit": "^9.3" }, "suggest": { - "algolia/algoliasearch-client-php": "Required to use the Algolia engine (^2.2).", - "meilisearch/meilisearch-php": "Required to use the MeiliSearch engine (^0.17)." + "algolia/algoliasearch-client-php": "Required to use the Algolia engine (^3.2).", + "meilisearch/meilisearch-php": "Required to use the MeiliSearch engine (^0.23)." }, "type": "library", "extra": { @@ -2676,36 +2801,96 @@ "issues": "https://github.com/laravel/scout/issues", "source": "https://github.com/laravel/scout" }, - "time": "2021-05-13T07:57:29+00:00" + "time": "2022-10-04T14:18:55+00:00" }, { - "name": "laravel/tinker", - "version": "v2.6.1", + "name": "laravel/serializable-closure", + "version": "v1.2.2", "source": { "type": "git", - "url": "https://github.com/laravel/tinker.git", - "reference": "04ad32c1a3328081097a181875733fa51f402083" + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083", - "reference": "04ad32c1a3328081097a181875733fa51f402083", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/47afb7fae28ed29057fdca37e16a84f90cc62fae", + "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae", "shasum": "" }, "require": { - "illuminate/console": "^6.0|^7.0|^8.0", - "illuminate/contracts": "^6.0|^7.0|^8.0", - "illuminate/support": "^6.0|^7.0|^8.0", + "php": "^7.3|^8.0" + }, + "require-dev": { + "nesbot/carbon": "^2.61", + "pestphp/pest": "^1.21.3", + "phpstan/phpstan": "^1.8.2", + "symfony/var-dumper": "^5.4.11" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2022-09-08T13:45:54+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.7.3", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "5062061b4924af3392225dd482ca7b4d85d8b8ef" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/5062061b4924af3392225dd482ca7b4d85d8b8ef", + "reference": "5062061b4924af3392225dd482ca7b4d85d8b8ef", + "shasum": "" + }, + "require": { + "illuminate/console": "^6.0|^7.0|^8.0|^9.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0", "php": "^7.2.5|^8.0", - "psy/psysh": "^0.10.4", - "symfony/var-dumper": "^4.3.4|^5.0" + "psy/psysh": "^0.10.4|^0.11.1", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0" }, "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", "phpunit/phpunit": "^8.5.8|^9.3.3" }, "suggest": { - "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)." + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)." }, "type": "library", "extra": { @@ -2742,48 +2927,60 @@ ], "support": { "issues": "https://github.com/laravel/tinker/issues", - "source": "https://github.com/laravel/tinker/tree/v2.6.1" + "source": "https://github.com/laravel/tinker/tree/v2.7.3" }, - "time": "2021-03-02T16:53:12+00:00" + "time": "2022-11-09T15:11:38+00:00" }, { "name": "league/commonmark", - "version": "1.6.2", + "version": "2.3.7", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "7d70d2f19c84bcc16275ea47edabee24747352eb" + "reference": "a36bd2be4f5387c0f3a8792a0d76b7d68865abbf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/7d70d2f19c84bcc16275ea47edabee24747352eb", - "reference": "7d70d2f19c84bcc16275ea47edabee24747352eb", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/a36bd2be4f5387c0f3a8792a0d76b7d68865abbf", + "reference": "a36bd2be4f5387c0f3a8792a0d76b7d68865abbf", "shasum": "" }, "require": { "ext-mbstring": "*", - "php": "^7.1 || ^8.0" - }, - "conflict": { - "scrutinizer/ocular": "1.7.*" + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" }, "require-dev": { - "cebe/markdown": "~1.0", - "commonmark/commonmark.js": "0.29.2", - "erusev/parsedown": "~1.0", + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.30.0", + "commonmark/commonmark.js": "0.30.0", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", "ext-json": "*", "github/gfm": "0.29.0", - "michelf/php-markdown": "~1.4", - "mikehaertl/php-shellcommand": "^1.4", - "phpstan/phpstan": "^0.12", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2", - "scrutinizer/ocular": "^1.5", - "symfony/finder": "^4.2" + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" }, - "bin": [ - "bin/commonmark" - ], "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.4-dev" + } + }, "autoload": { "psr-4": { "League\\CommonMark\\": "src" @@ -2801,7 +2998,7 @@ "role": "Lead Developer" } ], - "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)", + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", "homepage": "https://commonmark.thephpleague.com", "keywords": [ "commonmark", @@ -2815,15 +3012,12 @@ ], "support": { "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", "issues": "https://github.com/thephpleague/commonmark/issues", "rss": "https://github.com/thephpleague/commonmark/releases.atom", "source": "https://github.com/thephpleague/commonmark" }, "funding": [ - { - "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark", - "type": "custom" - }, { "url": "https://www.colinodell.com/sponsor", "type": "custom" @@ -2836,29 +3030,107 @@ "url": "https://github.com/colinodell", "type": "github" }, - { - "url": "https://www.patreon.com/colinodell", - "type": "patreon" - }, { "url": "https://tidelift.com/funding/github/packagist/league/commonmark", "type": "tidelift" } ], - "time": "2021-05-12T11:39:41+00:00" + "time": "2022-11-03T17:29:46+00:00" }, { - "name": "league/flysystem", - "version": "1.1.3", + "name": "league/config", + "version": "v1.1.1", "source": { "type": "git", - "url": "https://github.com/thephpleague/flysystem.git", - "reference": "9be3b16c877d477357c015cec057548cf9b2a14a" + "url": "https://github.com/thephpleague/config.git", + "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a", - "reference": "9be3b16c877d477357c015cec057548cf9b2a14a", + "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", + "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.90", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2021-08-14T12:15:32+00:00" + }, + { + "name": "league/flysystem", + "version": "1.1.10", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1", + "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1", "shasum": "" }, "require": { @@ -2874,7 +3146,6 @@ "phpunit/phpunit": "^8.5.8" }, "suggest": { - "ext-fileinfo": "Required for MimeType", "ext-ftp": "Allows you to use FTP server storage", "ext-openssl": "Allows you to use FTPS server storage", "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", @@ -2932,7 +3203,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/1.x" + "source": "https://github.com/thephpleague/flysystem/tree/1.1.10" }, "funding": [ { @@ -2940,7 +3211,7 @@ "type": "other" } ], - "time": "2020-08-23T07:39:11+00:00" + "time": "2022-10-04T09:16:37+00:00" }, { "name": "league/fractal", @@ -3014,16 +3285,16 @@ }, { "name": "league/mime-type-detection", - "version": "1.7.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3" + "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", - "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", + "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", "shasum": "" }, "require": { @@ -3031,7 +3302,7 @@ "php": "^7.2 || ^8.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.18", + "friendsofphp/php-cs-fixer": "^3.2", "phpstan/phpstan": "^0.12.68", "phpunit/phpunit": "^8.5.8 || ^9.3" }, @@ -3054,7 +3325,7 @@ "description": "Mime-type detection for Flysystem", "support": { "issues": "https://github.com/thephpleague/mime-type-detection/issues", - "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0" + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" }, "funding": [ { @@ -3066,30 +3337,31 @@ "type": "tidelift" } ], - "time": "2021-01-18T20:58:21+00:00" + "time": "2022-04-17T13:12:02+00:00" }, { "name": "maatwebsite/excel", - "version": "3.1.30", + "version": "3.1.44", "source": { "type": "git", - "url": "https://github.com/Maatwebsite/Laravel-Excel.git", - "reference": "aa5d2e4d25c5c8218ea0a15103da95f5f8728953" + "url": "https://github.com/SpartnerNL/Laravel-Excel.git", + "reference": "289c3320982510dacfe0dd00de68061a2b7f4a43" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/aa5d2e4d25c5c8218ea0a15103da95f5f8728953", - "reference": "aa5d2e4d25c5c8218ea0a15103da95f5f8728953", + "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/289c3320982510dacfe0dd00de68061a2b7f4a43", + "reference": "289c3320982510dacfe0dd00de68061a2b7f4a43", "shasum": "" }, "require": { "ext-json": "*", - "illuminate/support": "5.8.*|^6.0|^7.0|^8.0", + "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0", "php": "^7.0|^8.0", - "phpoffice/phpspreadsheet": "1.16.*" + "phpoffice/phpspreadsheet": "^1.18", + "psr/simple-cache": "^1.0|^2.0" }, "require-dev": { - "orchestra/testbench": "^6.0", + "orchestra/testbench": "^6.0|^7.0", "predis/predis": "^1.1" }, "type": "library", @@ -3115,7 +3387,7 @@ "authors": [ { "name": "Patrick Brouwers", - "email": "patrick@maatwebsite.nl" + "email": "patrick@spartner.nl" } ], "description": "Supercharged Excel exports and imports in Laravel", @@ -3131,8 +3403,8 @@ "phpspreadsheet" ], "support": { - "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues", - "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.30" + "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues", + "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.44" }, "funding": [ { @@ -3144,33 +3416,36 @@ "type": "github" } ], - "time": "2021-04-06T17:17:02+00:00" + "time": "2022-10-14T20:01:10+00:00" }, { "name": "maennchen/zipstream-php", - "version": "2.1.0", + "version": "2.2.6", "source": { "type": "git", "url": "https://github.com/maennchen/ZipStream-PHP.git", - "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58" + "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58", - "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58", + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f", + "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f", "shasum": "" }, "require": { "myclabs/php-enum": "^1.5", - "php": ">= 7.1", + "php": "^7.4 || ^8.0", "psr/http-message": "^1.0", "symfony/polyfill-mbstring": "^1.0" }, "require-dev": { "ext-zip": "*", - "guzzlehttp/guzzle": ">= 6.3", + "friendsofphp/php-cs-fixer": "^3.9", + "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0", "mikey179/vfsstream": "^1.6", - "phpunit/phpunit": ">= 7.5" + "php-coveralls/php-coveralls": "^2.4", + "phpunit/phpunit": "^8.5.8 || ^9.4.2", + "vimeo/psalm": "^4.1" }, "type": "library", "autoload": { @@ -3207,28 +3482,32 @@ ], "support": { "issues": "https://github.com/maennchen/ZipStream-PHP/issues", - "source": "https://github.com/maennchen/ZipStream-PHP/tree/master" + "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6" }, "funding": [ + { + "url": "https://github.com/maennchen", + "type": "github" + }, { "url": "https://opencollective.com/zipstream", "type": "open_collective" } ], - "time": "2020-05-30T13:11:16+00:00" + "time": "2022-11-25T18:57:19+00:00" }, { "name": "markbaker/complex", - "version": "2.0.2", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/MarkBaker/PHPComplex.git", - "reference": "d18272926d58065140314c01e18ec3dd7ae854ea" + "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/d18272926d58065140314c01e18ec3dd7ae854ea", - "reference": "d18272926d58065140314c01e18ec3dd7ae854ea", + "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/ab8bc271e404909db09ff2d5ffa1e538085c0f22", + "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22", "shasum": "" }, "require": { @@ -3244,51 +3523,7 @@ "autoload": { "psr-4": { "Complex\\": "classes/src/" - }, - "files": [ - "classes/src/functions/abs.php", - "classes/src/functions/acos.php", - "classes/src/functions/acosh.php", - "classes/src/functions/acot.php", - "classes/src/functions/acoth.php", - "classes/src/functions/acsc.php", - "classes/src/functions/acsch.php", - "classes/src/functions/argument.php", - "classes/src/functions/asec.php", - "classes/src/functions/asech.php", - "classes/src/functions/asin.php", - "classes/src/functions/asinh.php", - "classes/src/functions/atan.php", - "classes/src/functions/atanh.php", - "classes/src/functions/conjugate.php", - "classes/src/functions/cos.php", - "classes/src/functions/cosh.php", - "classes/src/functions/cot.php", - "classes/src/functions/coth.php", - "classes/src/functions/csc.php", - "classes/src/functions/csch.php", - "classes/src/functions/exp.php", - "classes/src/functions/inverse.php", - "classes/src/functions/ln.php", - "classes/src/functions/log2.php", - "classes/src/functions/log10.php", - "classes/src/functions/negative.php", - "classes/src/functions/pow.php", - "classes/src/functions/rho.php", - "classes/src/functions/sec.php", - "classes/src/functions/sech.php", - "classes/src/functions/sin.php", - "classes/src/functions/sinh.php", - "classes/src/functions/sqrt.php", - "classes/src/functions/tan.php", - "classes/src/functions/tanh.php", - "classes/src/functions/theta.php", - "classes/src/operations/add.php", - "classes/src/operations/subtract.php", - "classes/src/operations/multiply.php", - "classes/src/operations/divideby.php", - "classes/src/operations/divideinto.php" - ] + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3308,22 +3543,22 @@ ], "support": { "issues": "https://github.com/MarkBaker/PHPComplex/issues", - "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.2" + "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.1" }, - "time": "2021-05-24T10:53:30+00:00" + "time": "2021-06-29T15:32:53+00:00" }, { "name": "markbaker/matrix", - "version": "2.1.3", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/MarkBaker/PHPMatrix.git", - "reference": "174395a901b5ba0925f1d790fa91bab531074b61" + "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61", - "reference": "174395a901b5ba0925f1d790fa91bab531074b61", + "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/c66aefcafb4f6c269510e9ac46b82619a904c576", + "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576", "shasum": "" }, "require": { @@ -3343,25 +3578,7 @@ "autoload": { "psr-4": { "Matrix\\": "classes/src/" - }, - "files": [ - "classes/src/Functions/adjoint.php", - "classes/src/Functions/antidiagonal.php", - "classes/src/Functions/cofactors.php", - "classes/src/Functions/determinant.php", - "classes/src/Functions/diagonal.php", - "classes/src/Functions/identity.php", - "classes/src/Functions/inverse.php", - "classes/src/Functions/minors.php", - "classes/src/Functions/trace.php", - "classes/src/Functions/transpose.php", - "classes/src/Operations/add.php", - "classes/src/Operations/directsum.php", - "classes/src/Operations/subtract.php", - "classes/src/Operations/multiply.php", - "classes/src/Operations/divideby.php", - "classes/src/Operations/divideinto.php" - ] + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3382,22 +3599,22 @@ ], "support": { "issues": "https://github.com/MarkBaker/PHPMatrix/issues", - "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3" + "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.0" }, - "time": "2021-05-25T15:42:17+00:00" + "time": "2021-07-01T19:01:15+00:00" }, { "name": "meilisearch/meilisearch-php", - "version": "v0.18.2", + "version": "v0.18.3", "source": { "type": "git", "url": "https://github.com/meilisearch/meilisearch-php.git", - "reference": "f25ee49b658f407af3d3f1f9a402997e7974b6bb" + "reference": "8d649236dde23292d2f4b637dc3f71d1d56437f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/meilisearch/meilisearch-php/zipball/f25ee49b658f407af3d3f1f9a402997e7974b6bb", - "reference": "f25ee49b658f407af3d3f1f9a402997e7974b6bb", + "url": "https://api.github.com/repos/meilisearch/meilisearch-php/zipball/8d649236dde23292d2f4b637dc3f71d1d56437f5", + "reference": "8d649236dde23292d2f4b637dc3f71d1d56437f5", "shasum": "" }, "require": { @@ -3449,22 +3666,22 @@ ], "support": { "issues": "https://github.com/meilisearch/meilisearch-php/issues", - "source": "https://github.com/meilisearch/meilisearch-php/tree/v0.18.2" + "source": "https://github.com/meilisearch/meilisearch-php/tree/v0.18.3" }, - "time": "2021-06-01T11:43:22+00:00" + "time": "2021-06-30T14:17:44+00:00" }, { "name": "mobiledetect/mobiledetectlib", - "version": "2.8.37", + "version": "2.8.41", "source": { "type": "git", "url": "https://github.com/serbanghita/Mobile-Detect.git", - "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7" + "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/9841e3c46f5bd0739b53aed8ac677fa712943df7", - "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7", + "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1", + "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1", "shasum": "" }, "require": { @@ -3475,12 +3692,12 @@ }, "type": "library", "autoload": { - "classmap": [ - "Mobile_Detect.php" - ], "psr-0": { "Detection": "namespaced/" - } + }, + "classmap": [ + "Mobile_Detect.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3505,136 +3722,64 @@ ], "support": { "issues": "https://github.com/serbanghita/Mobile-Detect/issues", - "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.37" + "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.41" }, - "funding": [ - { - "url": "https://github.com/serbanghita", - "type": "github" - } - ], - "time": "2021-02-19T21:22:57+00:00" - }, - { - "name": "mockery/mockery", - "version": "1.4.3", - "source": { - "type": "git", - "url": "https://github.com/mockery/mockery.git", - "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea", - "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea", - "shasum": "" - }, - "require": { - "hamcrest/hamcrest-php": "^2.0.1", - "lib-pcre": ">=7.0", - "php": "^7.3 || ^8.0" - }, - "conflict": { - "phpunit/phpunit": "<8.0" - }, - "require-dev": { - "phpunit/phpunit": "^8.5 || ^9.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4.x-dev" - } - }, - "autoload": { - "psr-0": { - "Mockery": "library/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Pádraic Brady", - "email": "padraic.brady@gmail.com", - "homepage": "http://blog.astrumfutura.com" - }, - { - "name": "Dave Marshall", - "email": "dave.marshall@atstsolutions.co.uk", - "homepage": "http://davedevelopment.co.uk" - } - ], - "description": "Mockery is a simple yet flexible PHP mock object framework", - "homepage": "https://github.com/mockery/mockery", - "keywords": [ - "BDD", - "TDD", - "library", - "mock", - "mock objects", - "mockery", - "stub", - "test", - "test double", - "testing" - ], - "support": { - "issues": "https://github.com/mockery/mockery/issues", - "source": "https://github.com/mockery/mockery/tree/1.4.3" - }, - "time": "2021-02-24T09:51:49+00:00" + "time": "2022-11-08T18:31:26+00:00" }, { "name": "monolog/monolog", - "version": "2.2.0", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084" + "reference": "720488632c590286b88b80e62aa3d3d551ad4a50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084", - "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50", + "reference": "720488632c590286b88b80e62aa3d3d551ad4a50", "shasum": "" }, "require": { "php": ">=7.2", - "psr/log": "^1.0.1" + "psr/log": "^1.0.1 || ^2.0 || ^3.0" }, "provide": { - "psr/log-implementation": "1.0.0" + "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" }, "require-dev": { "aws/aws-sdk-php": "^2.4.9 || ^3.0", "doctrine/couchdb": "~1.0@dev", - "elasticsearch/elasticsearch": "^7", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", "graylog2/gelf-php": "^1.4.2", + "guzzlehttp/guzzle": "^7.4", + "guzzlehttp/psr7": "^2.2", "mongodb/mongodb": "^1.8", - "php-amqplib/php-amqplib": "~2.4", - "php-console/php-console": "^3.1.3", - "phpspec/prophecy": "^1.6.1", - "phpstan/phpstan": "^0.12.59", - "phpunit/phpunit": "^8.5", - "predis/predis": "^1.1", - "rollbar/rollbar": "^1.3", - "ruflin/elastica": ">=0.90 <7.0.1", - "swiftmailer/swiftmailer": "^5.3|^6.0" + "php-amqplib/php-amqplib": "~2.4 || ^3", + "phpspec/prophecy": "^1.15", + "phpstan/phpstan": "^0.12.91", + "phpunit/phpunit": "^8.5.14", + "predis/predis": "^1.1 || ^2.0", + "rollbar/rollbar": "^1.3 || ^2 || ^3", + "ruflin/elastica": "^7", + "swiftmailer/swiftmailer": "^5.3|^6.0", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" }, "suggest": { "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", "doctrine/couchdb": "Allow sending log messages to a CouchDB server", "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", "ext-mbstring": "Allow to work properly with unicode symbols", "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", - "php-console/php-console": "Allow sending log messages to Google Chrome", "rollbar/rollbar": "Allow sending log messages to Rollbar", "ruflin/elastica": "Allow sending log messages to an Elastic Search server" }, @@ -3669,7 +3814,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/2.2.0" + "source": "https://github.com/Seldaek/monolog/tree/2.8.0" }, "funding": [ { @@ -3681,20 +3826,20 @@ "type": "tidelift" } ], - "time": "2020-12-14T13:15:25+00:00" + "time": "2022-07-24T11:55:47+00:00" }, { "name": "myclabs/php-enum", - "version": "1.8.0", + "version": "1.8.4", "source": { "type": "git", "url": "https://github.com/myclabs/php-enum.git", - "reference": "46cf3d8498b095bd33727b13fd5707263af99421" + "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421", - "reference": "46cf3d8498b095bd33727b13fd5707263af99421", + "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483", + "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483", "shasum": "" }, "require": { @@ -3704,13 +3849,16 @@ "require-dev": { "phpunit/phpunit": "^9.5", "squizlabs/php_codesniffer": "1.*", - "vimeo/psalm": "^4.5.1" + "vimeo/psalm": "^4.6.2" }, "type": "library", "autoload": { "psr-4": { "MyCLabs\\Enum\\": "src/" - } + }, + "classmap": [ + "stubs/Stringable.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3729,7 +3877,7 @@ ], "support": { "issues": "https://github.com/myclabs/php-enum/issues", - "source": "https://github.com/myclabs/php-enum/tree/1.8.0" + "source": "https://github.com/myclabs/php-enum/tree/1.8.4" }, "funding": [ { @@ -3741,36 +3889,40 @@ "type": "tidelift" } ], - "time": "2021-02-15T16:11:48+00:00" + "time": "2022-08-04T09:53:51+00:00" }, { "name": "nesbot/carbon", - "version": "2.48.1", + "version": "2.63.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "8d1f50f1436fb4b05e7127360483dd9c6e73da16" + "reference": "ad35dd71a6a212b98e4b87e97389b6fa85f0e347" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/8d1f50f1436fb4b05e7127360483dd9c6e73da16", - "reference": "8d1f50f1436fb4b05e7127360483dd9c6e73da16", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/ad35dd71a6a212b98e4b87e97389b6fa85f0e347", + "reference": "ad35dd71a6a212b98e4b87e97389b6fa85f0e347", "shasum": "" }, "require": { "ext-json": "*", "php": "^7.1.8 || ^8.0", "symfony/polyfill-mbstring": "^1.0", - "symfony/translation": "^3.4 || ^4.0 || ^5.0" + "symfony/polyfill-php80": "^1.16", + "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" }, "require-dev": { + "doctrine/dbal": "^2.0 || ^3.0", "doctrine/orm": "^2.7", - "friendsofphp/php-cs-fixer": "^2.14 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.0", "kylekatarnls/multi-tester": "^2.0", + "ondrejmirtes/better-reflection": "*", "phpmd/phpmd": "^2.9", "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12.54", - "phpunit/phpunit": "^7.5.20 || ^8.5.14", + "phpstan/phpstan": "^0.12.99 || ^1.7.14", + "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", + "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", "squizlabs/php_codesniffer": "^3.4" }, "bin": [ @@ -3779,8 +3931,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev", - "dev-3.x": "3.x-dev" + "dev-3.x": "3.x-dev", + "dev-master": "2.x-dev" }, "laravel": { "providers": [ @@ -3806,48 +3958,200 @@ { "name": "Brian Nesbitt", "email": "brian@nesbot.com", - "homepage": "http://nesbot.com" + "homepage": "https://markido.com" }, { "name": "kylekatarnls", - "homepage": "http://github.com/kylekatarnls" + "homepage": "https://github.com/kylekatarnls" } ], "description": "An API extension for DateTime that supports 281 different languages.", - "homepage": "http://carbon.nesbot.com", + "homepage": "https://carbon.nesbot.com", "keywords": [ "date", "datetime", "time" ], "support": { + "docs": "https://carbon.nesbot.com/docs", "issues": "https://github.com/briannesbitt/Carbon/issues", "source": "https://github.com/briannesbitt/Carbon" }, "funding": [ { - "url": "https://opencollective.com/Carbon", - "type": "open_collective" + "url": "https://github.com/sponsors/kylekatarnls", + "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "url": "https://opencollective.com/Carbon#sponsor", + "type": "opencollective" + }, + { + "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", "type": "tidelift" } ], - "time": "2021-05-26T22:08:38+00:00" + "time": "2022-10-30T18:34:28+00:00" }, { - "name": "nikic/php-parser", - "version": "v4.10.5", + "name": "nette/schema", + "version": "v1.2.3", "source": { "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f" + "url": "https://github.com/nette/schema.git", + "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f", - "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f", + "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", + "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", + "shasum": "" + }, + "require": { + "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", + "php": ">=7.1 <8.3" + }, + "require-dev": { + "nette/tester": "^2.3 || ^2.4", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.2.3" + }, + "time": "2022-10-13T01:24:26+00:00" + }, + { + "name": "nette/utils", + "version": "v3.2.8", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/02a54c4c872b99e4ec05c4aec54b5a06eb0f6368", + "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368", + "shasum": "" + }, + "require": { + "php": ">=7.2 <8.3" + }, + "conflict": { + "nette/di": "<3.0.6" + }, + "require-dev": { + "nette/tester": "~2.0", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.3" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", + "ext-xml": "to use Strings::length() etc. when mbstring is not available" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v3.2.8" + }, + "time": "2022-09-12T23:36:20+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v4.15.2", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc", + "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc", "shasum": "" }, "require": { @@ -3888,22 +4192,22 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2" }, - "time": "2021-05-03T19:11:20+00:00" + "time": "2022-11-12T15:38:23+00:00" }, { "name": "opis/closure", - "version": "3.6.2", + "version": "3.6.3", "source": { "type": "git", "url": "https://github.com/opis/closure.git", - "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6" + "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6", - "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6", + "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad", + "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad", "shasum": "" }, "require": { @@ -3920,12 +4224,12 @@ } }, "autoload": { - "psr-4": { - "Opis\\Closure\\": "src/" - }, "files": [ "functions.php" - ] + ], + "psr-4": { + "Opis\\Closure\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3953,22 +4257,22 @@ ], "support": { "issues": "https://github.com/opis/closure/issues", - "source": "https://github.com/opis/closure/tree/3.6.2" + "source": "https://github.com/opis/closure/tree/3.6.3" }, - "time": "2021-04-09T13:42:10+00:00" + "time": "2022-01-27T09:35:39+00:00" }, { "name": "paragonie/constant_time_encoding", - "version": "v2.4.0", + "version": "v2.6.3", "source": { "type": "git", "url": "https://github.com/paragonie/constant_time_encoding.git", - "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c" + "reference": "58c3f47f650c94ec05a151692652a868995d2938" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c", - "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c", + "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938", + "reference": "58c3f47f650c94ec05a151692652a868995d2938", "shasum": "" }, "require": { @@ -4022,20 +4326,20 @@ "issues": "https://github.com/paragonie/constant_time_encoding/issues", "source": "https://github.com/paragonie/constant_time_encoding" }, - "time": "2020-12-06T15:14:20+00:00" + "time": "2022-06-14T06:56:20+00:00" }, { "name": "php-http/client-common", - "version": "2.3.0", + "version": "2.6.0", "source": { "type": "git", "url": "https://github.com/php-http/client-common.git", - "reference": "e37e46c610c87519753135fb893111798c69076a" + "reference": "45db684cd4e186dcdc2b9c06b22970fe123796c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/client-common/zipball/e37e46c610c87519753135fb893111798c69076a", - "reference": "e37e46c610c87519753135fb893111798c69076a", + "url": "https://api.github.com/repos/php-http/client-common/zipball/45db684cd4e186dcdc2b9c06b22970fe123796c0", + "reference": "45db684cd4e186dcdc2b9c06b22970fe123796c0", "shasum": "" }, "require": { @@ -4046,14 +4350,14 @@ "psr/http-client": "^1.0", "psr/http-factory": "^1.0", "psr/http-message": "^1.0", - "symfony/options-resolver": "^2.6 || ^3.4.20 || ~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0", + "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0", "symfony/polyfill-php80": "^1.17" }, "require-dev": { "doctrine/instantiator": "^1.1", "guzzlehttp/psr7": "^1.4", "nyholm/psr7": "^1.2", - "phpspec/phpspec": "^5.1 || ^6.0", + "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1", "phpspec/prophecy": "^1.10.2", "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3" }, @@ -4095,22 +4399,22 @@ ], "support": { "issues": "https://github.com/php-http/client-common/issues", - "source": "https://github.com/php-http/client-common/tree/2.3.0" + "source": "https://github.com/php-http/client-common/tree/2.6.0" }, - "time": "2020-07-21T10:04:13+00:00" + "time": "2022-09-29T09:59:43+00:00" }, { "name": "php-http/discovery", - "version": "1.14.0", + "version": "1.14.3", "source": { "type": "git", "url": "https://github.com/php-http/discovery.git", - "reference": "778f722e29250c1fac0bbdef2c122fa5d038c9eb" + "reference": "31d8ee46d0215108df16a8527c7438e96a4d7735" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/discovery/zipball/778f722e29250c1fac0bbdef2c122fa5d038c9eb", - "reference": "778f722e29250c1fac0bbdef2c122fa5d038c9eb", + "url": "https://api.github.com/repos/php-http/discovery/zipball/31d8ee46d0215108df16a8527c7438e96a4d7735", + "reference": "31d8ee46d0215108df16a8527c7438e96a4d7735", "shasum": "" }, "require": { @@ -4123,8 +4427,7 @@ "graham-campbell/phpspec-skip-example-extension": "^5.0", "php-http/httplug": "^1.0 || ^2.0", "php-http/message-factory": "^1.0", - "phpspec/phpspec": "^5.1 || ^6.1", - "puli/composer-plugin": "1.0.0-beta10" + "phpspec/phpspec": "^5.1 || ^6.1" }, "suggest": { "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories" @@ -4163,22 +4466,22 @@ ], "support": { "issues": "https://github.com/php-http/discovery/issues", - "source": "https://github.com/php-http/discovery/tree/1.14.0" + "source": "https://github.com/php-http/discovery/tree/1.14.3" }, - "time": "2021-06-01T14:30:21+00:00" + "time": "2022-07-11T14:04:40+00:00" }, { "name": "php-http/httplug", - "version": "2.2.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/php-http/httplug.git", - "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9" + "reference": "f640739f80dfa1152533976e3c112477f69274eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/httplug/zipball/191a0a1b41ed026b717421931f8d3bd2514ffbf9", - "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9", + "url": "https://api.github.com/repos/php-http/httplug/zipball/f640739f80dfa1152533976e3c112477f69274eb", + "reference": "f640739f80dfa1152533976e3c112477f69274eb", "shasum": "" }, "require": { @@ -4225,22 +4528,22 @@ ], "support": { "issues": "https://github.com/php-http/httplug/issues", - "source": "https://github.com/php-http/httplug/tree/master" + "source": "https://github.com/php-http/httplug/tree/2.3.0" }, - "time": "2020-07-13T15:43:23+00:00" + "time": "2022-02-21T09:52:22+00:00" }, { "name": "php-http/message", - "version": "1.11.1", + "version": "1.13.0", "source": { "type": "git", "url": "https://github.com/php-http/message.git", - "reference": "887734d9c515ad9a564f6581a682fff87a6253cc" + "reference": "7886e647a30a966a1a8d1dad1845b71ca8678361" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/message/zipball/887734d9c515ad9a564f6581a682fff87a6253cc", - "reference": "887734d9c515ad9a564f6581a682fff87a6253cc", + "url": "https://api.github.com/repos/php-http/message/zipball/7886e647a30a966a1a8d1dad1845b71ca8678361", + "reference": "7886e647a30a966a1a8d1dad1845b71ca8678361", "shasum": "" }, "require": { @@ -4257,7 +4560,7 @@ "ext-zlib": "*", "guzzlehttp/psr7": "^1.0", "laminas/laminas-diactoros": "^2.0", - "phpspec/phpspec": "^5.1 || ^6.3", + "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1", "slim/slim": "^3.0" }, "suggest": { @@ -4273,12 +4576,12 @@ } }, "autoload": { - "psr-4": { - "Http\\Message\\": "src/" - }, "files": [ "src/filters.php" - ] + ], + "psr-4": { + "Http\\Message\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -4299,9 +4602,9 @@ ], "support": { "issues": "https://github.com/php-http/message/issues", - "source": "https://github.com/php-http/message/tree/1.11.1" + "source": "https://github.com/php-http/message/tree/1.13.0" }, - "time": "2021-05-24T18:11:08+00:00" + "time": "2022-02-11T13:41:14+00:00" }, { "name": "php-http/message-factory", @@ -4416,16 +4719,16 @@ }, { "name": "phpoffice/phpspreadsheet", - "version": "1.16.0", + "version": "1.25.2", "source": { "type": "git", "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", - "reference": "76d4323b85129d0c368149c831a07a3e258b2b50" + "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50", - "reference": "76d4323b85129d0c368149c831a07a3e258b2b50", + "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a317a09e7def49852400a4b3eca4a4b0790ceeb5", + "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5", "shasum": "" }, "require": { @@ -4442,30 +4745,34 @@ "ext-xmlwriter": "*", "ext-zip": "*", "ext-zlib": "*", - "ezyang/htmlpurifier": "^4.13", + "ezyang/htmlpurifier": "^4.15", "maennchen/zipstream-php": "^2.1", - "markbaker/complex": "^1.5||^2.0", - "markbaker/matrix": "^1.2||^2.0", - "php": "^7.2||^8.0", + "markbaker/complex": "^3.0", + "markbaker/matrix": "^3.0", + "php": "^7.3 || ^8.0", "psr/http-client": "^1.0", "psr/http-factory": "^1.0", - "psr/simple-cache": "^1.0" + "psr/simple-cache": "^1.0 || ^2.0 || ^3.0" }, "require-dev": { - "dompdf/dompdf": "^0.8.5", - "friendsofphp/php-cs-fixer": "^2.16", - "jpgraph/jpgraph": "^4.0", - "mpdf/mpdf": "^8.0", + "dealerdirect/phpcodesniffer-composer-installer": "dev-master", + "dompdf/dompdf": "^1.0 || ^2.0", + "friendsofphp/php-cs-fixer": "^3.2", + "mitoteam/jpgraph": "10.2.4", + "mpdf/mpdf": "8.1.1", "phpcompatibility/php-compatibility": "^9.3", - "phpunit/phpunit": "^8.5||^9.3", - "squizlabs/php_codesniffer": "^3.5", - "tecnickcom/tcpdf": "^6.3" + "phpstan/phpstan": "^1.1", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^8.5 || ^9.0", + "squizlabs/php_codesniffer": "^3.7", + "tecnickcom/tcpdf": "6.5" }, "suggest": { - "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)", - "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers", + "dompdf/dompdf": "Option for rendering PDF with PDF Writer", + "ext-intl": "PHP Internationalization Functions", + "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers", "mpdf/mpdf": "Option for rendering PDF with PDF Writer", - "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)" + "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer" }, "type": "library", "autoload": { @@ -4511,35 +4818,39 @@ ], "support": { "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", - "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.0" + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.25.2" }, - "time": "2020-12-31T18:03:49+00:00" + "time": "2022-09-25T17:21:01+00:00" }, { "name": "phpoption/phpoption", - "version": "1.7.5", + "version": "1.9.0", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525" + "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525", - "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab", + "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab", "shasum": "" }, "require": { - "php": "^5.5.9 || ^7.0 || ^8.0" + "php": "^7.2.5 || ^8.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", - "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0" + "bamarni/composer-bin-plugin": "^1.8", + "phpunit/phpunit": "^8.5.28 || ^9.5.21" }, "type": "library", "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, "branch-alias": { - "dev-master": "1.7-dev" + "dev-master": "1.9-dev" } }, "autoload": { @@ -4554,11 +4865,13 @@ "authors": [ { "name": "Johannes M. Schmitt", - "email": "schmittjoh@gmail.com" + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" }, { "name": "Graham Campbell", - "email": "graham@alt-three.com" + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" } ], "description": "Option Type for PHP", @@ -4570,7 +4883,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.7.5" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.0" }, "funding": [ { @@ -4582,20 +4895,20 @@ "type": "tidelift" } ], - "time": "2020-07-20T17:29:33+00:00" + "time": "2022-07-30T15:51:26+00:00" }, { "name": "pragmarx/google2fa", - "version": "8.0.0", + "version": "v8.0.1", "source": { "type": "git", "url": "https://github.com/antonioribeiro/google2fa.git", - "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b" + "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/26c4c5cf30a2844ba121760fd7301f8ad240100b", - "reference": "26c4c5cf30a2844ba121760fd7301f8ad240100b", + "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/80c3d801b31fe165f8fe99ea085e0a37834e1be3", + "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3", "shasum": "" }, "require": { @@ -4632,9 +4945,9 @@ ], "support": { "issues": "https://github.com/antonioribeiro/google2fa/issues", - "source": "https://github.com/antonioribeiro/google2fa/tree/8.0.0" + "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.1" }, - "time": "2020-04-05T10:47:18+00:00" + "time": "2022-06-13T21:57:56+00:00" }, { "name": "prologue/alerts", @@ -4707,21 +5020,70 @@ "time": "2020-09-08T14:24:39+00:00" }, { - "name": "psr/container", - "version": "1.1.1", + "name": "psr/cache", + "version": "3.0.0", "source": { "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf" + "url": "https://github.com/php-fig/cache.git", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf", - "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf", + "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", "shasum": "" }, "require": { - "php": ">=7.2.0" + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Cache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for caching libraries", + "keywords": [ + "cache", + "psr", + "psr-6" + ], + "support": { + "source": "https://github.com/php-fig/cache/tree/3.0.0" + }, + "time": "2021-02-03T23:26:27+00:00" + }, + { + "name": "psr/container", + "version": "1.1.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "513e0666f7216c7459170d56df27dfcefe1689ea" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea", + "reference": "513e0666f7216c7459170d56df27dfcefe1689ea", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" }, "type": "library", "autoload": { @@ -4750,9 +5112,9 @@ ], "support": { "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/1.1.1" + "source": "https://github.com/php-fig/container/tree/1.1.2" }, - "time": "2021-03-05T17:36:06+00:00" + "time": "2021-11-05T16:50:12+00:00" }, { "name": "psr/event-dispatcher", @@ -4966,30 +5328,30 @@ }, { "name": "psr/log", - "version": "1.1.4", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "d49695b909c3b7628b6289db5479a1c204601f11" + "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", - "reference": "d49695b909c3b7628b6289db5479a1c204601f11", + "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376", + "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=8.0.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Log\\": "Psr/Log/" + "Psr\\Log\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -5010,9 +5372,9 @@ "psr-3" ], "support": { - "source": "https://github.com/php-fig/log/tree/1.1.4" + "source": "https://github.com/php-fig/log/tree/2.0.0" }, - "time": "2021-05-03T11:20:27+00:00" + "time": "2021-07-14T16:41:46+00:00" }, { "name": "psr/simple-cache", @@ -5067,36 +5429,37 @@ }, { "name": "psy/psysh", - "version": "v0.10.8", + "version": "v0.11.9", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3" + "reference": "1acec99d6684a54ff92f8b548a4e41b566963778" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3", - "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1acec99d6684a54ff92f8b548a4e41b566963778", + "reference": "1acec99d6684a54ff92f8b548a4e41b566963778", "shasum": "" }, "require": { "ext-json": "*", "ext-tokenizer": "*", - "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3", - "php": "^8.0 || ^7.0 || ^5.5.9", - "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10", - "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7" + "nikic/php-parser": "^4.0 || ^3.1", + "php": "^8.0 || ^7.0.8", + "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.2", - "hoa/console": "3.17.*" + "bamarni/composer-bin-plugin": "^1.2" }, "suggest": { "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", "ext-pdo-sqlite": "The doc command requires SQLite to work.", "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", - "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.", - "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit." + "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." }, "bin": [ "bin/psysh" @@ -5104,7 +5467,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "0.10.x-dev" + "dev-main": "0.11.x-dev" } }, "autoload": { @@ -5136,9 +5499,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.10.8" + "source": "https://github.com/bobthecow/psysh/tree/v0.11.9" }, - "time": "2021-04-10T16:23:39+00:00" + "time": "2022-11-06T15:29:46+00:00" }, { "name": "ralouphie/getallheaders", @@ -5186,20 +5549,21 @@ }, { "name": "ramsey/collection", - "version": "1.1.3", + "version": "1.2.2", "source": { "type": "git", "url": "https://github.com/ramsey/collection.git", - "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1" + "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1", - "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1", + "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a", + "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a", "shasum": "" }, "require": { - "php": "^7.2 || ^8" + "php": "^7.3 || ^8", + "symfony/polyfill-php81": "^1.23" }, "require-dev": { "captainhook/captainhook": "^5.3", @@ -5209,6 +5573,7 @@ "hamcrest/hamcrest-php": "^2", "jangregor/phpstan-prophecy": "^0.8", "mockery/mockery": "^1.3", + "phpspec/prophecy-phpunit": "^2.0", "phpstan/extension-installer": "^1", "phpstan/phpstan": "^0.12.32", "phpstan/phpstan-mockery": "^0.12.5", @@ -5236,7 +5601,7 @@ "homepage": "https://benramsey.com" } ], - "description": "A PHP 7.2+ library for representing and manipulating collections.", + "description": "A PHP library for representing and manipulating collections.", "keywords": [ "array", "collection", @@ -5247,7 +5612,7 @@ ], "support": { "issues": "https://github.com/ramsey/collection/issues", - "source": "https://github.com/ramsey/collection/tree/1.1.3" + "source": "https://github.com/ramsey/collection/tree/1.2.2" }, "funding": [ { @@ -5259,57 +5624,55 @@ "type": "tidelift" } ], - "time": "2021-01-21T17:40:04+00:00" + "time": "2021-10-10T03:01:02+00:00" }, { "name": "ramsey/uuid", - "version": "4.1.1", + "version": "4.6.0", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "cd4032040a750077205918c86049aa0f43d22947" + "reference": "ad63bc700e7d021039e30ce464eba384c4a1d40f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947", - "reference": "cd4032040a750077205918c86049aa0f43d22947", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/ad63bc700e7d021039e30ce464eba384c4a1d40f", + "reference": "ad63bc700e7d021039e30ce464eba384c4a1d40f", "shasum": "" }, "require": { - "brick/math": "^0.8 || ^0.9", + "brick/math": "^0.8.8 || ^0.9 || ^0.10", "ext-json": "*", - "php": "^7.2 || ^8", - "ramsey/collection": "^1.0", - "symfony/polyfill-ctype": "^1.8" + "php": "^8.0", + "ramsey/collection": "^1.0" }, "replace": { "rhumsaa/uuid": "self.version" }, "require-dev": { - "codeception/aspect-mock": "^3", - "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0", + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", "doctrine/annotations": "^1.8", - "goaop/framework": "^2", + "ergebnis/composer-normalize": "^2.15", "mockery/mockery": "^1.3", - "moontoast/math": "^1.1", "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", "php-mock/php-mock-mockery": "^1.3", - "php-mock/php-mock-phpunit": "^2.5", "php-parallel-lint/php-parallel-lint": "^1.1", - "phpbench/phpbench": "^0.17.1", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-mockery": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", - "phpunit/phpunit": "^8.5", - "psy/psysh": "^0.10.0", - "slevomat/coding-standard": "^6.0", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^8.5 || ^9", + "ramsey/composer-repl": "^1.4", + "slevomat/coding-standard": "^8.4", "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "3.9.4" + "vimeo/psalm": "^4.9" }, "suggest": { "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", - "ext-ctype": "Enables faster processing of character classification using ctype functions.", "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", @@ -5317,24 +5680,23 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "4.x-dev" + "captainhook": { + "force-install": true } }, "autoload": { - "psr-4": { - "Ramsey\\Uuid\\": "src/" - }, "files": [ "src/functions.php" - ] + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", - "homepage": "https://github.com/ramsey/uuid", "keywords": [ "guid", "identifier", @@ -5342,46 +5704,48 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "rss": "https://github.com/ramsey/uuid/releases.atom", - "source": "https://github.com/ramsey/uuid" + "source": "https://github.com/ramsey/uuid/tree/4.6.0" }, "funding": [ { "url": "https://github.com/ramsey", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" } ], - "time": "2020-08-18T17:17:46+00:00" + "time": "2022-11-05T23:03:38+00:00" }, { "name": "spatie/laravel-package-tools", - "version": "1.9.0", + "version": "1.12.1", "source": { "type": "git", "url": "https://github.com/spatie/laravel-package-tools.git", - "reference": "cf4c4cec220575e2864c6082842d76822421f1b1" + "reference": "09f80fa240d44fafb1c70657c74ee44ffa929357" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/cf4c4cec220575e2864c6082842d76822421f1b1", - "reference": "cf4c4cec220575e2864c6082842d76822421f1b1", + "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/09f80fa240d44fafb1c70657c74ee44ffa929357", + "reference": "09f80fa240d44fafb1c70657c74ee44ffa929357", "shasum": "" }, "require": { - "illuminate/contracts": "^7.0|^8.0", - "mockery/mockery": "^1.4", + "illuminate/contracts": "^7.0|^8.0|^9.0", "php": "^7.4|^8.0" }, "require-dev": { - "orchestra/testbench": "^5.0|^6.0", - "phpunit/phpunit": "^9.3", + "mockery/mockery": "^1.4", + "orchestra/testbench": "^5.0|^6.23|^7.0", + "phpunit/phpunit": "^9.4", "spatie/test-time": "^1.2" }, "type": "library", "autoload": { "psr-4": { - "Spatie\\LaravelPackageTools\\": "src", - "Spatie\\LaravelPackageTools\\Database\\Factories\\": "database/factories" + "Spatie\\LaravelPackageTools\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -5403,7 +5767,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-package-tools/issues", - "source": "https://github.com/spatie/laravel-package-tools/tree/1.9.0" + "source": "https://github.com/spatie/laravel-package-tools/tree/1.12.1" }, "funding": [ { @@ -5411,31 +5775,31 @@ "type": "github" } ], - "time": "2021-05-23T15:12:33+00:00" + "time": "2022-06-28T14:29:26+00:00" }, { "name": "spatie/laravel-translatable", - "version": "5.0.0", + "version": "5.2.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-translatable.git", - "reference": "dee1a11a7bff406976337d4cae66f53816637e73" + "reference": "4567de39c483f7e43dddab9b8cb657796b139fd2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-translatable/zipball/dee1a11a7bff406976337d4cae66f53816637e73", - "reference": "dee1a11a7bff406976337d4cae66f53816637e73", + "url": "https://api.github.com/repos/spatie/laravel-translatable/zipball/4567de39c483f7e43dddab9b8cb657796b139fd2", + "reference": "4567de39c483f7e43dddab9b8cb657796b139fd2", "shasum": "" }, "require": { - "illuminate/database": "^7.0|^8.0", - "illuminate/support": "^7.0|^8.0", + "illuminate/database": "^8.0|^9.0", + "illuminate/support": "^8.0|^9.0", "php": "^8.0", - "spatie/laravel-package-tools": "^1.6" + "spatie/laravel-package-tools": "^1.9" }, "require-dev": { "mockery/mockery": "^1.4", - "orchestra/testbench": "^5.0|^6.0" + "orchestra/testbench": "^6.23|^7.0" }, "type": "library", "extra": { @@ -5486,7 +5850,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-translatable/issues", - "source": "https://github.com/spatie/laravel-translatable/tree/5.0.0" + "source": "https://github.com/spatie/laravel-translatable/tree/5.2.0" }, "funding": [ { @@ -5494,24 +5858,24 @@ "type": "custom" } ], - "time": "2021-03-26T16:54:50+00:00" + "time": "2022-01-13T11:15:07+00:00" }, { "name": "spatie/valuestore", - "version": "1.2.5", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/spatie/valuestore.git", - "reference": "eafde51f0068bcbb605fdf589a952677ada74a33" + "reference": "85144129c7c4611c0e95ef9558cac20fba12cb48" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/valuestore/zipball/eafde51f0068bcbb605fdf589a952677ada74a33", - "reference": "eafde51f0068bcbb605fdf589a952677ada74a33", + "url": "https://api.github.com/repos/spatie/valuestore/zipball/85144129c7c4611c0e95ef9558cac20fba12cb48", + "reference": "85144129c7c4611c0e95ef9558cac20fba12cb48", "shasum": "" }, "require": { - "php": "^7.3|^8.0" + "php": "^8.0|^8.1" }, "require-dev": { "phpunit/phpunit": "^9.3" @@ -5549,7 +5913,7 @@ ], "support": { "issues": "https://github.com/spatie/valuestore/issues", - "source": "https://github.com/spatie/valuestore/tree/1.2.5" + "source": "https://github.com/spatie/valuestore/tree/1.3.1" }, "funding": [ { @@ -5561,20 +5925,20 @@ "type": "github" } ], - "time": "2020-11-30T16:21:03+00:00" + "time": "2021-12-03T16:51:45+00:00" }, { "name": "swiftmailer/swiftmailer", - "version": "v6.2.7", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/swiftmailer/swiftmailer.git", - "reference": "15f7faf8508e04471f666633addacf54c0ab5933" + "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933", - "reference": "15f7faf8508e04471f666633addacf54c0ab5933", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c", + "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c", "shasum": "" }, "require": { @@ -5586,7 +5950,7 @@ }, "require-dev": { "mockery/mockery": "^1.0", - "symfony/phpunit-bridge": "^4.4|^5.0" + "symfony/phpunit-bridge": "^4.4|^5.4" }, "suggest": { "ext-intl": "Needed to support internationalized email addresses" @@ -5624,7 +5988,7 @@ ], "support": { "issues": "https://github.com/swiftmailer/swiftmailer/issues", - "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7" + "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0" }, "funding": [ { @@ -5636,32 +6000,34 @@ "type": "tidelift" } ], - "time": "2021-03-09T12:30:35+00:00" + "abandoned": "symfony/mailer", + "time": "2021-10-18T15:26:12+00:00" }, { "name": "symfony/console", - "version": "v5.3.0", + "version": "v5.4.15", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "058553870f7809087fa80fa734704a21b9bcaeb2" + "reference": "ea59bb0edfaf9f28d18d8791410ee0355f317669" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/058553870f7809087fa80fa734704a21b9bcaeb2", - "reference": "058553870f7809087fa80fa734704a21b9bcaeb2", + "url": "https://api.github.com/repos/symfony/console/zipball/ea59bb0edfaf9f28d18d8791410ee0355f317669", + "reference": "ea59bb0edfaf9f28d18d8791410ee0355f317669", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", + "symfony/deprecation-contracts": "^2.1|^3", "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php73": "^1.8", - "symfony/polyfill-php80": "^1.15", - "symfony/service-contracts": "^1.1|^2", - "symfony/string": "^5.1" + "symfony/polyfill-php73": "^1.9", + "symfony/polyfill-php80": "^1.16", + "symfony/service-contracts": "^1.1|^2|^3", + "symfony/string": "^5.1|^6.0" }, "conflict": { + "psr/log": ">=3", "symfony/dependency-injection": "<4.4", "symfony/dotenv": "<5.1", "symfony/event-dispatcher": "<4.4", @@ -5669,16 +6035,16 @@ "symfony/process": "<4.4" }, "provide": { - "psr/log-implementation": "1.0" + "psr/log-implementation": "1.0|2.0" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "^4.4|^5.0", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/event-dispatcher": "^4.4|^5.0", - "symfony/lock": "^4.4|^5.0", - "symfony/process": "^4.4|^5.0", - "symfony/var-dumper": "^4.4|^5.0" + "psr/log": "^1|^2", + "symfony/config": "^4.4|^5.0|^6.0", + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/event-dispatcher": "^4.4|^5.0|^6.0", + "symfony/lock": "^4.4|^5.0|^6.0", + "symfony/process": "^4.4|^5.0|^6.0", + "symfony/var-dumper": "^4.4|^5.0|^6.0" }, "suggest": { "psr/log": "For using the console logger", @@ -5718,7 +6084,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.3.0" + "source": "https://github.com/symfony/console/tree/v5.4.15" }, "funding": [ { @@ -5734,24 +6100,24 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2022-10-26T21:41:52+00:00" }, { "name": "symfony/css-selector", - "version": "v5.3.0", + "version": "v6.0.11", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814" + "reference": "ab2746acddc4f03a7234c8441822ac5d5c63efe9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/fcd0b29a7a0b1bb5bfbedc6231583d77fea04814", - "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/ab2746acddc4f03a7234c8441822ac5d5c63efe9", + "reference": "ab2746acddc4f03a7234c8441822ac5d5c63efe9", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=8.0.2" }, "type": "library", "autoload": { @@ -5783,7 +6149,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v5.3.0" + "source": "https://github.com/symfony/css-selector/tree/v6.0.11" }, "funding": [ { @@ -5799,29 +6165,29 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:40:38+00:00" + "time": "2022-06-27T17:10:44+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v2.4.0", + "version": "v3.0.2", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627" + "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627", - "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c", + "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=8.0.2" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.4-dev" + "dev-main": "3.0-dev" }, "thanks": { "name": "symfony/contracts", @@ -5850,7 +6216,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2" }, "funding": [ { @@ -5866,33 +6232,35 @@ "type": "tidelift" } ], - "time": "2021-03-23T23:28:01+00:00" + "time": "2022-01-02T09:55:41+00:00" }, { "name": "symfony/error-handler", - "version": "v5.3.0", + "version": "v5.4.15", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2" + "reference": "539cf1428b8442303c6e876ad7bf5a7babd91091" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/0e6768b8c0dcef26df087df2bbbaa143867a59b2", - "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/539cf1428b8442303c6e876ad7bf5a7babd91091", + "reference": "539cf1428b8442303c6e876ad7bf5a7babd91091", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/log": "^1.0", - "symfony/polyfill-php80": "^1.15", - "symfony/var-dumper": "^4.4|^5.0" + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^4.4|^5.0|^6.0" }, "require-dev": { - "symfony/deprecation-contracts": "^2.1", - "symfony/http-kernel": "^4.4|^5.0", - "symfony/serializer": "^4.4|^5.0" + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/http-kernel": "^4.4|^5.0|^6.0", + "symfony/serializer": "^4.4|^5.0|^6.0" }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], "type": "library", "autoload": { "psr-4": { @@ -5919,7 +6287,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v5.3.0" + "source": "https://github.com/symfony/error-handler/tree/v5.4.15" }, "funding": [ { @@ -5935,44 +6303,42 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2022-10-27T06:32:25+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v5.3.0", + "version": "v6.0.9", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce" + "reference": "5c85b58422865d42c6eb46f7693339056db098a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/67a5f354afa8e2f231081b3fa11a5912f933c3ce", - "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/5c85b58422865d42c6eb46f7693339056db098a8", + "reference": "5c85b58422865d42c6eb46f7693339056db098a8", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", - "symfony/event-dispatcher-contracts": "^2", - "symfony/polyfill-php80": "^1.15" + "php": ">=8.0.2", + "symfony/event-dispatcher-contracts": "^2|^3" }, "conflict": { - "symfony/dependency-injection": "<4.4" + "symfony/dependency-injection": "<5.4" }, "provide": { "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "2.0" + "symfony/event-dispatcher-implementation": "2.0|3.0" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "^4.4|^5.0", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/error-handler": "^4.4|^5.0", - "symfony/expression-language": "^4.4|^5.0", - "symfony/http-foundation": "^4.4|^5.0", - "symfony/service-contracts": "^1.1|^2", - "symfony/stopwatch": "^4.4|^5.0" + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/error-handler": "^5.4|^6.0", + "symfony/expression-language": "^5.4|^6.0", + "symfony/http-foundation": "^5.4|^6.0", + "symfony/service-contracts": "^1.1|^2|^3", + "symfony/stopwatch": "^5.4|^6.0" }, "suggest": { "symfony/dependency-injection": "", @@ -6004,7 +6370,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.0" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.9" }, "funding": [ { @@ -6020,24 +6386,24 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2022-05-05T16:45:52+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v2.4.0", + "version": "v3.0.2", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11" + "reference": "7bc61cc2db649b4637d331240c5346dcc7708051" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11", - "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051", + "reference": "7bc61cc2db649b4637d331240c5346dcc7708051", "shasum": "" }, "require": { - "php": ">=7.2.5", + "php": ">=8.0.2", "psr/event-dispatcher": "^1" }, "suggest": { @@ -6046,7 +6412,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.4-dev" + "dev-main": "3.0-dev" }, "thanks": { "name": "symfony/contracts", @@ -6083,7 +6449,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2" }, "funding": [ { @@ -6099,24 +6465,26 @@ "type": "tidelift" } ], - "time": "2021-03-23T23:28:01+00:00" + "time": "2022-01-02T09:55:41+00:00" }, { "name": "symfony/finder", - "version": "v5.3.0", + "version": "v5.4.11", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6" + "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6", - "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6", + "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c", + "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -6144,7 +6512,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.3.0" + "source": "https://github.com/symfony/finder/tree/v5.4.11" }, "funding": [ { @@ -6160,111 +6528,36 @@ "type": "tidelift" } ], - "time": "2021-05-26T12:52:38+00:00" - }, - { - "name": "symfony/http-client-contracts", - "version": "v2.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/http-client-contracts.git", - "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4", - "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4", - "shasum": "" - }, - "require": { - "php": ">=7.2.5" - }, - "suggest": { - "symfony/http-client-implementation": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "2.4-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\HttpClient\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Generic abstractions related to HTTP clients", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "support": { - "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2021-04-11T23:07:08+00:00" + "time": "2022-07-29T07:37:50+00:00" }, { "name": "symfony/http-foundation", - "version": "v5.3.0", + "version": "v5.4.15", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "31f25d99b329a1461f42bcef8505b54926a30be6" + "reference": "75bd663ff2db90141bfb733682459d5bbe9e29c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/31f25d99b329a1461f42bcef8505b54926a30be6", - "reference": "31f25d99b329a1461f42bcef8505b54926a30be6", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/75bd663ff2db90141bfb733682459d5bbe9e29c3", + "reference": "75bd663ff2db90141bfb733682459d5bbe9e29c3", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", + "symfony/deprecation-contracts": "^2.1|^3", "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "require-dev": { "predis/predis": "~1.0", - "symfony/cache": "^4.4|^5.0", - "symfony/expression-language": "^4.4|^5.0", - "symfony/mime": "^4.4|^5.0" + "symfony/cache": "^4.4|^5.0|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/expression-language": "^4.4|^5.0|^6.0", + "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", + "symfony/mime": "^4.4|^5.0|^6.0", + "symfony/rate-limiter": "^5.2|^6.0" }, "suggest": { "symfony/mime": "To use the file extension guesser" @@ -6295,7 +6588,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v5.3.0" + "source": "https://github.com/symfony/http-foundation/tree/v5.4.15" }, "funding": [ { @@ -6311,36 +6604,35 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2022-10-12T09:43:19+00:00" }, { "name": "symfony/http-kernel", - "version": "v5.3.0", + "version": "v5.4.15", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "f8e8f5391b6909e2f0ba8c12220ab7af3050eb4f" + "reference": "fc63c8c3e1036d424820cc993a4ea163778dc5c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f8e8f5391b6909e2f0ba8c12220ab7af3050eb4f", - "reference": "f8e8f5391b6909e2f0ba8c12220ab7af3050eb4f", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/fc63c8c3e1036d424820cc993a4ea163778dc5c7", + "reference": "fc63c8c3e1036d424820cc993a4ea163778dc5c7", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/log": "~1.0", - "symfony/deprecation-contracts": "^2.1", - "symfony/error-handler": "^4.4|^5.0", - "symfony/event-dispatcher": "^5.0", - "symfony/http-client-contracts": "^1.1|^2", - "symfony/http-foundation": "^5.3", + "psr/log": "^1|^2", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/error-handler": "^4.4|^5.0|^6.0", + "symfony/event-dispatcher": "^5.0|^6.0", + "symfony/http-foundation": "^5.3.7|^6.0", "symfony/polyfill-ctype": "^1.8", "symfony/polyfill-php73": "^1.9", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "conflict": { - "symfony/browser-kit": "<4.4", + "symfony/browser-kit": "<5.4", "symfony/cache": "<5.0", "symfony/config": "<5.0", "symfony/console": "<4.4", @@ -6356,23 +6648,24 @@ "twig/twig": "<2.13" }, "provide": { - "psr/log-implementation": "1.0" + "psr/log-implementation": "1.0|2.0" }, "require-dev": { "psr/cache": "^1.0|^2.0|^3.0", - "symfony/browser-kit": "^4.4|^5.0", - "symfony/config": "^5.0", - "symfony/console": "^4.4|^5.0", - "symfony/css-selector": "^4.4|^5.0", - "symfony/dependency-injection": "^5.3", - "symfony/dom-crawler": "^4.4|^5.0", - "symfony/expression-language": "^4.4|^5.0", - "symfony/finder": "^4.4|^5.0", - "symfony/process": "^4.4|^5.0", - "symfony/routing": "^4.4|^5.0", - "symfony/stopwatch": "^4.4|^5.0", - "symfony/translation": "^4.4|^5.0", - "symfony/translation-contracts": "^1.1|^2", + "symfony/browser-kit": "^5.4|^6.0", + "symfony/config": "^5.0|^6.0", + "symfony/console": "^4.4|^5.0|^6.0", + "symfony/css-selector": "^4.4|^5.0|^6.0", + "symfony/dependency-injection": "^5.3|^6.0", + "symfony/dom-crawler": "^4.4|^5.0|^6.0", + "symfony/expression-language": "^4.4|^5.0|^6.0", + "symfony/finder": "^4.4|^5.0|^6.0", + "symfony/http-client-contracts": "^1.1|^2|^3", + "symfony/process": "^4.4|^5.0|^6.0", + "symfony/routing": "^4.4|^5.0|^6.0", + "symfony/stopwatch": "^4.4|^5.0|^6.0", + "symfony/translation": "^4.4|^5.0|^6.0", + "symfony/translation-contracts": "^1.1|^2|^3", "twig/twig": "^2.13|^3.0.4" }, "suggest": { @@ -6407,7 +6700,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v5.3.0" + "source": "https://github.com/symfony/http-kernel/tree/v5.4.15" }, "funding": [ { @@ -6423,42 +6716,43 @@ "type": "tidelift" } ], - "time": "2021-05-31T10:44:03+00:00" + "time": "2022-10-28T17:52:18+00:00" }, { "name": "symfony/mime", - "version": "v5.3.0", + "version": "v5.4.14", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852" + "reference": "1c118b253bb3495d81e95a6e3ec6c2766a98a0c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/ed710d297b181f6a7194d8172c9c2423d58e4852", - "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852", + "url": "https://api.github.com/repos/symfony/mime/zipball/1c118b253bb3495d81e95a6e3ec6c2766a98a0c4", + "reference": "1c118b253bb3495d81e95a6e3ec6c2766a98a0c4", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", + "symfony/deprecation-contracts": "^2.1|^3", "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "^1.0", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "conflict": { "egulias/email-validator": "~3.0.0", "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", - "symfony/mailer": "<4.4" + "symfony/mailer": "<4.4", + "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6" }, "require-dev": { "egulias/email-validator": "^2.1.10|^3.1", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/property-access": "^4.4|^5.1", - "symfony/property-info": "^4.4|^5.1", - "symfony/serializer": "^5.2" + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/property-access": "^4.4|^5.1|^6.0", + "symfony/property-info": "^4.4|^5.1|^6.0", + "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6" }, "type": "library", "autoload": { @@ -6490,7 +6784,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v5.3.0" + "source": "https://github.com/symfony/mime/tree/v5.4.14" }, "funding": [ { @@ -6506,27 +6800,25 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2022-10-07T08:01:20+00:00" }, { "name": "symfony/options-resolver", - "version": "v5.3.0", + "version": "v6.0.3", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5" + "reference": "51f7006670febe4cbcbae177cbffe93ff833250d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/162e886ca035869866d233a2bfef70cc28f9bbe5", - "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/51f7006670febe4cbcbae177cbffe93ff833250d", + "reference": "51f7006670febe4cbcbae177cbffe93ff833250d", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", - "symfony/polyfill-php73": "~1.0", - "symfony/polyfill-php80": "^1.15" + "php": ">=8.0.2", + "symfony/deprecation-contracts": "^2.1|^3" }, "type": "library", "autoload": { @@ -6559,7 +6851,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v5.3.0" + "source": "https://github.com/symfony/options-resolver/tree/v6.0.3" }, "funding": [ { @@ -6575,32 +6867,35 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2022-01-02T09:55:41+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.23.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce" + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce", - "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", "shasum": "" }, "require": { "php": ">=7.1" }, + "provide": { + "ext-ctype": "*" + }, "suggest": { "ext-ctype": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6608,12 +6903,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -6638,7 +6933,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" }, "funding": [ { @@ -6654,32 +6949,35 @@ "type": "tidelift" } ], - "time": "2021-02-19T12:13:01+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.23.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933" + "reference": "927013f3aac555983a5059aada98e1907d842695" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933", - "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695", + "reference": "927013f3aac555983a5059aada98e1907d842695", "shasum": "" }, "require": { "php": ">=7.1" }, + "provide": { + "ext-iconv": "*" + }, "suggest": { "ext-iconv": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6687,12 +6985,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Iconv\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Iconv\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -6718,7 +7016,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0" }, "funding": [ { @@ -6734,20 +7032,20 @@ "type": "tidelift" } ], - "time": "2021-05-27T09:27:20+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.23.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab" + "reference": "511a08c03c1960e08a883f4cffcacd219b758354" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab", - "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354", + "reference": "511a08c03c1960e08a883f4cffcacd219b758354", "shasum": "" }, "require": { @@ -6759,7 +7057,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6767,12 +7065,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Intl\\Grapheme\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -6799,7 +7097,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0" }, "funding": [ { @@ -6815,20 +7113,20 @@ "type": "tidelift" } ], - "time": "2021-05-27T09:17:38+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.23.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65" + "reference": "639084e360537a19f9ee352433b84ce831f3d2da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65", - "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", + "reference": "639084e360537a19f9ee352433b84ce831f3d2da", "shasum": "" }, "require": { @@ -6842,7 +7140,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6850,12 +7148,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Intl\\Idn\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -6886,7 +7184,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" }, "funding": [ { @@ -6902,20 +7200,20 @@ "type": "tidelift" } ], - "time": "2021-05-27T09:27:20+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.23.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" + "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", - "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", + "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", "shasum": "" }, "require": { @@ -6927,7 +7225,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6935,12 +7233,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Intl\\Normalizer\\": "" - }, "files": [ "bootstrap.php" ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, "classmap": [ "Resources/stubs" ] @@ -6970,7 +7268,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" }, "funding": [ { @@ -6986,32 +7284,35 @@ "type": "tidelift" } ], - "time": "2021-02-19T12:13:01+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.23.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1" + "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1", - "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", + "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", "shasum": "" }, "require": { "php": ">=7.1" }, + "provide": { + "ext-mbstring": "*" + }, "suggest": { "ext-mbstring": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7019,12 +7320,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -7050,7 +7351,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" }, "funding": [ { @@ -7066,20 +7367,20 @@ "type": "tidelift" } ], - "time": "2021-05-27T09:27:20+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.23.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "9a142215a36a3888e30d0a9eeea9766764e96976" + "reference": "869329b1e9894268a8a61dabb69153029b7a8c97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976", - "reference": "9a142215a36a3888e30d0a9eeea9766764e96976", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", + "reference": "869329b1e9894268a8a61dabb69153029b7a8c97", "shasum": "" }, "require": { @@ -7088,7 +7389,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7096,12 +7397,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php72\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -7126,7 +7427,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0" }, "funding": [ { @@ -7142,20 +7443,20 @@ "type": "tidelift" } ], - "time": "2021-05-27T09:17:38+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.23.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010" + "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010", - "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9", + "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9", "shasum": "" }, "require": { @@ -7164,7 +7465,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7172,12 +7473,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php73\\": "" - }, "files": [ "bootstrap.php" ], + "psr-4": { + "Symfony\\Polyfill\\Php73\\": "" + }, "classmap": [ "Resources/stubs" ] @@ -7205,7 +7506,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0" }, "funding": [ { @@ -7221,20 +7522,20 @@ "type": "tidelift" } ], - "time": "2021-02-19T12:13:01+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.23.0", + "version": "v1.27.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0" + "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0", - "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", + "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", "shasum": "" }, "require": { @@ -7243,7 +7544,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.27-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7251,12 +7552,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" - }, "files": [ "bootstrap.php" ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, "classmap": [ "Resources/stubs" ] @@ -7288,7 +7589,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" }, "funding": [ { @@ -7304,25 +7605,104 @@ "type": "tidelift" } ], - "time": "2021-02-19T12:13:01+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { - "name": "symfony/process", - "version": "v5.3.0", + "name": "symfony/polyfill-php81", + "version": "v1.27.0", "source": { "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "53e36cb1c160505cdaf1ef201501669c4c317191" + "url": "https://github.com/symfony/polyfill-php81.git", + "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/53e36cb1c160505cdaf1ef201501669c4c317191", - "reference": "53e36cb1c160505cdaf1ef201501669c4c317191", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a", + "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php81\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2022-11-03T14:55:06+00:00" + }, + { + "name": "symfony/process", + "version": "v5.4.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1", + "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -7350,7 +7730,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v5.3.0" + "source": "https://github.com/symfony/process/tree/v5.4.11" }, "funding": [ { @@ -7366,26 +7746,26 @@ "type": "tidelift" } ], - "time": "2021-05-26T12:52:38+00:00" + "time": "2022-06-27T16:58:25+00:00" }, { "name": "symfony/routing", - "version": "v5.3.0", + "version": "v5.4.15", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "368e81376a8e049c37cb80ae87dbfbf411279199" + "reference": "5c9b129efe9abce9470e384bf65d8a7e262eee69" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/368e81376a8e049c37cb80ae87dbfbf411279199", - "reference": "368e81376a8e049c37cb80ae87dbfbf411279199", + "url": "https://api.github.com/repos/symfony/routing/zipball/5c9b129efe9abce9470e384bf65d8a7e262eee69", + "reference": "5c9b129efe9abce9470e384bf65d8a7e262eee69", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", - "symfony/polyfill-php80": "^1.15" + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-php80": "^1.16" }, "conflict": { "doctrine/annotations": "<1.12", @@ -7395,12 +7775,12 @@ }, "require-dev": { "doctrine/annotations": "^1.12", - "psr/log": "~1.0", - "symfony/config": "^5.3", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/expression-language": "^4.4|^5.0", - "symfony/http-foundation": "^4.4|^5.0", - "symfony/yaml": "^4.4|^5.0" + "psr/log": "^1|^2|^3", + "symfony/config": "^5.3|^6.0", + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/expression-language": "^4.4|^5.0|^6.0", + "symfony/http-foundation": "^4.4|^5.0|^6.0", + "symfony/yaml": "^4.4|^5.0|^6.0" }, "suggest": { "symfony/config": "For using the all-in-one router or any loader", @@ -7440,7 +7820,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v5.3.0" + "source": "https://github.com/symfony/routing/tree/v5.4.15" }, "funding": [ { @@ -7456,25 +7836,29 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2022-10-13T14:10:41+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.4.0", + "version": "v2.5.2", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb" + "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb", - "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c", + "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/container": "^1.1" + "psr/container": "^1.1", + "symfony/deprecation-contracts": "^2.1|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" }, "suggest": { "symfony/service-implementation": "" @@ -7482,7 +7866,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.4-dev" + "dev-main": "2.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -7519,7 +7903,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v2.4.0" + "source": "https://github.com/symfony/service-contracts/tree/v2.5.2" }, "funding": [ { @@ -7535,44 +7919,46 @@ "type": "tidelift" } ], - "time": "2021-04-01T10:43:52+00:00" + "time": "2022-05-30T19:17:29+00:00" }, { "name": "symfony/string", - "version": "v5.3.0", + "version": "v6.0.15", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "a9a0f8b6aafc5d2d1c116dcccd1573a95153515b" + "reference": "51ac0fa0ccf132a00519b87c97e8f775fa14e771" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/a9a0f8b6aafc5d2d1c116dcccd1573a95153515b", - "reference": "a9a0f8b6aafc5d2d1c116dcccd1573a95153515b", + "url": "https://api.github.com/repos/symfony/string/zipball/51ac0fa0ccf132a00519b87c97e8f775fa14e771", + "reference": "51ac0fa0ccf132a00519b87c97e8f775fa14e771", "shasum": "" }, "require": { - "php": ">=7.2.5", + "php": ">=8.0.2", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-intl-grapheme": "~1.0", "symfony/polyfill-intl-normalizer": "~1.0", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "~1.15" + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.0" }, "require-dev": { - "symfony/error-handler": "^4.4|^5.0", - "symfony/http-client": "^4.4|^5.0", - "symfony/translation-contracts": "^1.1|^2", - "symfony/var-exporter": "^4.4|^5.0" + "symfony/error-handler": "^5.4|^6.0", + "symfony/http-client": "^5.4|^6.0", + "symfony/translation-contracts": "^2.0|^3.0", + "symfony/var-exporter": "^5.4|^6.0" }, "type": "library", "autoload": { - "psr-4": { - "Symfony\\Component\\String\\": "" - }, "files": [ "Resources/functions.php" ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, "exclude-from-classmap": [ "/Tests/" ] @@ -7602,7 +7988,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v5.3.0" + "source": "https://github.com/symfony/string/tree/v6.0.15" }, "funding": [ { @@ -7618,50 +8004,50 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2022-10-10T09:34:08+00:00" }, { "name": "symfony/translation", - "version": "v5.3.0", + "version": "v6.0.14", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "251de0d921c42ef0a81494d8f37405421deefdf6" + "reference": "6f99eb179aee4652c0a7cd7c11f2a870d904330c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/251de0d921c42ef0a81494d8f37405421deefdf6", - "reference": "251de0d921c42ef0a81494d8f37405421deefdf6", + "url": "https://api.github.com/repos/symfony/translation/zipball/6f99eb179aee4652c0a7cd7c11f2a870d904330c", + "reference": "6f99eb179aee4652c0a7cd7c11f2a870d904330c", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", + "php": ">=8.0.2", "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.15", - "symfony/translation-contracts": "^2.3" + "symfony/translation-contracts": "^2.3|^3.0" }, "conflict": { - "symfony/config": "<4.4", - "symfony/dependency-injection": "<5.0", - "symfony/http-kernel": "<5.0", - "symfony/twig-bundle": "<5.0", - "symfony/yaml": "<4.4" + "symfony/config": "<5.4", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<5.4", + "symfony/http-kernel": "<5.4", + "symfony/twig-bundle": "<5.4", + "symfony/yaml": "<5.4" }, "provide": { - "symfony/translation-implementation": "2.3" + "symfony/translation-implementation": "2.3|3.0" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "^4.4|^5.0", - "symfony/console": "^4.4|^5.0", - "symfony/dependency-injection": "^5.0", - "symfony/finder": "^4.4|^5.0", - "symfony/http-kernel": "^5.0", - "symfony/intl": "^4.4|^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0", + "symfony/console": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/finder": "^5.4|^6.0", + "symfony/http-client-contracts": "^1.1|^2.0|^3.0", + "symfony/http-kernel": "^5.4|^6.0", + "symfony/intl": "^5.4|^6.0", "symfony/polyfill-intl-icu": "^1.21", - "symfony/service-contracts": "^1.1.2|^2", - "symfony/yaml": "^4.4|^5.0" + "symfony/service-contracts": "^1.1.2|^2|^3", + "symfony/yaml": "^5.4|^6.0" }, "suggest": { "psr/log-implementation": "To use logging capability in translator", @@ -7697,7 +8083,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v5.3.0" + "source": "https://github.com/symfony/translation/tree/v6.0.14" }, "funding": [ { @@ -7713,24 +8099,24 @@ "type": "tidelift" } ], - "time": "2021-05-29T22:28:28+00:00" + "time": "2022-10-07T08:02:12+00:00" }, { "name": "symfony/translation-contracts", - "version": "v2.4.0", + "version": "v3.0.2", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "95c812666f3e91db75385749fe219c5e494c7f95" + "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95", - "reference": "95c812666f3e91db75385749fe219c5e494c7f95", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282", + "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=8.0.2" }, "suggest": { "symfony/translation-implementation": "" @@ -7738,7 +8124,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.4-dev" + "dev-main": "3.0-dev" }, "thanks": { "name": "symfony/contracts", @@ -7775,7 +8161,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0" + "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2" }, "funding": [ { @@ -7791,26 +8177,26 @@ "type": "tidelift" } ], - "time": "2021-03-23T23:28:01+00:00" + "time": "2022-06-27T17:10:44+00:00" }, { "name": "symfony/var-dumper", - "version": "v5.3.0", + "version": "v5.4.14", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3" + "reference": "6894d06145fefebd9a4c7272baa026a1c394a430" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1d3953e627fe4b5f6df503f356b6545ada6351f3", - "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6894d06145fefebd9a4c7272baa026a1c394a430", + "reference": "6894d06145fefebd9a4c7272baa026a1c394a430", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "conflict": { "phpunit/phpunit": "<5.4.3", @@ -7818,8 +8204,9 @@ }, "require-dev": { "ext-iconv": "*", - "symfony/console": "^4.4|^5.0", - "symfony/process": "^4.4|^5.0", + "symfony/console": "^4.4|^5.0|^6.0", + "symfony/process": "^4.4|^5.0|^6.0", + "symfony/uid": "^5.1|^6.0", "twig/twig": "^2.13|^3.0.4" }, "suggest": { @@ -7863,7 +8250,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.3.0" + "source": "https://github.com/symfony/var-dumper/tree/v5.4.14" }, "funding": [ { @@ -7879,28 +8266,29 @@ "type": "tidelift" } ], - "time": "2021-05-27T12:28:50+00:00" + "time": "2022-10-07T08:01:20+00:00" }, { "name": "tightenco/ziggy", - "version": "v1.2.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/tighten/ziggy.git", - "reference": "147804d5f3e98b897fc1ed15efc2807f1099cf83" + "reference": "419ac3f71b60795b392ec1ba6ee72e179977afc8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tighten/ziggy/zipball/147804d5f3e98b897fc1ed15efc2807f1099cf83", - "reference": "147804d5f3e98b897fc1ed15efc2807f1099cf83", + "url": "https://api.github.com/repos/tighten/ziggy/zipball/419ac3f71b60795b392ec1ba6ee72e179977afc8", + "reference": "419ac3f71b60795b392ec1ba6ee72e179977afc8", "shasum": "" }, "require": { + "ext-json": "*", "laravel/framework": ">=5.4@dev" }, "require-dev": { - "orchestra/testbench": "^6.0", - "phpunit/phpunit": "^9.2" + "orchestra/testbench": "^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0", + "phpunit/phpunit": "^6.0 || ^7.0 || ^8.0 || ^9.0" }, "type": "library", "extra": { @@ -7943,32 +8331,32 @@ ], "support": { "issues": "https://github.com/tighten/ziggy/issues", - "source": "https://github.com/tighten/ziggy/tree/v1.2.0" + "source": "https://github.com/tighten/ziggy/tree/v1.5.0" }, - "time": "2021-05-24T22:46:59+00:00" + "time": "2022-09-23T22:15:05+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", - "version": "2.2.3", + "version": "2.2.5", "source": { "type": "git", "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", - "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5" + "reference": "4348a3a06651827a27d989ad1d13efec6bb49b19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5", - "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/4348a3a06651827a27d989ad1d13efec6bb49b19", + "reference": "4348a3a06651827a27d989ad1d13efec6bb49b19", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "php": "^5.5 || ^7.0 || ^8.0", - "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0" + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" }, "type": "library", "extra": { @@ -7996,22 +8384,22 @@ "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", "support": { "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", - "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3" + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.5" }, - "time": "2020-07-13T06:12:54+00:00" + "time": "2022-09-12T13:28:28+00:00" }, { "name": "timehunter/laravel-google-recaptcha-v3", - "version": "v2.4.3", + "version": "v2.4.4", "source": { "type": "git", "url": "https://github.com/RyanDaDeng/laravel-google-recaptcha-v3.git", - "reference": "4fce3e300d215d50b0c7287a372e664734897b56" + "reference": "61d92b374a6dbb03aea033a593746f7cca4e0b8d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/RyanDaDeng/laravel-google-recaptcha-v3/zipball/4fce3e300d215d50b0c7287a372e664734897b56", - "reference": "4fce3e300d215d50b0c7287a372e664734897b56", + "url": "https://api.github.com/repos/RyanDaDeng/laravel-google-recaptcha-v3/zipball/61d92b374a6dbb03aea033a593746f7cca4e0b8d", + "reference": "61d92b374a6dbb03aea033a593746f7cca4e0b8d", "shasum": "" }, "require": { @@ -8069,9 +8457,9 @@ ], "support": { "issues": "https://github.com/RyanDaDeng/laravel-google-recaptcha-v3/issues", - "source": "https://github.com/RyanDaDeng/laravel-google-recaptcha-v3/tree/v2.4.3" + "source": "https://github.com/RyanDaDeng/laravel-google-recaptcha-v3/tree/v2.4.4" }, - "time": "2021-02-19T02:58:44+00:00" + "time": "2021-08-15T06:51:51+00:00" }, { "name": "vinkla/hashids", @@ -8143,39 +8531,43 @@ }, { "name": "vlucas/phpdotenv", - "version": "v5.3.0", + "version": "v5.5.0", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56" + "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/b3eac5c7ac896e52deab4a99068e3f4ab12d9e56", - "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", + "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", "shasum": "" }, "require": { "ext-pcre": "*", - "graham-campbell/result-type": "^1.0.1", + "graham-campbell/result-type": "^1.0.2", "php": "^7.1.3 || ^8.0", - "phpoption/phpoption": "^1.7.4", - "symfony/polyfill-ctype": "^1.17", - "symfony/polyfill-mbstring": "^1.17", - "symfony/polyfill-php80": "^1.17" + "phpoption/phpoption": "^1.8", + "symfony/polyfill-ctype": "^1.23", + "symfony/polyfill-mbstring": "^1.23.1", + "symfony/polyfill-php80": "^1.23.1" }, "require-dev": { "bamarni/composer-bin-plugin": "^1.4.1", "ext-filter": "*", - "phpunit/phpunit": "^7.5.20 || ^8.5.14 || ^9.5.1" + "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25" }, "suggest": { "ext-filter": "Required to use the boolean validator." }, "type": "library", "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, "branch-alias": { - "dev-master": "5.3-dev" + "dev-master": "5.5-dev" } }, "autoload": { @@ -8190,13 +8582,13 @@ "authors": [ { "name": "Graham Campbell", - "email": "graham@alt-three.com", - "homepage": "https://gjcampbell.co.uk/" + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" }, { "name": "Vance Lucas", "email": "vance@vancelucas.com", - "homepage": "https://vancelucas.com/" + "homepage": "https://github.com/vlucas" } ], "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", @@ -8207,7 +8599,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.3.0" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0" }, "funding": [ { @@ -8219,20 +8611,20 @@ "type": "tidelift" } ], - "time": "2021-01-20T15:23:13+00:00" + "time": "2022-10-16T01:01:54+00:00" }, { "name": "voku/portable-ascii", - "version": "1.5.6", + "version": "1.6.1", "source": { "type": "git", "url": "https://github.com/voku/portable-ascii.git", - "reference": "80953678b19901e5165c56752d087fc11526017c" + "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c", - "reference": "80953678b19901e5165c56752d087fc11526017c", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a", + "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a", "shasum": "" }, "require": { @@ -8269,7 +8661,7 @@ ], "support": { "issues": "https://github.com/voku/portable-ascii/issues", - "source": "https://github.com/voku/portable-ascii/tree/1.5.6" + "source": "https://github.com/voku/portable-ascii/tree/1.6.1" }, "funding": [ { @@ -8293,25 +8685,25 @@ "type": "tidelift" } ], - "time": "2020-11-12T00:07:28+00:00" + "time": "2022-01-24T18:55:24+00:00" }, { "name": "webmozart/assert", - "version": "1.10.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://github.com/webmozarts/assert.git", - "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25" + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25", - "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0", - "symfony/polyfill-ctype": "^1.8" + "ext-ctype": "*", + "php": "^7.2 || ^8.0" }, "conflict": { "phpstan/phpstan": "<0.12.20", @@ -8349,37 +8741,38 @@ ], "support": { "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.10.0" + "source": "https://github.com/webmozarts/assert/tree/1.11.0" }, - "time": "2021-03-09T10:59:23+00:00" + "time": "2022-06-03T18:03:27+00:00" } ], "packages-dev": [ { "name": "doctrine/instantiator", - "version": "1.4.0", + "version": "1.4.1", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b" + "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b", - "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc", + "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc", "shasum": "" }, "require": { "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^8.0", + "doctrine/coding-standard": "^9", "ext-pdo": "*", "ext-phar": "*", - "phpbench/phpbench": "^0.13 || 1.0.0-alpha2", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + "phpbench/phpbench": "^0.16 || ^1", + "phpstan/phpstan": "^1.4", + "phpstan/phpstan-phpunit": "^1", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "vimeo/psalm": "^4.22" }, "type": "library", "autoload": { @@ -8406,7 +8799,7 @@ ], "support": { "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/1.4.0" + "source": "https://github.com/doctrine/instantiator/tree/1.4.1" }, "funding": [ { @@ -8422,20 +8815,20 @@ "type": "tidelift" } ], - "time": "2020-11-10T18:47:58+00:00" + "time": "2022-03-03T08:28:38+00:00" }, { "name": "facade/flare-client-php", - "version": "1.8.1", + "version": "1.10.0", "source": { "type": "git", "url": "https://github.com/facade/flare-client-php.git", - "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f" + "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facade/flare-client-php/zipball/47b639dc02bcfdfc4ebb83de703856fa01e35f5f", - "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f", + "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8", + "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8", "shasum": "" }, "require": { @@ -8448,7 +8841,7 @@ }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.14", - "phpunit/phpunit": "^7.5.16", + "phpunit/phpunit": "^7.5", "spatie/phpunit-snapshot-assertions": "^2.0" }, "type": "library", @@ -8458,12 +8851,12 @@ } }, "autoload": { - "psr-4": { - "Facade\\FlareClient\\": "src" - }, "files": [ "src/helpers.php" - ] + ], + "psr-4": { + "Facade\\FlareClient\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -8479,7 +8872,7 @@ ], "support": { "issues": "https://github.com/facade/flare-client-php/issues", - "source": "https://github.com/facade/flare-client-php/tree/1.8.1" + "source": "https://github.com/facade/flare-client-php/tree/1.10.0" }, "funding": [ { @@ -8487,28 +8880,28 @@ "type": "github" } ], - "time": "2021-05-31T19:23:29+00:00" + "time": "2022-08-09T11:23:57+00:00" }, { "name": "facade/ignition", - "version": "2.9.0", + "version": "2.17.6", "source": { "type": "git", "url": "https://github.com/facade/ignition.git", - "reference": "e7db3b601ce742568b92648818ef903904d20164" + "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facade/ignition/zipball/e7db3b601ce742568b92648818ef903904d20164", - "reference": "e7db3b601ce742568b92648818ef903904d20164", + "url": "https://api.github.com/repos/facade/ignition/zipball/6acd82e986a2ecee89e2e68adfc30a1936d1ab7c", + "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c", "shasum": "" }, "require": { + "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", - "facade/flare-client-php": "^1.6", + "facade/flare-client-php": "^1.9.1", "facade/ignition-contracts": "^1.0.2", - "filp/whoops": "^2.4", "illuminate/support": "^7.0|^8.0", "monolog/monolog": "^2.0", "php": "^7.2.5|^8.0", @@ -8517,6 +8910,7 @@ }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.14", + "livewire/livewire": "^2.4", "mockery/mockery": "^1.3", "orchestra/testbench": "^5.0|^6.0", "psalm/plugin-laravel": "^1.2" @@ -8539,12 +8933,12 @@ } }, "autoload": { - "psr-4": { - "Facade\\Ignition\\": "src" - }, "files": [ "src/helpers.php" - ] + ], + "psr-4": { + "Facade\\Ignition\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -8564,7 +8958,7 @@ "issues": "https://github.com/facade/ignition/issues", "source": "https://github.com/facade/ignition" }, - "time": "2021-05-05T06:45:12+00:00" + "time": "2022-06-30T18:26:59+00:00" }, { "name": "facade/ignition-contracts", @@ -8621,32 +9015,34 @@ }, { "name": "fakerphp/faker", - "version": "v1.14.1", + "version": "v1.20.0", "source": { "type": "git", "url": "https://github.com/FakerPHP/Faker.git", - "reference": "ed22aee8d17c7b396f74a58b1e7fefa4f90d5ef1" + "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ed22aee8d17c7b396f74a58b1e7fefa4f90d5ef1", - "reference": "ed22aee8d17c7b396f74a58b1e7fefa4f90d5ef1", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/37f751c67a5372d4e26353bd9384bc03744ec77b", + "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b", "shasum": "" }, "require": { "php": "^7.1 || ^8.0", - "psr/container": "^1.0", - "symfony/deprecation-contracts": "^2.2" + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" }, "conflict": { "fzaninotto/faker": "*" }, "require-dev": { "bamarni/composer-bin-plugin": "^1.4.1", + "doctrine/persistence": "^1.3 || ^2.0", "ext-intl": "*", "symfony/phpunit-bridge": "^4.4 || ^5.2" }, "suggest": { + "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", "ext-curl": "Required by Faker\\Provider\\Image to download images.", "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", @@ -8655,7 +9051,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "v1.15-dev" + "dev-main": "v1.20-dev" } }, "autoload": { @@ -8680,27 +9076,27 @@ ], "support": { "issues": "https://github.com/FakerPHP/Faker/issues", - "source": "https://github.com/FakerPHP/Faker/tree/v.1.14.1" + "source": "https://github.com/FakerPHP/Faker/tree/v1.20.0" }, - "time": "2021-03-30T06:27:33+00:00" + "time": "2022-07-20T13:12:54+00:00" }, { "name": "filp/whoops", - "version": "2.12.1", + "version": "2.14.6", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "c13c0be93cff50f88bbd70827d993026821914dd" + "reference": "f7948baaa0330277c729714910336383286305da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/c13c0be93cff50f88bbd70827d993026821914dd", - "reference": "c13c0be93cff50f88bbd70827d993026821914dd", + "url": "https://api.github.com/repos/filp/whoops/zipball/f7948baaa0330277c729714910336383286305da", + "reference": "f7948baaa0330277c729714910336383286305da", "shasum": "" }, "require": { "php": "^5.5.9 || ^7.0 || ^8.0", - "psr/log": "^1.0.1" + "psr/log": "^1.0.1 || ^2.0 || ^3.0" }, "require-dev": { "mockery/mockery": "^0.9 || ^1.0", @@ -8745,7 +9141,7 @@ ], "support": { "issues": "https://github.com/filp/whoops/issues", - "source": "https://github.com/filp/whoops/tree/2.12.1" + "source": "https://github.com/filp/whoops/tree/2.14.6" }, "funding": [ { @@ -8753,20 +9149,71 @@ "type": "github" } ], - "time": "2021-04-25T12:00:00+00:00" + "time": "2022-11-02T16:23:29+00:00" }, { - "name": "laravel/sail", - "version": "v1.7.0", + "name": "hamcrest/hamcrest-php", + "version": "v2.0.1", "source": { "type": "git", - "url": "https://github.com/laravel/sail.git", - "reference": "d1f703d73f782af5427697cdc5023395cd341963" + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sail/zipball/d1f703d73f782af5427697cdc5023395cd341963", - "reference": "d1f703d73f782af5427697cdc5023395cd341963", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, + "time": "2020-07-09T08:09:16+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.16.3", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "0dbee8802e17911afbe29a8506316343829b056e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/0dbee8802e17911afbe29a8506316343829b056e", + "reference": "0dbee8802e17911afbe29a8506316343829b056e", "shasum": "" }, "require": { @@ -8813,41 +9260,114 @@ "issues": "https://github.com/laravel/sail/issues", "source": "https://github.com/laravel/sail" }, - "time": "2021-05-25T16:41:13+00:00" + "time": "2022-11-21T16:19:18+00:00" }, { - "name": "myclabs/deep-copy", - "version": "1.10.2", + "name": "mockery/mockery", + "version": "1.5.1", "source": { "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220" + "url": "https://github.com/mockery/mockery.git", + "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220", - "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220", + "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e", + "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "^2.0.1", + "lib-pcre": ">=7.0", + "php": "^7.3 || ^8.0" + }, + "conflict": { + "phpunit/phpunit": "<8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4.x-dev" + } + }, + "autoload": { + "psr-0": { + "Mockery": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "http://blog.astrumfutura.com" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "http://davedevelopment.co.uk" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "support": { + "issues": "https://github.com/mockery/mockery/issues", + "source": "https://github.com/mockery/mockery/tree/1.5.1" + }, + "time": "2022-09-07T15:32:08+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614", + "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614", "shasum": "" }, "require": { "php": "^7.1 || ^8.0" }, - "replace": { - "myclabs/deep-copy": "self.version" + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3,<3.2.2" }, "require-dev": { - "doctrine/collections": "^1.0", - "doctrine/common": "^2.6", - "phpunit/phpunit": "^7.1" + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" }, "type": "library", "autoload": { - "psr-4": { - "DeepCopy\\": "src/DeepCopy/" - }, "files": [ "src/DeepCopy/deep_copy.php" - ] + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -8863,7 +9383,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2" + "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0" }, "funding": [ { @@ -8871,37 +9391,36 @@ "type": "tidelift" } ], - "time": "2020-11-13T09:40:50+00:00" + "time": "2022-03-03T13:19:32+00:00" }, { "name": "nunomaduro/collision", - "version": "v5.4.0", + "version": "v5.11.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "41b7e9999133d5082700d31a1d0977161df8322a" + "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/41b7e9999133d5082700d31a1d0977161df8322a", - "reference": "41b7e9999133d5082700d31a1d0977161df8322a", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461", + "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461", "shasum": "" }, "require": { "facade/ignition-contracts": "^1.0", - "filp/whoops": "^2.7.2", + "filp/whoops": "^2.14.3", "php": "^7.3 || ^8.0", "symfony/console": "^5.0" }, "require-dev": { "brianium/paratest": "^6.1", "fideloper/proxy": "^4.4.1", - "friendsofphp/php-cs-fixer": "^2.17.3", "fruitcake/laravel-cors": "^2.0.3", - "laravel/framework": "^9.0", + "laravel/framework": "8.x-dev", "nunomaduro/larastan": "^0.6.2", "nunomaduro/mock-final-classes": "^1.0", - "orchestra/testbench": "^7.0", + "orchestra/testbench": "^6.0", "phpstan/phpstan": "^0.12.64", "phpunit/phpunit": "^9.5.0" }, @@ -8947,7 +9466,7 @@ }, "funding": [ { - "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L", + "url": "https://www.paypal.com/paypalme/enunomaduro", "type": "custom" }, { @@ -8959,20 +9478,20 @@ "type": "patreon" } ], - "time": "2021-04-09T13:38:32+00:00" + "time": "2022-01-10T16:22:52+00:00" }, { "name": "phar-io/manifest", - "version": "2.0.1", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/phar-io/manifest.git", - "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133" + "reference": "97803eca37d319dfa7826cc2437fc020857acb53" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133", - "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", + "reference": "97803eca37d319dfa7826cc2437fc020857acb53", "shasum": "" }, "require": { @@ -9017,22 +9536,22 @@ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", "support": { "issues": "https://github.com/phar-io/manifest/issues", - "source": "https://github.com/phar-io/manifest/tree/master" + "source": "https://github.com/phar-io/manifest/tree/2.0.3" }, - "time": "2020-06-27T14:33:11+00:00" + "time": "2021-07-20T11:28:43+00:00" }, { "name": "phar-io/version", - "version": "3.1.0", + "version": "3.2.1", "source": { "type": "git", "url": "https://github.com/phar-io/version.git", - "reference": "bae7c545bef187884426f042434e561ab1ddb182" + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182", - "reference": "bae7c545bef187884426f042434e561ab1ddb182", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", "shasum": "" }, "require": { @@ -9068,254 +9587,29 @@ "description": "Library for handling version information and constraints", "support": { "issues": "https://github.com/phar-io/version/issues", - "source": "https://github.com/phar-io/version/tree/3.1.0" + "source": "https://github.com/phar-io/version/tree/3.2.1" }, - "time": "2021-02-23T14:00:09+00:00" - }, - { - "name": "phpdocumentor/reflection-common", - "version": "2.2.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", - "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", - "shasum": "" - }, - "require": { - "php": "^7.2 || ^8.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-2.x": "2.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jaap van Otterdijk", - "email": "opensource@ijaap.nl" - } - ], - "description": "Common reflection classes used by phpdocumentor to reflect the code structure", - "homepage": "http://www.phpdoc.org", - "keywords": [ - "FQSEN", - "phpDocumentor", - "phpdoc", - "reflection", - "static analysis" - ], - "support": { - "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", - "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" - }, - "time": "2020-06-27T09:03:43+00:00" - }, - { - "name": "phpdocumentor/reflection-docblock", - "version": "5.2.2", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556", - "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556", - "shasum": "" - }, - "require": { - "ext-filter": "*", - "php": "^7.2 || ^8.0", - "phpdocumentor/reflection-common": "^2.2", - "phpdocumentor/type-resolver": "^1.3", - "webmozart/assert": "^1.9.1" - }, - "require-dev": { - "mockery/mockery": "~1.3.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" - }, - { - "name": "Jaap van Otterdijk", - "email": "account@ijaap.nl" - } - ], - "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "support": { - "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master" - }, - "time": "2020-09-03T19:13:55+00:00" - }, - { - "name": "phpdocumentor/type-resolver", - "version": "1.4.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", - "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", - "shasum": "" - }, - "require": { - "php": "^7.2 || ^8.0", - "phpdocumentor/reflection-common": "^2.0" - }, - "require-dev": { - "ext-tokenizer": "*" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" - } - ], - "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "support": { - "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0" - }, - "time": "2020-09-17T18:55:26+00:00" - }, - { - "name": "phpspec/prophecy", - "version": "1.13.0", - "source": { - "type": "git", - "url": "https://github.com/phpspec/prophecy.git", - "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea", - "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea", - "shasum": "" - }, - "require": { - "doctrine/instantiator": "^1.2", - "php": "^7.2 || ~8.0, <8.1", - "phpdocumentor/reflection-docblock": "^5.2", - "sebastian/comparator": "^3.0 || ^4.0", - "sebastian/recursion-context": "^3.0 || ^4.0" - }, - "require-dev": { - "phpspec/phpspec": "^6.0", - "phpunit/phpunit": "^8.0 || ^9.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.11.x-dev" - } - }, - "autoload": { - "psr-4": { - "Prophecy\\": "src/Prophecy" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - }, - { - "name": "Marcello Duarte", - "email": "marcello.duarte@gmail.com" - } - ], - "description": "Highly opinionated mocking framework for PHP 5.3+", - "homepage": "https://github.com/phpspec/prophecy", - "keywords": [ - "Double", - "Dummy", - "fake", - "mock", - "spy", - "stub" - ], - "support": { - "issues": "https://github.com/phpspec/prophecy/issues", - "source": "https://github.com/phpspec/prophecy/tree/1.13.0" - }, - "time": "2021-03-17T13:42:18+00:00" + "time": "2022-02-21T01:04:05+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.6", + "version": "9.2.19", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "f6293e1b30a2354e8428e004689671b83871edde" + "reference": "c77b56b63e3d2031bd8997fcec43c1925ae46559" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde", - "reference": "f6293e1b30a2354e8428e004689671b83871edde", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c77b56b63e3d2031bd8997fcec43c1925ae46559", + "reference": "c77b56b63e3d2031bd8997fcec43c1925ae46559", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "ext-xmlwriter": "*", - "nikic/php-parser": "^4.10.2", + "nikic/php-parser": "^4.14", "php": ">=7.3", "phpunit/php-file-iterator": "^3.0.3", "phpunit/php-text-template": "^2.0.2", @@ -9364,7 +9658,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.6" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.19" }, "funding": [ { @@ -9372,20 +9666,20 @@ "type": "github" } ], - "time": "2021-03-28T07:26:59+00:00" + "time": "2022-11-18T07:47:47+00:00" }, { "name": "phpunit/php-file-iterator", - "version": "3.0.5", + "version": "3.0.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8" + "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8", - "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", "shasum": "" }, "require": { @@ -9424,7 +9718,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5" + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" }, "funding": [ { @@ -9432,7 +9726,7 @@ "type": "github" } ], - "time": "2020-09-28T05:57:25+00:00" + "time": "2021-12-02T12:48:52+00:00" }, { "name": "phpunit/php-invoker", @@ -9617,16 +9911,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.5.4", + "version": "9.5.26", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "c73c6737305e779771147af66c96ca6a7ed8a741" + "reference": "851867efcbb6a1b992ec515c71cdcf20d895e9d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c73c6737305e779771147af66c96ca6a7ed8a741", - "reference": "c73c6737305e779771147af66c96ca6a7ed8a741", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/851867efcbb6a1b992ec515c71cdcf20d895e9d2", + "reference": "851867efcbb6a1b992ec515c71cdcf20d895e9d2", "shasum": "" }, "require": { @@ -9638,31 +9932,26 @@ "ext-xml": "*", "ext-xmlwriter": "*", "myclabs/deep-copy": "^1.10.1", - "phar-io/manifest": "^2.0.1", + "phar-io/manifest": "^2.0.3", "phar-io/version": "^3.0.2", "php": ">=7.3", - "phpspec/prophecy": "^1.12.1", - "phpunit/php-code-coverage": "^9.2.3", + "phpunit/php-code-coverage": "^9.2.13", "phpunit/php-file-iterator": "^3.0.5", "phpunit/php-invoker": "^3.1.1", "phpunit/php-text-template": "^2.0.3", "phpunit/php-timer": "^5.0.2", "sebastian/cli-parser": "^1.0.1", "sebastian/code-unit": "^1.0.6", - "sebastian/comparator": "^4.0.5", + "sebastian/comparator": "^4.0.8", "sebastian/diff": "^4.0.3", "sebastian/environment": "^5.1.3", - "sebastian/exporter": "^4.0.3", + "sebastian/exporter": "^4.0.5", "sebastian/global-state": "^5.0.1", "sebastian/object-enumerator": "^4.0.3", "sebastian/resource-operations": "^3.0.3", - "sebastian/type": "^2.3", + "sebastian/type": "^3.2", "sebastian/version": "^3.0.2" }, - "require-dev": { - "ext-pdo": "*", - "phpspec/prophecy-phpunit": "^2.0.1" - }, "suggest": { "ext-soap": "*", "ext-xdebug": "*" @@ -9677,11 +9966,11 @@ } }, "autoload": { - "classmap": [ - "src/" - ], "files": [ "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -9704,19 +9993,23 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.4" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.26" }, "funding": [ { - "url": "https://phpunit.de/donate.html", + "url": "https://phpunit.de/sponsors.html", "type": "custom" }, { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" } ], - "time": "2021-03-23T07:16:29+00:00" + "time": "2022-10-28T06:00:21+00:00" }, { "name": "sebastian/cli-parser", @@ -9887,16 +10180,16 @@ }, { "name": "sebastian/comparator", - "version": "4.0.6", + "version": "4.0.8", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "55f4261989e546dc112258c7a75935a81a7ce382" + "reference": "fa0f136dd2334583309d32b62544682ee972b51a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382", - "reference": "55f4261989e546dc112258c7a75935a81a7ce382", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", + "reference": "fa0f136dd2334583309d32b62544682ee972b51a", "shasum": "" }, "require": { @@ -9949,7 +10242,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6" + "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" }, "funding": [ { @@ -9957,7 +10250,7 @@ "type": "github" } ], - "time": "2020-10-26T15:49:45+00:00" + "time": "2022-09-14T12:41:17+00:00" }, { "name": "sebastian/complexity", @@ -10084,16 +10377,16 @@ }, { "name": "sebastian/environment", - "version": "5.1.3", + "version": "5.1.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "388b6ced16caa751030f6a69e588299fa09200ac" + "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac", - "reference": "388b6ced16caa751030f6a69e588299fa09200ac", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7", + "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7", "shasum": "" }, "require": { @@ -10135,7 +10428,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3" + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4" }, "funding": [ { @@ -10143,20 +10436,20 @@ "type": "github" } ], - "time": "2020-09-28T05:52:38+00:00" + "time": "2022-04-03T09:37:03+00:00" }, { "name": "sebastian/exporter", - "version": "4.0.3", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65" + "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65", - "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", "shasum": "" }, "require": { @@ -10205,14 +10498,14 @@ } ], "description": "Provides the functionality to export PHP variables for visualization", - "homepage": "http://www.github.com/sebastianbergmann/exporter", + "homepage": "https://www.github.com/sebastianbergmann/exporter", "keywords": [ "export", "exporter" ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3" + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" }, "funding": [ { @@ -10220,20 +10513,20 @@ "type": "github" } ], - "time": "2020-09-28T05:24:23+00:00" + "time": "2022-09-14T06:03:37+00:00" }, { "name": "sebastian/global-state", - "version": "5.0.2", + "version": "5.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "a90ccbddffa067b51f574dea6eb25d5680839455" + "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455", - "reference": "a90ccbddffa067b51f574dea6eb25d5680839455", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", + "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", "shasum": "" }, "require": { @@ -10276,7 +10569,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2" + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" }, "funding": [ { @@ -10284,7 +10577,7 @@ "type": "github" } ], - "time": "2020-10-26T15:55:19+00:00" + "time": "2022-02-14T08:28:10+00:00" }, { "name": "sebastian/lines-of-code", @@ -10575,28 +10868,28 @@ }, { "name": "sebastian/type", - "version": "2.3.1", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2" + "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2", - "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e", + "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e", "shasum": "" }, "require": { "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^9.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.3-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -10619,7 +10912,7 @@ "homepage": "https://github.com/sebastianbergmann/type", "support": { "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/2.3.1" + "source": "https://github.com/sebastianbergmann/type/tree/3.2.0" }, "funding": [ { @@ -10627,7 +10920,7 @@ "type": "github" } ], - "time": "2020-10-26T13:18:59+00:00" + "time": "2022-09-12T14:47:03+00:00" }, { "name": "sebastian/version", @@ -10684,16 +10977,16 @@ }, { "name": "theseer/tokenizer", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "75a63c33a8577608444246075ea0af0d052e452a" + "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a", - "reference": "75a63c33a8577608444246075ea0af0d052e452a", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", + "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", "shasum": "" }, "require": { @@ -10722,7 +11015,7 @@ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "support": { "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/master" + "source": "https://github.com/theseer/tokenizer/tree/1.2.1" }, "funding": [ { @@ -10730,7 +11023,7 @@ "type": "github" } ], - "time": "2020-07-12T23:59:07+00:00" + "time": "2021-07-28T10:34:58+00:00" } ], "aliases": [], diff --git a/config/app.php b/config/app.php index 903644e..d291390 100644 --- a/config/app.php +++ b/config/app.php @@ -95,7 +95,7 @@ return [ | */ - 'fallback_locale' => 'en', + 'fallback_locale' => 'tk', /* |-------------------------------------------------------------------------- @@ -108,7 +108,7 @@ return [ | */ - 'faker_locale' => 'en_US', + 'faker_locale' => 'tk_TK', /* |-------------------------------------------------------------------------- diff --git a/config/translatable.php b/config/translatable.php index 6aeb337..c71d031 100644 --- a/config/translatable.php +++ b/config/translatable.php @@ -5,5 +5,5 @@ return [ /* * If a translation has not been set for a given locale, use this locale instead. */ - 'fallback_locale' => 'tm', + 'fallback_locale' => 'tk', ]; diff --git a/database/factories/NewsFactory.php b/database/factories/NewsFactory.php new file mode 100644 index 0000000..e66361d --- /dev/null +++ b/database/factories/NewsFactory.php @@ -0,0 +1,20 @@ +id(); + $table->text('title'); + $table->text('short_description'); + $table->text('description'); + $table->text('image'); + $table->date('date'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('news'); + } +} diff --git a/database/migrations/2022_11_28_230541_create_news_table.php b/database/migrations/2022_11_28_230541_create_news_table.php new file mode 100644 index 0000000..65ed6bd --- /dev/null +++ b/database/migrations/2022_11_28_230541_create_news_table.php @@ -0,0 +1,31 @@ +id(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('news'); + } +} diff --git a/database/seeders/NewsSeeder.php b/database/seeders/NewsSeeder.php new file mode 100644 index 0000000..98e73ec --- /dev/null +++ b/database/seeders/NewsSeeder.php @@ -0,0 +1,18 @@ + {{ trans('backpack::base.dashboard') }} - \ No newline at end of file + + \ No newline at end of file diff --git a/routes/api.php b/routes/api.php index f0837ac..c1f6c6f 100644 --- a/routes/api.php +++ b/routes/api.php @@ -7,6 +7,8 @@ use App\Http\Controllers\Api\FiltersController; use App\Http\Controllers\Api\ImportController; use App\Http\Controllers\Api\RequestController; use App\Http\Controllers\Api\TradingsController; +use App\Http\Controllers\Api\NewsController; +use App\Http\Controllers\Api\CategoryController; /* |-------------------------------------------------------------------------- @@ -26,4 +28,6 @@ Route::get('categories', [FiltersController::class, 'categories']); Route::get('other-filters', [FiltersController::class, 'otherFilters']); +Route::get('categories', [CategoryController::class, 'index']); Route::get('tradings', [TradingsController::class, 'index']); +Route::get('news', [NewsController::class, 'index']); diff --git a/routes/backpack/custom.php b/routes/backpack/custom.php index 7be49cd..857d122 100644 --- a/routes/backpack/custom.php +++ b/routes/backpack/custom.php @@ -18,4 +18,5 @@ Route::group([ ], function () { // custom admin routes Route::crud('category', 'CategoryCrudController'); Route::crud('trading', 'TradingCrudController'); + Route::crud('news', 'NewsCrudController'); }); // this should be the absolute last line of this file \ No newline at end of file diff --git a/storage/framework/sessions/B6MTCsxFDHOiMI5M6ro7YHdtXJTqRNXvgmWAIfRi b/storage/framework/sessions/B6MTCsxFDHOiMI5M6ro7YHdtXJTqRNXvgmWAIfRi new file mode 100644 index 0000000..b617c03 --- /dev/null +++ b/storage/framework/sessions/B6MTCsxFDHOiMI5M6ro7YHdtXJTqRNXvgmWAIfRi @@ -0,0 +1 @@ +a:5:{s:6:"_token";s:40:"KwWSECrELeCMOoLG40FMcHyFrXOZbujGRZR8G3fZ";s:9:"_previous";a:1:{s:3:"url";s:32:"http://127.0.0.1:8000/admin/news";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}s:3:"url";a:0:{}s:55:"login_backpack_59ba36addc2b2f9401580f014c7f58ea4e30989d";i:11;} \ No newline at end of file diff --git a/storage/framework/sessions/bNWznkgFspRyKSVHemgbqgVLLQ2Gt3IAAisPyw6N b/storage/framework/sessions/bNWznkgFspRyKSVHemgbqgVLLQ2Gt3IAAisPyw6N deleted file mode 100644 index 28d5ff5..0000000 --- a/storage/framework/sessions/bNWznkgFspRyKSVHemgbqgVLLQ2Gt3IAAisPyw6N +++ /dev/null @@ -1 +0,0 @@ -a:7:{s:6:"_token";s:40:"VVRFrqJTpNJEG37pgqFGV4c95RgOiQeSVJuZ9tA0";s:50:"login_web_59ba36addc2b2f9401580f014c7f58ea4e30989d";i:11;s:17:"password_hash_web";s:60:"$2y$10$Bch.bwnG.bVAqx988uQ0guKtrzZnnluwv7tnOS9RjWTU2RRJMPrai";s:9:"_previous";a:1:{s:3:"url";s:35:"http://127.0.0.1:8000/admin/trading";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}s:3:"url";a:0:{}s:55:"login_backpack_59ba36addc2b2f9401580f014c7f58ea4e30989d";i:11;} \ No newline at end of file diff --git a/storage/framework/views/006a5b654e063814a2094c4730a0fa864e2b73d1.php b/storage/framework/views/006a5b654e063814a2094c4730a0fa864e2b73d1.php deleted file mode 100644 index dcb9ea4..0000000 --- a/storage/framework/views/006a5b654e063814a2094c4730a0fa864e2b73d1.php +++ /dev/null @@ -1,56 +0,0 @@ - - -startSection('after_styles'); ?> - -stopSection(); ?> - -startSection('content'); ?> -
-
-
- ERROR
- - -
-
-
- yieldContent('title'); ?> -
-
- - yieldContent('description'); ?> - -
-
-
-stopSection(); ?> -make(backpack_user() && (Str::startsWith(\Request::path(), config('backpack.base.route_prefix'))) ? 'backpack::layouts.top_left' : 'backpack::layouts.plain', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/00bfccdbfb0a160f16208ff69c006eda624969d2.php b/storage/framework/views/00bfccdbfb0a160f16208ff69c006eda624969d2.php deleted file mode 100644 index 76c9089..0000000 --- a/storage/framework/views/00bfccdbfb0a160f16208ff69c006eda624969d2.php +++ /dev/null @@ -1,49 +0,0 @@ -exceptProps(['id' => null, 'maxWidth' => null]); ?> - null, 'maxWidth' => null]), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) { - $$__key = $$__key ?? $__value; -} ?> - - $__value) { - if (array_key_exists($__key, $__defined_vars)) unset($$__key); -} ?> - - - -getContainer()->make(Illuminate\View\AnonymousComponent::class, ['view' => 'jetstream::components.modal','data' => ['id' => $id,'maxWidth' => $maxWidth,'attributes' => $attributes]]); ?> -withName('jet-modal'); ?> -shouldRender()): ?> -startComponent($component->resolveView(), $component->data()); ?> -withAttributes(['id' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($id),'maxWidth' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($maxWidth),'attributes' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($attributes)]); ?> -
-
-
- - - -
- -
-

- - -

- -
- - -
-
-
-
- -
- - -
- - - - -renderComponent(); ?> - - \ No newline at end of file diff --git a/storage/framework/views/036a9b968cc177e57db726c8a57a435a96a28e6e.php b/storage/framework/views/036a9b968cc177e57db726c8a57a435a96a28e6e.php deleted file mode 100644 index 115f6ea..0000000 --- a/storage/framework/views/036a9b968cc177e57db726c8a57a435a96a28e6e.php +++ /dev/null @@ -1,49 +0,0 @@ -exceptProps(['style' => session('flash.bannerStyle', 'success'), 'message' => session('flash.banner')]); ?> - session('flash.bannerStyle', 'success'), 'message' => session('flash.banner')]), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) { - $$__key = $$__key ?? $__value; -} ?> - - $__value) { - if (array_key_exists($__key, $__defined_vars)) unset($$__key); -} ?> - - -
-
-
-
- - - - - - -

-
- -
- -
-
-
-
- \ No newline at end of file diff --git a/storage/framework/views/077a40dc08f2eff54363df55941bebe44df6b558.php b/storage/framework/views/077a40dc08f2eff54363df55941bebe44df6b558.php deleted file mode 100644 index 46683a2..0000000 --- a/storage/framework/views/077a40dc08f2eff54363df55941bebe44df6b558.php +++ /dev/null @@ -1,73 +0,0 @@ - backpack_url('dashboard'), - $crud->entity_name_plural => url($crud->route), - trans('backpack::crud.edit') => false, - ]; - - // if breadcrumbs aren't defined in the CrudController, use the default breadcrumbs - $breadcrumbs = $breadcrumbs ?? $defaultBreadcrumbs; -?> - -startSection('header'); ?> -
-

- getHeading() ?? $crud->entity_name_plural; ?> - getSubheading() ?? trans('backpack::crud.edit').' '.$crud->entity_name; ?>. - - hasAccess('list')): ?> - entity_name_plural); ?> - -

-
-stopSection(); ?> - -startSection('content'); ?> -
-
- - - make('crud::inc.grouped_errors', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - -
hasUploadFields('update', $entry->getKey())): ?> - enctype="multipart/form-data" - - > - - - - - - model->translationEnabled()): ?> -
- -
- - -
-
- - - exists('vendor.backpack.crud.form_content')): ?> - make('vendor.backpack.crud.form_content', ['fields' => $crud->fields(), 'action' => 'edit'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - - make('crud::form_content', ['fields' => $crud->fields(), 'action' => 'edit'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - - -
- make('crud::inc.form_save_buttons', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> -
-
-
-stopSection(); ?> - - -make(backpack_view('blank'), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/085037256519c8254704c487da6a62b4b404d6af.php b/storage/framework/views/085037256519c8254704c487da6a62b4b404d6af.php deleted file mode 100644 index 34ef7a8..0000000 --- a/storage/framework/views/085037256519c8254704c487da6a62b4b404d6af.php +++ /dev/null @@ -1,10 +0,0 @@ - - -addLoop($__currentLoopData); foreach($__currentLoopData as $attribute => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> - - ="" - -popLoop(); $loop = $__env->getLastLoop(); ?> \ No newline at end of file diff --git a/storage/framework/views/0a6fa005cf7f987afbde33e90283e67999e410e9.php b/storage/framework/views/0a6fa005cf7f987afbde33e90283e67999e410e9.php deleted file mode 100644 index 5144c1d..0000000 --- a/storage/framework/views/0a6fa005cf7f987afbde33e90283e67999e410e9.php +++ /dev/null @@ -1,47 +0,0 @@ -hasPages()): ?> - - - \ No newline at end of file diff --git a/storage/framework/views/0a8411d5c7da28f2439e6e3a0251918960e5a01a.php b/storage/framework/views/0a8411d5c7da28f2439e6e3a0251918960e5a01a.php deleted file mode 100644 index 0b5560f..0000000 --- a/storage/framework/views/0a8411d5c7da28f2439e6e3a0251918960e5a01a.php +++ /dev/null @@ -1,36 +0,0 @@ - $value) { - $field['wrapper'][$attributeKey] = !is_string($value) && $value instanceof \Closure ? $value($crud, $field, $entry ?? null) : $value ?? ''; - } - // if the field is required in any of the crud validators (FormRequest, controller validation or field validation) - // we add an astherisc for it. Case it's a subfield, that check is done upstream in repeatable_row. - // the reason for that is that here the field name is already the repeatable name: parent[row][fieldName] - if(!isset($field['parentFieldName']) || !$field['parentFieldName']) { - $fieldName = is_array($field['name']) ? current($field['name']) : $field['name']; - $required = (isset($action) && $crud->isRequired($fieldName)) ? ' required' : ''; - } - - // if the developer has intentionally set the required attribute on the field - // forget whatever is in the FormRequest, do what the developer wants - // subfields also get here with `showAsterisk` already set. - $required = isset($field['showAsterisk']) ? ($field['showAsterisk'] ? ' required' : '') : ($required ?? ''); - - $field['wrapper']['class'] = $field['wrapper']['class'] ?? "form-group col-sm-12"; - $field['wrapper']['class'] = $field['wrapper']['class'].$required; - $field['wrapper']['element'] = $field['wrapper']['element'] ?? 'div'; - $field['wrapper']['bp-field-wrapper'] = 'true'; - $field['wrapper']['bp-field-name'] = square_brackets_to_dots(implode(',', (array)$field['name'])); - $field['wrapper']['bp-field-type'] = $field['type']; -?> - -< - - addLoop($__currentLoopData); foreach($__currentLoopData as $attribute => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> - ="" - popLoop(); $loop = $__env->getLastLoop(); ?> -> - \ No newline at end of file diff --git a/storage/framework/views/0abf96540448eef3f2d97cc92d3492313c8085ec.php b/storage/framework/views/0abf96540448eef3f2d97cc92d3492313c8085ec.php deleted file mode 100644 index 1e3557f..0000000 --- a/storage/framework/views/0abf96540448eef3f2d97cc92d3492313c8085ec.php +++ /dev/null @@ -1,49 +0,0 @@ - -identifiableAttribute(); - $column['value'] = $column['value'] ?? $crud->getRelatedEntriesAttributes($entry, $column['entity'], $column['attribute']); - $column['escaped'] = $column['escaped'] ?? true; - $column['prefix'] = $column['prefix'] ?? ''; - $column['suffix'] = $column['suffix'] ?? ''; - $column['limit'] = $column['limit'] ?? 32; - - if($column['value'] instanceof \Closure) { - $column['value'] = $column['value']($entry); - } - - foreach ($column['value'] as &$value) { - $value = Str::limit($value, $column['limit'], '…'); - } -?> - - - - - - addLoop($__currentLoopData); foreach($__currentLoopData as $key => $text): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> - - - - renderWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_start', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> - - - - - - - - renderWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_end', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> - - last): ?>, - - popLoop(); $loop = $__env->getLastLoop(); ?> - - - - - - - - \ No newline at end of file diff --git a/storage/framework/views/8f81505800365736b37fa9de4ee1329844adfd27.php b/storage/framework/views/0bcc841c3900ad7da424ca710ede24c22a667e71.php similarity index 82% rename from storage/framework/views/8f81505800365736b37fa9de4ee1329844adfd27.php rename to storage/framework/views/0bcc841c3900ad7da424ca710ede24c22a667e71.php index 55c363d..3f35735 100644 --- a/storage/framework/views/8f81505800365736b37fa9de4ee1329844adfd27.php +++ b/storage/framework/views/0bcc841c3900ad7da424ca710ede24c22a667e71.php @@ -19,10 +19,10 @@ stopSection(); ?> startSection('content'); ?> - +
- +
@@ -45,13 +45,7 @@ make('crud::inc.filters_navbar', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - +
@@ -59,8 +53,7 @@ @@ -113,15 +101,7 @@ columns(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $column): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> - + popLoop(); $loop = $__env->getLastLoop(); ?> buttons()->where('stack', 'line')->count() ): ?> @@ -146,20 +126,27 @@ stopSection(); ?> startSection('after_styles'); ?> - + - + + + + + yieldPushContent('crud_list_styles'); ?> stopSection(); ?> startSection('after_scripts'); ?> make('crud::inc.datatables_logic', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + - + yieldPushContent('crud_list_scripts'); ?> stopSection(); ?> -make(backpack_view('blank'), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file +make(backpack_view('blank'), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/a1b147faff114a5328b0a8b4e5f91846bc3e77a6.php b/storage/framework/views/0fc3037fbce34c0729f24bf83ed029b9b2f9a4ce.php similarity index 80% rename from storage/framework/views/a1b147faff114a5328b0a8b4e5f91846bc3e77a6.php rename to storage/framework/views/0fc3037fbce34c0729f24bf83ed029b9b2f9a4ce.php index 106c3ce..c5a687d 100644 --- a/storage/framework/views/a1b147faff114a5328b0a8b4e5f91846bc3e77a6.php +++ b/storage/framework/views/0fc3037fbce34c0729f24bf83ed029b9b2f9a4ce.php @@ -1,23 +1,23 @@ check()): ?> - +
- + - +
@@ -92,4 +92,4 @@ }); stopPush(); ?> - \ No newline at end of file + \ No newline at end of file diff --git a/storage/framework/views/17ceff03d00f626ddd461602ed2e80bd2298b8ce.php b/storage/framework/views/17ceff03d00f626ddd461602ed2e80bd2298b8ce.php deleted file mode 100644 index eab6fa5..0000000 --- a/storage/framework/views/17ceff03d00f626ddd461602ed2e80bd2298b8ce.php +++ /dev/null @@ -1,50 +0,0 @@ - -getRelationModel($field['entity'], - 1); - $field['allows_null'] = $field['allows_null'] ?? $entity_model::isColumnNullable($field['name']); - - //if it's part of a relationship here we have the full related model, we want the key. - if (is_object($current_value) && is_subclass_of(get_class($current_value), 'Illuminate\Database\Eloquent\Model') ) { - $current_value = $current_value->getKey(); - } - - if (!isset($field['options'])) { - $options = $field['model']::all(); - } else { - $options = call_user_func($field['options'], $field['model']::query()); - } -?> - -make('crud::fields.inc.wrapper_start', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - - - make('crud::fields.inc.translatable_icon', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - - - - - -

- - -make('crud::fields.inc.wrapper_end', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - \ No newline at end of file diff --git a/storage/framework/views/193012eabf09fba47a951768494a006b8b99c9b6.php b/storage/framework/views/193012eabf09fba47a951768494a006b8b99c9b6.php deleted file mode 100644 index bed12bd..0000000 --- a/storage/framework/views/193012eabf09fba47a951768494a006b8b99c9b6.php +++ /dev/null @@ -1,5 +0,0 @@ -startSection('title', __('Not Found')); ?> -startSection('code', '404'); ?> -startSection('message', __('Not Found')); ?> - -make('errors::minimal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/5bd8ce4db04462db759c939a5fc89563996d4439.php b/storage/framework/views/1d9e457038986c1acd3aad7a38a2a0b8fcb1180d.php similarity index 59% rename from storage/framework/views/5bd8ce4db04462db759c939a5fc89563996d4439.php rename to storage/framework/views/1d9e457038986c1acd3aad7a38a2a0b8fcb1180d.php index 7a6a078..c44cda9 100644 --- a/storage/framework/views/5bd8ce4db04462db759c939a5fc89563996d4439.php +++ b/storage/framework/views/1d9e457038986c1acd3aad7a38a2a0b8fcb1180d.php @@ -1,18 +1,13 @@ @@ -26,4 +21,4 @@ renderWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_end', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> - \ No newline at end of file + \ No newline at end of file diff --git a/storage/framework/views/201f22f0ce93631a5135e9ca4d8b3e47f98e0bd3.php b/storage/framework/views/201f22f0ce93631a5135e9ca4d8b3e47f98e0bd3.php deleted file mode 100644 index 8b692d3..0000000 --- a/storage/framework/views/201f22f0ce93631a5135e9ca4d8b3e47f98e0bd3.php +++ /dev/null @@ -1,45 +0,0 @@ -exceptProps(['submit']); ?> - $__value) { - $$__key = $$__key ?? $__value; -} ?> - - $__value) { - if (array_key_exists($__key, $__defined_vars)) unset($$__key); -} ?> - - -
merge(['class' => 'md:grid md:grid-cols-3 md:gap-6'])); ?>> - -getContainer()->make(Illuminate\View\AnonymousComponent::class, ['view' => 'jetstream::components.section-title','data' => []]); ?> -withName('jet-section-title'); ?> -shouldRender()): ?> -startComponent($component->resolveView(), $component->data()); ?> -withAttributes([]); ?> - slot('title'); ?> endSlot(); ?> - slot('description'); ?> endSlot(); ?> - - - - -renderComponent(); ?> - - -
-
-
-
- - -
-
- - -
- - -
- - -
-
- \ No newline at end of file diff --git a/storage/framework/views/2424258e6b702a56ee5520950a6e40deb08ab0ee.php b/storage/framework/views/2424258e6b702a56ee5520950a6e40deb08ab0ee.php deleted file mode 100644 index 5539ba6..0000000 --- a/storage/framework/views/2424258e6b702a56ee5520950a6e40deb08ab0ee.php +++ /dev/null @@ -1,24 +0,0 @@ -
> - -getContainer()->make(Illuminate\View\AnonymousComponent::class, ['view' => 'jetstream::components.section-title','data' => []]); ?> -withName('jet-section-title'); ?> -shouldRender()): ?> -startComponent($component->resolveView(), $component->data()); ?> -withAttributes([]); ?> - slot('title'); ?> endSlot(); ?> - slot('description'); ?> endSlot(); ?> - - - - -renderComponent(); ?> - - -
-
- - -
-
-
- \ No newline at end of file diff --git a/storage/framework/views/24e315bc4165bd4cf15070160968c2704aa56eff.php b/storage/framework/views/24e315bc4165bd4cf15070160968c2704aa56eff.php deleted file mode 100644 index d9c3804..0000000 --- a/storage/framework/views/24e315bc4165bd4cf15070160968c2704aa56eff.php +++ /dev/null @@ -1,91 +0,0 @@ - url(config('backpack.base.route_prefix'), 'dashboard'), - $crud->entity_name_plural => url($crud->route), - trans('backpack::crud.preview') => false, - ]; - - // if breadcrumbs aren't defined in the CrudController, use the default breadcrumbs - $breadcrumbs = $breadcrumbs ?? $defaultBreadcrumbs; -?> - -startSection('header'); ?> -
- -

- getHeading() ?? $crud->entity_name_plural; ?> - getSubheading() ?? mb_ucfirst(trans('backpack::crud.preview')).' '.$crud->entity_name; ?>. - hasAccess('list')): ?> - entity_name_plural); ?> - -

-
-stopSection(); ?> - -startSection('content'); ?> -
-
- - -
- model->translationEnabled()): ?> -
-
- -
- - -
-
-
- -
-
@@ -89,11 +82,6 @@ > - - first && $crud->getOperationSetting('bulkActions')): ?> - render(); ?> - -
- - first && $crud->getOperationSetting('bulkActions')): ?> - render(); ?> - - - - -
- - columns(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $column): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> - - - - - popLoop(); $loop = $__env->getLastLoop(); ?> - buttons()->where('stack', 'line')->count()): ?> - - - - - - -
- : - - - first($columnPaths, \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> -
- make('crud::inc.button_stack', ['stack' => 'line'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> -
-
-
- -
- -stopSection(); ?> - -make(backpack_view('blank'), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/d52236b89c97100d904a889d8d8bc60e29a29049.php b/storage/framework/views/2989dd5998a510a70fa2c3bfb3ecbdcb079e4589.php similarity index 85% rename from storage/framework/views/d52236b89c97100d904a889d8d8bc60e29a29049.php rename to storage/framework/views/2989dd5998a510a70fa2c3bfb3ecbdcb079e4589.php index 54b7e12..1bf6341 100644 --- a/storage/framework/views/d52236b89c97100d904a889d8d8bc60e29a29049.php +++ b/storage/framework/views/2989dd5998a510a70fa2c3bfb3ecbdcb079e4589.php @@ -1,7 +1,7 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/storage/framework/views/29e819978ada2782c484c30177b5d771d3b586f8.php b/storage/framework/views/29e819978ada2782c484c30177b5d771d3b586f8.php deleted file mode 100644 index 62e6176..0000000 --- a/storage/framework/views/29e819978ada2782c484c30177b5d771d3b586f8.php +++ /dev/null @@ -1,34 +0,0 @@ - -locale(App::getLocale()) - ->isoFormat($column['format']); - - $column['text'] = $column['prefix'].$date.$column['suffix']; - } -?> - - - renderWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_start', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> - - - - - - - - renderWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_end', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> - - \ No newline at end of file diff --git a/storage/framework/views/b6f2f2127b295971ba72a4240328684469ff8da2.php b/storage/framework/views/2b1931d9365652937373f4da2b3b8425876b7c68.php similarity index 96% rename from storage/framework/views/b6f2f2127b295971ba72a4240328684469ff8da2.php rename to storage/framework/views/2b1931d9365652937373f4da2b3b8425876b7c68.php index 0142ec2..937123b 100644 --- a/storage/framework/views/b6f2f2127b295971ba72a4240328684469ff8da2.php +++ b/storage/framework/views/2b1931d9365652937373f4da2b3b8425876b7c68.php @@ -93,4 +93,4 @@ // crud.addFunctionToDataTablesDrawEventQueue('deleteEntry'); ajax()): ?> stopPush(); ?> - \ No newline at end of file + \ No newline at end of file diff --git a/storage/framework/views/2dbceff50c372ec935ee467e65a72b296d92c9c9.php b/storage/framework/views/2dbceff50c372ec935ee467e65a72b296d92c9c9.php deleted file mode 100644 index 5e7dbb4..0000000 --- a/storage/framework/views/2dbceff50c372ec935ee467e65a72b296d92c9c9.php +++ /dev/null @@ -1,12 +0,0 @@ -exceptProps(['disabled' => false]); ?> - false]), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) { - $$__key = $$__key ?? $__value; -} ?> - - $__value) { - if (array_key_exists($__key, $__defined_vars)) unset($$__key); -} ?> - - - merge(['class' => 'border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 rounded-md shadow-sm']); ?>> - \ No newline at end of file diff --git a/storage/framework/views/2e9a6bed29e74ec02cde7cdb73eda4f370593e7d.php b/storage/framework/views/2e9a6bed29e74ec02cde7cdb73eda4f370593e7d.php deleted file mode 100644 index 8fbf211..0000000 --- a/storage/framework/views/2e9a6bed29e74ec02cde7cdb73eda4f370593e7d.php +++ /dev/null @@ -1,110 +0,0 @@ -exceptProps(['title' => __('Confirm Password'), 'content' => __('For your security, please confirm your password to continue.'), 'button' => __('Confirm')]); ?> - __('Confirm Password'), 'content' => __('For your security, please confirm your password to continue.'), 'button' => __('Confirm')]), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) { - $$__key = $$__key ?? $__value; -} ?> - - $__value) { - if (array_key_exists($__key, $__defined_vars)) unset($$__key); -} ?> - - -wire('then')); -?> - -wire('then')); ?> - - x-data - x-ref="span" - x-on:click="$wire.startConfirmingPassword('')" - x-on:password-confirmed.window="setTimeout(() => $event.detail.id === '' && $refs.span.dispatchEvent(new CustomEvent('then', { bubbles: false })), 250);" -> - - - - -hasRenderedOnce('f4f44ac6-b80d-44d5-abf0-c9aa2d2b224a')): $__env->markAsRenderedOnce('f4f44ac6-b80d-44d5-abf0-c9aa2d2b224a'); ?> - -getContainer()->make(Illuminate\View\AnonymousComponent::class, ['view' => 'jetstream::components.dialog-modal','data' => ['wire:model' => 'confirmingPassword']]); ?> -withName('jet-dialog-modal'); ?> -shouldRender()): ?> -startComponent($component->resolveView(), $component->data()); ?> -withAttributes(['wire:model' => 'confirmingPassword']); ?> - slot('title'); ?> - - - endSlot(); ?> - - slot('content'); ?> - - - -
- -getContainer()->make(Illuminate\View\AnonymousComponent::class, ['view' => 'jetstream::components.input','data' => ['type' => 'password','class' => 'mt-1 block w-3/4','placeholder' => ''.e(__('Password')).'','xRef' => 'confirmable_password','wire:model.defer' => 'confirmablePassword','wire:keydown.enter' => 'confirmPassword']]); ?> -withName('jet-input'); ?> -shouldRender()): ?> -startComponent($component->resolveView(), $component->data()); ?> -withAttributes(['type' => 'password','class' => 'mt-1 block w-3/4','placeholder' => ''.e(__('Password')).'','x-ref' => 'confirmable_password','wire:model.defer' => 'confirmablePassword','wire:keydown.enter' => 'confirmPassword']); ?> - - - - -renderComponent(); ?> - - - -getContainer()->make(Illuminate\View\AnonymousComponent::class, ['view' => 'jetstream::components.input-error','data' => ['for' => 'confirmable_password','class' => 'mt-2']]); ?> -withName('jet-input-error'); ?> -shouldRender()): ?> -startComponent($component->resolveView(), $component->data()); ?> -withAttributes(['for' => 'confirmable_password','class' => 'mt-2']); ?> - - - - -renderComponent(); ?> - -
- endSlot(); ?> - - slot('footer'); ?> - -getContainer()->make(Illuminate\View\AnonymousComponent::class, ['view' => 'jetstream::components.secondary-button','data' => ['wire:click' => 'stopConfirmingPassword','wire:loading.attr' => 'disabled']]); ?> -withName('jet-secondary-button'); ?> -shouldRender()): ?> -startComponent($component->resolveView(), $component->data()); ?> -withAttributes(['wire:click' => 'stopConfirmingPassword','wire:loading.attr' => 'disabled']); ?> - - - - - - -renderComponent(); ?> - - - -getContainer()->make(Illuminate\View\AnonymousComponent::class, ['view' => 'jetstream::components.button','data' => ['class' => 'ml-2','dusk' => 'confirm-password-button','wire:click' => 'confirmPassword','wire:loading.attr' => 'disabled']]); ?> -withName('jet-button'); ?> -shouldRender()): ?> -startComponent($component->resolveView(), $component->data()); ?> -withAttributes(['class' => 'ml-2','dusk' => 'confirm-password-button','wire:click' => 'confirmPassword','wire:loading.attr' => 'disabled']); ?> - - - - - - -renderComponent(); ?> - - endSlot(); ?> - - - - -renderComponent(); ?> - - - \ No newline at end of file diff --git a/storage/framework/views/2ee0b581c3ad89eec6bcbb32f32ca386bf9316bb.php b/storage/framework/views/2ee0b581c3ad89eec6bcbb32f32ca386bf9316bb.php deleted file mode 100644 index 05c799e..0000000 --- a/storage/framework/views/2ee0b581c3ad89eec6bcbb32f32ca386bf9316bb.php +++ /dev/null @@ -1,25 +0,0 @@ - - -renderWhen(!empty($widget['wrapper']), 'backpack::widgets.inc.wrapper_start', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> -
- - -

- - - -

- - - -

- -

- -
-renderWhen(!empty($widget['wrapper']), 'backpack::widgets.inc.wrapper_end', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> \ No newline at end of file diff --git a/storage/framework/views/30c89b88c8d06e1207b562b4d5ffa5f3cef99cb5.php b/storage/framework/views/30c89b88c8d06e1207b562b4d5ffa5f3cef99cb5.php deleted file mode 100644 index c11300e..0000000 --- a/storage/framework/views/30c89b88c8d06e1207b562b4d5ffa5f3cef99cb5.php +++ /dev/null @@ -1,5 +0,0 @@ - - \ No newline at end of file diff --git a/storage/framework/views/328d1e44fd534af8efefe352cb55ea9ddcf6d212.php b/storage/framework/views/328d1e44fd534af8efefe352cb55ea9ddcf6d212.php deleted file mode 100644 index cf6c67b..0000000 --- a/storage/framework/views/328d1e44fd534af8efefe352cb55ea9ddcf6d212.php +++ /dev/null @@ -1,21 +0,0 @@ - 'view', - 'view' => 'backpack::inc.getting_started', - ]; - } else { - $widgets['before_content'][] = [ - 'type' => 'jumbotron', - 'heading' => trans('backpack::base.welcome'), - 'content' => trans('backpack::base.use_sidebar'), - 'button_link' => backpack_url('logout'), - 'button_text' => trans('backpack::base.logout'), - ]; - } -?> - -startSection('content'); ?> -stopSection(); ?> - -make(backpack_view('blank'), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/350b6156034919b484afbcebcf7b820c26745fba.php b/storage/framework/views/350b6156034919b484afbcebcf7b820c26745fba.php deleted file mode 100644 index 5ff5217..0000000 --- a/storage/framework/views/350b6156034919b484afbcebcf7b820c26745fba.php +++ /dev/null @@ -1,14 +0,0 @@ - - addLoop($__currentLoopData); foreach($__currentLoopData as $currentWidget): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> - - - - - - make($currentWidget->getFinalViewPath(), ['widget' => $currentWidget->toArray()], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - - popLoop(); $loop = $__env->getLastLoop(); ?> - - \ No newline at end of file diff --git a/storage/framework/views/3666ec4c10f4b2e33151e54dffe08d533e6a453a.php b/storage/framework/views/3666ec4c10f4b2e33151e54dffe08d533e6a453a.php deleted file mode 100644 index 02aa245..0000000 --- a/storage/framework/views/3666ec4c10f4b2e33151e54dffe08d533e6a453a.php +++ /dev/null @@ -1,14 +0,0 @@ - -groupedErrorsEnabled() && session()->get('errors')): ?> -
- -
- \ No newline at end of file diff --git a/storage/framework/views/36b96f407492145a4bdb484efccd25a05055b4a6.php b/storage/framework/views/36b96f407492145a4bdb484efccd25a05055b4a6.php new file mode 100644 index 0000000..70e3daa --- /dev/null +++ b/storage/framework/views/36b96f407492145a4bdb484efccd25a05055b4a6.php @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/storage/framework/views/38d9b7dd285fd5e0681c59c2c9bb25b25029517d.php b/storage/framework/views/38d9b7dd285fd5e0681c59c2c9bb25b25029517d.php deleted file mode 100644 index 94f38a6..0000000 --- a/storage/framework/views/38d9b7dd285fd5e0681c59c2c9bb25b25029517d.php +++ /dev/null @@ -1 +0,0 @@ -> \ No newline at end of file diff --git a/storage/framework/views/3a50b529c55fa5208f854c0f99f74cb7c2762f09.php b/storage/framework/views/3a50b529c55fa5208f854c0f99f74cb7c2762f09.php deleted file mode 100644 index dee24db..0000000 --- a/storage/framework/views/3a50b529c55fa5208f854c0f99f74cb7c2762f09.php +++ /dev/null @@ -1,6 +0,0 @@ - -addLoop($__currentLoopData); foreach($__currentLoopData as $field): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> - make($crud->getFirstFieldView($field['type'], $field['view_namespace'] ?? false), $field, \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> -popLoop(); $loop = $__env->getLastLoop(); ?> - - \ No newline at end of file diff --git a/storage/framework/views/3a532ff8516f7945f7aaa1eeda9bba5d11dd43c6.php b/storage/framework/views/3a532ff8516f7945f7aaa1eeda9bba5d11dd43c6.php deleted file mode 100644 index 366a448..0000000 --- a/storage/framework/views/3a532ff8516f7945f7aaa1eeda9bba5d11dd43c6.php +++ /dev/null @@ -1,37 +0,0 @@ -hasPages()): ?> - - - \ No newline at end of file diff --git a/storage/framework/views/c2ba446e16d0bcf3f6b5adfc6a8d0ce3a9f7c4ae.php b/storage/framework/views/3f569f4832f935d04c5dc5f53b6e352eb38bff81.php similarity index 86% rename from storage/framework/views/c2ba446e16d0bcf3f6b5adfc6a8d0ce3a9f7c4ae.php rename to storage/framework/views/3f569f4832f935d04c5dc5f53b6e352eb38bff81.php index fc877a0..bbc8a0e 100644 --- a/storage/framework/views/c2ba446e16d0bcf3f6b5adfc6a8d0ce3a9f7c4ae.php +++ b/storage/framework/views/3f569f4832f935d04c5dc5f53b6e352eb38bff81.php @@ -1,5 +1,5 @@
- + @@ -13,4 +13,4 @@ make(backpack_view('inc.menu'), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
- \ No newline at end of file + \ No newline at end of file diff --git a/storage/framework/views/4183f0a277c848a3b0b1529ed41efc0cd5a97c76.php b/storage/framework/views/4183f0a277c848a3b0b1529ed41efc0cd5a97c76.php deleted file mode 100644 index c533925..0000000 --- a/storage/framework/views/4183f0a277c848a3b0b1529ed41efc0cd5a97c76.php +++ /dev/null @@ -1,58 +0,0 @@ -exceptProps(['align' => 'right', 'width' => '48', 'contentClasses' => 'py-1 bg-white', 'dropdownClasses' => '']); ?> - 'right', 'width' => '48', 'contentClasses' => 'py-1 bg-white', 'dropdownClasses' => '']), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) { - $$__key = $$__key ?? $__value; -} ?> - - $__value) { - if (array_key_exists($__key, $__defined_vars)) unset($$__key); -} ?> - - - - -
-
- - -
- - -
- \ No newline at end of file diff --git a/storage/framework/views/41d10288a531c612ba7b9bf2f9fad6152904d202.php b/storage/framework/views/41d10288a531c612ba7b9bf2f9fad6152904d202.php deleted file mode 100644 index 6e573f1..0000000 --- a/storage/framework/views/41d10288a531c612ba7b9bf2f9fad6152904d202.php +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - <?php echo e(config('app.name', 'Laravel')); ?> - - - - "/> - - - - - - - generate(); ?> - - - - generate(); ?> -
- - isLocal()): ?> - - - - - \ No newline at end of file diff --git a/storage/framework/views/76923aa924dedaa89a6e8d26ddb2e496fbeffcea.php b/storage/framework/views/464e9da37c7a8373d270027d246a2afc8872c5f8.php similarity index 76% rename from storage/framework/views/76923aa924dedaa89a6e8d26ddb2e496fbeffcea.php rename to storage/framework/views/464e9da37c7a8373d270027d246a2afc8872c5f8.php index 123c108..17094a9 100644 --- a/storage/framework/views/76923aa924dedaa89a6e8d26ddb2e496fbeffcea.php +++ b/storage/framework/views/464e9da37c7a8373d270027d246a2afc8872c5f8.php @@ -2,7 +2,7 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/storage/framework/views/8f7c044d0c50c42a19204725ee9b7bc77a30d81c.php b/storage/framework/views/46a1515cb5e49fb8fdfdbcfef72ae88f8b4f7d28.php similarity index 84% rename from storage/framework/views/8f7c044d0c50c42a19204725ee9b7bc77a30d81c.php rename to storage/framework/views/46a1515cb5e49fb8fdfdbcfef72ae88f8b4f7d28.php index 016f723..e5a73c2 100644 --- a/storage/framework/views/8f7c044d0c50c42a19204725ee9b7bc77a30d81c.php +++ b/storage/framework/views/46a1515cb5e49fb8fdfdbcfef72ae88f8b4f7d28.php @@ -7,4 +7,4 @@ Backpack for Laravel. - \ No newline at end of file + \ No newline at end of file diff --git a/storage/framework/views/2bd066e0c33bf95e187f8b22530a2a318fa366dc.php b/storage/framework/views/492c231aeda029e92ad264f0a0f75f95ead42e9c.php similarity index 80% rename from storage/framework/views/2bd066e0c33bf95e187f8b22530a2a318fa366dc.php rename to storage/framework/views/492c231aeda029e92ad264f0a0f75f95ead42e9c.php index 60d9640..f1c860a 100644 --- a/storage/framework/views/2bd066e0c33bf95e187f8b22530a2a318fa366dc.php +++ b/storage/framework/views/492c231aeda029e92ad264f0a0f75f95ead42e9c.php @@ -1,12 +1,12 @@ hasAccess('show')): ?> model->translationEnabled()): ?> - + - +
- - \ No newline at end of file + \ No newline at end of file diff --git a/storage/framework/views/4b34e5c232462eac4e560722850eec6540407515.php b/storage/framework/views/4b34e5c232462eac4e560722850eec6540407515.php deleted file mode 100644 index 72a2500..0000000 --- a/storage/framework/views/4b34e5c232462eac4e560722850eec6540407515.php +++ /dev/null @@ -1,28 +0,0 @@ -hasPages()): ?> - - - \ No newline at end of file diff --git a/storage/framework/views/01e979c0d1a6a014d838f877126a1a59f25bd4b8.php b/storage/framework/views/4d8bb3d5a310764c77ea15423dfc59f5e2a5b9aa.php similarity index 89% rename from storage/framework/views/01e979c0d1a6a014d838f877126a1a59f25bd4b8.php rename to storage/framework/views/4d8bb3d5a310764c77ea15423dfc59f5e2a5b9aa.php index a4ef491..49d356f 100644 --- a/storage/framework/views/01e979c0d1a6a014d838f877126a1a59f25bd4b8.php +++ b/storage/framework/views/4d8bb3d5a310764c77ea15423dfc59f5e2a5b9aa.php @@ -115,31 +115,17 @@ { fn = fn[ arr[i] ]; } fn.apply(window, args); }, - updateUrl : function (url) { - let urlStart = "route)); ?>"; - let urlEnd = url.replace(urlStart, ''); - urlEnd = urlEnd.replace('/search', ''); - let newUrl = urlStart + urlEnd; - let tmpUrl = newUrl.split("?")[0], - params_arr = [], - queryString = (newUrl.indexOf("?") !== -1) ? newUrl.split("?")[1] : false; + updateUrl : function (new_url) { + url_start = "route)); ?>"; + url_end = new_url.replace(url_start, ''); + url_end = url_end.replace('/search', ''); + new_url = url_start + url_end; - // exclude the persistent-table parameter from url - if (queryString !== false) { - params_arr = queryString.split("&"); - for (let i = params_arr.length - 1; i >= 0; i--) { - let param = params_arr[i].split("=")[0]; - if (param === 'persistent-table') { - params_arr.splice(i, 1); - } - } - newUrl = params_arr.length ? tmpUrl + "?" + params_arr.join("&") : tmpUrl; - } - window.history.pushState({}, '', newUrl); - localStorage.setItem('getRoute())); ?>_list_url', newUrl); + window.history.pushState({}, '', new_url); + localStorage.setItem('getRoute())); ?>_list_url', new_url); }, dataTableConfiguration: { - bInfo: getOperationSetting('showEntryCount') ?? true)); ?>, + getResponsiveTable()): ?> responsive: { details: { @@ -232,7 +218,7 @@ "thousands": "", "lengthMenu": "", "loadingRecords": "", - "processing": "' alt=''>", + "processing": "' alt=''>", "search": "_INPUT_", "searchPlaceholder": "...", "zeroRecords": "", @@ -257,16 +243,10 @@ }, processing: true, serverSide: true, - getOperationSetting('showEntryCount') === false): ?> - pagingType: "simple", - searching: getOperationSetting('searchableTable') ?? true, 15, 512) ?>, ajax: { "url": "route.'/search').'?'.Request::getQueryString(); ?>", - "type": "POST", - "data": { - "totalEntryCount": "getOperationSetting('totalEntryCount') ?? false); ?>" - }, + "type": "POST" }, dom: "<'row hidden'<'col-sm-6'i><'col-sm-6 d-print-none'f>>" + @@ -275,6 +255,7 @@ } } + make('crud::inc.export_buttons', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> make('crud::inc.details_row_logic', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - \ No newline at end of file + \ No newline at end of file diff --git a/storage/framework/views/4d9ab5a3b9992f7edc1ce24683f45299224121f9.php b/storage/framework/views/4d9ab5a3b9992f7edc1ce24683f45299224121f9.php deleted file mode 100644 index e877299..0000000 --- a/storage/framework/views/4d9ab5a3b9992f7edc1ce24683f45299224121f9.php +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - <?php echo e(config('app.name', 'Laravel')); ?> - - - - "/> - - - - - - - generate(); ?> - - - - generate(); ?> -
- - isLocal()): ?> - - - - - \ No newline at end of file diff --git a/storage/framework/views/505f5cd5c0ab76be03c4a3a8d22a68ed09a0af7a.php b/storage/framework/views/505f5cd5c0ab76be03c4a3a8d22a68ed09a0af7a.php deleted file mode 100644 index 8051ce7..0000000 --- a/storage/framework/views/505f5cd5c0ab76be03c4a3a8d22a68ed09a0af7a.php +++ /dev/null @@ -1,6 +0,0 @@ - -renderWhen(!empty($widget['wrapper']), 'backpack::widgets.inc.wrapper_start', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> - - make($widget['view'], ['widget' => $widget], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - -renderWhen(!empty($widget['wrapper']), 'backpack::widgets.inc.wrapper_end', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> \ No newline at end of file diff --git a/storage/framework/views/5077aee3988cd2c89472dbdd81b5f47403ed5a2d.php b/storage/framework/views/5077aee3988cd2c89472dbdd81b5f47403ed5a2d.php deleted file mode 100644 index 25d2df6..0000000 --- a/storage/framework/views/5077aee3988cd2c89472dbdd81b5f47403ed5a2d.php +++ /dev/null @@ -1,17 +0,0 @@ - - -startSection('title'); ?> - Method not allowed. -stopSection(); ?> - -startSection('description'); ?> - go back or return to our homepage."; - ?> - getMessage()?e($exception->getMessage()):$default_error_message): $default_error_message; ?> - -stopSection(); ?> - -make('errors.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/5256f0fa0b9ec65c85661fb26813687cd4accca2.php b/storage/framework/views/5256f0fa0b9ec65c85661fb26813687cd4accca2.php deleted file mode 100644 index 570f583..0000000 --- a/storage/framework/views/5256f0fa0b9ec65c85661fb26813687cd4accca2.php +++ /dev/null @@ -1,60 +0,0 @@ - \ No newline at end of file diff --git a/storage/framework/views/55a8c038d8c2d3a34e618385780e7ffb51ef2ec4.php b/storage/framework/views/55a8c038d8c2d3a34e618385780e7ffb51ef2ec4.php deleted file mode 100644 index 8122538..0000000 --- a/storage/framework/views/55a8c038d8c2d3a34e618385780e7ffb51ef2ec4.php +++ /dev/null @@ -1,241 +0,0 @@ -route)); ?>> - - -tabsEnabled() && count($crud->getTabs())): ?> - make('crud::inc.show_tabbed_fields', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - - -
-
- make('crud::inc.show_fields', ['fields' => $crud->fields()], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> -
-
- - - - - -startSection('after_styles'); ?> - - - yieldPushContent('crud_fields_styles'); ?> - -stopSection(); ?> - -startSection('after_scripts'); ?> - - - yieldPushContent('crud_fields_scripts'); ?> - - - - make('crud::inc.form_fields_script', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> -stopSection(); ?> - \ No newline at end of file diff --git a/storage/framework/views/5c18aa5db0af1ad4ff9fe2942d267f4b7a035f51.php b/storage/framework/views/5c18aa5db0af1ad4ff9fe2942d267f4b7a035f51.php deleted file mode 100644 index 6939646..0000000 --- a/storage/framework/views/5c18aa5db0af1ad4ff9fe2942d267f4b7a035f51.php +++ /dev/null @@ -1,71 +0,0 @@ -startSection('content'); ?> -
-
-

-
-
-
- - - -
- - -
- - - has($username)): ?> - - first($username)); ?> - - -
-
- -
- - -
- - - has('password')): ?> - - first('password')); ?> - - -
-
- -
-
-
- -
-
-
- -
-
- -
-
-
-
-
- -
- - -
- -
-
-stopSection(); ?> - -make(backpack_view('layouts.plain'), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/67d485c8454b73a41263fd473aca90f9e0637f0f.php b/storage/framework/views/67d485c8454b73a41263fd473aca90f9e0637f0f.php deleted file mode 100644 index 6c71f86..0000000 --- a/storage/framework/views/67d485c8454b73a41263fd473aca90f9e0637f0f.php +++ /dev/null @@ -1,2 +0,0 @@ -merge(['class' => 'rounded border-gray-300 text-indigo-600 shadow-sm focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50']); ?>> - \ No newline at end of file diff --git a/storage/framework/views/689281fe204b471886b1162280823f94c58dab36.php b/storage/framework/views/689281fe204b471886b1162280823f94c58dab36.php deleted file mode 100644 index faa8f84..0000000 --- a/storage/framework/views/689281fe204b471886b1162280823f94c58dab36.php +++ /dev/null @@ -1,21 +0,0 @@ -exceptProps(['active']); ?> - $__value) { - $$__key = $$__key ?? $__value; -} ?> - - $__value) { - if (array_key_exists($__key, $__defined_vars)) unset($$__key); -} ?> - - - - -merge(['class' => $classes])); ?>> - - - - \ No newline at end of file diff --git a/storage/framework/views/691a3ee3272283a25d1778bdeed6f253cba6bb57.php b/storage/framework/views/691a3ee3272283a25d1778bdeed6f253cba6bb57.php deleted file mode 100644 index 1c2d41b..0000000 --- a/storage/framework/views/691a3ee3272283a25d1778bdeed6f253cba6bb57.php +++ /dev/null @@ -1,6 +0,0 @@ - - \ No newline at end of file diff --git a/storage/framework/views/69f317663c848f7bf0573d38e19c2dd5f15adb49.php b/storage/framework/views/69f317663c848f7bf0573d38e19c2dd5f15adb49.php deleted file mode 100644 index b89838b..0000000 --- a/storage/framework/views/69f317663c848f7bf0573d38e19c2dd5f15adb49.php +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/storage/framework/views/6f1bff0298ea9560f2b45ba8a59b48edb5584868.php b/storage/framework/views/6f1bff0298ea9560f2b45ba8a59b48edb5584868.php deleted file mode 100644 index 1124584..0000000 --- a/storage/framework/views/6f1bff0298ea9560f2b45ba8a59b48edb5584868.php +++ /dev/null @@ -1,5 +0,0 @@ -startSection('title', __('Page Expired')); ?> -startSection('code', '419'); ?> -startSection('message', __('Page Expired')); ?> - -make('errors::minimal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/8abd22387a91256b549aeb18b039715830e6ba43.php b/storage/framework/views/6fc31e1cf1c899bfed360f06c45ccdc3da531a79.php similarity index 94% rename from storage/framework/views/8abd22387a91256b549aeb18b039715830e6ba43.php rename to storage/framework/views/6fc31e1cf1c899bfed360f06c45ccdc3da531a79.php index 71314be..753837a 100644 --- a/storage/framework/views/8abd22387a91256b549aeb18b039715830e6ba43.php +++ b/storage/framework/views/6fc31e1cf1c899bfed360f06c45ccdc3da531a79.php @@ -53,4 +53,4 @@ // otherwise details_row buttons wouldn't work on subsequent pages (page 2, page 17, etc) crud.addFunctionToDataTablesDrawEventQueue('registerDetailsRowButtonAction'); - \ No newline at end of file + \ No newline at end of file diff --git a/storage/framework/views/6fd905b04b3545e5fe3efea03b48263034f845d1.php b/storage/framework/views/6fd905b04b3545e5fe3efea03b48263034f845d1.php deleted file mode 100644 index d55f4ad..0000000 --- a/storage/framework/views/6fd905b04b3545e5fe3efea03b48263034f845d1.php +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - <?php echo $__env->yieldContent('title'); ?> - - - - - - - - - - -
-
-
-
- yieldContent('code'); ?> -
- -
- yieldContent('message'); ?> -
-
-
-
- - - \ No newline at end of file diff --git a/storage/framework/views/73392d01a9df7b850566a3612e2878e4eb166dc7.php b/storage/framework/views/73392d01a9df7b850566a3612e2878e4eb166dc7.php deleted file mode 100644 index 28216ba..0000000 --- a/storage/framework/views/73392d01a9df7b850566a3612e2878e4eb166dc7.php +++ /dev/null @@ -1,21 +0,0 @@ -exceptProps(['for']); ?> - $__value) { - $$__key = $$__key ?? $__value; -} ?> - - $__value) { - if (array_key_exists($__key, $__defined_vars)) unset($$__key); -} ?> - - -getBag($__errorArgs[1] ?? 'default'); -if ($__bag->has($__errorArgs[0])) : -if (isset($message)) { $__messageOriginal = $message; } -$message = $__bag->first($__errorArgs[0]); ?> -

merge(['class' => 'text-sm text-red-600'])); ?>>

- - \ No newline at end of file diff --git a/storage/framework/views/7844fb6ee320f9acf8b7fe910c70324af33ab10e.php b/storage/framework/views/7844fb6ee320f9acf8b7fe910c70324af33ab10e.php deleted file mode 100644 index 404673b..0000000 --- a/storage/framework/views/7844fb6ee320f9acf8b7fe910c70324af33ab10e.php +++ /dev/null @@ -1,12 +0,0 @@ -
-
- - -
- -
- - -
-
- \ No newline at end of file diff --git a/storage/framework/views/798eeddb3a03c3745ae669136e9c1eaedd4140ca.php b/storage/framework/views/798eeddb3a03c3745ae669136e9c1eaedd4140ca.php new file mode 100644 index 0000000..76a4293 --- /dev/null +++ b/storage/framework/views/798eeddb3a03c3745ae669136e9c1eaedd4140ca.php @@ -0,0 +1,17 @@ + + addLoop($__currentLoopData); foreach($__currentLoopData as $currentWidget): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + toArray(); + } + ?> + + + make($currentWidget['viewNamespace'].'.'.$currentWidget['type'], ['widget' => $currentWidget], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + make(backpack_view('widgets.'.$currentWidget['type']), ['widget' => $currentWidget], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + popLoop(); $loop = $__env->getLastLoop(); ?> + + \ No newline at end of file diff --git a/storage/framework/views/7a00e57c329e37d560caffdb8ce8393729a2d664.php b/storage/framework/views/7a00e57c329e37d560caffdb8ce8393729a2d664.php deleted file mode 100644 index 3cfa7fd..0000000 --- a/storage/framework/views/7a00e57c329e37d560caffdb8ce8393729a2d664.php +++ /dev/null @@ -1,12 +0,0 @@ -any()): ?> -
> -
- - -
- - \ No newline at end of file diff --git a/storage/framework/views/7a32218e8cefcc3d6a72c414850afa4c7f6e5a4e.php b/storage/framework/views/7a32218e8cefcc3d6a72c414850afa4c7f6e5a4e.php deleted file mode 100644 index 039f1a5..0000000 --- a/storage/framework/views/7a32218e8cefcc3d6a72c414850afa4c7f6e5a4e.php +++ /dev/null @@ -1,39 +0,0 @@ -exceptProps(['id' => null, 'maxWidth' => null]); ?> - null, 'maxWidth' => null]), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) { - $$__key = $$__key ?? $__value; -} ?> - - $__value) { - if (array_key_exists($__key, $__defined_vars)) unset($$__key); -} ?> - - - -getContainer()->make(Illuminate\View\AnonymousComponent::class, ['view' => 'jetstream::components.modal','data' => ['id' => $id,'maxWidth' => $maxWidth,'attributes' => $attributes]]); ?> -withName('jet-modal'); ?> -shouldRender()): ?> -startComponent($component->resolveView(), $component->data()); ?> -withAttributes(['id' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($id),'maxWidth' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($maxWidth),'attributes' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($attributes)]); ?> -
-
- - -
- -
- - -
-
- -
- - -
- - - - -renderComponent(); ?> - - \ No newline at end of file diff --git a/storage/framework/views/7a3cd317bc9b95257c5aabc17dad5a39115b8998.php b/storage/framework/views/7a3cd317bc9b95257c5aabc17dad5a39115b8998.php deleted file mode 100644 index 3fb151d..0000000 --- a/storage/framework/views/7a3cd317bc9b95257c5aabc17dad5a39115b8998.php +++ /dev/null @@ -1,5 +0,0 @@ -startSection('title', __('Page Expired')); ?> -startSection('code', '419'); ?> -startSection('message', __('Page Expired')); ?> - -make('errors::minimal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/7da1b6c0407c2578d10ef54744b843aa72ba47db.php b/storage/framework/views/7da1b6c0407c2578d10ef54744b843aa72ba47db.php deleted file mode 100644 index 47769fc..0000000 --- a/storage/framework/views/7da1b6c0407c2578d10ef54744b843aa72ba47db.php +++ /dev/null @@ -1,16 +0,0 @@ - - - -make('crud::fields.inc.wrapper_start', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - make('crud::fields.inc.attributes', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - > -make('crud::fields.inc.wrapper_end', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - \ No newline at end of file diff --git a/storage/framework/views/7dc9ea8da2e7dd0f8c424ebdd676e19716e16bc2.php b/storage/framework/views/7dc9ea8da2e7dd0f8c424ebdd676e19716e16bc2.php deleted file mode 100644 index 2c80d97..0000000 --- a/storage/framework/views/7dc9ea8da2e7dd0f8c424ebdd676e19716e16bc2.php +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/storage/framework/views/7f5f7d2da0c2a81b1e75a15c73e60e0daa7ece11.php b/storage/framework/views/7f5f7d2da0c2a81b1e75a15c73e60e0daa7ece11.php deleted file mode 100644 index 908909a..0000000 --- a/storage/framework/views/7f5f7d2da0c2a81b1e75a15c73e60e0daa7ece11.php +++ /dev/null @@ -1,16 +0,0 @@ - -make('crud::fields.inc.wrapper_start', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - - make('crud::fields.inc.translatable_icon', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - - - - -

- -make('crud::fields.inc.wrapper_end', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - \ No newline at end of file diff --git a/storage/framework/views/80dd4b062cacbf68fa64fb65cda42dd06e77ffc3.php b/storage/framework/views/80dd4b062cacbf68fa64fb65cda42dd06e77ffc3.php deleted file mode 100644 index ced2dde..0000000 --- a/storage/framework/views/80dd4b062cacbf68fa64fb65cda42dd06e77ffc3.php +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/storage/framework/views/54e72851c52ae69afc8046fa68b8d187c60a80dc.php b/storage/framework/views/81048df2fb9bee2038607c9bec53fbf17923d886.php similarity index 88% rename from storage/framework/views/54e72851c52ae69afc8046fa68b8d187c60a80dc.php rename to storage/framework/views/81048df2fb9bee2038607c9bec53fbf17923d886.php index c64796c..2d41eaf 100644 --- a/storage/framework/views/54e72851c52ae69afc8046fa68b8d187c60a80dc.php +++ b/storage/framework/views/81048df2fb9bee2038607c9bec53fbf17923d886.php @@ -11,4 +11,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/storage/framework/views/810d0265a5b837122d2ab3e2b2e1081e9832862d.php b/storage/framework/views/810d0265a5b837122d2ab3e2b2e1081e9832862d.php deleted file mode 100644 index 405352e..0000000 --- a/storage/framework/views/810d0265a5b837122d2ab3e2b2e1081e9832862d.php +++ /dev/null @@ -1,44 +0,0 @@ - - - - - renderWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_start', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> - - - - - - - - renderWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_end', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> - - \ No newline at end of file diff --git a/storage/framework/views/8ffae13763956816eb2b67a9d1793524091dfd6c.php b/storage/framework/views/8ffae13763956816eb2b67a9d1793524091dfd6c.php deleted file mode 100644 index a968ea8..0000000 --- a/storage/framework/views/8ffae13763956816eb2b67a9d1793524091dfd6c.php +++ /dev/null @@ -1,33 +0,0 @@ - - - - - renderWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_start', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> - - - - - - - - renderWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_end', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> - - \ No newline at end of file diff --git a/storage/framework/views/92a1becddae2f69139bceaed71b251e0a1369e2a.php b/storage/framework/views/92a1becddae2f69139bceaed71b251e0a1369e2a.php deleted file mode 100644 index 53d3131..0000000 --- a/storage/framework/views/92a1becddae2f69139bceaed71b251e0a1369e2a.php +++ /dev/null @@ -1,5 +0,0 @@ - - \ No newline at end of file diff --git a/storage/framework/views/960ce0aaa5f2dd3d085d824ab23b8d116f8762cb.php b/storage/framework/views/960ce0aaa5f2dd3d085d824ab23b8d116f8762cb.php new file mode 100644 index 0000000..accfd6c --- /dev/null +++ b/storage/framework/views/960ce0aaa5f2dd3d085d824ab23b8d116f8762cb.php @@ -0,0 +1,42 @@ + +url($column['prefix'].$value); + } else { // plain-old image, from a local disk + $href = $src = asset( $column['prefix'] . $value); + } + + $column['wrapper']['element'] = $column['wrapper']['element'] ?? 'a'; + $column['wrapper']['href'] = $column['wrapper']['href'] ?? $href; + $column['wrapper']['target'] = $column['wrapper']['target'] ?? '_blank'; + } +?> + + + + - + + renderWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_start', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> + + renderWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_end', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path'])); ?> + + + \ No newline at end of file diff --git a/storage/framework/views/9a796bba2aeb8ec35ea8b66948bec579d8912839.php b/storage/framework/views/9a796bba2aeb8ec35ea8b66948bec579d8912839.php deleted file mode 100644 index 1abe94c..0000000 --- a/storage/framework/views/9a796bba2aeb8ec35ea8b66948bec579d8912839.php +++ /dev/null @@ -1,19 +0,0 @@ -exceptProps(['on']); ?> - $__value) { - $$__key = $$__key ?? $__value; -} ?> - - $__value) { - if (array_key_exists($__key, $__defined_vars)) unset($$__key); -} ?> - - -
merge(['class' => 'text-sm text-gray-600'])); ?>> - isEmpty() ? 'Saved.' : $slot); ?> - -
- \ No newline at end of file diff --git a/storage/framework/views/9be852c438827d788e6db4c96a8bd8f16cbaa191.php b/storage/framework/views/9be852c438827d788e6db4c96a8bd8f16cbaa191.php deleted file mode 100644 index 95daaf6..0000000 --- a/storage/framework/views/9be852c438827d788e6db4c96a8bd8f16cbaa191.php +++ /dev/null @@ -1,5 +0,0 @@ -startSection('title', __('Server Error')); ?> -startSection('code', '500'); ?> -startSection('message', __('Server Error')); ?> - -make('errors::minimal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/9d280605c1e5f9bdbd762173183389f89f9a53fb.php b/storage/framework/views/9d280605c1e5f9bdbd762173183389f89f9a53fb.php deleted file mode 100644 index 1b31284..0000000 --- a/storage/framework/views/9d280605c1e5f9bdbd762173183389f89f9a53fb.php +++ /dev/null @@ -1,112 +0,0 @@ -hasPages()): ?> - - - \ No newline at end of file diff --git a/storage/framework/views/a0da27568693cfe7eab546f7f7c03c7309fbe951.php b/storage/framework/views/a0da27568693cfe7eab546f7f7c03c7309fbe951.php deleted file mode 100644 index 49d2c8f..0000000 --- a/storage/framework/views/a0da27568693cfe7eab546f7f7c03c7309fbe951.php +++ /dev/null @@ -1,297 +0,0 @@ - url(config('backpack.base.route_prefix'), 'dashboard'), - $crud->entity_name_plural => url($crud->route), - trans('backpack::crud.reorder') => false, - ]; - - // if breadcrumbs aren't defined in the CrudController, use the default breadcrumbs - $breadcrumbs = $breadcrumbs ?? $defaultBreadcrumbs; -?> - -startSection('header'); ?> -
-

- getHeading() ?? $crud->entity_name_plural; ?> - getSubheading() ?? trans('backpack::crud.reorder').' '.$crud->entity_name_plural; ?>. - - hasAccess('list')): ?> - entity_name_plural); ?> - -

-
-stopSection(); ?> - -startSection('content'); ?> - tree_element_shown)) { - // mark the element as shown - $all_entries[$key]->tree_element_shown = true; - $entry->tree_element_shown = true; - - // show the tree element - echo '
  • '; - echo '
    '.object_get($entry, $crud->get('reorder.label')).'
    '; - - // see if this element has any children - $children = []; - foreach ($all_entries as $key => $subentry) { - if ($subentry->parent_id == $entry->getKey()) { - $children[] = $subentry; - } - } - - $children = collect($children)->sortBy('lft'); - - // if it does have children, show them - if (count($children)) { - echo '
      '; - foreach ($children as $key => $child) { - $children[$key] = tree_element($child, $child->getKey(), $all_entries, $crud); - } - echo '
    '; - } - echo '
  • '; - } - - return $entry; - } - - ?> - -
    -
    -
    -

    - -
      - all())->sortBy('lft')->keyBy($crud->getModel()->getKeyName()); - $root_entries = $all_entries->filter(function ($item) { - return $item->parent_id == 0; - }); - foreach ($root_entries as $key => $entry) { - $root_entries[$key] = tree_element($entry, $key, $all_entries, $crud); - } - ?> -
    - -
    - - -
    -
    -stopSection(); ?> - - -startSection('after_styles'); ?> - -stopSection(); ?> - -startSection('after_scripts'); ?> - - - - -stopSection(); ?> - -make(backpack_view('blank'), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/efa3dd3f267fb806f771666a074839de2a654ab2.php b/storage/framework/views/a0e5794f9351fcfcc916dd6882b721d986fb0e87.php similarity index 63% rename from storage/framework/views/efa3dd3f267fb806f771666a074839de2a654ab2.php rename to storage/framework/views/a0e5794f9351fcfcc916dd6882b721d986fb0e87.php index 74e0a3a..72d9fba 100644 --- a/storage/framework/views/efa3dd3f267fb806f771666a074839de2a654ab2.php +++ b/storage/framework/views/a0e5794f9351fcfcc916dd6882b721d986fb0e87.php @@ -1,21 +1,21 @@ - - - + + + + - - - - + + + - - \ No newline at end of file + + \ No newline at end of file diff --git a/storage/framework/views/a1fc085cd2f412f2c9940440c8837149a6005f07.php b/storage/framework/views/a1fc085cd2f412f2c9940440c8837149a6005f07.php deleted file mode 100644 index 9906ef4..0000000 --- a/storage/framework/views/a1fc085cd2f412f2c9940440c8837149a6005f07.php +++ /dev/null @@ -1,5 +0,0 @@ -startSection('title', __('Server Error')); ?> -startSection('code', '500'); ?> -startSection('message', __('Server Error')); ?> - -make('errors::minimal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/a22646446f754a9aa3f0fb4b6da8c8309821c671.php b/storage/framework/views/a2c3618ef297befe64888f164a74151f9c90a686.php similarity index 80% rename from storage/framework/views/a22646446f754a9aa3f0fb4b6da8c8309821c671.php rename to storage/framework/views/a2c3618ef297befe64888f164a74151f9c90a686.php index 18ef3a0..c3a06ec 100644 --- a/storage/framework/views/a22646446f754a9aa3f0fb4b6da8c8309821c671.php +++ b/storage/framework/views/a2c3618ef297befe64888f164a74151f9c90a686.php @@ -1,12 +1,12 @@ hasAccess('update')): ?> model->translationEnabled()): ?> - + - +
    - - \ No newline at end of file + \ No newline at end of file diff --git a/storage/framework/views/a40ac6e1cfdf6c015c26689df1c1d4322aeeb3a2.php b/storage/framework/views/a40ac6e1cfdf6c015c26689df1c1d4322aeeb3a2.php deleted file mode 100644 index dedbec9..0000000 --- a/storage/framework/views/a40ac6e1cfdf6c015c26689df1c1d4322aeeb3a2.php +++ /dev/null @@ -1,77 +0,0 @@ -exceptProps(['id', 'maxWidth']); ?> - $__value) { - $$__key = $$__key ?? $__value; -} ?> - - $__value) { - if (array_key_exists($__key, $__defined_vars)) unset($$__key); -} ?> - - -wire('model')); - -$maxWidth = [ - 'sm' => 'sm:max-w-sm', - 'md' => 'sm:max-w-md', - 'lg' => 'sm:max-w-lg', - 'xl' => 'sm:max-w-xl', - '2xl' => 'sm:max-w-2xl', -][$maxWidth ?? '2xl']; -?> - - - \ No newline at end of file diff --git a/storage/framework/views/a4e9ff6384146b18a3fca2eb9462d60142efe291.php b/storage/framework/views/a4e9ff6384146b18a3fca2eb9462d60142efe291.php deleted file mode 100644 index 771e4c3..0000000 --- a/storage/framework/views/a4e9ff6384146b18a3fca2eb9462d60142efe291.php +++ /dev/null @@ -1,77 +0,0 @@ -startComponent('mail::message'); ?> - - -# - - - -# get('Whoops!'); ?> - -# get('Hello!'); ?> - - - - -addLoop($__currentLoopData); foreach($__currentLoopData as $line): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> - - - -popLoop(); $loop = $__env->getLastLoop(); ?> - - - - -startComponent('mail::button', ['url' => $actionUrl, 'color' => $color]); ?> - - - - - - -renderComponent(); ?> - - - -addLoop($__currentLoopData); foreach($__currentLoopData as $line): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> - - - -popLoop(); $loop = $__env->getLastLoop(); ?> - - - - - - -get('Regards'); ?>,
    - - - - - - -slot('subcopy'); ?> -get( - "If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\n". - 'into your web browser:', - [ - 'actionText' => $actionText, - ] -); ?> []() -endSlot(); ?> - - - - - -renderComponent(); ?> - \ No newline at end of file diff --git a/storage/framework/views/a50656c49f3b36834b2ec491351b7d395e33994a.php b/storage/framework/views/a50656c49f3b36834b2ec491351b7d395e33994a.php deleted file mode 100644 index ebd0152..0000000 --- a/storage/framework/views/a50656c49f3b36834b2ec491351b7d395e33994a.php +++ /dev/null @@ -1,36 +0,0 @@ - -
    - - - -
    - - - - -
    - - - - -
    - - -
    - - - hasOperationSetting('showCancelButton') || $crud->getOperationSetting('showCancelButton') == true): ?> -   - - -
    - - - \ No newline at end of file diff --git a/storage/framework/views/a5c2b5c5446c8c08640dc0e1a6a2eee5f461f9e0.php b/storage/framework/views/a5c2b5c5446c8c08640dc0e1a6a2eee5f461f9e0.php deleted file mode 100644 index bbe218b..0000000 --- a/storage/framework/views/a5c2b5c5446c8c08640dc0e1a6a2eee5f461f9e0.php +++ /dev/null @@ -1,2 +0,0 @@ -merge(['class' => 'block px-4 py-2 text-sm leading-5 text-gray-700 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 transition'])); ?>> - \ No newline at end of file diff --git a/storage/framework/views/a9bb738ea592e7a742b1671953c73e606e1aa6d3.php b/storage/framework/views/a9bb738ea592e7a742b1671953c73e606e1aa6d3.php new file mode 100644 index 0000000..59334ed --- /dev/null +++ b/storage/framework/views/a9bb738ea592e7a742b1671953c73e606e1aa6d3.php @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/storage/framework/views/aa7b479797d83c6e67b8d29d5073d8d8d22e2b28.php b/storage/framework/views/aa7b479797d83c6e67b8d29d5073d8d8d22e2b28.php deleted file mode 100644 index bf193f6..0000000 --- a/storage/framework/views/aa7b479797d83c6e67b8d29d5073d8d8d22e2b28.php +++ /dev/null @@ -1,47 +0,0 @@ -hasPages()): ?> - - - \ No newline at end of file diff --git a/storage/framework/views/af7959b6384cba432a5a30c30b054155991d33e6.php b/storage/framework/views/af7959b6384cba432a5a30c30b054155991d33e6.php deleted file mode 100644 index c68d0b8..0000000 --- a/storage/framework/views/af7959b6384cba432a5a30c30b054155991d33e6.php +++ /dev/null @@ -1,28 +0,0 @@ - - - - make(backpack_view('inc.head'), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - - - - yieldContent('header'); ?> - -
    - yieldContent('content'); ?> -
    - - - - yieldContent('before_scripts'); ?> - yieldPushContent('before_scripts'); ?> - - make(backpack_view('inc.scripts'), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - - yieldContent('after_scripts'); ?> - yieldPushContent('after_scripts'); ?> - - - - \ No newline at end of file diff --git a/storage/framework/views/b12a2cd5162de5fb5ee4ddfa0156936349d9b328.php b/storage/framework/views/b12a2cd5162de5fb5ee4ddfa0156936349d9b328.php deleted file mode 100644 index 2d9e031..0000000 --- a/storage/framework/views/b12a2cd5162de5fb5ee4ddfa0156936349d9b328.php +++ /dev/null @@ -1,102 +0,0 @@ -
    -
    - -getContainer()->make(Illuminate\View\AnonymousComponent::class, ['view' => 'jetstream::components.application-logo','data' => ['class' => 'block h-12 w-auto']]); ?> -withName('jet-application-logo'); ?> -shouldRender()): ?> -startComponent($component->resolveView(), $component->data()); ?> -withAttributes(['class' => 'block h-12 w-auto']); ?> - - - - -renderComponent(); ?> - -
    - -
    - Welcome to your Jetstream application! -
    - -
    - Laravel Jetstream provides a beautiful, robust starting point for your next Laravel application. Laravel is designed - to help you build your application using a development environment that is simple, powerful, and enjoyable. We believe - you should love expressing your creativity through programming, so we have spent time carefully crafting the Laravel - ecosystem to be a breath of fresh air. We hope you love it. -
    -
    - -
    -
    - - -
    -
    - Laravel has wonderful documentation covering every aspect of the framework. Whether you're new to the framework or have previous experience, we recommend reading all of the documentation from beginning to end. -
    - - -
    -
    Explore the documentation
    - -
    - -
    -
    -
    -
    -
    - -
    -
    - - -
    - -
    -
    - Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript development. Check them out, see for yourself, and massively level up your development skills in the process. -
    - - -
    -
    Start watching Laracasts
    - -
    - -
    -
    -
    -
    -
    - -
    -
    - - -
    - -
    -
    - Laravel Jetstream is built with Tailwind, an amazing utility first CSS framework that doesn't get in your way. You'll be amazed how easily you can build and maintain fresh, modern designs with this wonderful framework at your fingertips. -
    -
    -
    - -
    -
    - -
    Authentication
    -
    - -
    -
    - Authentication and registration views are included with Laravel Jetstream, as well as support for user email verification and resetting forgotten passwords. So, you're free to get started what matters most: building your application. -
    -
    -
    -
    - \ No newline at end of file diff --git a/storage/framework/views/b39e438fa522717d904be66947b7d217810195c3.php b/storage/framework/views/b5bacf735b59723eb6dda3a86ae23f42141d50ea.php similarity index 62% rename from storage/framework/views/b39e438fa522717d904be66947b7d217810195c3.php rename to storage/framework/views/b5bacf735b59723eb6dda3a86ae23f42141d50ea.php index 7a42114..0ce4699 100644 --- a/storage/framework/views/b39e438fa522717d904be66947b7d217810195c3.php +++ b/storage/framework/views/b5bacf735b59723eb6dda3a86ae23f42141d50ea.php @@ -2,4 +2,5 @@ - \ No newline at end of file + + \ No newline at end of file diff --git a/storage/framework/views/b60516e4799ff372adc5403328beb70f916f3518.php b/storage/framework/views/b60516e4799ff372adc5403328beb70f916f3518.php deleted file mode 100644 index 8fcf90e..0000000 --- a/storage/framework/views/b60516e4799ff372adc5403328beb70f916f3518.php +++ /dev/null @@ -1,2 +0,0 @@ -make('crud::fields.checkbox', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> - \ No newline at end of file diff --git a/storage/framework/views/b7590d736d5f013102b6ca1fddefda6f71f0a322.php b/storage/framework/views/b7590d736d5f013102b6ca1fddefda6f71f0a322.php deleted file mode 100644 index f5728d0..0000000 --- a/storage/framework/views/b7590d736d5f013102b6ca1fddefda6f71f0a322.php +++ /dev/null @@ -1,6 +0,0 @@ -> - - - - - \ No newline at end of file diff --git a/storage/framework/views/b7c6d201ef81f9c5c7c2e8b7cc286fa55cf94b0f.php b/storage/framework/views/b7c6d201ef81f9c5c7c2e8b7cc286fa55cf94b0f.php deleted file mode 100644 index d4d3b69..0000000 --- a/storage/framework/views/b7c6d201ef81f9c5c7c2e8b7cc286fa55cf94b0f.php +++ /dev/null @@ -1,86 +0,0 @@ -startSection('content'); ?> -
    -
    -

    -
    -
    -
    - - - -
    - - -
    - - - has('name')): ?> - - first('name')); ?> - - -
    -
    - -
    - - -
    - - - has(backpack_authentication_column())): ?> - - first(backpack_authentication_column())); ?> - - -
    -
    - -
    - - -
    - - - has('password')): ?> - - first('password')); ?> - - -
    -
    - -
    - - -
    - - - has('password_confirmation')): ?> - - first('password_confirmation')); ?> - - -
    -
    - -
    -
    - -
    -
    -
    -
    -
    - -
    - -
    -
    -
    -stopSection(); ?> - -make(backpack_view('layouts.plain'), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/storage/framework/views/b7dde6293fae472751354aafa94bdc36cb71d389.php b/storage/framework/views/b7dde6293fae472751354aafa94bdc36cb71d389.php deleted file mode 100644 index 2fb8e5b..0000000 --- a/storage/framework/views/b7dde6293fae472751354aafa94bdc36cb71d389.php +++ /dev/null @@ -1,16 +0,0 @@ -
    -
    -

    - -

    - - -

    -
    - -
    - - -
    -
    - \ No newline at end of file diff --git a/storage/framework/views/eef61714fcd9bed309ed85fb38bb9a5a43678484.php b/storage/framework/views/b8eca53b52548999bcb2ced21c4ef7869719c5f2.php similarity index 92% rename from storage/framework/views/eef61714fcd9bed309ed85fb38bb9a5a43678484.php rename to storage/framework/views/b8eca53b52548999bcb2ced21c4ef7869719c5f2.php index fd72e87..b4f4ea1 100644 --- a/storage/framework/views/eef61714fcd9bed309ed85fb38bb9a5a43678484.php +++ b/storage/framework/views/b8eca53b52548999bcb2ced21c4ef7869719c5f2.php @@ -37,7 +37,7 @@ - +