Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
pad-upe
Commits
10fd7287
Commit
10fd7287
authored
Feb 03, 2023
by
alissonalbuquerque
Browse files
Enviar Email de Recuperação de Senha
parent
21c644e5
Changes
13
Hide whitespace changes
Inline
Side-by-side
app/Http/Controllers/Auth/NewPasswordController.php
View file @
10fd7287
...
@@ -33,11 +33,22 @@ class NewPasswordController extends Controller
...
@@ -33,11 +33,22 @@ class NewPasswordController extends Controller
*/
*/
public
function
store
(
Request
$request
)
public
function
store
(
Request
$request
)
{
{
$request
->
validate
([
$request
->
validate
(
'token'
=>
[
'required'
],
[
'email'
=>
[
'required'
,
'email'
],
'token'
=>
[
'required'
],
'password'
=>
[
'required'
,
'confirmed'
,
Rules\Password
::
defaults
()],
'email'
=>
[
'required'
,
'email'
],
]);
'password'
=>
[
'required'
,
'min:8'
,
'max:255'
,
'confirmed'
],
],
[
'email.email'
=>
'O "E-mail" deve ser um e-mail válido.'
,
'email.required'
=>
'O "E-mail" é um campo obrigatório.'
,
'password.required'
=>
'A "Nova Senha" é obrigatória!'
,
'password.min'
=>
'A "Nova Senha" deve contér no minímo 8 caracteres!'
,
'password.max'
=>
'A campo "Nova Senha" deve contér no máximo 255 caracteres!'
,
'password.confirmed'
=>
'As senhas devem ser iguais!'
,
]
);
// Here we will attempt to reset the user's password. If it is successful we
// Here we will attempt to reset the user's password. If it is successful we
// will update the password on an actual user model and persist it to the
// will update the password on an actual user model and persist it to the
...
...
app/Http/Controllers/Auth/PasswordResetLinkController.php
View file @
10fd7287
...
@@ -28,9 +28,15 @@ class PasswordResetLinkController extends Controller
...
@@ -28,9 +28,15 @@ class PasswordResetLinkController extends Controller
*/
*/
public
function
store
(
Request
$request
)
public
function
store
(
Request
$request
)
{
{
$request
->
validate
([
$request
->
validate
(
'email'
=>
[
'required'
,
'email'
],
[
]);
'email'
=>
[
'required'
,
'email'
],
],
[
'email.email'
=>
'O "E-mail" deve ser um e-mail válido.'
,
'email.required'
=>
'O "E-mail" é um campo obrigatório.'
,
]
);
// We will send the password reset link to this user. Once we have attempted
// We will send the password reset link to this user. Once we have attempted
// to send the link, we will examine the response then see the message we
// to send the link, we will examine the response then see the message we
...
@@ -40,7 +46,7 @@ class PasswordResetLinkController extends Controller
...
@@ -40,7 +46,7 @@ class PasswordResetLinkController extends Controller
);
);
return
$status
==
Password
::
RESET_LINK_SENT
return
$status
==
Password
::
RESET_LINK_SENT
?
back
()
->
with
(
's
tatus'
,
__
(
$status
)
)
?
back
()
->
with
(
's
uccess'
,
'Enviamos seu link de redefinição de senha por e-mail! Verifique a sua inbox!'
)
:
back
()
->
withInput
(
$request
->
only
(
'email'
))
:
back
()
->
withInput
(
$request
->
only
(
'email'
))
->
withErrors
([
'email'
=>
__
(
$status
)]);
->
withErrors
([
'email'
=>
__
(
$status
)]);
}
}
...
...
app/Http/Controllers/UserController.php
View file @
10fd7287
...
@@ -78,6 +78,7 @@ class UserController extends Controller
...
@@ -78,6 +78,7 @@ class UserController extends Controller
return
view
(
'users.create'
,
[
return
view
(
'users.create'
,
[
'menu'
=>
Menu
::
USERS
,
'menu'
=>
Menu
::
USERS
,
'model'
=>
$model
,
'model'
=>
$model
,
'tab'
=>
'user'
,
]);
]);
}
}
...
@@ -118,14 +119,14 @@ class UserController extends Controller
...
@@ -118,14 +119,14 @@ class UserController extends Controller
Session
::
flash
(
'warning'
,
'Não existem papeis cadastrados para esse usuário!'
);
Session
::
flash
(
'warning'
,
'Não existem papeis cadastrados para esse usuário!'
);
}
}
$tab
_active
=
$request
->
query
(
'tab
_active
'
)
??
'user'
;
$tab
=
$request
->
query
(
'tab'
)
??
'user'
;
return
view
(
'users.update'
,
[
return
view
(
'users.update'
,
[
'menu'
=>
Menu
::
USERS
,
'menu'
=>
Menu
::
USERS
,
'model'
=>
$model
,
'model'
=>
$model
,
'status'
=>
$status
,
'status'
=>
$status
,
'profiles'
=>
$profiles
,
'profiles'
=>
$profiles
,
'tab
_active
'
=>
$tab
_active
'tab'
=>
$tab
]);
]);
}
}
...
...
app/Providers/AuthServiceProvider.php
View file @
10fd7287
...
@@ -2,7 +2,9 @@
...
@@ -2,7 +2,9 @@
namespace
App\Providers
;
namespace
App\Providers
;
use
Illuminate\Auth\Notifications\ResetPassword
;
use
Illuminate\Foundation\Support\Providers\AuthServiceProvider
as
ServiceProvider
;
use
Illuminate\Foundation\Support\Providers\AuthServiceProvider
as
ServiceProvider
;
use
Illuminate\Notifications\Messages\MailMessage
;
use
Illuminate\Support\Facades\Gate
;
use
Illuminate\Support\Facades\Gate
;
class
AuthServiceProvider
extends
ServiceProvider
class
AuthServiceProvider
extends
ServiceProvider
...
@@ -25,6 +27,22 @@ class AuthServiceProvider extends ServiceProvider
...
@@ -25,6 +27,22 @@ class AuthServiceProvider extends ServiceProvider
{
{
$this
->
registerPolicies
();
$this
->
registerPolicies
();
//
ResetPassword
::
toMailUsing
(
function
(
$notifiable
,
$url
)
{
$minutes
=
config
(
'auth.passwords.'
.
config
(
'auth.defaults.passwords'
)
.
'.expire'
);
$url
=
url
(
route
(
'password.reset'
,
[
'token'
=>
$url
,
'email'
=>
$notifiable
->
getEmailForPasswordReset
()
]),
false
);
return
(
new
MailMessage
)
->
subject
(
'Notificação de redefinição de senha'
)
->
line
(
'Você está recebendo este e-mail porque recebemos uma solicitação de redefinição de senha para sua conta.'
)
->
action
(
'Redefinir senha'
,
$url
)
->
line
(
'Este link de redefinição de senha expirará em '
.
$minutes
.
' minutos.'
)
->
line
(
'Se você não solicitou uma redefinição de senha, nenhuma outra ação será necessária'
);
});
}
}
}
}
composer.lock
View file @
10fd7287
...
@@ -64,26 +64,26 @@
...
@@ -64,26 +64,26 @@
},
},
{
{
"name": "brick/math",
"name": "brick/math",
"version": "0.
10.2
",
"version": "0.
9.3
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/brick/math.git",
"url": "https://github.com/brick/math.git",
"reference": "
459f2781e1a08d52ee56b0b1444086e038561e3f
"
"reference": "
ca57d18f028f84f777b2168cd1911b0dee2343ae
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/brick/math/zipball/
459f2781e1a08d52ee56b0b1444086e038561e3f
",
"url": "https://api.github.com/repos/brick/math/zipball/
ca57d18f028f84f777b2168cd1911b0dee2343ae
",
"reference": "
459f2781e1a08d52ee56b0b1444086e038561e3f
",
"reference": "
ca57d18f028f84f777b2168cd1911b0dee2343ae
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"ext-json": "*",
"ext-json": "*",
"php": "^7.
4
|| ^8.0"
"php": "^7.
1
|| ^8.0"
},
},
"require-dev": {
"require-dev": {
"php-coveralls/php-coveralls": "^2.2",
"php-coveralls/php-coveralls": "^2.2",
"phpunit/phpunit": "^9.0",
"phpunit/phpunit": "
^7.5.15 || ^8.5 ||
^9.0",
"vimeo/psalm": "4.
25.0
"
"vimeo/psalm": "4.
9.2
"
},
},
"type": "library",
"type": "library",
"autoload": {
"autoload": {
...
@@ -108,15 +108,100 @@
...
@@ -108,15 +108,100 @@
],
],
"support": {
"support": {
"issues": "https://github.com/brick/math/issues",
"issues": "https://github.com/brick/math/issues",
"source": "https://github.com/brick/math/tree/0.
10.2
"
"source": "https://github.com/brick/math/tree/0.
9.3
"
},
},
"funding": [
"funding": [
{
{
"url": "https://github.com/BenMorel",
"url": "https://github.com/BenMorel",
"type": "github"
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/brick/math",
"type": "tidelift"
}
}
],
],
"time": "2022-08-10T22:54:19+00:00"
"time": "2021-08-15T20:50:18+00:00"
},
{
"name": "composer/semver",
"version": "3.3.2",
"source": {
"type": "git",
"url": "https://github.com/composer/semver.git",
"reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
"reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
"shasum": ""
},
"require": {
"php": "^5.3.2 || ^7.0 || ^8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"symfony/phpunit-bridge": "^4.2 || ^5"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"Composer\\Semver\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nils Adermann",
"email": "naderman@naderman.de",
"homepage": "http://www.naderman.de"
},
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "http://seld.be"
},
{
"name": "Rob Bast",
"email": "rob.bast@gmail.com",
"homepage": "http://robbast.nl"
}
],
"description": "Semver library that offers utilities, version constraint parsing and validation.",
"keywords": [
"semantic",
"semver",
"validation",
"versioning"
],
"support": {
"irc": "irc://irc.freenode.org/composer",
"issues": "https://github.com/composer/semver/issues",
"source": "https://github.com/composer/semver/tree/3.3.2"
},
"funding": [
{
"url": "https://packagist.com",
"type": "custom"
},
{
"url": "https://github.com/composer",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
"type": "tidelift"
}
],
"time": "2022-04-01T19:23:25+00:00"
},
},
{
{
"name": "dflydev/dot-access-data",
"name": "dflydev/dot-access-data",
...
@@ -442,29 +527,30 @@
...
@@ -442,29 +527,30 @@
},
},
{
{
"name": "doctrine/event-manager",
"name": "doctrine/event-manager",
"version": "
2.0
.0",
"version": "
1.2
.0",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/doctrine/event-manager.git",
"url": "https://github.com/doctrine/event-manager.git",
"reference": "
750671534e0241a7c50ea5b43f67e23eb5c96f32
"
"reference": "
95aa4cb529f1e96576f3fda9f5705ada4056a520
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/doctrine/event-manager/zipball/
750671534e0241a7c50ea5b43f67e23eb5c96f32
",
"url": "https://api.github.com/repos/doctrine/event-manager/zipball/
95aa4cb529f1e96576f3fda9f5705ada4056a520
",
"reference": "
750671534e0241a7c50ea5b43f67e23eb5c96f32
",
"reference": "
95aa4cb529f1e96576f3fda9f5705ada4056a520
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": "^8.1"
"doctrine/deprecations": "^0.5.3 || ^1",
"php": "^7.1 || ^8.0"
},
},
"conflict": {
"conflict": {
"doctrine/common": "<2.9"
"doctrine/common": "<2.9"
},
},
"require-dev": {
"require-dev": {
"doctrine/coding-standard": "^10",
"doctrine/coding-standard": "
^9 ||
^10",
"phpstan/phpstan": "^1.8.8",
"phpstan/phpstan": "
~1.4.10 ||
^1.8.8",
"phpunit/phpunit": "^9.5",
"phpunit/phpunit": "
^7.5 || ^8.5 ||
^9.5",
"vimeo/psalm": "^4.2
8
"
"vimeo/psalm": "^4.2
4
"
},
},
"type": "library",
"type": "library",
"autoload": {
"autoload": {
...
@@ -513,7 +599,7 @@
...
@@ -513,7 +599,7 @@
],
],
"support": {
"support": {
"issues": "https://github.com/doctrine/event-manager/issues",
"issues": "https://github.com/doctrine/event-manager/issues",
"source": "https://github.com/doctrine/event-manager/tree/
2.0
.0"
"source": "https://github.com/doctrine/event-manager/tree/
1.2
.0"
},
},
"funding": [
"funding": [
{
{
...
@@ -529,7 +615,7 @@
...
@@ -529,7 +615,7 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "2022-10-12T20:5
9
:15+00:00"
"time": "2022-10-12T20:5
1
:15+00:00"
},
},
{
{
"name": "doctrine/inflector",
"name": "doctrine/inflector",
...
@@ -1600,16 +1686,16 @@
...
@@ -1600,16 +1686,16 @@
},
},
{
{
"name": "laravel/serializable-closure",
"name": "laravel/serializable-closure",
"version": "v1.
2.2
",
"version": "v1.
3.0
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/laravel/serializable-closure.git",
"url": "https://github.com/laravel/serializable-closure.git",
"reference": "
47afb7fae28ed29057fdca37e16a84f90cc62fae
"
"reference": "
f23fe9d4e95255dacee1bf3525e0810d1a1b0f37
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/laravel/serializable-closure/zipball/
47afb7fae28ed29057fdca37e16a84f90cc62fae
",
"url": "https://api.github.com/repos/laravel/serializable-closure/zipball/
f23fe9d4e95255dacee1bf3525e0810d1a1b0f37
",
"reference": "
47afb7fae28ed29057fdca37e16a84f90cc62fae
",
"reference": "
f23fe9d4e95255dacee1bf3525e0810d1a1b0f37
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -1656,7 +1742,7 @@
...
@@ -1656,7 +1742,7 @@
"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": "202
2
-0
9-08T13:45:54
+00:00"
"time": "202
3
-0
1-30T18:31:20
+00:00"
},
},
{
{
"name": "laravel/tinker",
"name": "laravel/tinker",
...
@@ -2066,27 +2152,28 @@
...
@@ -2066,27 +2152,28 @@
},
},
{
{
"name": "maatwebsite/excel",
"name": "maatwebsite/excel",
"version": "3.1.4
4
",
"version": "3.1.4
6
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/SpartnerNL/Laravel-Excel.git",
"url": "https://github.com/SpartnerNL/Laravel-Excel.git",
"reference": "
289c3320982510dacfe0dd00de68061a2b7f4a43
"
"reference": "
ba0b9b9305d5b603c3938d4d1d4a13025c92c241
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/
289c3320982510dacfe0dd00de68061a2b7f4a43
",
"url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/
ba0b9b9305d5b603c3938d4d1d4a13025c92c241
",
"reference": "
289c3320982510dacfe0dd00de68061a2b7f4a43
",
"reference": "
ba0b9b9305d5b603c3938d4d1d4a13025c92c241
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"composer/semver": "^3.3",
"ext-json": "*",
"ext-json": "*",
"illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0
|^10.0
",
"php": "^7.0|^8.0",
"php": "^7.0|^8.0",
"phpoffice/phpspreadsheet": "^1.18",
"phpoffice/phpspreadsheet": "^1.18",
"psr/simple-cache": "^1.0|^2.0"
"psr/simple-cache": "^1.0|^2.0
|^3.0
"
},
},
"require-dev": {
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"orchestra/testbench": "^6.0|^7.0
|^8.0
",
"predis/predis": "^1.1"
"predis/predis": "^1.1"
},
},
"type": "library",
"type": "library",
...
@@ -2129,7 +2216,7 @@
...
@@ -2129,7 +2216,7 @@
],
],
"support": {
"support": {
"issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
"issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
"source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.4
4
"
"source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.4
6
"
},
},
"funding": [
"funding": [
{
{
...
@@ -2141,7 +2228,7 @@
...
@@ -2141,7 +2228,7 @@
"type": "github"
"type": "github"
}
}
],
],
"time": "202
2-10-14T20:01:10
+00:00"
"time": "202
3-01-26T20:40:09
+00:00"
},
},
{
{
"name": "maennchen/zipstream-php",
"name": "maennchen/zipstream-php",
...
@@ -2495,16 +2582,16 @@
...
@@ -2495,16 +2582,16 @@
},
},
{
{
"name": "nesbot/carbon",
"name": "nesbot/carbon",
"version": "2.6
5
.0",
"version": "2.6
6
.0",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/briannesbitt/Carbon.git",
"url": "https://github.com/briannesbitt/Carbon.git",
"reference": "
09acf64155c16dc6f580f36569ae89344e9734a3
"
"reference": "
496712849902241f04902033b0441b269effe001
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/
09acf64155c16dc6f580f36569ae89344e9734a3
",
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/
496712849902241f04902033b0441b269effe001
",
"reference": "
09acf64155c16dc6f580f36569ae89344e9734a3
",
"reference": "
496712849902241f04902033b0441b269effe001
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -2593,7 +2680,7 @@
...
@@ -2593,7 +2680,7 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "2023-01-
06
T1
5
:5
5:01
+00:00"
"time": "2023-01-
29
T1
8
:5
3:47
+00:00"
},
},
{
{
"name": "nette/schema",
"name": "nette/schema",
...
@@ -2659,16 +2746,16 @@
...
@@ -2659,16 +2746,16 @@
},
},
{
{
"name": "nette/utils",
"name": "nette/utils",
"version": "v3.2.
8
",
"version": "v3.2.
9
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/nette/utils.git",
"url": "https://github.com/nette/utils.git",
"reference": "
02a54c4c872b99e4ec05c4a
ec54
b5a06eb0f6368
"
"reference": "
c91bac3470c34b2
ec
d
54
00f6e6fdf0b64a836a5c
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/nette/utils/zipball/
02a54c4c872b99e4ec05c4a
ec54
b5a06eb0f6368
",
"url": "https://api.github.com/repos/nette/utils/zipball/
c91bac3470c34b2
ec
d
54
00f6e6fdf0b64a836a5c
",
"reference": "
02a54c4c872b99e4ec05c4a
ec54
b5a06eb0f6368
",
"reference": "
c91bac3470c34b2
ec
d
54
00f6e6fdf0b64a836a5c
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -2678,6 +2765,7 @@
...
@@ -2678,6 +2765,7 @@
"nette/di": "<3.0.6"
"nette/di": "<3.0.6"
},
},
"require-dev": {
"require-dev": {
"jetbrains/phpstorm-attributes": "dev-master",
"nette/tester": "~2.0",
"nette/tester": "~2.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan": "^1.0",
"tracy/tracy": "^2.3"
"tracy/tracy": "^2.3"
...
@@ -2738,9 +2826,9 @@
...
@@ -2738,9 +2826,9 @@
],
],
"support": {
"support": {
"issues": "https://github.com/nette/utils/issues",
"issues": "https://github.com/nette/utils/issues",
"source": "https://github.com/nette/utils/tree/v3.2.
8
"
"source": "https://github.com/nette/utils/tree/v3.2.
9
"
},
},
"time": "202
2
-0
9
-1
2T2
3:
3
6:20+00:00"
"time": "202
3
-0
1
-1
8T0
3:
2
6:20+00:00"
},
},
{
{
"name": "nikic/php-parser",
"name": "nikic/php-parser",
...
@@ -2865,16 +2953,16 @@
...
@@ -2865,16 +2953,16 @@
},
},
{
{
"name": "phpoffice/phpspreadsheet",
"name": "phpoffice/phpspreadsheet",
"version": "1.2
5.2
",
"version": "1.2
7.0
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
"url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
"reference": "
a317a09e7def49852400a4b3eca4a4b0790ceeb5
"
"reference": "
eeb8582f9cabf5a7f4ef78015691163233a1834f
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/
a317a09e7def49852400a4b3eca4a4b0790ceeb5
",
"url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/
eeb8582f9cabf5a7f4ef78015691163233a1834f
",
"reference": "
a317a09e7def49852400a4b3eca4a4b0790ceeb5
",
"reference": "
eeb8582f9cabf5a7f4ef78015691163233a1834f
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -2895,7 +2983,7 @@
...
@@ -2895,7 +2983,7 @@
"maennchen/zipstream-php": "^2.1",
"maennchen/zipstream-php": "^2.1",
"markbaker/complex": "^3.0",
"markbaker/complex": "^3.0",
"markbaker/matrix": "^3.0",
"markbaker/matrix": "^3.0",
"php": "^7.
3
|| ^8.0",
"php": "^7.
4
|| ^8.0",
"psr/http-client": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory": "^1.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
...
@@ -2904,14 +2992,14 @@
...
@@ -2904,14 +2992,14 @@
"dealerdirect/phpcodesniffer-composer-installer": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "dev-master",
"dompdf/dompdf": "^1.0 || ^2.0",
"dompdf/dompdf": "^1.0 || ^2.0",
"friendsofphp/php-cs-fixer": "^3.2",
"friendsofphp/php-cs-fixer": "^3.2",
"mitoteam/jpgraph": "10.2.4",
"mitoteam/jpgraph": "
^
10.2.4",
"mpdf/mpdf": "8.1.1",
"mpdf/mpdf": "
^
8.1.1",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^8.5 || ^9.0",
"phpunit/phpunit": "^8.5 || ^9.0",
"squizlabs/php_codesniffer": "^3.7",
"squizlabs/php_codesniffer": "^3.7",
"tecnickcom/tcpdf": "6.5"
"tecnickcom/tcpdf": "
^
6.5"
},
},
"suggest": {
"suggest": {
"dompdf/dompdf": "Option for rendering PDF with PDF Writer",
"dompdf/dompdf": "Option for rendering PDF with PDF Writer",
...
@@ -2964,9 +3052,9 @@
...
@@ -2964,9 +3052,9 @@
],
],
"support": {
"support": {
"issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
"issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
"source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.2
5.2
"
"source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.2
7.0
"
},
},
"time": "202
2
-0
9
-2
5T17:21:01
+00:00"
"time": "202
3
-0
1
-2
4T20:07:45
+00:00"
},
},
{
{
"name": "phpoption/phpoption",
"name": "phpoption/phpoption",
...
@@ -3045,20 +3133,20 @@
...
@@ -3045,20 +3133,20 @@
},
},
{
{
"name": "psr/cache",
"name": "psr/cache",
"version": "
3
.0.
0
",
"version": "
1
.0.
1
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/php-fig/cache.git",
"url": "https://github.com/php-fig/cache.git",
"reference": "
aa5030cfa5405eccfdcb1083ce040c2cb8d253
bf"
"reference": "
d11b50ad223250cf17b86e38383413f5a6764
bf
8
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/php-fig/cache/zipball/
aa5030cfa5405eccfdcb1083ce040c2cb8d253
bf",
"url": "https://api.github.com/repos/php-fig/cache/zipball/
d11b50ad223250cf17b86e38383413f5a6764
bf
8
",
"reference": "
aa5030cfa5405eccfdcb1083ce040c2cb8d253
bf",
"reference": "
d11b50ad223250cf17b86e38383413f5a6764
bf
8
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": ">=
8.0
.0"
"php": ">=
5.3
.0"
},
},
"type": "library",
"type": "library",
"extra": {
"extra": {
...
@@ -3078,7 +3166,7 @@
...
@@ -3078,7 +3166,7 @@
"authors": [
"authors": [
{
{
"name": "PHP-FIG",
"name": "PHP-FIG",
"homepage": "http
s
://www.php-fig.org/"
"homepage": "http://www.php-fig.org/"
}
}
],
],
"description": "Common interface for caching libraries",
"description": "Common interface for caching libraries",
...
@@ -3088,9 +3176,9 @@
...
@@ -3088,9 +3176,9 @@
"psr-6"
"psr-6"
],
],
"support": {
"support": {
"source": "https://github.com/php-fig/cache/tree/
3.0.0
"
"source": "https://github.com/php-fig/cache/tree/
master
"
},
},
"time": "20
2
1-0
2
-0
3
T2
3
:2
6:27
+00:00"
"time": "201
6
-0
8
-0
6
T2
0
:2
4:11
+00:00"
},
},
{
{
"name": "psr/container",
"name": "psr/container",
...
@@ -3352,30 +3440,30 @@
...
@@ -3352,30 +3440,30 @@
},
},
{
{
"name": "psr/log",
"name": "psr/log",
"version": "
2.0.0
",
"version": "
1.1.4
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/php-fig/log.git",
"url": "https://github.com/php-fig/log.git",
"reference": "
ef29f6d262798707a9edd554e2b82517ef3a9376
"
"reference": "
d49695b909c3b7628b6289db5479a1c204601f11
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/php-fig/log/zipball/
ef29f6d262798707a9edd554e2b82517ef3a9376
",
"url": "https://api.github.com/repos/php-fig/log/zipball/
d49695b909c3b7628b6289db5479a1c204601f11
",
"reference": "
ef29f6d262798707a9edd554e2b82517ef3a9376
",
"reference": "
d49695b909c3b7628b6289db5479a1c204601f11
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": ">=
8.0
.0"
"php": ">=
5.3
.0"
},
},
"type": "library",
"type": "library",
"extra": {
"extra": {
"branch-alias": {
"branch-alias": {
"dev-master": "
2.0
.x-dev"
"dev-master": "
1.1
.x-dev"
}
}
},
},
"autoload": {
"autoload": {
"psr-4": {
"psr-4": {
"Psr\\Log\\": "sr
c
"
"Psr\\Log\\": "
P
sr
/Log/
"
}
}
},
},
"notification-url": "https://packagist.org/downloads/",
"notification-url": "https://packagist.org/downloads/",
...
@@ -3396,9 +3484,9 @@
...
@@ -3396,9 +3484,9 @@
"psr-3"
"psr-3"
],
],
"support": {
"support": {
"source": "https://github.com/php-fig/log/tree/
2.0.0
"
"source": "https://github.com/php-fig/log/tree/
1.1.4
"
},
},
"time": "2021-0
7-14T16:41:46
+00:00"
"time": "2021-0
5-03T11:20:27
+00:00"
},
},
{
{
"name": "psr/simple-cache",
"name": "psr/simple-cache",
...
@@ -3453,16 +3541,16 @@
...
@@ -3453,16 +3541,16 @@
},
},
{
{
"name": "psy/psysh",
"name": "psy/psysh",
"version": "v0.11.1
0
",
"version": "v0.11.1
2
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/bobthecow/psysh.git",
"url": "https://github.com/bobthecow/psysh.git",
"reference": "
e9eadffbed9c9deb5426fd107faae0452bf20a36
"
"reference": "
52cb7c47d403c31c0adc9bf7710fc355f93c20f7
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/
e9eadffbed9c9deb5426fd107faae0452bf20a36
",
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/
52cb7c47d403c31c0adc9bf7710fc355f93c20f7
",
"reference": "
e9eadffbed9c9deb5426fd107faae0452bf20a36
",
"reference": "
52cb7c47d403c31c0adc9bf7710fc355f93c20f7
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -3523,9 +3611,9 @@
...
@@ -3523,9 +3611,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.1
0
"
"source": "https://github.com/bobthecow/psysh/tree/v0.11.1
2
"
},
},
"time": "202
2-12-23T17:47:18
+00:00"
"time": "202
3-01-29T21:24:40
+00:00"
},
},
{
{
"name": "ralouphie/getallheaders",
"name": "ralouphie/getallheaders",
...
@@ -3573,20 +3661,21 @@
...
@@ -3573,20 +3661,21 @@
},
},
{
{
"name": "ramsey/collection",
"name": "ramsey/collection",
"version": "
2.0
.0",
"version": "
1.3
.0",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/ramsey/collection.git",
"url": "https://github.com/ramsey/collection.git",
"reference": "a
4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5
"
"reference": "a
d7475d1c9e70b190ecffc58f2d989416af339b4
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/ramsey/collection/zipball/a
4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5
",
"url": "https://api.github.com/repos/ramsey/collection/zipball/a
d7475d1c9e70b190ecffc58f2d989416af339b4
",
"reference": "a
4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5
",
"reference": "a
d7475d1c9e70b190ecffc58f2d989416af339b4
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": "^8.1"
"php": "^7.4 || ^8.0",
"symfony/polyfill-php81": "^1.23"
},
},
"require-dev": {
"require-dev": {
"captainhook/plugin-composer": "^5.3",
"captainhook/plugin-composer": "^5.3",
...
@@ -3646,7 +3735,7 @@
...
@@ -3646,7 +3735,7 @@
],
],
"support": {
"support": {
"issues": "https://github.com/ramsey/collection/issues",
"issues": "https://github.com/ramsey/collection/issues",
"source": "https://github.com/ramsey/collection/tree/
2.0
.0"
"source": "https://github.com/ramsey/collection/tree/
1.3
.0"
},
},
"funding": [
"funding": [
{
{
...
@@ -3658,27 +3747,29 @@
...
@@ -3658,27 +3747,29 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "2022-12-
31T21:50:55
+00:00"
"time": "2022-12-
27T19:12:24
+00:00"
},
},
{
{
"name": "ramsey/uuid",
"name": "ramsey/uuid",
"version": "4.
7
.3",
"version": "4.
2
.3",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
"url": "https://github.com/ramsey/uuid.git",
"reference": "
433b2014e3979047db08a17a205f410ba
3869
cf2
"
"reference": "
fc9bb7fb5
38
8
69
1fd7373cd44dcb4d63bbcf24df
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/ramsey/uuid/zipball/
433b2014e3979047db08a17a205f410ba
3869
cf2
",
"url": "https://api.github.com/repos/ramsey/uuid/zipball/
fc9bb7fb5
38
8
69
1fd7373cd44dcb4d63bbcf24df
",
"reference": "
433b2014e3979047db08a17a205f410ba
3869
cf2
",
"reference": "
fc9bb7fb5
38
8
69
1fd7373cd44dcb4d63bbcf24df
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"brick/math": "^0.8
.8
|| ^0.9
|| ^0.10
",
"brick/math": "^0.8 || ^0.9",
"ext-json": "*",
"ext-json": "*",
"php": "^8.0",
"php": "^7.2 || ^8.0",
"ramsey/collection": "^1.2 || ^2.0"
"ramsey/collection": "^1.0",
"symfony/polyfill-ctype": "^1.8",
"symfony/polyfill-php80": "^1.14"
},
},
"replace": {
"replace": {
"rhumsaa/uuid": "self.version"
"rhumsaa/uuid": "self.version"
...
@@ -3690,23 +3781,24 @@
...
@@ -3690,23 +3781,24 @@
"doctrine/annotations": "^1.8",
"doctrine/annotations": "^1.8",
"ergebnis/composer-normalize": "^2.15",
"ergebnis/composer-normalize": "^2.15",
"mockery/mockery": "^1.3",
"mockery/mockery": "^1.3",
"moontoast/math": "^1.1",
"paragonie/random-lib": "^2",
"paragonie/random-lib": "^2",
"php-mock/php-mock": "^2.2",
"php-mock/php-mock": "^2.2",
"php-mock/php-mock-mockery": "^1.3",
"php-mock/php-mock-mockery": "^1.3",
"php-parallel-lint/php-parallel-lint": "^1.1",
"php-parallel-lint/php-parallel-lint": "^1.1",
"phpbench/phpbench": "^1.0",
"phpbench/phpbench": "^1.0",
"phpstan/extension-installer": "^1.
1
",
"phpstan/extension-installer": "^1.
0
",
"phpstan/phpstan": "^
1.8
",
"phpstan/phpstan": "^
0.12
",
"phpstan/phpstan-mockery": "^
1
.1",
"phpstan/phpstan-mockery": "^
0
.1
2
",
"phpstan/phpstan-phpunit": "^
1
.1",
"phpstan/phpstan-phpunit": "^
0
.1
2
",
"phpunit/phpunit": "^8.5 || ^9",
"phpunit/phpunit": "^8.5 || ^9",
"ramsey/composer-repl": "^1.4",
"slevomat/coding-standard": "^7.0",
"slevomat/coding-standard": "^8.4",
"squizlabs/php_codesniffer": "^3.5",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.9"
"vimeo/psalm": "^4.9"
},
},
"suggest": {
"suggest": {
"ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
"ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
"ext-ctype": "Enables faster processing of character classification using ctype functions.",
"ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
"ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
"ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
"ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
"paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
"paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
...
@@ -3714,6 +3806,9 @@
...
@@ -3714,6 +3806,9 @@
},
},
"type": "library",
"type": "library",
"extra": {
"extra": {
"branch-alias": {
"dev-main": "4.x-dev"
},
"captainhook": {
"captainhook": {
"force-install": true
"force-install": true
}
}
...
@@ -3738,7 +3833,7 @@
...
@@ -3738,7 +3833,7 @@
],
],
"support": {
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
"issues": "https://github.com/ramsey/uuid/issues",
"source": "https://github.com/ramsey/uuid/tree/4.
7
.3"
"source": "https://github.com/ramsey/uuid/tree/4.
2
.3"
},
},
"funding": [
"funding": [
{
{
...
@@ -3750,7 +3845,7 @@
...
@@ -3750,7 +3845,7 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
3
-0
1-12T18:13:24
+00:00"
"time": "202
1
-0
9-25T23:10:38
+00:00"
},
},
{
{
"name": "swiftmailer/swiftmailer",
"name": "swiftmailer/swiftmailer",
...
@@ -3830,16 +3925,16 @@
...
@@ -3830,16 +3925,16 @@
},
},
{
{
"name": "symfony/console",
"name": "symfony/console",
"version": "v5.4.1
7
",
"version": "v5.4.1
9
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/console.git",
"url": "https://github.com/symfony/console.git",
"reference": "
58422fdcb0e715ed05b385f70d3e8b5ed4bbd45f
"
"reference": "
dccb8d251a9017d5994c988b034d3e18aaabf740
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/
58422fdcb0e715ed05b385f70d3e8b5ed4bbd45f
",
"url": "https://api.github.com/repos/symfony/console/zipball/
dccb8d251a9017d5994c988b034d3e18aaabf740
",
"reference": "
58422fdcb0e715ed05b385f70d3e8b5ed4bbd45f
",
"reference": "
dccb8d251a9017d5994c988b034d3e18aaabf740
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -3909,7 +4004,7 @@
...
@@ -3909,7 +4004,7 @@
"terminal"
"terminal"
],
],
"support": {
"support": {
"source": "https://github.com/symfony/console/tree/v5.4.1
7
"
"source": "https://github.com/symfony/console/tree/v5.4.1
9
"
},
},
"funding": [
"funding": [
{
{
...
@@ -3925,24 +4020,25 @@
...
@@ -3925,24 +4020,25 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2-12-28T14:15:31
+00:00"
"time": "202
3-01-01T08:32:19
+00:00"
},
},
{
{
"name": "symfony/css-selector",
"name": "symfony/css-selector",
"version": "v
6.2.3
",
"version": "v
5.4.19
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
"url": "https://github.com/symfony/css-selector.git",
"reference": "
ab1df4ba3ded7b724766ba3a6e0eca0418e74f80
"
"reference": "
f4a7d150f5b9e8f974f6f127d8167e420d11fc62
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/css-selector/zipball/
ab1df4ba3ded7b724766ba3a6e0eca0418e74f80
",
"url": "https://api.github.com/repos/symfony/css-selector/zipball/
f4a7d150f5b9e8f974f6f127d8167e420d11fc62
",
"reference": "
ab1df4ba3ded7b724766ba3a6e0eca0418e74f80
",
"reference": "
f4a7d150f5b9e8f974f6f127d8167e420d11fc62
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": ">=8.1"
"php": ">=7.2.5",
"symfony/polyfill-php80": "^1.16"
},
},
"type": "library",
"type": "library",
"autoload": {
"autoload": {
...
@@ -3974,7 +4070,7 @@
...
@@ -3974,7 +4070,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/v
6.2.3
"
"source": "https://github.com/symfony/css-selector/tree/v
5.4.19
"
},
},
"funding": [
"funding": [
{
{
...
@@ -3990,29 +4086,29 @@
...
@@ -3990,29 +4086,29 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2-12-28T14:26:22
+00:00"
"time": "202
3-01-01T08:32:19
+00:00"
},
},
{
{
"name": "symfony/deprecation-contracts",
"name": "symfony/deprecation-contracts",
"version": "v
3.2.0
",
"version": "v
2.5.2
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/deprecation-contracts.git",
"url": "https://github.com/symfony/deprecation-contracts.git",
"reference": "
1ee04c65529dea5d8744774d474e7cbd2f1206d3
"
"reference": "
e8b495ea28c1d97b5e0c121748d6f9b53d075c66
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/
1ee04c65529dea5d8744774d474e7cbd2f1206d3
",
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/
e8b495ea28c1d97b5e0c121748d6f9b53d075c66
",
"reference": "
1ee04c65529dea5d8744774d474e7cbd2f1206d3
",
"reference": "
e8b495ea28c1d97b5e0c121748d6f9b53d075c66
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": ">=
8
.1"
"php": ">=
7
.1"
},
},
"type": "library",
"type": "library",
"extra": {
"extra": {
"branch-alias": {
"branch-alias": {
"dev-main": "
3.3
-dev"
"dev-main": "
2.5
-dev"
},
},
"thanks": {
"thanks": {
"name": "symfony/contracts",
"name": "symfony/contracts",
...
@@ -4041,7 +4137,7 @@
...
@@ -4041,7 +4137,7 @@
"description": "A generic function and convention to trigger deprecation notices",
"description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com",
"homepage": "https://symfony.com",
"support": {
"support": {
"source": "https://github.com/symfony/deprecation-contracts/tree/v
3.2.0
"
"source": "https://github.com/symfony/deprecation-contracts/tree/v
2.5.2
"
},
},
"funding": [
"funding": [
{
{
...
@@ -4057,20 +4153,20 @@
...
@@ -4057,20 +4153,20 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "2022-
1
1-
25T10:21:52
+00:00"
"time": "2022-
0
1-
02T09:53:40
+00:00"
},
},
{
{
"name": "symfony/error-handler",
"name": "symfony/error-handler",
"version": "v5.4.1
7
",
"version": "v5.4.1
9
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
"url": "https://github.com/symfony/error-handler.git",
"reference": "
b900446552833ad2f91ca7dd52aa8ffe78f66cb
2"
"reference": "
438ef3e5e6481244785da3ce8cf8f4e74e7f282
2"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/
b900446552833ad2f91ca7dd52aa8ffe78f66cb
2",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/
438ef3e5e6481244785da3ce8cf8f4e74e7f282
2",
"reference": "
b900446552833ad2f91ca7dd52aa8ffe78f66cb
2",
"reference": "
438ef3e5e6481244785da3ce8cf8f4e74e7f282
2",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -4112,7 +4208,7 @@
...
@@ -4112,7 +4208,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.1
7
"
"source": "https://github.com/symfony/error-handler/tree/v5.4.1
9
"
},
},
"funding": [
"funding": [
{
{
...
@@ -4128,42 +4224,44 @@
...
@@ -4128,42 +4224,44 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2-12-13T09:43:00
+00:00"
"time": "202
3-01-01T08:32:19
+00:00"
},
},
{
{
"name": "symfony/event-dispatcher",
"name": "symfony/event-dispatcher",
"version": "v
6.2.2
",
"version": "v
5.4.19
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
"url": "https://github.com/symfony/event-dispatcher.git",
"reference": "
3ffeb31139b49bf6ef0bc09d1db95eac053388d1
"
"reference": "
abf49cc084c087d94b4cb939c3f3672971784e0c
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/
3ffeb31139b49bf6ef0bc09d1db95eac053388d1
",
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/
abf49cc084c087d94b4cb939c3f3672971784e0c
",
"reference": "
3ffeb31139b49bf6ef0bc09d1db95eac053388d1
",
"reference": "
abf49cc084c087d94b4cb939c3f3672971784e0c
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": ">=8.1",
"php": ">=7.2.5",
"symfony/event-dispatcher-contracts": "^2|^3"
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/event-dispatcher-contracts": "^2|^3",
"symfony/polyfill-php80": "^1.16"
},
},
"conflict": {
"conflict": {
"symfony/dependency-injection": "<
5
.4"
"symfony/dependency-injection": "<
4
.4"
},
},
"provide": {
"provide": {
"psr/event-dispatcher-implementation": "1.0",
"psr/event-dispatcher-implementation": "1.0",
"symfony/event-dispatcher-implementation": "2.0
|3.0
"
"symfony/event-dispatcher-implementation": "2.0"
},
},
"require-dev": {
"require-dev": {
"psr/log": "^1|^2|^3",
"psr/log": "^1|^2|^3",
"symfony/config": "^5.
4
|^6.0",
"symfony/config": "^
4.4|^
5.
0
|^6.0",
"symfony/dependency-injection": "^5.
4
|^6.0",
"symfony/dependency-injection": "^
4.4|^
5.
0
|^6.0",
"symfony/error-handler": "^5.
4
|^6.0",
"symfony/error-handler": "^
4.4|^
5.
0
|^6.0",
"symfony/expression-language": "^5.
4
|^6.0",
"symfony/expression-language": "^
4.4|^
5.
0
|^6.0",
"symfony/http-foundation": "^5.
4
|^6.0",
"symfony/http-foundation": "^
4.4|^
5.
0
|^6.0",
"symfony/service-contracts": "^1.1|^2|^3",
"symfony/service-contracts": "^1.1|^2|^3",
"symfony/stopwatch": "^5.
4
|^6.0"
"symfony/stopwatch": "^
4.4|^
5.
0
|^6.0"
},
},
"suggest": {
"suggest": {
"symfony/dependency-injection": "",
"symfony/dependency-injection": "",
...
@@ -4195,7 +4293,7 @@
...
@@ -4195,7 +4293,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/v
6.2.2
"
"source": "https://github.com/symfony/event-dispatcher/tree/v
5.4.19
"
},
},
"funding": [
"funding": [
{
{
...
@@ -4211,24 +4309,24 @@
...
@@ -4211,24 +4309,24 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2-12-14T16:11:27
+00:00"
"time": "202
3-01-01T08:32:19
+00:00"
},
},
{
{
"name": "symfony/event-dispatcher-contracts",
"name": "symfony/event-dispatcher-contracts",
"version": "v
3.2.0
",
"version": "v
2.5.2
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/event-dispatcher-contracts.git",
"url": "https://github.com/symfony/event-dispatcher-contracts.git",
"reference": "
0782b0b52a737a05b4383d0df35a474303cabdae
"
"reference": "
f98b54df6ad059855739db6fcbc2d36995283fe1
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/
0782b0b52a737a05b4383d0df35a474303cabdae
",
"url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/
f98b54df6ad059855739db6fcbc2d36995283fe1
",
"reference": "
0782b0b52a737a05b4383d0df35a474303cabdae
",
"reference": "
f98b54df6ad059855739db6fcbc2d36995283fe1
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": ">=
8.1
",
"php": ">=
7.2.5
",
"psr/event-dispatcher": "^1"
"psr/event-dispatcher": "^1"
},
},
"suggest": {
"suggest": {
...
@@ -4237,7 +4335,7 @@
...
@@ -4237,7 +4335,7 @@
"type": "library",
"type": "library",
"extra": {
"extra": {
"branch-alias": {
"branch-alias": {
"dev-main": "
3.3
-dev"
"dev-main": "
2.5
-dev"
},
},
"thanks": {
"thanks": {
"name": "symfony/contracts",
"name": "symfony/contracts",
...
@@ -4274,7 +4372,7 @@
...
@@ -4274,7 +4372,7 @@
"standards"
"standards"
],
],
"support": {
"support": {
"source": "https://github.com/symfony/event-dispatcher-contracts/tree/v
3.2.0
"
"source": "https://github.com/symfony/event-dispatcher-contracts/tree/v
2.5.2
"
},
},
"funding": [
"funding": [
{
{
...
@@ -4290,20 +4388,20 @@
...
@@ -4290,20 +4388,20 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "2022-
1
1-
25T10:21:52
+00:00"
"time": "2022-
0
1-
02T09:53:40
+00:00"
},
},
{
{
"name": "symfony/finder",
"name": "symfony/finder",
"version": "v5.4.1
7
",
"version": "v5.4.1
9
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/finder.git",
"url": "https://github.com/symfony/finder.git",
"reference": "
40c08632019838dfb3350f18cf5563b8080055fc
"
"reference": "
6071aebf810ad13fe8200c224f36103abb37cf1f
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/finder/zipball/
40c08632019838dfb3350f18cf5563b8080055fc
",
"url": "https://api.github.com/repos/symfony/finder/zipball/
6071aebf810ad13fe8200c224f36103abb37cf1f
",
"reference": "
40c08632019838dfb3350f18cf5563b8080055fc
",
"reference": "
6071aebf810ad13fe8200c224f36103abb37cf1f
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -4337,7 +4435,7 @@
...
@@ -4337,7 +4435,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.1
7
"
"source": "https://github.com/symfony/finder/tree/v5.4.1
9
"
},
},
"funding": [
"funding": [
{
{
...
@@ -4353,20 +4451,20 @@
...
@@ -4353,20 +4451,20 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2-12-22T10:31:03
+00:00"
"time": "202
3-01-14T19:14:44
+00:00"
},
},
{
{
"name": "symfony/http-foundation",
"name": "symfony/http-foundation",
"version": "v5.4.
17
",
"version": "v5.4.
20
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
"url": "https://github.com/symfony/http-foundation.git",
"reference": "
b64a0e2df212d5849e4584cabff0cf09c5d6866
a"
"reference": "
d0435363362a47c14e9cf50663cb8ffbf491875
a"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/
b64a0e2df212d5849e4584cabff0cf09c5d6866
a",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/
d0435363362a47c14e9cf50663cb8ffbf491875
a",
"reference": "
b64a0e2df212d5849e4584cabff0cf09c5d6866
a",
"reference": "
d0435363362a47c14e9cf50663cb8ffbf491875
a",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -4413,7 +4511,7 @@
...
@@ -4413,7 +4511,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.
17
"
"source": "https://github.com/symfony/http-foundation/tree/v5.4.
20
"
},
},
"funding": [
"funding": [
{
{
...
@@ -4429,20 +4527,20 @@
...
@@ -4429,20 +4527,20 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2-12-14T08:23:03
+00:00"
"time": "202
3-01-29T11:11:52
+00:00"
},
},
{
{
"name": "symfony/http-kernel",
"name": "symfony/http-kernel",
"version": "v5.4.
18
",
"version": "v5.4.
20
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
"url": "https://github.com/symfony/http-kernel.git",
"reference": "
5da6f57a13e5d7d77197443cf55697cdf65f1352
"
"reference": "
aaeec341582d3c160cc9ecfa8b2419ba6c69954e
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/
5da6f57a13e5d7d77197443cf55697cdf65f1352
",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/
aaeec341582d3c160cc9ecfa8b2419ba6c69954e
",
"reference": "
5da6f57a13e5d7d77197443cf55697cdf65f1352
",
"reference": "
aaeec341582d3c160cc9ecfa8b2419ba6c69954e
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -4525,7 +4623,7 @@
...
@@ -4525,7 +4623,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.
18
"
"source": "https://github.com/symfony/http-kernel/tree/v5.4.
20
"
},
},
"funding": [
"funding": [
{
{
...
@@ -4541,20 +4639,20 @@
...
@@ -4541,20 +4639,20 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2-12-29T18:54:0
8+00:00"
"time": "202
3-02-01T08:18:4
8+00:00"
},
},
{
{
"name": "symfony/mime",
"name": "symfony/mime",
"version": "v5.4.1
7
",
"version": "v5.4.1
9
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/mime.git",
"url": "https://github.com/symfony/mime.git",
"reference": "
2
a8
3d82efc91c3f03a23c8b47a896df168aa5c63
"
"reference": "a8
58429a9c704edc53fe057228cf9ca282ba48eb
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/mime/zipball/
2
a8
3d82efc91c3f03a23c8b47a896df168aa5c63
",
"url": "https://api.github.com/repos/symfony/mime/zipball/a8
58429a9c704edc53fe057228cf9ca282ba48eb
",
"reference": "
2
a8
3d82efc91c3f03a23c8b47a896df168aa5c63
",
"reference": "a8
58429a9c704edc53fe057228cf9ca282ba48eb
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -4572,7 +4670,7 @@
...
@@ -4572,7 +4670,7 @@
"symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
"symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
},
},
"require-dev": {
"require-dev": {
"egulias/email-validator": "^2.1.10|^3.1",
"egulias/email-validator": "^2.1.10|^3.1
|^4
",
"phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
"phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
"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",
...
@@ -4609,7 +4707,7 @@
...
@@ -4609,7 +4707,7 @@
"mime-type"
"mime-type"
],
],
"support": {
"support": {
"source": "https://github.com/symfony/mime/tree/v5.4.1
7
"
"source": "https://github.com/symfony/mime/tree/v5.4.1
9
"
},
},
"funding": [
"funding": [
{
{
...
@@ -4625,7 +4723,7 @@
...
@@ -4625,7 +4723,7 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2-12-13T09:59:55
+00:00"
"time": "202
3-01-09T05:43:46
+00:00"
},
},
{
{
"name": "symfony/polyfill-ctype",
"name": "symfony/polyfill-ctype",
...
@@ -5365,18 +5463,97 @@
...
@@ -5365,18 +5463,97 @@
],
],
"time": "2022-11-03T14:55:06+00:00"
"time": "2022-11-03T14:55:06+00:00"
},
},
{
"name": "symfony/polyfill-php81",
"version": "v1.27.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php81.git",
"reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
"reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.27-dev"
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Php81\\": ""
},
"classmap": [
"Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"polyfill",
"portable",
"shim"
],
"support": {
"source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-11-03T14:55:06+00:00"
},
{
{
"name": "symfony/process",
"name": "symfony/process",
"version": "v5.4.1
1
",
"version": "v5.4.1
9
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/process.git",
"url": "https://github.com/symfony/process.git",
"reference": "
6e75fe6874cbc7e4773d049616ab450eff537bf
1"
"reference": "
c5ba874c9b636dbccf761e22ce750e88ec3f55e
1"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/process/zipball/
6e75fe6874cbc7e4773d049616ab450eff537bf
1",
"url": "https://api.github.com/repos/symfony/process/zipball/
c5ba874c9b636dbccf761e22ce750e88ec3f55e
1",
"reference": "
6e75fe6874cbc7e4773d049616ab450eff537bf
1",
"reference": "
c5ba874c9b636dbccf761e22ce750e88ec3f55e
1",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -5409,7 +5586,7 @@
...
@@ -5409,7 +5586,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.1
1
"
"source": "https://github.com/symfony/process/tree/v5.4.1
9
"
},
},
"funding": [
"funding": [
{
{
...
@@ -5425,20 +5602,20 @@
...
@@ -5425,20 +5602,20 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2
-0
6-27T16:58:25
+00:00"
"time": "202
3
-0
1-01T08:32:19
+00:00"
},
},
{
{
"name": "symfony/routing",
"name": "symfony/routing",
"version": "v5.4.1
7
",
"version": "v5.4.1
9
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/routing.git",
"url": "https://github.com/symfony/routing.git",
"reference": "
4ce2df9a469c19ba45ca6aca04fec1c358a6e791
"
"reference": "
df1b28f37c8e78912213c58ef6ab2f2037bbfdc5
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/routing/zipball/
4ce2df9a469c19ba45ca6aca04fec1c358a6e791
",
"url": "https://api.github.com/repos/symfony/routing/zipball/
df1b28f37c8e78912213c58ef6ab2f2037bbfdc5
",
"reference": "
4ce2df9a469c19ba45ca6aca04fec1c358a6e791
",
"reference": "
df1b28f37c8e78912213c58ef6ab2f2037bbfdc5
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -5499,7 +5676,7 @@
...
@@ -5499,7 +5676,7 @@
"url"
"url"
],
],
"support": {
"support": {
"source": "https://github.com/symfony/routing/tree/v5.4.1
7
"
"source": "https://github.com/symfony/routing/tree/v5.4.1
9
"
},
},
"funding": [
"funding": [
{
{
...
@@ -5515,7 +5692,7 @@
...
@@ -5515,7 +5692,7 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2-12-20T11:10:57
+00:00"
"time": "202
3-01-01T08:32:19
+00:00"
},
},
{
{
"name": "symfony/service-contracts",
"name": "symfony/service-contracts",
...
@@ -5602,34 +5779,34 @@
...
@@ -5602,34 +5779,34 @@
},
},
{
{
"name": "symfony/string",
"name": "symfony/string",
"version": "v
6.2.2
",
"version": "v
5.4.19
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/string.git",
"url": "https://github.com/symfony/string.git",
"reference": "
863219fd713fa41cbcd285a79723f94672faff4d
"
"reference": "
0a01071610fd861cc160dfb7e2682ceec66064cb
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/string/zipball/
863219fd713fa41cbcd285a79723f94672faff4d
",
"url": "https://api.github.com/repos/symfony/string/zipball/
0a01071610fd861cc160dfb7e2682ceec66064cb
",
"reference": "
863219fd713fa41cbcd285a79723f94672faff4d
",
"reference": "
0a01071610fd861cc160dfb7e2682ceec66064cb
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": ">=
8.1
",
"php": ">=
7.2.5
",
"symfony/polyfill-ctype": "~1.8",
"symfony/polyfill-ctype": "~1.8",
"symfony/polyfill-intl-grapheme": "~1.0",
"symfony/polyfill-intl-grapheme": "~1.0",
"symfony/polyfill-intl-normalizer": "~1.0",
"symfony/polyfill-intl-normalizer": "~1.0",
"symfony/polyfill-mbstring": "~1.0"
"symfony/polyfill-mbstring": "~1.0",
"symfony/polyfill-php80": "~1.15"
},
},
"conflict": {
"conflict": {
"symfony/translation-contracts": "
<2
.0"
"symfony/translation-contracts": "
>=3
.0"
},
},
"require-dev": {
"require-dev": {
"symfony/error-handler": "^5.4|^6.0",
"symfony/error-handler": "^4.4|^5.0|^6.0",
"symfony/http-client": "^5.4|^6.0",
"symfony/http-client": "^4.4|^5.0|^6.0",
"symfony/intl": "^6.2",
"symfony/translation-contracts": "^1.1|^2",
"symfony/translation-contracts": "^2.0|^3.0",
"symfony/var-exporter": "^4.4|^5.0|^6.0"
"symfony/var-exporter": "^5.4|^6.0"
},
},
"type": "library",
"type": "library",
"autoload": {
"autoload": {
...
@@ -5668,7 +5845,7 @@
...
@@ -5668,7 +5845,7 @@
"utf8"
"utf8"
],
],
"support": {
"support": {
"source": "https://github.com/symfony/string/tree/v
6.2.2
"
"source": "https://github.com/symfony/string/tree/v
5.4.19
"
},
},
"funding": [
"funding": [
{
{
...
@@ -5684,55 +5861,54 @@
...
@@ -5684,55 +5861,54 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2-12-14T16:11:27
+00:00"
"time": "202
3-01-01T08:32:19
+00:00"
},
},
{
{
"name": "symfony/translation",
"name": "symfony/translation",
"version": "v
6.2.3
",
"version": "v
5.4.19
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/translation.git",
"url": "https://github.com/symfony/translation.git",
"reference": "
a2a15404ef4c15d92c205718eb828b225a144379
"
"reference": "
83d487b13b7fb4c0a6ad079f4e4c9b4525e1b695
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/translation/zipball/
a2a15404ef4c15d92c205718eb828b225a144379
",
"url": "https://api.github.com/repos/symfony/translation/zipball/
83d487b13b7fb4c0a6ad079f4e4c9b4525e1b695
",
"reference": "
a2a15404ef4c15d92c205718eb828b225a144379
",
"reference": "
83d487b13b7fb4c0a6ad079f4e4c9b4525e1b695
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": ">=8.1",
"php": ">=7.2.5",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/polyfill-mbstring": "~1.0",
"symfony/polyfill-mbstring": "~1.0",
"symfony/translation-contracts": "^2.3|^3.0"
"symfony/polyfill-php80": "^1.16",
"symfony/translation-contracts": "^2.3"
},
},
"conflict": {
"conflict": {
"symfony/config": "<
5
.4",
"symfony/config": "<
4
.4",
"symfony/console": "<5.
4
",
"symfony/console": "<5.
3
",
"symfony/dependency-injection": "<5.
4
",
"symfony/dependency-injection": "<5.
0
",
"symfony/http-kernel": "<5.
4
",
"symfony/http-kernel": "<5.
0
",
"symfony/twig-bundle": "<5.
4
",
"symfony/twig-bundle": "<5.
0
",
"symfony/yaml": "<
5
.4"
"symfony/yaml": "<
4
.4"
},
},
"provide": {
"provide": {
"symfony/translation-implementation": "2.3
|3.0
"
"symfony/translation-implementation": "2.3"
},
},
"require-dev": {
"require-dev": {
"nikic/php-parser": "^4.13",
"psr/log": "^1|^2|^3",
"psr/log": "^1|^2|^3",
"symfony/config": "^5.
4
|^6.0",
"symfony/config": "^
4.4|^
5.
0
|^6.0",
"symfony/console": "^5.4|^6.0",
"symfony/console": "^5.4|^6.0",
"symfony/dependency-injection": "^5.
4
|^6.0",
"symfony/dependency-injection": "^5.
0
|^6.0",
"symfony/finder": "^5.
4
|^6.0",
"symfony/finder": "^
4.4|^
5.
0
|^6.0",
"symfony/http-client-contracts": "^1.1|^2.0|^3.0",
"symfony/http-client-contracts": "^1.1|^2.0|^3.0",
"symfony/http-kernel": "^5.
4
|^6.0",
"symfony/http-kernel": "^5.
0
|^6.0",
"symfony/intl": "^5.
4
|^6.0",
"symfony/intl": "^
4.4|^
5.
0
|^6.0",
"symfony/polyfill-intl-icu": "^1.21",
"symfony/polyfill-intl-icu": "^1.21",
"symfony/routing": "^5.4|^6.0",
"symfony/service-contracts": "^1.1.2|^2|^3",
"symfony/service-contracts": "^1.1.2|^2|^3",
"symfony/yaml": "^5.
4
|^6.0"
"symfony/yaml": "^
4.4|^
5.
0
|^6.0"
},
},
"suggest": {
"suggest": {
"nikic/php-parser": "To use PhpAstExtractor",
"psr/log-implementation": "To use logging capability in translator",
"psr/log-implementation": "To use logging capability in translator",
"symfony/config": "",
"symfony/config": "",
"symfony/yaml": ""
"symfony/yaml": ""
...
@@ -5766,7 +5942,7 @@
...
@@ -5766,7 +5942,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/v
6.2.3
"
"source": "https://github.com/symfony/translation/tree/v
5.4.19
"
},
},
"funding": [
"funding": [
{
{
...
@@ -5782,24 +5958,24 @@
...
@@ -5782,24 +5958,24 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2-12-23T14:11
:1
1
+00:00"
"time": "202
3-01-01T08:32
:1
9
+00:00"
},
},
{
{
"name": "symfony/translation-contracts",
"name": "symfony/translation-contracts",
"version": "v
3.2.0
",
"version": "v
2.5.2
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/translation-contracts.git",
"url": "https://github.com/symfony/translation-contracts.git",
"reference": "
68cce71402305a015f8c1589bfada1280dc64fe7
"
"reference": "
136b19dd05cdf0709db6537d058bcab6dd6e2dbe
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/translation-contracts/zipball/
68cce71402305a015f8c1589bfada1280dc64fe7
",
"url": "https://api.github.com/repos/symfony/translation-contracts/zipball/
136b19dd05cdf0709db6537d058bcab6dd6e2dbe
",
"reference": "
68cce71402305a015f8c1589bfada1280dc64fe7
",
"reference": "
136b19dd05cdf0709db6537d058bcab6dd6e2dbe
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": ">=
8.1
"
"php": ">=
7.2.5
"
},
},
"suggest": {
"suggest": {
"symfony/translation-implementation": ""
"symfony/translation-implementation": ""
...
@@ -5807,7 +5983,7 @@
...
@@ -5807,7 +5983,7 @@
"type": "library",
"type": "library",
"extra": {
"extra": {
"branch-alias": {
"branch-alias": {
"dev-main": "
3.3
-dev"
"dev-main": "
2.5
-dev"
},
},
"thanks": {
"thanks": {
"name": "symfony/contracts",
"name": "symfony/contracts",
...
@@ -5817,10 +5993,7 @@
...
@@ -5817,10 +5993,7 @@
"autoload": {
"autoload": {
"psr-4": {
"psr-4": {
"Symfony\\Contracts\\Translation\\": ""
"Symfony\\Contracts\\Translation\\": ""
},
}
"exclude-from-classmap": [
"/Test/"
]
},
},
"notification-url": "https://packagist.org/downloads/",
"notification-url": "https://packagist.org/downloads/",
"license": [
"license": [
...
@@ -5847,7 +6020,7 @@
...
@@ -5847,7 +6020,7 @@
"standards"
"standards"
],
],
"support": {
"support": {
"source": "https://github.com/symfony/translation-contracts/tree/v
3.2.0
"
"source": "https://github.com/symfony/translation-contracts/tree/v
2.5.2
"
},
},
"funding": [
"funding": [
{
{
...
@@ -5863,20 +6036,20 @@
...
@@ -5863,20 +6036,20 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "2022-
11
-2
5
T1
0:21:52
+00:00"
"time": "2022-
06
-2
7
T1
6:58:25
+00:00"
},
},
{
{
"name": "symfony/var-dumper",
"name": "symfony/var-dumper",
"version": "v5.4.1
7
",
"version": "v5.4.1
9
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
"url": "https://github.com/symfony/var-dumper.git",
"reference": "
ad74890513d07060255df2575703daf971de92c7
"
"reference": "
2944bbc23f5f8da2b962fbcbf7c4a6109b2f4b7b
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/
ad74890513d07060255df2575703daf971de92c7
",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/
2944bbc23f5f8da2b962fbcbf7c4a6109b2f4b7b
",
"reference": "
ad74890513d07060255df2575703daf971de92c7
",
"reference": "
2944bbc23f5f8da2b962fbcbf7c4a6109b2f4b7b
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -5936,7 +6109,7 @@
...
@@ -5936,7 +6109,7 @@
"dump"
"dump"
],
],
"support": {
"support": {
"source": "https://github.com/symfony/var-dumper/tree/v5.4.1
7
"
"source": "https://github.com/symfony/var-dumper/tree/v5.4.1
9
"
},
},
"funding": [
"funding": [
{
{
...
@@ -5952,7 +6125,7 @@
...
@@ -5952,7 +6125,7 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "202
2-12-22T10:31:0
3+00:00"
"time": "202
3-01-16T10:52:3
3+00:00"
},
},
{
{
"name": "tijsverkoyen/css-to-inline-styles",
"name": "tijsverkoyen/css-to-inline-styles",
...
@@ -6227,30 +6400,30 @@
...
@@ -6227,30 +6400,30 @@
"packages-dev": [
"packages-dev": [
{
{
"name": "doctrine/instantiator",
"name": "doctrine/instantiator",
"version": "
2.0
.0",
"version": "
1.5
.0",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/doctrine/instantiator.git",
"url": "https://github.com/doctrine/instantiator.git",
"reference": "
c6222283fa3f4ac679f8b9ced9a4e23f163e80d0
"
"reference": "
0a0fa9780f5d4e507415a065172d26a98d02047b
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/doctrine/instantiator/zipball/
c6222283fa3f4ac679f8b9ced9a4e23f163e80d0
",
"url": "https://api.github.com/repos/doctrine/instantiator/zipball/
0a0fa9780f5d4e507415a065172d26a98d02047b
",
"reference": "
c6222283fa3f4ac679f8b9ced9a4e23f163e80d0
",
"reference": "
0a0fa9780f5d4e507415a065172d26a98d02047b
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": "^
8
.1"
"php": "^
7
.1
|| ^8.0
"
},
},
"require-dev": {
"require-dev": {
"doctrine/coding-standard": "^11",
"doctrine/coding-standard": "
^9 ||
^11",
"ext-pdo": "*",
"ext-pdo": "*",
"ext-phar": "*",
"ext-phar": "*",
"phpbench/phpbench": "^
1.2
",
"phpbench/phpbench": "^
0.16 || ^1
",
"phpstan/phpstan": "^1.
9.
4",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1
.3
",
"phpstan/phpstan-phpunit": "^1",
"phpunit/phpunit": "^9.5
.27
",
"phpunit/phpunit": "^
7.5 || ^8.5 || ^
9.5",
"vimeo/psalm": "^5.4"
"vimeo/psalm": "
^4.30 ||
^5.4"
},
},
"type": "library",
"type": "library",
"autoload": {
"autoload": {
...
@@ -6277,7 +6450,7 @@
...
@@ -6277,7 +6450,7 @@
],
],
"support": {
"support": {
"issues": "https://github.com/doctrine/instantiator/issues",
"issues": "https://github.com/doctrine/instantiator/issues",
"source": "https://github.com/doctrine/instantiator/tree/
2.0
.0"
"source": "https://github.com/doctrine/instantiator/tree/
1.5
.0"
},
},
"funding": [
"funding": [
{
{
...
@@ -6293,7 +6466,7 @@
...
@@ -6293,7 +6466,7 @@
"type": "tidelift"
"type": "tidelift"
}
}
],
],
"time": "2022-12-30T00:
23:10
+00:00"
"time": "2022-12-30T00:
15:36
+00:00"
},
},
{
{
"name": "facade/flare-client-php",
"name": "facade/flare-client-php",
...
@@ -6362,16 +6535,16 @@
...
@@ -6362,16 +6535,16 @@
},
},
{
{
"name": "facade/ignition",
"name": "facade/ignition",
"version": "2.17.
6
",
"version": "2.17.
7
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/facade/ignition.git",
"url": "https://github.com/facade/ignition.git",
"reference": "
6acd82e986a2ecee89e2e68adfc30a1936d1ab7c
"
"reference": "
b4f5955825bb4b74cba0f94001761c46335c33e9
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/facade/ignition/zipball/
6acd82e986a2ecee89e2e68adfc30a1936d1ab7c
",
"url": "https://api.github.com/repos/facade/ignition/zipball/
b4f5955825bb4b74cba0f94001761c46335c33e9
",
"reference": "
6acd82e986a2ecee89e2e68adfc30a1936d1ab7c
",
"reference": "
b4f5955825bb4b74cba0f94001761c46335c33e9
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -6436,7 +6609,7 @@
...
@@ -6436,7 +6609,7 @@
"issues": "https://github.com/facade/ignition/issues",
"issues": "https://github.com/facade/ignition/issues",
"source": "https://github.com/facade/ignition"
"source": "https://github.com/facade/ignition"
},
},
"time": "202
2
-0
6-30T18:26
:59+00:00"
"time": "202
3
-0
1-26T12:34
:59+00:00"
},
},
{
{
"name": "facade/ignition-contracts",
"name": "facade/ignition-contracts",
...
@@ -6740,16 +6913,16 @@
...
@@ -6740,16 +6913,16 @@
},
},
{
{
"name": "laravel/sail",
"name": "laravel/sail",
"version": "v1.1
8.1
",
"version": "v1.1
9.0
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/laravel/sail.git",
"url": "https://github.com/laravel/sail.git",
"reference": "
a64f78a4ab86c04a4c5de39bea20a8d36ad48a22
"
"reference": "
4f230634a3163f3442def6a4e6ffdb02b02e14d6
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/laravel/sail/zipball/
a64f78a4ab86c04a4c5de39bea20a8d36ad48a22
",
"url": "https://api.github.com/repos/laravel/sail/zipball/
4f230634a3163f3442def6a4e6ffdb02b02e14d6
",
"reference": "
a64f78a4ab86c04a4c5de39bea20a8d36ad48a22
",
"reference": "
4f230634a3163f3442def6a4e6ffdb02b02e14d6
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -6796,7 +6969,7 @@
...
@@ -6796,7 +6969,7 @@
"issues": "https://github.com/laravel/sail/issues",
"issues": "https://github.com/laravel/sail/issues",
"source": "https://github.com/laravel/sail"
"source": "https://github.com/laravel/sail"
},
},
"time": "2023-01-
1
1T1
4
:3
5:04
+00:00"
"time": "2023-01-
3
1T1
3
:3
7:57
+00:00"
},
},
{
{
"name": "mockery/mockery",
"name": "mockery/mockery",
...
@@ -7129,16 +7302,16 @@
...
@@ -7129,16 +7302,16 @@
},
},
{
{
"name": "phpunit/php-code-coverage",
"name": "phpunit/php-code-coverage",
"version": "9.2.2
3
",
"version": "9.2.2
4
",
"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": "
9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c
"
"reference": "
2cf940ebc6355a9d430462811b5aaa308b174bed
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/
9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c
",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/
2cf940ebc6355a9d430462811b5aaa308b174bed
",
"reference": "
9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c
",
"reference": "
2cf940ebc6355a9d430462811b5aaa308b174bed
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -7194,7 +7367,7 @@
...
@@ -7194,7 +7367,7 @@
],
],
"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.2
3
"
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.2
4
"
},
},
"funding": [
"funding": [
{
{
...
@@ -7202,7 +7375,7 @@
...
@@ -7202,7 +7375,7 @@
"type": "github"
"type": "github"
}
}
],
],
"time": "202
2-12-28T12:41:10
+00:00"
"time": "202
3-01-26T08:26:55
+00:00"
},
},
{
{
"name": "phpunit/php-file-iterator",
"name": "phpunit/php-file-iterator",
...
...
resources/views/auth/forgot-password.blade.php
View file @
10fd7287
...
@@ -11,6 +11,8 @@
...
@@ -11,6 +11,8 @@
<!--
Validation
Errors
-->
<!--
Validation
Errors
-->
<
x
-
auth
-
validation
-
errors
class
=
"alert alert-danger mb-2"
:
errors
=
"
$errors
"
/>
<
x
-
auth
-
validation
-
errors
class
=
"alert alert-danger mb-2"
:
errors
=
"
$errors
"
/>
@
include
(
'components.alerts'
)
<
div
class
=
"signin-form d-md-flex"
>
<
div
class
=
"signin-form d-md-flex"
>
@
csrf
@
csrf
...
@@ -25,11 +27,6 @@
...
@@ -25,11 +27,6 @@
<
div
class
=
"w-100"
>
<
div
class
=
"w-100"
>
<
h4
class
=
"mb-4"
>
Redefinir
senha
</
h4
>
<
h4
class
=
"mb-4"
>
Redefinir
senha
</
h4
>
</
div
>
</
div
>
<!--
Session
Status
-->
<
x
-
auth
-
session
-
status
class
=
"mb-4"
:
status
=
"session('status')"
/>
<!--
Validation
Errors
-->
<
x
-
auth
-
validation
-
errors
class
=
"mb-4"
:
errors
=
"
$errors
"
/>
<
form
method
=
"POST"
action
=
"{{ route('password.email') }}"
>
<
form
method
=
"POST"
action
=
"{{ route('password.email') }}"
>
@
csrf
@
csrf
...
...
resources/views/auth/passwords/confirm.blade.php
0 → 100644
View file @
10fd7287
resources/views/auth/passwords/email.blade.php
0 → 100644
View file @
10fd7287
resources/views/auth/passwords/reset.blade.php
0 → 100644
View file @
10fd7287
resources/views/auth/reset-password.blade.php
View file @
10fd7287
...
@@ -14,11 +14,6 @@
...
@@ -14,11 +14,6 @@
<
h4
class
=
"mb-4"
>
Redefinir
senha
</
h4
>
<
h4
class
=
"mb-4"
>
Redefinir
senha
</
h4
>
</
div
>
</
div
>
<!--
Session
Status
-->
<
x
-
auth
-
session
-
status
class
=
"mb-4"
:
status
=
"session('status')"
/>
<!--
Validation
Errors
-->
<
x
-
auth
-
validation
-
errors
class
=
"mb-4"
:
errors
=
"
$errors
"
/>
<
form
method
=
"POST"
action
=
"{{ route('password.update') }}"
>
<
form
method
=
"POST"
action
=
"{{ route('password.update') }}"
>
@
csrf
@
csrf
<!--
Password
Reset
Token
-->
<!--
Password
Reset
Token
-->
...
@@ -34,14 +29,14 @@
...
@@ -34,14 +29,14 @@
<!--
Password
-->
<!--
Password
-->
<
div
class
=
"form-group mt-3"
>
<
div
class
=
"form-group mt-3"
>
<
x
-
label
for
=
"password"
:
value
=
"__('
Password
')"
/>
<
x
-
label
for
=
"password"
:
value
=
"__('
Nova Senha
')"
/>
<
x
-
input
id
=
"password"
class
=
"form-control"
type
=
"password"
name
=
"password"
required
/>
<
x
-
input
id
=
"password"
class
=
"form-control"
type
=
"password"
name
=
"password"
required
/>
</
div
>
</
div
>
<!--
Confirm
Password
-->
<!--
Confirm
Password
-->
<
div
class
=
"form-group mt-3"
>
<
div
class
=
"form-group mt-3"
>
<
x
-
label
for
=
"password_confirmation"
:
value
=
"__('Confirm
Password
')"
/>
<
x
-
label
for
=
"password_confirmation"
:
value
=
"__('Confirm
ar Senha
')"
/>
<
x
-
input
id
=
"password_confirmation"
class
=
"form-control"
type
=
"password"
<
x
-
input
id
=
"password_confirmation"
class
=
"form-control"
type
=
"password"
name
=
"password_confirmation"
required
/>
name
=
"password_confirmation"
required
/>
...
...
resources/views/users/_form.blade.php
View file @
10fd7287
@
php
@
php
if
(
$tab_active
==
'user'
)
$userTabActive
=
''
;
$userContainerActive
=
''
;
$paperTabActive
=
''
;
$paperContainerActive
=
''
;
if
(
$tab
==
'user'
)
{
{
$userTabActive
=
'active'
;
$userTabActive
=
'active'
;
$userContainerActive
=
'show active'
;
$userContainerActive
=
'show active'
;
$paperTabActive
=
''
;
$paperContainerActive
=
''
;
}
}
if
(
$tab
_active
==
'paper'
)
if
(
$tab
==
'paper'
)
{
{
$userTabActive
=
''
;
$userContainerActive
=
''
;
$paperTabActive
=
'active'
;
$paperTabActive
=
'active'
;
$paperContainerActive
=
'show active'
;
$paperContainerActive
=
'show active'
;
}
}
...
...
resources/views/users/create.blade.php
View file @
10fd7287
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
@
include
(
'users._form'
,
[
@
include
(
'users._form'
,
[
'action'
=>
route
(
'user_store'
),
'action'
=>
route
(
'user_store'
),
'model'
=>
$model
,
'model'
=>
$model
,
'tab'
=>
$tab
])
])
</
div
>
</
div
>
...
...
resources/views/users/update.blade.php
View file @
10fd7287
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
'model'
=>
$model
,
'model'
=>
$model
,
'status'
=>
$status
,
'status'
=>
$status
,
'profiles'
=>
$profiles
,
'profiles'
=>
$profiles
,
'tab
_active
'
=>
$tab
_active
,
'tab'
=>
$tab
,
])
])
@
include
(
'components.modal'
,
[
@
include
(
'components.modal'
,
[
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment