Commit f8605b4d authored by alissonalbuquerque's avatar alissonalbuquerque
Browse files

Merge branch 'main' into feat_task_time

parents 92bb9a49 f49e28fd
...@@ -120,7 +120,7 @@ class AvaliadorPadController extends Controller ...@@ -120,7 +120,7 @@ class AvaliadorPadController extends Controller
$users = User::all(); $users = User::all();
$dimensoes = Dimensao::listDimensao(); $dimensoes = Dimensao::listDimensao();
return view('avaliator-pad.create', [ return view('avaliator_pad.create', [
'pad' => $pad, 'pad' => $pad,
'model' => $model, 'model' => $model,
'users' => $users, 'users' => $users,
...@@ -139,7 +139,7 @@ class AvaliadorPadController extends Controller ...@@ -139,7 +139,7 @@ class AvaliadorPadController extends Controller
$users = User::all(); $users = User::all();
$dimensoes = Dimensao::listDimensao(); $dimensoes = Dimensao::listDimensao();
return view('avaliator-pad.update', [ return view('avaliator_pad.update', [
'pad' => $pad, 'pad' => $pad,
'model' => $model, 'model' => $model,
'users' => $users, 'users' => $users,
......
...@@ -17,10 +17,8 @@ use Illuminate\Support\Facades\Auth; ...@@ -17,10 +17,8 @@ use Illuminate\Support\Facades\Auth;
class DashboardController extends Controller class DashboardController extends Controller
{ {
public function index() public function index()
{ {
$user = Auth::user(); $user = Auth::user();
if ($user->isTypeAdmin()) { if ($user->isTypeAdmin()) {
...@@ -28,6 +26,7 @@ class DashboardController extends Controller ...@@ -28,6 +26,7 @@ class DashboardController extends Controller
} }
if ($user->isTypeTeacher()) { if ($user->isTypeTeacher()) {
$userPads = UserPad::whereUserId($user->id)->whereStatus(Status::ATIVO)->get(); $userPads = UserPad::whereUserId($user->id)->whereStatus(Status::ATIVO)->get();
return view('dashboard', ['userPads' => $userPads, 'menu' => Menu::HOME]); return view('dashboard', ['userPads' => $userPads, 'menu' => Menu::HOME]);
...@@ -50,7 +49,5 @@ class DashboardController extends Controller ...@@ -50,7 +49,5 @@ class DashboardController extends Controller
return view('dashboard', ['userPads' => $userPads, 'menu' => Menu::HOME]); return view('dashboard', ['userPads' => $userPads, 'menu' => Menu::HOME]);
} }
//return redirect()->route('login');
} }
} }
<?php
namespace App\Http\Controllers;
use App\Models\Util\Menu;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Storage;
class DownloadFileController extends Controller
{
public function index() {
return view('download.index', [
'menu' => Menu::FILES,
]);
}
public function degreeSchedule() {
return Storage::download('public/grade_horario.docx');
}
public function manual() {
return Storage::download('public/manual.pdf');
}
}
...@@ -32,7 +32,7 @@ class TaskTimeController extends Controller ...@@ -32,7 +32,7 @@ class TaskTimeController extends Controller
if($model->save()) { if($model->save()) {
return redirect() return redirect()
->route('TaskTimeIndex', ['user_pad_id' => $model->user_pad_id]) ->route('task_time_index', ['user_pad_id' => $model->user_pad_id])
->with('success', 'Cadastro realizado com sucesso!'); ->with('success', 'Cadastro realizado com sucesso!');
} }
} }
...@@ -54,12 +54,12 @@ class TaskTimeController extends Controller ...@@ -54,12 +54,12 @@ class TaskTimeController extends Controller
if($model->save()) { if($model->save()) {
return redirect() return redirect()
->route('TaskTimeIndex', ['user_pad_id' => $model->user_pad_id]) ->route('task_time_index', ['user_pad_id' => $model->user_pad_id])
->with('success', 'Atualizado com sucesso!'); ->with('success', 'Atualizado com sucesso!');
} }
return redirect() return redirect()
->route('TaskTimeIndex', ['user_pad_id' => $model->user_pad_id]) ->route('task_time_index', ['user_pad_id' => $model->user_pad_id])
->with('fail', 'Erro ao Atualizar!'); ->with('fail', 'Erro ao Atualizar!');
} }
...@@ -70,12 +70,12 @@ class TaskTimeController extends Controller ...@@ -70,12 +70,12 @@ class TaskTimeController extends Controller
if($model->delete()) { if($model->delete()) {
return redirect() return redirect()
->route('TaskTimeIndex', ['user_pad_id' => $model->user_pad_id]) ->route('task_time_index', ['user_pad_id' => $model->user_pad_id])
->with('success', 'Deletado com sucesso!'); ->with('success', 'Deletado com sucesso!');
} }
return redirect() return redirect()
->route('TaskTimeIndex', ['user_pad_id' => $model->user_pad_id]) ->route('task_time_index', ['user_pad_id' => $model->user_pad_id])
->with('fail', 'Erro ao Deletar!'); ->with('fail', 'Erro ao Deletar!');
} }
......
...@@ -30,6 +30,7 @@ use App\Models\Tabelas\Pesquisa\PesquisaOrientacao; ...@@ -30,6 +30,7 @@ use App\Models\Tabelas\Pesquisa\PesquisaOrientacao;
use App\Models\Tabelas\Pesquisa\PesquisaOutros; use App\Models\Tabelas\Pesquisa\PesquisaOutros;
use App\Rules\ValidationGreaterThanTime; use App\Rules\ValidationGreaterThanTime;
use App\Rules\ValidationLimitTime; use App\Rules\ValidationLimitTime;
use Carbon\Carbon;
use DateInterval; use DateInterval;
use DateTime; use DateTime;
use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Model;
...@@ -376,6 +377,14 @@ class TaskTime extends Model ...@@ -376,6 +377,14 @@ class TaskTime extends Model
return $dateTime->format($format); return $dateTime->format($format);
} }
public function formatStartTime() {
return Carbon::createFromFormat('H:i:s', $this->start_time)->format('H:i');
}
public function formatEndTime() {
return Carbon::createFromFormat('H:i:s', $this->end_time)->format('H:i');
}
/** /**
* STATIC METHODS * STATIC METHODS
*/ */
......
...@@ -193,7 +193,7 @@ class User extends Authenticatable ...@@ -193,7 +193,7 @@ class User extends Authenticatable
*/ */
public function profileSelected() public function profileSelected()
{ {
return $this->profiles()->whereSelected(true)->first(); return $this->profiles()->first();
} }
/** /**
......
...@@ -11,9 +11,5 @@ class Menu ...@@ -11,9 +11,5 @@ class Menu
const CURSOS = 5; const CURSOS = 5;
const UNIDADES = 6; const UNIDADES = 6;
const PADS = 7; const PADS = 7;
const FILES = 8;
//Deletar depois
const DIRETORES = 4;
const COORDENADORES = 5;
const PROFESSORES = 7;
} }
\ No newline at end of file
...@@ -6,6 +6,7 @@ use Illuminate\Pagination\Paginator; ...@@ -6,6 +6,7 @@ use Illuminate\Pagination\Paginator;
use Illuminate\Support\ServiceProvider; use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Collection; use Illuminate\Support\Collection;
use Illuminate\Pagination\LengthAwarePaginator; use Illuminate\Pagination\LengthAwarePaginator;
use Illuminate\Routing\UrlGenerator;
class AppServiceProvider extends ServiceProvider class AppServiceProvider extends ServiceProvider
{ {
...@@ -24,8 +25,12 @@ class AppServiceProvider extends ServiceProvider ...@@ -24,8 +25,12 @@ class AppServiceProvider extends ServiceProvider
* *
* @return void * @return void
*/ */
public function boot() public function boot(UrlGenerator $url)
{ {
if (env('APP_ENV') !== 'local') { //so you can work on it locally
$url->forceScheme('https');
}
Paginator::useBootstrap(); Paginator::useBootstrap();
Collection::macro('paginate', function($perPage, $total = null, $page = null, $pageName = 'page'): LengthAwarePaginator { Collection::macro('paginate', function($perPage, $total = null, $page = null, $pageName = 'page'): LengthAwarePaginator {
......
...@@ -196,16 +196,16 @@ ...@@ -196,16 +196,16 @@
}, },
{ {
"name": "composer/semver", "name": "composer/semver",
"version": "3.3.2", "version": "3.4.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/composer/semver.git", "url": "https://github.com/composer/semver.git",
"reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9" "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9", "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
"reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9", "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -255,9 +255,9 @@ ...@@ -255,9 +255,9 @@
"versioning" "versioning"
], ],
"support": { "support": {
"irc": "irc://irc.freenode.org/composer", "irc": "ircs://irc.libera.chat:6697/composer",
"issues": "https://github.com/composer/semver/issues", "issues": "https://github.com/composer/semver/issues",
"source": "https://github.com/composer/semver/tree/3.3.2" "source": "https://github.com/composer/semver/tree/3.4.0"
}, },
"funding": [ "funding": [
{ {
...@@ -273,7 +273,7 @@ ...@@ -273,7 +273,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-04-01T19:23:25+00:00" "time": "2023-08-31T09:50:34+00:00"
}, },
{ {
"name": "dflydev/dot-access-data", "name": "dflydev/dot-access-data",
...@@ -445,16 +445,16 @@ ...@@ -445,16 +445,16 @@
}, },
{ {
"name": "doctrine/dbal", "name": "doctrine/dbal",
"version": "3.6.3", "version": "3.7.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/doctrine/dbal.git", "url": "https://github.com/doctrine/dbal.git",
"reference": "9a747d29e7e6b39509b8f1847e37a23a0163ea6a" "reference": "00d03067f07482f025d41ab55e4ba0db5eca2cdf"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/doctrine/dbal/zipball/9a747d29e7e6b39509b8f1847e37a23a0163ea6a", "url": "https://api.github.com/repos/doctrine/dbal/zipball/00d03067f07482f025d41ab55e4ba0db5eca2cdf",
"reference": "9a747d29e7e6b39509b8f1847e37a23a0163ea6a", "reference": "00d03067f07482f025d41ab55e4ba0db5eca2cdf",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -469,11 +469,12 @@ ...@@ -469,11 +469,12 @@
"require-dev": { "require-dev": {
"doctrine/coding-standard": "12.0.0", "doctrine/coding-standard": "12.0.0",
"fig/log-test": "^1", "fig/log-test": "^1",
"jetbrains/phpstorm-stubs": "2022.3", "jetbrains/phpstorm-stubs": "2023.1",
"phpstan/phpstan": "1.10.14", "phpstan/phpstan": "1.10.35",
"phpstan/phpstan-strict-rules": "^1.5", "phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "9.6.7", "phpunit/phpunit": "9.6.13",
"psalm/plugin-phpunit": "0.18.4", "psalm/plugin-phpunit": "0.18.4",
"slevomat/coding-standard": "8.13.1",
"squizlabs/php_codesniffer": "3.7.2", "squizlabs/php_codesniffer": "3.7.2",
"symfony/cache": "^5.4|^6.0", "symfony/cache": "^5.4|^6.0",
"symfony/console": "^4.4|^5.4|^6.0", "symfony/console": "^4.4|^5.4|^6.0",
...@@ -537,7 +538,7 @@ ...@@ -537,7 +538,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/doctrine/dbal/issues", "issues": "https://github.com/doctrine/dbal/issues",
"source": "https://github.com/doctrine/dbal/tree/3.6.3" "source": "https://github.com/doctrine/dbal/tree/3.7.0"
}, },
"funding": [ "funding": [
{ {
...@@ -553,20 +554,20 @@ ...@@ -553,20 +554,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-06-01T05:46:46+00:00" "time": "2023-09-26T20:56:55+00:00"
}, },
{ {
"name": "doctrine/deprecations", "name": "doctrine/deprecations",
"version": "v1.1.1", "version": "1.1.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/doctrine/deprecations.git", "url": "https://github.com/doctrine/deprecations.git",
"reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3" "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3", "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
"reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3", "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -598,9 +599,9 @@ ...@@ -598,9 +599,9 @@
"homepage": "https://www.doctrine-project.org/", "homepage": "https://www.doctrine-project.org/",
"support": { "support": {
"issues": "https://github.com/doctrine/deprecations/issues", "issues": "https://github.com/doctrine/deprecations/issues",
"source": "https://github.com/doctrine/deprecations/tree/v1.1.1" "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
}, },
"time": "2023-06-03T09:27:29+00:00" "time": "2023-09-27T20:04:15+00:00"
}, },
{ {
"name": "doctrine/event-manager", "name": "doctrine/event-manager",
...@@ -924,16 +925,16 @@ ...@@ -924,16 +925,16 @@
}, },
{ {
"name": "dragonmantank/cron-expression", "name": "dragonmantank/cron-expression",
"version": "v3.3.2", "version": "v3.3.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/dragonmantank/cron-expression.git", "url": "https://github.com/dragonmantank/cron-expression.git",
"reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8" "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8", "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
"reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8", "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -973,7 +974,7 @@ ...@@ -973,7 +974,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/dragonmantank/cron-expression/issues", "issues": "https://github.com/dragonmantank/cron-expression/issues",
"source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2" "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
}, },
"funding": [ "funding": [
{ {
...@@ -981,7 +982,7 @@ ...@@ -981,7 +982,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2022-09-10T18:51:20+00:00" "time": "2023-08-10T19:36:49+00:00"
}, },
{ {
"name": "egulias/email-validator", "name": "egulias/email-validator",
...@@ -1256,22 +1257,22 @@ ...@@ -1256,22 +1257,22 @@
}, },
{ {
"name": "guzzlehttp/guzzle", "name": "guzzlehttp/guzzle",
"version": "7.7.0", "version": "7.8.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/guzzle/guzzle.git", "url": "https://github.com/guzzle/guzzle.git",
"reference": "fb7566caccf22d74d1ab270de3551f72a58399f5" "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/fb7566caccf22d74d1ab270de3551f72a58399f5", "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9",
"reference": "fb7566caccf22d74d1ab270de3551f72a58399f5", "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-json": "*", "ext-json": "*",
"guzzlehttp/promises": "^1.5.3 || ^2.0", "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
"guzzlehttp/psr7": "^1.9.1 || ^2.4.5", "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
"php": "^7.2.5 || ^8.0", "php": "^7.2.5 || ^8.0",
"psr/http-client": "^1.0", "psr/http-client": "^1.0",
"symfony/deprecation-contracts": "^2.2 || ^3.0" "symfony/deprecation-contracts": "^2.2 || ^3.0"
...@@ -1362,7 +1363,7 @@ ...@@ -1362,7 +1363,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/guzzle/guzzle/issues", "issues": "https://github.com/guzzle/guzzle/issues",
"source": "https://github.com/guzzle/guzzle/tree/7.7.0" "source": "https://github.com/guzzle/guzzle/tree/7.8.0"
}, },
"funding": [ "funding": [
{ {
...@@ -1378,20 +1379,20 @@ ...@@ -1378,20 +1379,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-05-21T14:04:53+00:00" "time": "2023-08-27T10:20:53+00:00"
}, },
{ {
"name": "guzzlehttp/promises", "name": "guzzlehttp/promises",
"version": "2.0.0", "version": "2.0.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/guzzle/promises.git", "url": "https://github.com/guzzle/promises.git",
"reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6" "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/guzzle/promises/zipball/3a494dc7dc1d7d12e511890177ae2d0e6c107da6", "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
"reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6", "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1445,7 +1446,7 @@ ...@@ -1445,7 +1446,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/guzzle/promises/issues", "issues": "https://github.com/guzzle/promises/issues",
"source": "https://github.com/guzzle/promises/tree/2.0.0" "source": "https://github.com/guzzle/promises/tree/2.0.1"
}, },
"funding": [ "funding": [
{ {
...@@ -1461,20 +1462,20 @@ ...@@ -1461,20 +1462,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-05-21T13:50:22+00:00" "time": "2023-08-03T15:11:55+00:00"
}, },
{ {
"name": "guzzlehttp/psr7", "name": "guzzlehttp/psr7",
"version": "2.5.0", "version": "2.6.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/guzzle/psr7.git", "url": "https://github.com/guzzle/psr7.git",
"reference": "b635f279edd83fc275f822a1188157ffea568ff6" "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6", "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
"reference": "b635f279edd83fc275f822a1188157ffea568ff6", "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1561,7 +1562,7 @@ ...@@ -1561,7 +1562,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/guzzle/psr7/issues", "issues": "https://github.com/guzzle/psr7/issues",
"source": "https://github.com/guzzle/psr7/tree/2.5.0" "source": "https://github.com/guzzle/psr7/tree/2.6.1"
}, },
"funding": [ "funding": [
{ {
...@@ -1577,7 +1578,7 @@ ...@@ -1577,7 +1578,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-04-17T16:11:26+00:00" "time": "2023-08-27T10:13:57+00:00"
}, },
{ {
"name": "laravel/framework", "name": "laravel/framework",
...@@ -1819,16 +1820,16 @@ ...@@ -1819,16 +1820,16 @@
}, },
{ {
"name": "laravel/serializable-closure", "name": "laravel/serializable-closure",
"version": "v1.3.0", "version": "v1.3.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/serializable-closure.git", "url": "https://github.com/laravel/serializable-closure.git",
"reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37" "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/e5a3057a5591e1cfe8183034b0203921abe2c902",
"reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1875,20 +1876,20 @@ ...@@ -1875,20 +1876,20 @@
"issues": "https://github.com/laravel/serializable-closure/issues", "issues": "https://github.com/laravel/serializable-closure/issues",
"source": "https://github.com/laravel/serializable-closure" "source": "https://github.com/laravel/serializable-closure"
}, },
"time": "2023-01-30T18:31:20+00:00" "time": "2023-07-14T13:56:28+00:00"
}, },
{ {
"name": "laravel/tinker", "name": "laravel/tinker",
"version": "v2.8.1", "version": "v2.8.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/tinker.git", "url": "https://github.com/laravel/tinker.git",
"reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10" "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
"reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1901,6 +1902,7 @@ ...@@ -1901,6 +1902,7 @@
}, },
"require-dev": { "require-dev": {
"mockery/mockery": "~1.3.3|^1.4.2", "mockery/mockery": "~1.3.3|^1.4.2",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^8.5.8|^9.3.3" "phpunit/phpunit": "^8.5.8|^9.3.3"
}, },
"suggest": { "suggest": {
...@@ -1941,22 +1943,22 @@ ...@@ -1941,22 +1943,22 @@
], ],
"support": { "support": {
"issues": "https://github.com/laravel/tinker/issues", "issues": "https://github.com/laravel/tinker/issues",
"source": "https://github.com/laravel/tinker/tree/v2.8.1" "source": "https://github.com/laravel/tinker/tree/v2.8.2"
}, },
"time": "2023-02-15T16:40:09+00:00" "time": "2023-08-15T14:27:00+00:00"
}, },
{ {
"name": "league/commonmark", "name": "league/commonmark",
"version": "2.4.0", "version": "2.4.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/thephpleague/commonmark.git", "url": "https://github.com/thephpleague/commonmark.git",
"reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048" "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048", "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
"reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048", "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2049,7 +2051,7 @@ ...@@ -2049,7 +2051,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-03-24T15:16:10+00:00" "time": "2023-08-30T16:55:00+00:00"
}, },
{ {
"name": "league/config", "name": "league/config",
...@@ -2229,26 +2231,26 @@ ...@@ -2229,26 +2231,26 @@
}, },
{ {
"name": "league/mime-type-detection", "name": "league/mime-type-detection",
"version": "1.11.0", "version": "1.13.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/thephpleague/mime-type-detection.git", "url": "https://github.com/thephpleague/mime-type-detection.git",
"reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
"reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-fileinfo": "*", "ext-fileinfo": "*",
"php": "^7.2 || ^8.0" "php": "^7.4 || ^8.0"
}, },
"require-dev": { "require-dev": {
"friendsofphp/php-cs-fixer": "^3.2", "friendsofphp/php-cs-fixer": "^3.2",
"phpstan/phpstan": "^0.12.68", "phpstan/phpstan": "^0.12.68",
"phpunit/phpunit": "^8.5.8 || ^9.3" "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
}, },
"type": "library", "type": "library",
"autoload": { "autoload": {
...@@ -2269,7 +2271,7 @@ ...@@ -2269,7 +2271,7 @@
"description": "Mime-type detection for Flysystem", "description": "Mime-type detection for Flysystem",
"support": { "support": {
"issues": "https://github.com/thephpleague/mime-type-detection/issues", "issues": "https://github.com/thephpleague/mime-type-detection/issues",
"source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
}, },
"funding": [ "funding": [
{ {
...@@ -2281,7 +2283,7 @@ ...@@ -2281,7 +2283,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-04-17T13:12:02+00:00" "time": "2023-08-05T12:09:49+00:00"
}, },
{ {
"name": "maatwebsite/excel", "name": "maatwebsite/excel",
...@@ -2365,16 +2367,16 @@ ...@@ -2365,16 +2367,16 @@
}, },
{ {
"name": "maennchen/zipstream-php", "name": "maennchen/zipstream-php",
"version": "3.0.2", "version": "3.1.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/maennchen/ZipStream-PHP.git", "url": "https://github.com/maennchen/ZipStream-PHP.git",
"reference": "b46726e666b5d2ad32959ae9492ee1034e798162" "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b46726e666b5d2ad32959ae9492ee1034e798162", "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b8174494eda667f7d13876b4a7bfef0f62a7c0d1",
"reference": "b46726e666b5d2ad32959ae9492ee1034e798162", "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2430,7 +2432,7 @@ ...@@ -2430,7 +2432,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/maennchen/ZipStream-PHP/issues", "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
"source": "https://github.com/maennchen/ZipStream-PHP/tree/3.0.2" "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.0"
}, },
"funding": [ "funding": [
{ {
...@@ -2442,7 +2444,7 @@ ...@@ -2442,7 +2444,7 @@
"type": "open_collective" "type": "open_collective"
} }
], ],
"time": "2023-04-19T19:51:03+00:00" "time": "2023-06-21T14:59:35+00:00"
}, },
{ {
"name": "markbaker/complex", "name": "markbaker/complex",
...@@ -2553,16 +2555,16 @@ ...@@ -2553,16 +2555,16 @@
}, },
{ {
"name": "masterminds/html5", "name": "masterminds/html5",
"version": "2.8.0", "version": "2.8.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/Masterminds/html5-php.git", "url": "https://github.com/Masterminds/html5-php.git",
"reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3" "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
"reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2614,9 +2616,9 @@ ...@@ -2614,9 +2616,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/Masterminds/html5-php/issues", "issues": "https://github.com/Masterminds/html5-php/issues",
"source": "https://github.com/Masterminds/html5-php/tree/2.8.0" "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
}, },
"time": "2023-04-26T07:27:39+00:00" "time": "2023-05-10T11:58:31+00:00"
}, },
{ {
"name": "monolog/monolog", "name": "monolog/monolog",
...@@ -2722,25 +2724,29 @@ ...@@ -2722,25 +2724,29 @@
}, },
{ {
"name": "nesbot/carbon", "name": "nesbot/carbon",
"version": "2.67.0", "version": "2.71.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/briannesbitt/Carbon.git", "url": "https://github.com/briannesbitt/Carbon.git",
"reference": "c1001b3bc75039b07f38a79db5237c4c529e04c8" "reference": "98276233188583f2ff845a0f992a235472d9466a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c1001b3bc75039b07f38a79db5237c4c529e04c8", "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/98276233188583f2ff845a0f992a235472d9466a",
"reference": "c1001b3bc75039b07f38a79db5237c4c529e04c8", "reference": "98276233188583f2ff845a0f992a235472d9466a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-json": "*", "ext-json": "*",
"php": "^7.1.8 || ^8.0", "php": "^7.1.8 || ^8.0",
"psr/clock": "^1.0",
"symfony/polyfill-mbstring": "^1.0", "symfony/polyfill-mbstring": "^1.0",
"symfony/polyfill-php80": "^1.16", "symfony/polyfill-php80": "^1.16",
"symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
}, },
"provide": {
"psr/clock-implementation": "1.0"
},
"require-dev": { "require-dev": {
"doctrine/dbal": "^2.0 || ^3.1.4", "doctrine/dbal": "^2.0 || ^3.1.4",
"doctrine/orm": "^2.7", "doctrine/orm": "^2.7",
...@@ -2820,25 +2826,25 @@ ...@@ -2820,25 +2826,25 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-05-25T22:09:47+00:00" "time": "2023-09-25T11:31:05+00:00"
}, },
{ {
"name": "nette/schema", "name": "nette/schema",
"version": "v1.2.3", "version": "v1.2.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nette/schema.git", "url": "https://github.com/nette/schema.git",
"reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f" "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", "url": "https://api.github.com/repos/nette/schema/zipball/c9ff517a53903b3d4e29ec547fb20feecb05b8ab",
"reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
"php": ">=7.1 <8.3" "php": "7.1 - 8.3"
}, },
"require-dev": { "require-dev": {
"nette/tester": "^2.3 || ^2.4", "nette/tester": "^2.3 || ^2.4",
...@@ -2880,26 +2886,26 @@ ...@@ -2880,26 +2886,26 @@
], ],
"support": { "support": {
"issues": "https://github.com/nette/schema/issues", "issues": "https://github.com/nette/schema/issues",
"source": "https://github.com/nette/schema/tree/v1.2.3" "source": "https://github.com/nette/schema/tree/v1.2.4"
}, },
"time": "2022-10-13T01:24:26+00:00" "time": "2023-08-05T18:56:25+00:00"
}, },
{ {
"name": "nette/utils", "name": "nette/utils",
"version": "v4.0.0", "version": "v4.0.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nette/utils.git", "url": "https://github.com/nette/utils.git",
"reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e" "reference": "cead6637226456b35e1175cc53797dd585d85545"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e", "url": "https://api.github.com/repos/nette/utils/zipball/cead6637226456b35e1175cc53797dd585d85545",
"reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e", "reference": "cead6637226456b35e1175cc53797dd585d85545",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=8.0 <8.3" "php": ">=8.0 <8.4"
}, },
"conflict": { "conflict": {
"nette/finder": "<3", "nette/finder": "<3",
...@@ -2907,7 +2913,7 @@ ...@@ -2907,7 +2913,7 @@
}, },
"require-dev": { "require-dev": {
"jetbrains/phpstorm-attributes": "dev-master", "jetbrains/phpstorm-attributes": "dev-master",
"nette/tester": "^2.4", "nette/tester": "^2.5",
"phpstan/phpstan": "^1.0", "phpstan/phpstan": "^1.0",
"tracy/tracy": "^2.9" "tracy/tracy": "^2.9"
}, },
...@@ -2917,8 +2923,7 @@ ...@@ -2917,8 +2923,7 @@
"ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
"ext-json": "to use Nette\\Utils\\Json", "ext-json": "to use Nette\\Utils\\Json",
"ext-mbstring": "to use Strings::lower() etc...", "ext-mbstring": "to use Strings::lower() etc...",
"ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
"ext-xml": "to use Strings::length() etc. when mbstring is not available"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
...@@ -2967,22 +2972,22 @@ ...@@ -2967,22 +2972,22 @@
], ],
"support": { "support": {
"issues": "https://github.com/nette/utils/issues", "issues": "https://github.com/nette/utils/issues",
"source": "https://github.com/nette/utils/tree/v4.0.0" "source": "https://github.com/nette/utils/tree/v4.0.2"
}, },
"time": "2023-02-02T10:41:53+00:00" "time": "2023-09-19T11:58:07+00:00"
}, },
{ {
"name": "nikic/php-parser", "name": "nikic/php-parser",
"version": "v4.15.5", "version": "v4.17.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nikic/PHP-Parser.git", "url": "https://github.com/nikic/PHP-Parser.git",
"reference": "11e2663a5bc9db5d714eedb4277ee300403b4a9e" "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/11e2663a5bc9db5d714eedb4277ee300403b4a9e", "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
"reference": "11e2663a5bc9db5d714eedb4277ee300403b4a9e", "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3023,9 +3028,9 @@ ...@@ -3023,9 +3028,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/nikic/PHP-Parser/issues", "issues": "https://github.com/nikic/PHP-Parser/issues",
"source": "https://github.com/nikic/PHP-Parser/tree/v4.15.5" "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
}, },
"time": "2023-05-19T20:20:00+00:00" "time": "2023-08-13T19:53:39+00:00"
}, },
{ {
"name": "opis/closure", "name": "opis/closure",
...@@ -3411,6 +3416,54 @@ ...@@ -3411,6 +3416,54 @@
}, },
"time": "2021-02-03T23:26:27+00:00" "time": "2021-02-03T23:26:27+00:00"
}, },
{
"name": "psr/clock",
"version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/clock.git",
"reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
"reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
"shasum": ""
},
"require": {
"php": "^7.0 || ^8.0"
},
"type": "library",
"autoload": {
"psr-4": {
"Psr\\Clock\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for reading the clock.",
"homepage": "https://github.com/php-fig/clock",
"keywords": [
"clock",
"now",
"psr",
"psr-20",
"time"
],
"support": {
"issues": "https://github.com/php-fig/clock/issues",
"source": "https://github.com/php-fig/clock/tree/1.0.0"
},
"time": "2022-11-25T14:36:26+00:00"
},
{ {
"name": "psr/container", "name": "psr/container",
"version": "1.1.2", "version": "1.1.2",
...@@ -3511,16 +3564,16 @@ ...@@ -3511,16 +3564,16 @@
}, },
{ {
"name": "psr/http-client", "name": "psr/http-client",
"version": "1.0.2", "version": "1.0.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/php-fig/http-client.git", "url": "https://github.com/php-fig/http-client.git",
"reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31" "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31", "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
"reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31", "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3557,9 +3610,9 @@ ...@@ -3557,9 +3610,9 @@
"psr-18" "psr-18"
], ],
"support": { "support": {
"source": "https://github.com/php-fig/http-client/tree/1.0.2" "source": "https://github.com/php-fig/http-client"
}, },
"time": "2023-04-10T20:12:12+00:00" "time": "2023-09-23T14:17:50+00:00"
}, },
{ {
"name": "psr/http-factory", "name": "psr/http-factory",
...@@ -3772,16 +3825,16 @@ ...@@ -3772,16 +3825,16 @@
}, },
{ {
"name": "psy/psysh", "name": "psy/psysh",
"version": "v0.11.18", "version": "v0.11.21",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/bobthecow/psysh.git", "url": "https://github.com/bobthecow/psysh.git",
"reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec" "reference": "bcb22101107f3bf770523b65630c9d547f60c540"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/4f00ee9e236fa6a48f4560d1300b9c961a70a7ec", "url": "https://api.github.com/repos/bobthecow/psysh/zipball/bcb22101107f3bf770523b65630c9d547f60c540",
"reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec", "reference": "bcb22101107f3bf770523b65630c9d547f60c540",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3811,6 +3864,10 @@ ...@@ -3811,6 +3864,10 @@
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "0.11.x-dev" "dev-main": "0.11.x-dev"
},
"bamarni-bin": {
"bin-links": false,
"forward-command": false
} }
}, },
"autoload": { "autoload": {
...@@ -3842,9 +3899,9 @@ ...@@ -3842,9 +3899,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/bobthecow/psysh/issues", "issues": "https://github.com/bobthecow/psysh/issues",
"source": "https://github.com/bobthecow/psysh/tree/v0.11.18" "source": "https://github.com/bobthecow/psysh/tree/v0.11.21"
}, },
"time": "2023-05-23T02:31:11+00:00" "time": "2023-09-17T21:15:54+00:00"
}, },
{ {
"name": "ralouphie/getallheaders", "name": "ralouphie/getallheaders",
...@@ -4202,16 +4259,16 @@ ...@@ -4202,16 +4259,16 @@
}, },
{ {
"name": "symfony/console", "name": "symfony/console",
"version": "v5.4.24", "version": "v5.4.28",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/console.git", "url": "https://github.com/symfony/console.git",
"reference": "560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8" "reference": "f4f71842f24c2023b91237c72a365306f3c58827"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8", "url": "https://api.github.com/repos/symfony/console/zipball/f4f71842f24c2023b91237c72a365306f3c58827",
"reference": "560fc3ed7a43e6d30ea94a07d77f9a60b8ed0fb8", "reference": "f4f71842f24c2023b91237c72a365306f3c58827",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4281,7 +4338,7 @@ ...@@ -4281,7 +4338,7 @@
"terminal" "terminal"
], ],
"support": { "support": {
"source": "https://github.com/symfony/console/tree/v5.4.24" "source": "https://github.com/symfony/console/tree/v5.4.28"
}, },
"funding": [ "funding": [
{ {
...@@ -4297,20 +4354,20 @@ ...@@ -4297,20 +4354,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-05-26T05:13:16+00:00" "time": "2023-08-07T06:12:30+00:00"
}, },
{ {
"name": "symfony/css-selector", "name": "symfony/css-selector",
"version": "v6.3.0", "version": "v6.3.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/css-selector.git", "url": "https://github.com/symfony/css-selector.git",
"reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf" "reference": "883d961421ab1709877c10ac99451632a3d6fa57"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/css-selector/zipball/88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf", "url": "https://api.github.com/repos/symfony/css-selector/zipball/883d961421ab1709877c10ac99451632a3d6fa57",
"reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf", "reference": "883d961421ab1709877c10ac99451632a3d6fa57",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4346,7 +4403,7 @@ ...@@ -4346,7 +4403,7 @@
"description": "Converts CSS selectors to XPath expressions", "description": "Converts CSS selectors to XPath expressions",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/css-selector/tree/v6.3.0" "source": "https://github.com/symfony/css-selector/tree/v6.3.2"
}, },
"funding": [ "funding": [
{ {
...@@ -4362,7 +4419,7 @@ ...@@ -4362,7 +4419,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-03-20T16:43:42+00:00" "time": "2023-07-12T16:00:22+00:00"
}, },
{ {
"name": "symfony/deprecation-contracts", "name": "symfony/deprecation-contracts",
...@@ -4433,16 +4490,16 @@ ...@@ -4433,16 +4490,16 @@
}, },
{ {
"name": "symfony/error-handler", "name": "symfony/error-handler",
"version": "v5.4.24", "version": "v5.4.26",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/error-handler.git", "url": "https://github.com/symfony/error-handler.git",
"reference": "c1b9be3b8a6f60f720bec28c4ffb6fb5b00a8946" "reference": "b26719213a39c9ba57520cbc5e52bfcc5e8d92f9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/c1b9be3b8a6f60f720bec28c4ffb6fb5b00a8946", "url": "https://api.github.com/repos/symfony/error-handler/zipball/b26719213a39c9ba57520cbc5e52bfcc5e8d92f9",
"reference": "c1b9be3b8a6f60f720bec28c4ffb6fb5b00a8946", "reference": "b26719213a39c9ba57520cbc5e52bfcc5e8d92f9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4484,7 +4541,7 @@ ...@@ -4484,7 +4541,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code", "description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/error-handler/tree/v5.4.24" "source": "https://github.com/symfony/error-handler/tree/v5.4.26"
}, },
"funding": [ "funding": [
{ {
...@@ -4500,20 +4557,20 @@ ...@@ -4500,20 +4557,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-05-02T16:13:31+00:00" "time": "2023-07-16T16:48:57+00:00"
}, },
{ {
"name": "symfony/event-dispatcher", "name": "symfony/event-dispatcher",
"version": "v6.3.0", "version": "v6.3.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/event-dispatcher.git", "url": "https://github.com/symfony/event-dispatcher.git",
"reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa" "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa", "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
"reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa", "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4564,7 +4621,7 @@ ...@@ -4564,7 +4621,7 @@
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/event-dispatcher/tree/v6.3.0" "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
}, },
"funding": [ "funding": [
{ {
...@@ -4580,7 +4637,7 @@ ...@@ -4580,7 +4637,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-04-21T14:41:17+00:00" "time": "2023-07-06T06:56:43+00:00"
}, },
{ {
"name": "symfony/event-dispatcher-contracts", "name": "symfony/event-dispatcher-contracts",
...@@ -4660,16 +4717,16 @@ ...@@ -4660,16 +4717,16 @@
}, },
{ {
"name": "symfony/finder", "name": "symfony/finder",
"version": "v5.4.21", "version": "v5.4.27",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/finder.git", "url": "https://github.com/symfony/finder.git",
"reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19" "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/finder/zipball/078e9a5e1871fcfe6a5ce421b539344c21afef19", "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
"reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19", "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4703,7 +4760,7 @@ ...@@ -4703,7 +4760,7 @@
"description": "Finds files and directories via an intuitive fluent interface", "description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/finder/tree/v5.4.21" "source": "https://github.com/symfony/finder/tree/v5.4.27"
}, },
"funding": [ "funding": [
{ {
...@@ -4719,20 +4776,20 @@ ...@@ -4719,20 +4776,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-02-16T09:33:00+00:00" "time": "2023-07-31T08:02:31+00:00"
}, },
{ {
"name": "symfony/http-foundation", "name": "symfony/http-foundation",
"version": "v5.4.24", "version": "v5.4.28",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-foundation.git", "url": "https://github.com/symfony/http-foundation.git",
"reference": "3c59f97f6249ce552a44f01b93bfcbd786a954f5" "reference": "365992c83a836dfe635f1e903ccca43ee03d3dd2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/3c59f97f6249ce552a44f01b93bfcbd786a954f5", "url": "https://api.github.com/repos/symfony/http-foundation/zipball/365992c83a836dfe635f1e903ccca43ee03d3dd2",
"reference": "3c59f97f6249ce552a44f01b93bfcbd786a954f5", "reference": "365992c83a836dfe635f1e903ccca43ee03d3dd2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4779,7 +4836,7 @@ ...@@ -4779,7 +4836,7 @@
"description": "Defines an object-oriented layer for the HTTP specification", "description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/http-foundation/tree/v5.4.24" "source": "https://github.com/symfony/http-foundation/tree/v5.4.28"
}, },
"funding": [ "funding": [
{ {
...@@ -4795,20 +4852,20 @@ ...@@ -4795,20 +4852,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-05-19T07:21:23+00:00" "time": "2023-08-21T07:23:18+00:00"
}, },
{ {
"name": "symfony/http-kernel", "name": "symfony/http-kernel",
"version": "v5.4.24", "version": "v5.4.28",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-kernel.git", "url": "https://github.com/symfony/http-kernel.git",
"reference": "f38b722e1557eb3f487d351b48f5a1279b50e9d1" "reference": "127a2322ca1828157901092518b8ea8e4e1109d4"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/f38b722e1557eb3f487d351b48f5a1279b50e9d1", "url": "https://api.github.com/repos/symfony/http-kernel/zipball/127a2322ca1828157901092518b8ea8e4e1109d4",
"reference": "f38b722e1557eb3f487d351b48f5a1279b50e9d1", "reference": "127a2322ca1828157901092518b8ea8e4e1109d4",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4891,7 +4948,7 @@ ...@@ -4891,7 +4948,7 @@
"description": "Provides a structured process for converting a Request into a Response", "description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/http-kernel/tree/v5.4.24" "source": "https://github.com/symfony/http-kernel/tree/v5.4.28"
}, },
"funding": [ "funding": [
{ {
...@@ -4907,20 +4964,20 @@ ...@@ -4907,20 +4964,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-05-27T08:06:30+00:00" "time": "2023-08-26T13:47:51+00:00"
}, },
{ {
"name": "symfony/mime", "name": "symfony/mime",
"version": "v5.4.23", "version": "v5.4.26",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/mime.git", "url": "https://github.com/symfony/mime.git",
"reference": "ae0a1032a450a3abf305ee44fc55ed423fbf16e3" "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/mime/zipball/ae0a1032a450a3abf305ee44fc55ed423fbf16e3", "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
"reference": "ae0a1032a450a3abf305ee44fc55ed423fbf16e3", "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4935,7 +4992,7 @@ ...@@ -4935,7 +4992,7 @@
"phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/reflection-docblock": "<3.2.2",
"phpdocumentor/type-resolver": "<1.4.0", "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" "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
}, },
"require-dev": { "require-dev": {
"egulias/email-validator": "^2.1.10|^3.1|^4", "egulias/email-validator": "^2.1.10|^3.1|^4",
...@@ -4943,7 +5000,7 @@ ...@@ -4943,7 +5000,7 @@
"symfony/dependency-injection": "^4.4|^5.0|^6.0", "symfony/dependency-injection": "^4.4|^5.0|^6.0",
"symfony/property-access": "^4.4|^5.1|^6.0", "symfony/property-access": "^4.4|^5.1|^6.0",
"symfony/property-info": "^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" "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
}, },
"type": "library", "type": "library",
"autoload": { "autoload": {
...@@ -4975,7 +5032,7 @@ ...@@ -4975,7 +5032,7 @@
"mime-type" "mime-type"
], ],
"support": { "support": {
"source": "https://github.com/symfony/mime/tree/v5.4.23" "source": "https://github.com/symfony/mime/tree/v5.4.26"
}, },
"funding": [ "funding": [
{ {
...@@ -4991,20 +5048,20 @@ ...@@ -4991,20 +5048,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-04-19T09:49:13+00:00" "time": "2023-07-27T06:29:31+00:00"
}, },
{ {
"name": "symfony/polyfill-ctype", "name": "symfony/polyfill-ctype",
"version": "v1.27.0", "version": "v1.28.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git", "url": "https://github.com/symfony/polyfill-ctype.git",
"reference": "5bbc823adecdae860bb64756d639ecfec17b050a" "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
"reference": "5bbc823adecdae860bb64756d639ecfec17b050a", "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5019,7 +5076,7 @@ ...@@ -5019,7 +5076,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "1.27-dev" "dev-main": "1.28-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/polyfill", "name": "symfony/polyfill",
...@@ -5057,7 +5114,7 @@ ...@@ -5057,7 +5114,7 @@
"portable" "portable"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
}, },
"funding": [ "funding": [
{ {
...@@ -5073,20 +5130,20 @@ ...@@ -5073,20 +5130,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-03T14:55:06+00:00" "time": "2023-01-26T09:26:14+00:00"
}, },
{ {
"name": "symfony/polyfill-iconv", "name": "symfony/polyfill-iconv",
"version": "v1.27.0", "version": "v1.28.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-iconv.git", "url": "https://github.com/symfony/polyfill-iconv.git",
"reference": "927013f3aac555983a5059aada98e1907d842695" "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695", "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
"reference": "927013f3aac555983a5059aada98e1907d842695", "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5101,7 +5158,7 @@ ...@@ -5101,7 +5158,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "1.27-dev" "dev-main": "1.28-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/polyfill", "name": "symfony/polyfill",
...@@ -5140,7 +5197,7 @@ ...@@ -5140,7 +5197,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0" "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
}, },
"funding": [ "funding": [
{ {
...@@ -5156,20 +5213,20 @@ ...@@ -5156,20 +5213,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-03T14:55:06+00:00" "time": "2023-01-26T09:26:14+00:00"
}, },
{ {
"name": "symfony/polyfill-intl-grapheme", "name": "symfony/polyfill-intl-grapheme",
"version": "v1.27.0", "version": "v1.28.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-intl-grapheme.git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
"reference": "511a08c03c1960e08a883f4cffcacd219b758354" "reference": "875e90aeea2777b6f135677f618529449334a612"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354", "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
"reference": "511a08c03c1960e08a883f4cffcacd219b758354", "reference": "875e90aeea2777b6f135677f618529449334a612",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5181,7 +5238,7 @@ ...@@ -5181,7 +5238,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "1.27-dev" "dev-main": "1.28-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/polyfill", "name": "symfony/polyfill",
...@@ -5221,7 +5278,7 @@ ...@@ -5221,7 +5278,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0" "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
}, },
"funding": [ "funding": [
{ {
...@@ -5237,20 +5294,20 @@ ...@@ -5237,20 +5294,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-03T14:55:06+00:00" "time": "2023-01-26T09:26:14+00:00"
}, },
{ {
"name": "symfony/polyfill-intl-idn", "name": "symfony/polyfill-intl-idn",
"version": "v1.27.0", "version": "v1.28.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-intl-idn.git", "url": "https://github.com/symfony/polyfill-intl-idn.git",
"reference": "639084e360537a19f9ee352433b84ce831f3d2da" "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
"reference": "639084e360537a19f9ee352433b84ce831f3d2da", "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5264,7 +5321,7 @@ ...@@ -5264,7 +5321,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "1.27-dev" "dev-main": "1.28-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/polyfill", "name": "symfony/polyfill",
...@@ -5308,7 +5365,7 @@ ...@@ -5308,7 +5365,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
}, },
"funding": [ "funding": [
{ {
...@@ -5324,20 +5381,20 @@ ...@@ -5324,20 +5381,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-03T14:55:06+00:00" "time": "2023-01-26T09:30:37+00:00"
}, },
{ {
"name": "symfony/polyfill-intl-normalizer", "name": "symfony/polyfill-intl-normalizer",
"version": "v1.27.0", "version": "v1.28.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-intl-normalizer.git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
"reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
"reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5349,7 +5406,7 @@ ...@@ -5349,7 +5406,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "1.27-dev" "dev-main": "1.28-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/polyfill", "name": "symfony/polyfill",
...@@ -5392,7 +5449,7 @@ ...@@ -5392,7 +5449,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
}, },
"funding": [ "funding": [
{ {
...@@ -5408,20 +5465,20 @@ ...@@ -5408,20 +5465,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-03T14:55:06+00:00" "time": "2023-01-26T09:26:14+00:00"
}, },
{ {
"name": "symfony/polyfill-mbstring", "name": "symfony/polyfill-mbstring",
"version": "v1.27.0", "version": "v1.28.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git", "url": "https://github.com/symfony/polyfill-mbstring.git",
"reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" "reference": "42292d99c55abe617799667f454222c54c60e229"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
"reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", "reference": "42292d99c55abe617799667f454222c54c60e229",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5436,7 +5493,7 @@ ...@@ -5436,7 +5493,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "1.27-dev" "dev-main": "1.28-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/polyfill", "name": "symfony/polyfill",
...@@ -5475,7 +5532,7 @@ ...@@ -5475,7 +5532,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
}, },
"funding": [ "funding": [
{ {
...@@ -5491,20 +5548,20 @@ ...@@ -5491,20 +5548,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-03T14:55:06+00:00" "time": "2023-07-28T09:04:16+00:00"
}, },
{ {
"name": "symfony/polyfill-php72", "name": "symfony/polyfill-php72",
"version": "v1.27.0", "version": "v1.28.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-php72.git", "url": "https://github.com/symfony/polyfill-php72.git",
"reference": "869329b1e9894268a8a61dabb69153029b7a8c97" "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
"reference": "869329b1e9894268a8a61dabb69153029b7a8c97", "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5513,7 +5570,7 @@ ...@@ -5513,7 +5570,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "1.27-dev" "dev-main": "1.28-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/polyfill", "name": "symfony/polyfill",
...@@ -5551,7 +5608,7 @@ ...@@ -5551,7 +5608,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0" "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
}, },
"funding": [ "funding": [
{ {
...@@ -5567,20 +5624,20 @@ ...@@ -5567,20 +5624,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-03T14:55:06+00:00" "time": "2023-01-26T09:26:14+00:00"
}, },
{ {
"name": "symfony/polyfill-php73", "name": "symfony/polyfill-php73",
"version": "v1.27.0", "version": "v1.28.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-php73.git", "url": "https://github.com/symfony/polyfill-php73.git",
"reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9" "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9", "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
"reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9", "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5589,7 +5646,7 @@ ...@@ -5589,7 +5646,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "1.27-dev" "dev-main": "1.28-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/polyfill", "name": "symfony/polyfill",
...@@ -5630,7 +5687,7 @@ ...@@ -5630,7 +5687,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0" "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
}, },
"funding": [ "funding": [
{ {
...@@ -5646,20 +5703,20 @@ ...@@ -5646,20 +5703,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-03T14:55:06+00:00" "time": "2023-01-26T09:26:14+00:00"
}, },
{ {
"name": "symfony/polyfill-php80", "name": "symfony/polyfill-php80",
"version": "v1.27.0", "version": "v1.28.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-php80.git", "url": "https://github.com/symfony/polyfill-php80.git",
"reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
"reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5668,7 +5725,7 @@ ...@@ -5668,7 +5725,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "1.27-dev" "dev-main": "1.28-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/polyfill", "name": "symfony/polyfill",
...@@ -5713,7 +5770,7 @@ ...@@ -5713,7 +5770,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
}, },
"funding": [ "funding": [
{ {
...@@ -5729,20 +5786,20 @@ ...@@ -5729,20 +5786,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-03T14:55:06+00:00" "time": "2023-01-26T09:26:14+00:00"
}, },
{ {
"name": "symfony/process", "name": "symfony/process",
"version": "v5.4.24", "version": "v5.4.28",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/process.git", "url": "https://github.com/symfony/process.git",
"reference": "e3c46cc5689c8782944274bb30702106ecbe3b64" "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/process/zipball/e3c46cc5689c8782944274bb30702106ecbe3b64", "url": "https://api.github.com/repos/symfony/process/zipball/45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
"reference": "e3c46cc5689c8782944274bb30702106ecbe3b64", "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5775,7 +5832,7 @@ ...@@ -5775,7 +5832,7 @@
"description": "Executes commands in sub-processes", "description": "Executes commands in sub-processes",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/process/tree/v5.4.24" "source": "https://github.com/symfony/process/tree/v5.4.28"
}, },
"funding": [ "funding": [
{ {
...@@ -5791,20 +5848,20 @@ ...@@ -5791,20 +5848,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-05-17T11:26:05+00:00" "time": "2023-08-07T10:36:04+00:00"
}, },
{ {
"name": "symfony/routing", "name": "symfony/routing",
"version": "v5.4.22", "version": "v5.4.26",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/routing.git", "url": "https://github.com/symfony/routing.git",
"reference": "c2ac11eb34947999b7c38fb4c835a57306907e6d" "reference": "853fc7df96befc468692de0a48831b38f04d2cb2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/routing/zipball/c2ac11eb34947999b7c38fb4c835a57306907e6d", "url": "https://api.github.com/repos/symfony/routing/zipball/853fc7df96befc468692de0a48831b38f04d2cb2",
"reference": "c2ac11eb34947999b7c38fb4c835a57306907e6d", "reference": "853fc7df96befc468692de0a48831b38f04d2cb2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5865,7 +5922,7 @@ ...@@ -5865,7 +5922,7 @@
"url" "url"
], ],
"support": { "support": {
"source": "https://github.com/symfony/routing/tree/v5.4.22" "source": "https://github.com/symfony/routing/tree/v5.4.26"
}, },
"funding": [ "funding": [
{ {
...@@ -5881,7 +5938,7 @@ ...@@ -5881,7 +5938,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-03-14T14:59:20+00:00" "time": "2023-07-24T13:28:37+00:00"
}, },
{ {
"name": "symfony/service-contracts", "name": "symfony/service-contracts",
...@@ -5968,16 +6025,16 @@ ...@@ -5968,16 +6025,16 @@
}, },
{ {
"name": "symfony/string", "name": "symfony/string",
"version": "v6.3.0", "version": "v6.3.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/string.git", "url": "https://github.com/symfony/string.git",
"reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f" "reference": "53d1a83225002635bca3482fcbf963001313fb68"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/string/zipball/f2e190ee75ff0f5eced645ec0be5c66fac81f51f", "url": "https://api.github.com/repos/symfony/string/zipball/53d1a83225002635bca3482fcbf963001313fb68",
"reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f", "reference": "53d1a83225002635bca3482fcbf963001313fb68",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -6034,7 +6091,7 @@ ...@@ -6034,7 +6091,7 @@
"utf8" "utf8"
], ],
"support": { "support": {
"source": "https://github.com/symfony/string/tree/v6.3.0" "source": "https://github.com/symfony/string/tree/v6.3.2"
}, },
"funding": [ "funding": [
{ {
...@@ -6050,24 +6107,25 @@ ...@@ -6050,24 +6107,25 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-03-21T21:06:29+00:00" "time": "2023-07-05T08:41:27+00:00"
}, },
{ {
"name": "symfony/translation", "name": "symfony/translation",
"version": "v6.3.0", "version": "v6.3.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/translation.git", "url": "https://github.com/symfony/translation.git",
"reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f" "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/translation/zipball/f72b2cba8f79dd9d536f534f76874b58ad37876f", "url": "https://api.github.com/repos/symfony/translation/zipball/3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
"reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f", "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=8.1", "php": ">=8.1",
"symfony/deprecation-contracts": "^2.5|^3",
"symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-mbstring": "~1.0",
"symfony/translation-contracts": "^2.5|^3.0" "symfony/translation-contracts": "^2.5|^3.0"
}, },
...@@ -6128,7 +6186,7 @@ ...@@ -6128,7 +6186,7 @@
"description": "Provides tools to internationalize your application", "description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/translation/tree/v6.3.0" "source": "https://github.com/symfony/translation/tree/v6.3.3"
}, },
"funding": [ "funding": [
{ {
...@@ -6144,7 +6202,7 @@ ...@@ -6144,7 +6202,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-05-19T12:46:45+00:00" "time": "2023-07-31T07:08:24+00:00"
}, },
{ {
"name": "symfony/translation-contracts", "name": "symfony/translation-contracts",
...@@ -6226,16 +6284,16 @@ ...@@ -6226,16 +6284,16 @@
}, },
{ {
"name": "symfony/var-dumper", "name": "symfony/var-dumper",
"version": "v5.4.24", "version": "v5.4.28",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/var-dumper.git", "url": "https://github.com/symfony/var-dumper.git",
"reference": "8e12706bf9c68a2da633f23bfdc15b4dce5970b3" "reference": "684b36ff415e1381d4a943c3ca2502cd2debad73"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/8e12706bf9c68a2da633f23bfdc15b4dce5970b3", "url": "https://api.github.com/repos/symfony/var-dumper/zipball/684b36ff415e1381d4a943c3ca2502cd2debad73",
"reference": "8e12706bf9c68a2da633f23bfdc15b4dce5970b3", "reference": "684b36ff415e1381d4a943c3ca2502cd2debad73",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -6249,6 +6307,7 @@ ...@@ -6249,6 +6307,7 @@
"require-dev": { "require-dev": {
"ext-iconv": "*", "ext-iconv": "*",
"symfony/console": "^4.4|^5.0|^6.0", "symfony/console": "^4.4|^5.0|^6.0",
"symfony/http-kernel": "^4.4|^5.0|^6.0",
"symfony/process": "^4.4|^5.0|^6.0", "symfony/process": "^4.4|^5.0|^6.0",
"symfony/uid": "^5.1|^6.0", "symfony/uid": "^5.1|^6.0",
"twig/twig": "^2.13|^3.0.4" "twig/twig": "^2.13|^3.0.4"
...@@ -6294,7 +6353,7 @@ ...@@ -6294,7 +6353,7 @@
"dump" "dump"
], ],
"support": { "support": {
"source": "https://github.com/symfony/var-dumper/tree/v5.4.24" "source": "https://github.com/symfony/var-dumper/tree/v5.4.28"
}, },
"funding": [ "funding": [
{ {
...@@ -6310,7 +6369,7 @@ ...@@ -6310,7 +6369,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-05-25T13:05:00+00:00" "time": "2023-08-24T13:38:36+00:00"
}, },
{ {
"name": "tijsverkoyen/css-to-inline-styles", "name": "tijsverkoyen/css-to-inline-styles",
...@@ -6919,16 +6978,16 @@ ...@@ -6919,16 +6978,16 @@
}, },
{ {
"name": "filp/whoops", "name": "filp/whoops",
"version": "2.15.2", "version": "2.15.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/filp/whoops.git", "url": "https://github.com/filp/whoops.git",
"reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73" "reference": "c83e88a30524f9360b11f585f71e6b17313b7187"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", "url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187",
"reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", "reference": "c83e88a30524f9360b11f585f71e6b17313b7187",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -6978,7 +7037,7 @@ ...@@ -6978,7 +7037,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/filp/whoops/issues", "issues": "https://github.com/filp/whoops/issues",
"source": "https://github.com/filp/whoops/tree/2.15.2" "source": "https://github.com/filp/whoops/tree/2.15.3"
}, },
"funding": [ "funding": [
{ {
...@@ -6986,7 +7045,7 @@ ...@@ -6986,7 +7045,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2023-04-12T12:00:00+00:00" "time": "2023-07-13T12:00:00+00:00"
}, },
{ {
"name": "hamcrest/hamcrest-php", "name": "hamcrest/hamcrest-php",
...@@ -7098,16 +7157,16 @@ ...@@ -7098,16 +7157,16 @@
}, },
{ {
"name": "laravel/sail", "name": "laravel/sail",
"version": "v1.22.0", "version": "v1.25.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/sail.git", "url": "https://github.com/laravel/sail.git",
"reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56" "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/sail/zipball/923e1e112b6a8598664dbb0ee79dd3137f1c9d56", "url": "https://api.github.com/repos/laravel/sail/zipball/e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
"reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56", "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -7159,41 +7218,37 @@ ...@@ -7159,41 +7218,37 @@
"issues": "https://github.com/laravel/sail/issues", "issues": "https://github.com/laravel/sail/issues",
"source": "https://github.com/laravel/sail" "source": "https://github.com/laravel/sail"
}, },
"time": "2023-05-04T14:52:56+00:00" "time": "2023-09-11T17:37:09+00:00"
}, },
{ {
"name": "mockery/mockery", "name": "mockery/mockery",
"version": "1.6.2", "version": "1.6.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/mockery/mockery.git", "url": "https://github.com/mockery/mockery.git",
"reference": "13a7fa2642c76c58fa2806ef7f565344c817a191" "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/mockery/mockery/zipball/13a7fa2642c76c58fa2806ef7f565344c817a191", "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
"reference": "13a7fa2642c76c58fa2806ef7f565344c817a191", "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"hamcrest/hamcrest-php": "^2.0.1", "hamcrest/hamcrest-php": "^2.0.1",
"lib-pcre": ">=7.0", "lib-pcre": ">=7.0",
"php": "^7.4 || ^8.0" "php": ">=7.3"
}, },
"conflict": { "conflict": {
"phpunit/phpunit": "<8.0" "phpunit/phpunit": "<8.0"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^8.5 || ^9.3", "phpunit/phpunit": "^8.5 || ^9.6.10",
"psalm/plugin-phpunit": "^0.18", "psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.9" "symplify/easy-coding-standard": "^11.5.0",
"vimeo/psalm": "^4.30"
}, },
"type": "library", "type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.6.x-dev"
}
},
"autoload": { "autoload": {
"files": [ "files": [
"library/helpers.php", "library/helpers.php",
...@@ -7211,12 +7266,20 @@ ...@@ -7211,12 +7266,20 @@
{ {
"name": "Pádraic Brady", "name": "Pádraic Brady",
"email": "padraic.brady@gmail.com", "email": "padraic.brady@gmail.com",
"homepage": "http://blog.astrumfutura.com" "homepage": "https://github.com/padraic",
"role": "Author"
}, },
{ {
"name": "Dave Marshall", "name": "Dave Marshall",
"email": "dave.marshall@atstsolutions.co.uk", "email": "dave.marshall@atstsolutions.co.uk",
"homepage": "http://davedevelopment.co.uk" "homepage": "https://davedevelopment.co.uk",
"role": "Developer"
},
{
"name": "Nathanael Esayeas",
"email": "nathanael.esayeas@protonmail.com",
"homepage": "https://github.com/ghostwriter",
"role": "Lead Developer"
} }
], ],
"description": "Mockery is a simple yet flexible PHP mock object framework", "description": "Mockery is a simple yet flexible PHP mock object framework",
...@@ -7234,10 +7297,13 @@ ...@@ -7234,10 +7297,13 @@
"testing" "testing"
], ],
"support": { "support": {
"docs": "https://docs.mockery.io/",
"issues": "https://github.com/mockery/mockery/issues", "issues": "https://github.com/mockery/mockery/issues",
"source": "https://github.com/mockery/mockery/tree/1.6.2" "rss": "https://github.com/mockery/mockery/releases.atom",
"security": "https://github.com/mockery/mockery/security/advisories",
"source": "https://github.com/mockery/mockery"
}, },
"time": "2023-06-07T09:07:52+00:00" "time": "2023-08-09T00:03:52+00:00"
}, },
{ {
"name": "myclabs/deep-copy", "name": "myclabs/deep-copy",
...@@ -7498,16 +7564,16 @@ ...@@ -7498,16 +7564,16 @@
}, },
{ {
"name": "phpunit/php-code-coverage", "name": "phpunit/php-code-coverage",
"version": "9.2.26", "version": "9.2.29",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
"reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1" "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/6a3a87ac2bbe33b25042753df8195ba4aa534c76",
"reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -7563,7 +7629,8 @@ ...@@ -7563,7 +7629,8 @@
], ],
"support": { "support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26" "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.29"
}, },
"funding": [ "funding": [
{ {
...@@ -7571,7 +7638,7 @@ ...@@ -7571,7 +7638,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2023-03-06T12:58:08+00:00" "time": "2023-09-19T04:57:46+00:00"
}, },
{ {
"name": "phpunit/php-file-iterator", "name": "phpunit/php-file-iterator",
...@@ -7816,16 +7883,16 @@ ...@@ -7816,16 +7883,16 @@
}, },
{ {
"name": "phpunit/phpunit", "name": "phpunit/phpunit",
"version": "9.6.9", "version": "9.6.13",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git", "url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "a9aceaf20a682aeacf28d582654a1670d8826778" "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a9aceaf20a682aeacf28d582654a1670d8826778", "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f3d767f7f9e191eab4189abe41ab37797e30b1be",
"reference": "a9aceaf20a682aeacf28d582654a1670d8826778", "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -7840,7 +7907,7 @@ ...@@ -7840,7 +7907,7 @@
"phar-io/manifest": "^2.0.3", "phar-io/manifest": "^2.0.3",
"phar-io/version": "^3.0.2", "phar-io/version": "^3.0.2",
"php": ">=7.3", "php": ">=7.3",
"phpunit/php-code-coverage": "^9.2.13", "phpunit/php-code-coverage": "^9.2.28",
"phpunit/php-file-iterator": "^3.0.5", "phpunit/php-file-iterator": "^3.0.5",
"phpunit/php-invoker": "^3.1.1", "phpunit/php-invoker": "^3.1.1",
"phpunit/php-text-template": "^2.0.3", "phpunit/php-text-template": "^2.0.3",
...@@ -7899,7 +7966,7 @@ ...@@ -7899,7 +7966,7 @@
"support": { "support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues", "issues": "https://github.com/sebastianbergmann/phpunit/issues",
"security": "https://github.com/sebastianbergmann/phpunit/security/policy", "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.9" "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.13"
}, },
"funding": [ "funding": [
{ {
...@@ -7915,7 +7982,7 @@ ...@@ -7915,7 +7982,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-06-11T06:13:56+00:00" "time": "2023-09-19T05:39:22+00:00"
}, },
{ {
"name": "sebastian/cli-parser", "name": "sebastian/cli-parser",
...@@ -8423,16 +8490,16 @@ ...@@ -8423,16 +8490,16 @@
}, },
{ {
"name": "sebastian/global-state", "name": "sebastian/global-state",
"version": "5.0.5", "version": "5.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/global-state.git", "url": "https://github.com/sebastianbergmann/global-state.git",
"reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" "reference": "bde739e7565280bda77be70044ac1047bc007e34"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
"reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", "reference": "bde739e7565280bda77be70044ac1047bc007e34",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -8475,7 +8542,7 @@ ...@@ -8475,7 +8542,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/sebastianbergmann/global-state/issues", "issues": "https://github.com/sebastianbergmann/global-state/issues",
"source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
}, },
"funding": [ "funding": [
{ {
...@@ -8483,7 +8550,7 @@ ...@@ -8483,7 +8550,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2022-02-14T08:28:10+00:00" "time": "2023-08-02T09:26:13+00:00"
}, },
{ {
"name": "sebastian/lines-of-code", "name": "sebastian/lines-of-code",
...@@ -8883,20 +8950,21 @@ ...@@ -8883,20 +8950,21 @@
}, },
{ {
"name": "symfony/yaml", "name": "symfony/yaml",
"version": "v6.3.0", "version": "v6.3.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/yaml.git", "url": "https://github.com/symfony/yaml.git",
"reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927" "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/yaml/zipball/a9a8337aa641ef2aa39c3e028f9107ec391e5927", "url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add",
"reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927", "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=8.1", "php": ">=8.1",
"symfony/deprecation-contracts": "^2.5|^3",
"symfony/polyfill-ctype": "^1.8" "symfony/polyfill-ctype": "^1.8"
}, },
"conflict": { "conflict": {
...@@ -8934,7 +9002,7 @@ ...@@ -8934,7 +9002,7 @@
"description": "Loads and dumps YAML files", "description": "Loads and dumps YAML files",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/yaml/tree/v6.3.0" "source": "https://github.com/symfony/yaml/tree/v6.3.3"
}, },
"funding": [ "funding": [
{ {
...@@ -8950,7 +9018,7 @@ ...@@ -8950,7 +9018,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-04-28T13:28:14+00:00" "time": "2023-07-31T07:08:24+00:00"
}, },
{ {
"name": "theseer/tokenizer", "name": "theseer/tokenizer",
...@@ -9012,5 +9080,5 @@ ...@@ -9012,5 +9080,5 @@
"php": "^7.3|^8.0" "php": "^7.3|^8.0"
}, },
"platform-dev": [], "platform-dev": [],
"plugin-api-version": "2.2.0" "plugin-api-version": "2.3.0"
} }
<!doctype html> <!doctype html>
<html lang="pt-br"> <html lang="pt-br">
<head> <head>
<title>PAD - Plano de Avaliação Docente </title> <title>PDA - Plano de Avaliação Docente </title>
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
...@@ -15,14 +15,9 @@ ...@@ -15,14 +15,9 @@
<header> <header>
<div class="navbar shadow-sm" alt="Max-width 100%"> <div class="navbar shadow-sm" alt="Max-width 100%">
<div class="container d-flex justify-content-between"> <div class="">
<a class="navbar-brand d-flex align-items-center" href="#"> <a class="navbar-brand p-3" href="#">
<img src="http://www.avaliacaodocente.upe.br/assets/img/logo-upe.png" class="img-fluid" <img src="{{url('images/estado_pe_logo.png')}}" alt="Logo do Estado" class="img-fluid" width="300" height="100"/>
width="128" height="93" alt="" />
</a>
<a class="navbar-brand d-flex align-items-center" href="#">
<img src="https://www.gestaododesempenho.pe.gov.br/AvaliacaoDesempenho/public/resources/images/logos-direita.png"
class="img-fluid" width="268" height="100" alt="" />
</a> </a>
</div> </div>
</div> </div>
......
<div class="mb-3"> <div class="mb-3">
<h3 class="h3"> Cadastrar Professor (PAD) </h3> <h3 class="h3"> Cadastrar Professor (PDA) </h3>
</div> </div>
<form id="form-user_pad" action="{{ route('user-pad_store') }}" method="post"> <form id="form-user_pad" action="{{ route('user-pad_store') }}" method="post">
......
<div class="mb-3"> <div class="mb-3">
<h3 class="h3"> Cadastrar Avaliador (PAD) </h3> <h3 class="h3"> Cadastrar Avaliador (PDA) </h3>
</div> </div>
<form id="form-user_pad" action="{{ route('avaliator-pad_store') }}" method="post"> <form id="form-user_pad" action="{{ route('avaliator-pad_store') }}" method="POST">
@csrf
@method('POST') @method('POST')
@csrf
@include('avaliator-pad.form', [ @include('avaliator_pad.form', [
'pad' => $pad, 'pad' => $pad,
'model' => $model, 'model' => $model,
'users' => $users, 'users' => $users,
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
</div> </div>
<div class="mb-3 col-sm-6"> <div class="mb-3 col-sm-6">
<label class="form-label" for="pad_name"> PAD </label> <label class="form-label" for="pad_name"> PDA </label>
<input class="form-control" type="text" disabled value="{{ $pad->nome }}"> <input class="form-control" type="text" disabled value="{{ $pad->nome }}">
</div> </div>
......
<div class="mb-3"> <div class="mb-3">
<h3 class="h3"> Atualizar Avaliador (PAD) </h3> <h3 class="h3"> Atualizar Avaliador (PDA) </h3>
</div> </div>
<form id="form-user_pad" action="{{ route('avaliator-pad_update', ['id' => $model->id]) }}" method="post"> <form id="form-user_pad" action="{{ route('avaliator-pad_update', ['id' => $model->id]) }}" method="post">
@csrf @csrf
@method('POST') @method('POST')
@include('avaliator-pad.form', [ @include('avaliator_pad.form', [
'pad' => $pad, 'pad' => $pad,
'model' => $model, 'model' => $model,
'users' => $users, 'users' => $users,
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<div class="card mx-2" style="width: 12rem;"> <div class="card mx-2" style="width: 12rem;">
<div class="card-body"> <div class="card-body">
<h3 class="text-center"> <i class="bi bi-book-half"></i> </h3> <h3 class="text-center"> <i class="bi bi-book-half"></i> </h3>
<h5 class="text-center"> PAD: {{ $userPad->pad->nome }} </h4> <h5 class="text-center"> PDA: {{ $userPad->pad->nome }} </h4>
<h5 class="text-center"> Status: {{ $userPad->pad->statusAsString() }} </h4> <h5 class="text-center"> Status: {{ $userPad->pad->statusAsString() }} </h4>
<a class="stretched-link" href="{{ route('pad_professores', ['id' => $userPad->id]) }}"></a> <a class="stretched-link" href="{{ route('pad_professores', ['id' => $userPad->id]) }}"></a>
</div> </div>
......
<div class="card mx-2" style="width: 12rem;">
<div class="card-body">
<h3 class="text-center"> <i class="bi bi-file-earmark-arrow-down-fill"></i> </h3>
<h5 class="text-center"> {{ $title }} </h4>
<a class="stretched-link" href="{{ route($route) }}"></a>
</div>
</div>
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
<div class="card-body"> <div class="card-body">
<h3 class="text-center"> <i class="bi bi-file-earmark-word-fill"></i> </h3> <h3 class="text-center"> <i class="bi bi-file-earmark-word-fill"></i> </h3>
<h5 class="text-center"> PAD: {{ $userPad->pad->nome }} </h4> <h5 class="text-center"> PAD: {{ $userPad->pad->nome }} </h4>
<h5 class="text-center"> Status: {{ $userPad->pad->statusAsString() }} </h4> <h5 class="text-center"> Status: {{ $userPad->pad->statusAsString() }} </h4>
<a class="stretched-link" href="{{ route('pad_relatório', ['id' => $userPad->id]) }}"></a> <a class="stretched-link" href="{{ route('pad_relatório', ['id' => $userPad->id]) }}"></a>
</div> </div>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
@endif @endif
@if(Auth::user()->isTypeTeacher()) @if(Auth::user()->isTypeTeacher())
@include('layouts.user-dashboard.dashboard_teacher', ['user' => Auth::user(), 'userPads => $userPads']) @include('layouts.user-dashboard.dashboard_teacher', ['user' => Auth::user(), 'userPads' => $userPads])
@endif @endif
@if(Auth::user()->isTypeDirector()) @if(Auth::user()->isTypeDirector())
......
@extends('layouts.main')
@section('title', 'Arquivos')
@section('header')
@include('layouts.header', [
'user' => Auth::user(),
])
@endsection
@section('nav')
@include('layouts.navigation', [
'menu' => $menu,
])
@endsection
@section('body')
<div class="d-flex">
@include('components.cards.file_view', [
'title' => 'Grade de Horário (.docx)',
'route' => 'download_grade_horario'
])
@include('components.cards.file_view', [
'title' => 'Manual (.pdf)',
'route' => 'download_manual'
])
</div>
@endsection
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<head> <head>
<title>Avaliação de Desempanho Docente - PAD</title> <title>Avaliação de Desempanho Docente - PDA</title>
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
<div class="stylo p-3 n-flex"> <div class="stylo p-3 n-flex">
<h2>Portal de acesso ao</h2> <h2>Portal de acesso ao</h2>
<h3>Plano de Atividades Docentes - PAD</h3> <h3>Plano de Atividades Docentes - PDA</h3>
</div> </div>
<section class="ftco-section"> <section class="ftco-section">
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment