From 9a4c6dfe8bc1de78c54296783409fe97ba31b0e5 Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 10:21:53 -0500 Subject: [PATCH 01/18] Starting some testing around moving from laravelcollective to spatie HTML rendering --- .idea/.gitignore | 8 ++++++++ .idea/crud-generator-laravel.iml | 10 ++++++++++ .idea/modules.xml | 8 ++++++++ .idea/php.xml | 20 +++++++++++++++++++ .idea/vcs.xml | 6 ++++++ src/Services/MakeViewsService.php | 8 ++++---- .../commentable/views/comment-block.stub | 16 +++++++-------- src/stubs/default-theme/create.stub | 13 +++++------- src/stubs/default-theme/edit.stub | 10 ++++------ src/stubs/default-theme/index.stub | 6 +++--- .../livewire/index-datatable.stub | 6 +++--- tests/Console/resultsOk/create.blade.php | 14 ++++++------- tests/Console/resultsOk/edit.blade.php | 14 ++++++------- tests/Console/resultsOk/index.blade.php | 6 +++--- .../resultsOk/post-datatable.blade.php | 6 +++--- 15 files changed, 99 insertions(+), 52 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/crud-generator-laravel.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/php.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/crud-generator-laravel.iml b/.idea/crud-generator-laravel.iml new file mode 100644 index 0000000..4005316 --- /dev/null +++ b/.idea/crud-generator-laravel.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..511e214 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 0000000..a85fe78 --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/Services/MakeViewsService.php b/src/Services/MakeViewsService.php index b206806..f792081 100644 --- a/src/Services/MakeViewsService.php +++ b/src/Services/MakeViewsService.php @@ -126,8 +126,8 @@ public function findAndReplaceCreateViewPlaceholderColumns($columns, $templateVi // our placeholders $formCreate .=str_repeat("\t", 2).'
'."\n"; - $formCreate .=str_repeat("\t", 3).'{{ Form::label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; - $formCreate .=str_repeat("\t", 3).'{{ Form::'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; + $formCreate .=str_repeat("\t", 3).'{{ html()->form()->label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; + $formCreate .=str_repeat("\t", 3).'{{ html()->form()->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; $formCreate .=str_repeat("\t", 2).'
'."\n"; } @@ -160,8 +160,8 @@ public function findAndReplaceEditViewPlaceholderColumns($columns, $templateView // our placeholders $formEdit .=str_repeat("\t", 2).'
'."\n"; - $formEdit .=str_repeat("\t", 3).'{{ Form::label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; - $formEdit .=str_repeat("\t", 3).'{{ Form::'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; + $formEdit .=str_repeat("\t", 3).'{{ html()->form()->label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; + $formEdit .=str_repeat("\t", 3).'{{ html()->form()->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; $formEdit .=str_repeat("\t", 2).'
'."\n"; } diff --git a/src/stubs/commentable/views/comment-block.stub b/src/stubs/commentable/views/comment-block.stub index 3f1e238..f1c054a 100644 --- a/src/stubs/commentable/views/comment-block.stub +++ b/src/stubs/commentable/views/comment-block.stub @@ -1,18 +1,18 @@ -{!! Form::open(['route' => ['{{route_comment}}.store', {{parent_variable}}->id]]) !!} +{!! html()->form()->open('{{route_comment}}.store'.{parent_variable}}->id) !!}
- {{ Form::label('comment', 'Comment', ['class'=>'form-label']) }} - {{ Form::textarea('comment', null, array('class' => 'form-control')) }} + {{ html()->form()->label('comment', 'Comment') }} + {{ html()->form()->textarea()('comment') }}
- {{ Form::submit('Create', array('class' => 'btn btn-primary')) }} -{{ Form::close() }} + {{ html()->form()->submit('Create') }} +{{ html()->form()->close() }}
@foreach({{parent_variable}}->{{name_relationship}} as $comment)
- {!! Form::open(['method' => 'DELETE','route' => ['{{route_comment}}.destroy', {{comment_variable}}->id]]) !!} - {!! Form::submit('❌', ['class' => 'btn btn-sm']) !!} - {!! Form::close() !!} + {!! html()->form()->open('method' => 'DELETE', '{{route_comment}}.destroy'.{{comment_variable}}->id]) !!} + {!! html()->form()->submit('❌') !!} + {!! html()->form()->close() !!}
diff --git a/src/stubs/default-theme/create.stub b/src/stubs/default-theme/create.stub index 3b5f288..50948e2 100644 --- a/src/stubs/default-theme/create.stub +++ b/src/stubs/default-theme/create.stub @@ -10,13 +10,10 @@
@endif - {!! Form::open(['route' => 'DummyVariable.store']) !!} + {{ html()->form('PUT', 'DummyVariable.store' )->open() }} + DummyFormCreate + {{ html()->form()->submit('Create') }} + {{ html()->form->close() }} -DummyFormCreate - {{ Form::submit('Create', array('class' => 'btn btn-primary')) }} - - {{ Form::close() }} - - -@stop \ No newline at end of file +@stop diff --git a/src/stubs/default-theme/edit.stub b/src/stubs/default-theme/edit.stub index 45ade21..98a5715 100644 --- a/src/stubs/default-theme/edit.stub +++ b/src/stubs/default-theme/edit.stub @@ -10,10 +10,8 @@
@endif - {{ Form::model(DummyCreateVariableSing$, array('route' => array('DummyVariable.update', DummyCreateVariableSing$->id), 'method' => 'PUT')) }} - -DummyFormCreate - {{ Form::submit('Edit', array('class' => 'btn btn-primary')) }} - - {{ Form::close() }} + {{ html()->form('PUT', 'DummyVariable.update'.DummyCreateVariableSing$->id )->open() }} + DummyFormCreate + {{ html()->form()->submit('Edit') }} + {{ html()->form->close() }} @stop diff --git a/src/stubs/default-theme/index.stub b/src/stubs/default-theme/index.stub index 07d0dcb..6787768 100644 --- a/src/stubs/default-theme/index.stub +++ b/src/stubs/default-theme/index.stub @@ -22,9 +22,9 @@ DummyIndexTable
Show Edit - {!! Form::open(['method' => 'DELETE','route' => ['DummyVariable.destroy', DummyCreateVariableSing$->id]]) !!} - {!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!} - {!! Form::close() !!} + {!! html()->form()->open('DELETE', 'DummyVariable.destroy'.DummyCreateVariableSing$->id) !!} + {!! html()->form()->submit('Delete') !!} + {!! html()->form()->close() !!}
diff --git a/src/stubs/default-theme/livewire/index-datatable.stub b/src/stubs/default-theme/livewire/index-datatable.stub index 0a4fd6b..d5ee8c3 100644 --- a/src/stubs/default-theme/livewire/index-datatable.stub +++ b/src/stubs/default-theme/livewire/index-datatable.stub @@ -25,9 +25,9 @@ DummyIndexTable
Show Edit - {!! Form::open(['method' => 'DELETE','route' => ['DummyVariable.destroy', DummyCreateVariableSing$->id]]) !!} - {!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!} - {!! Form::close() !!} + {!! html()->form()->open('DELETE', 'DummyVariable.destroy'.DummyCreateVariableSing$->id) !!} + {!! html()->form()->submit('Delete') !!} + {!! html()->form()->close() !!}
diff --git a/tests/Console/resultsOk/create.blade.php b/tests/Console/resultsOk/create.blade.php index 2d11424..6fcdf51 100644 --- a/tests/Console/resultsOk/create.blade.php +++ b/tests/Console/resultsOk/create.blade.php @@ -10,21 +10,21 @@
@endif - {!! Form::open(['route' => 'posts.store']) !!} + {!! html()->form()->open('posts.store') !!}
- {{ Form::label('title', 'Title', ['class'=>'form-label']) }} - {{ Form::text('title', null, array('class' => 'form-control')) }} + {{ html()->form()->label('title', 'Title') }} + {{ html()->form()->text('title', null) }}
- {{ Form::label('url', 'Url', ['class'=>'form-label']) }} - {{ Form::text('url', null, array('class' => 'form-control')) }} + {{ html()->form()->label('url', 'Url') }} + {{ html()->form()->text('url', null) }}
- {{ Form::submit('Create', array('class' => 'btn btn-primary')) }} + {{ html()->form()->submit('Create') }} - {{ Form::close() }} + {{ html()->form()->close() }} @stop \ No newline at end of file diff --git a/tests/Console/resultsOk/edit.blade.php b/tests/Console/resultsOk/edit.blade.php index 9d6c3e7..a4e2336 100644 --- a/tests/Console/resultsOk/edit.blade.php +++ b/tests/Console/resultsOk/edit.blade.php @@ -10,18 +10,18 @@
@endif - {{ Form::model($post, array('route' => array('posts.update', $post->id), 'method' => 'PUT')) }} + {{ html()->form()->modelform($post, 'PUT', array('route' => array('posts.update', $post->id))) }}
- {{ Form::label('title', 'Title', ['class'=>'form-label']) }} - {{ Form::text('title', null, array('class' => 'form-control')) }} + {{ html()->form()->label('title', 'Title') }} + {{ html()->form()->text('title', null) }}
- {{ Form::label('url', 'Url', ['class'=>'form-label']) }} - {{ Form::text('url', null, array('class' => 'form-control')) }} + {{ html()->form()->label('url', 'Url') }} + {{ html()->form()->text('url', null) }}
- {{ Form::submit('Edit', array('class' => 'btn btn-primary')) }} + {{ html()->form()->submit('Edit') }} - {{ Form::close() }} + {{ html()->form()->close() }} @stop \ No newline at end of file diff --git a/tests/Console/resultsOk/index.blade.php b/tests/Console/resultsOk/index.blade.php index a127ed0..dd895e6 100644 --- a/tests/Console/resultsOk/index.blade.php +++ b/tests/Console/resultsOk/index.blade.php @@ -26,9 +26,9 @@
Show Edit - {!! Form::open(['method' => 'DELETE','route' => ['posts.destroy', $post->id]]) !!} - {!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!} - {!! Form::close() !!} + {!! html()->form()->open('DELETE',['posts.destroy', $post->id]) !!} + {!! html()->form()->submit('Delete') !!} + {!! html()->form()->close() !!}
diff --git a/tests/Console/resultsOk/post-datatable.blade.php b/tests/Console/resultsOk/post-datatable.blade.php index bb1f9a8..c4c202b 100644 --- a/tests/Console/resultsOk/post-datatable.blade.php +++ b/tests/Console/resultsOk/post-datatable.blade.php @@ -29,9 +29,9 @@
Show Edit - {!! Form::open(['method' => 'DELETE','route' => ['posts.destroy', $post->id]]) !!} - {!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!} - {!! Form::close() !!} + {!! html()->form()->open('DELETE',['posts.destroy', $post->id]) !!} + {!! html()->form()->submit('Delete') !!} + {!! html()->form()->close() !!}
From 2c7a5dcaf610d91985c25249b14c84e156859234 Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 10:39:41 -0500 Subject: [PATCH 02/18] Was trying to render elements off of spatie's form, but its only used for opening and closing the form. /shrug --- src/Services/MakeViewsService.php | 8 ++++---- src/stubs/commentable/views/comment-block.stub | 8 ++++---- src/stubs/default-theme/create.stub | 2 +- src/stubs/default-theme/edit.stub | 2 +- src/stubs/default-theme/index.stub | 2 +- src/stubs/default-theme/livewire/index-datatable.stub | 2 +- tests/Console/resultsOk/create.blade.php | 10 +++++----- tests/Console/resultsOk/edit.blade.php | 10 +++++----- tests/Console/resultsOk/index.blade.php | 2 +- 9 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/Services/MakeViewsService.php b/src/Services/MakeViewsService.php index f792081..8d0658c 100644 --- a/src/Services/MakeViewsService.php +++ b/src/Services/MakeViewsService.php @@ -126,8 +126,8 @@ public function findAndReplaceCreateViewPlaceholderColumns($columns, $templateVi // our placeholders $formCreate .=str_repeat("\t", 2).'
'."\n"; - $formCreate .=str_repeat("\t", 3).'{{ html()->form()->label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; - $formCreate .=str_repeat("\t", 3).'{{ html()->form()->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; + $formCreate .=str_repeat("\t", 3).'{{ html->label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; + $formCreate .=str_repeat("\t", 3).'{{ html->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; $formCreate .=str_repeat("\t", 2).'
'."\n"; } @@ -160,8 +160,8 @@ public function findAndReplaceEditViewPlaceholderColumns($columns, $templateView // our placeholders $formEdit .=str_repeat("\t", 2).'
'."\n"; - $formEdit .=str_repeat("\t", 3).'{{ html()->form()->label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; - $formEdit .=str_repeat("\t", 3).'{{ html()->form()->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; + $formEdit .=str_repeat("\t", 3).'{{ html->label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; + $formEdit .=str_repeat("\t", 3).'{{ html->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; $formEdit .=str_repeat("\t", 2).'
'."\n"; } diff --git a/src/stubs/commentable/views/comment-block.stub b/src/stubs/commentable/views/comment-block.stub index f1c054a..4879904 100644 --- a/src/stubs/commentable/views/comment-block.stub +++ b/src/stubs/commentable/views/comment-block.stub @@ -1,9 +1,9 @@ {!! html()->form()->open('{{route_comment}}.store'.{parent_variable}}->id) !!}
- {{ html()->form()->label('comment', 'Comment') }} - {{ html()->form()->textarea()('comment') }} + {{ html->label('comment', 'Comment') }} + {{ html->textarea()('comment') }}
- {{ html()->form()->submit('Create') }} + {{ html->submit('Create') }} {{ html()->form()->close() }}
@@ -11,7 +11,7 @@
{!! html()->form()->open('method' => 'DELETE', '{{route_comment}}.destroy'.{{comment_variable}}->id]) !!} - {!! html()->form()->submit('❌') !!} + {!! html->submit('❌') !!} {!! html()->form()->close() !!}
diff --git a/src/stubs/default-theme/create.stub b/src/stubs/default-theme/create.stub index 50948e2..d6a59d6 100644 --- a/src/stubs/default-theme/create.stub +++ b/src/stubs/default-theme/create.stub @@ -12,7 +12,7 @@ {{ html()->form('PUT', 'DummyVariable.store' )->open() }} DummyFormCreate - {{ html()->form()->submit('Create') }} + {{ html->submit('Create') }} {{ html()->form->close() }} diff --git a/src/stubs/default-theme/edit.stub b/src/stubs/default-theme/edit.stub index 98a5715..b0b044f 100644 --- a/src/stubs/default-theme/edit.stub +++ b/src/stubs/default-theme/edit.stub @@ -12,6 +12,6 @@ {{ html()->form('PUT', 'DummyVariable.update'.DummyCreateVariableSing$->id )->open() }} DummyFormCreate - {{ html()->form()->submit('Edit') }} + {{ html->submit('Edit') }} {{ html()->form->close() }} @stop diff --git a/src/stubs/default-theme/index.stub b/src/stubs/default-theme/index.stub index 6787768..74e1391 100644 --- a/src/stubs/default-theme/index.stub +++ b/src/stubs/default-theme/index.stub @@ -23,7 +23,7 @@ DummyIndexTable Show Edit {!! html()->form()->open('DELETE', 'DummyVariable.destroy'.DummyCreateVariableSing$->id) !!} - {!! html()->form()->submit('Delete') !!} + {!! html->submit('Delete') !!} {!! html()->form()->close() !!}
diff --git a/src/stubs/default-theme/livewire/index-datatable.stub b/src/stubs/default-theme/livewire/index-datatable.stub index d5ee8c3..9507273 100644 --- a/src/stubs/default-theme/livewire/index-datatable.stub +++ b/src/stubs/default-theme/livewire/index-datatable.stub @@ -26,7 +26,7 @@ DummyIndexTable Show Edit {!! html()->form()->open('DELETE', 'DummyVariable.destroy'.DummyCreateVariableSing$->id) !!} - {!! html()->form()->submit('Delete') !!} + {!! html->submit('Delete') !!} {!! html()->form()->close() !!}
diff --git a/tests/Console/resultsOk/create.blade.php b/tests/Console/resultsOk/create.blade.php index 6fcdf51..1dc47cf 100644 --- a/tests/Console/resultsOk/create.blade.php +++ b/tests/Console/resultsOk/create.blade.php @@ -13,16 +13,16 @@ {!! html()->form()->open('posts.store') !!}
- {{ html()->form()->label('title', 'Title') }} - {{ html()->form()->text('title', null) }} + {{ html->label('title', 'Title') }} + {{ html->text('title', null) }}
- {{ html()->form()->label('url', 'Url') }} - {{ html()->form()->text('url', null) }} + {{ html->label('url', 'Url') }} + {{ html->text('url', null) }}
- {{ html()->form()->submit('Create') }} + {{ html->submit('Create') }} {{ html()->form()->close() }} diff --git a/tests/Console/resultsOk/edit.blade.php b/tests/Console/resultsOk/edit.blade.php index a4e2336..df1acbc 100644 --- a/tests/Console/resultsOk/edit.blade.php +++ b/tests/Console/resultsOk/edit.blade.php @@ -13,15 +13,15 @@ {{ html()->form()->modelform($post, 'PUT', array('route' => array('posts.update', $post->id))) }}
- {{ html()->form()->label('title', 'Title') }} - {{ html()->form()->text('title', null) }} + {{ html->label('title', 'Title') }} + {{ html->text('title', null) }}
- {{ html()->form()->label('url', 'Url') }} - {{ html()->form()->text('url', null) }} + {{ html->label('url', 'Url') }} + {{ html->text('url', null) }}
- {{ html()->form()->submit('Edit') }} + {{ html->submit('Edit') }} {{ html()->form()->close() }} @stop \ No newline at end of file diff --git a/tests/Console/resultsOk/index.blade.php b/tests/Console/resultsOk/index.blade.php index dd895e6..de41e8e 100644 --- a/tests/Console/resultsOk/index.blade.php +++ b/tests/Console/resultsOk/index.blade.php @@ -27,7 +27,7 @@ Show Edit {!! html()->form()->open('DELETE',['posts.destroy', $post->id]) !!} - {!! html()->form()->submit('Delete') !!} + {!! html->submit('Delete') !!} {!! html()->form()->close() !!}
From dde6ea7330ab18913f7b319e53f08d89e179e76f Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 10:49:13 -0500 Subject: [PATCH 03/18] Beware of find and replace, put many bugs in many places :) --- src/Services/MakeViewsService.php | 8 ++++---- src/stubs/commentable/views/comment-block.stub | 8 ++++---- src/stubs/default-theme/create.stub | 2 +- src/stubs/default-theme/edit.stub | 2 +- src/stubs/default-theme/index.stub | 2 +- src/stubs/default-theme/livewire/index-datatable.stub | 2 +- tests/Console/resultsOk/create.blade.php | 10 +++++----- tests/Console/resultsOk/edit.blade.php | 10 +++++----- tests/Console/resultsOk/index.blade.php | 2 +- 9 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/Services/MakeViewsService.php b/src/Services/MakeViewsService.php index 8d0658c..aefdc65 100644 --- a/src/Services/MakeViewsService.php +++ b/src/Services/MakeViewsService.php @@ -126,8 +126,8 @@ public function findAndReplaceCreateViewPlaceholderColumns($columns, $templateVi // our placeholders $formCreate .=str_repeat("\t", 2).'
'."\n"; - $formCreate .=str_repeat("\t", 3).'{{ html->label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; - $formCreate .=str_repeat("\t", 3).'{{ html->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; + $formCreate .=str_repeat("\t", 3).'{{ html()->label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; + $formCreate .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; $formCreate .=str_repeat("\t", 2).'
'."\n"; } @@ -160,8 +160,8 @@ public function findAndReplaceEditViewPlaceholderColumns($columns, $templateView // our placeholders $formEdit .=str_repeat("\t", 2).'
'."\n"; - $formEdit .=str_repeat("\t", 3).'{{ html->label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; - $formEdit .=str_repeat("\t", 3).'{{ html->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; + $formEdit .=str_repeat("\t", 3).'{{ html()->label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; + $formEdit .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; $formEdit .=str_repeat("\t", 2).'
'."\n"; } diff --git a/src/stubs/commentable/views/comment-block.stub b/src/stubs/commentable/views/comment-block.stub index 4879904..abd1499 100644 --- a/src/stubs/commentable/views/comment-block.stub +++ b/src/stubs/commentable/views/comment-block.stub @@ -1,9 +1,9 @@ {!! html()->form()->open('{{route_comment}}.store'.{parent_variable}}->id) !!}
- {{ html->label('comment', 'Comment') }} - {{ html->textarea()('comment') }} + {{ html()->label('comment', 'Comment') }} + {{ html()->textarea()('comment') }}
- {{ html->submit('Create') }} + {{ html()->submit('Create') }} {{ html()->form()->close() }}
@@ -11,7 +11,7 @@
{!! html()->form()->open('method' => 'DELETE', '{{route_comment}}.destroy'.{{comment_variable}}->id]) !!} - {!! html->submit('❌') !!} + {!! html()->submit('❌') !!} {!! html()->form()->close() !!}
diff --git a/src/stubs/default-theme/create.stub b/src/stubs/default-theme/create.stub index d6a59d6..2f92b2d 100644 --- a/src/stubs/default-theme/create.stub +++ b/src/stubs/default-theme/create.stub @@ -12,7 +12,7 @@ {{ html()->form('PUT', 'DummyVariable.store' )->open() }} DummyFormCreate - {{ html->submit('Create') }} + {{ html()->submit('Create') }} {{ html()->form->close() }} diff --git a/src/stubs/default-theme/edit.stub b/src/stubs/default-theme/edit.stub index b0b044f..dfdc451 100644 --- a/src/stubs/default-theme/edit.stub +++ b/src/stubs/default-theme/edit.stub @@ -12,6 +12,6 @@ {{ html()->form('PUT', 'DummyVariable.update'.DummyCreateVariableSing$->id )->open() }} DummyFormCreate - {{ html->submit('Edit') }} + {{ html()->submit('Edit') }} {{ html()->form->close() }} @stop diff --git a/src/stubs/default-theme/index.stub b/src/stubs/default-theme/index.stub index 74e1391..d46f7fb 100644 --- a/src/stubs/default-theme/index.stub +++ b/src/stubs/default-theme/index.stub @@ -23,7 +23,7 @@ DummyIndexTable Show Edit {!! html()->form()->open('DELETE', 'DummyVariable.destroy'.DummyCreateVariableSing$->id) !!} - {!! html->submit('Delete') !!} + {!! html()->submit('Delete') !!} {!! html()->form()->close() !!}
diff --git a/src/stubs/default-theme/livewire/index-datatable.stub b/src/stubs/default-theme/livewire/index-datatable.stub index 9507273..53576d6 100644 --- a/src/stubs/default-theme/livewire/index-datatable.stub +++ b/src/stubs/default-theme/livewire/index-datatable.stub @@ -26,7 +26,7 @@ DummyIndexTable Show Edit {!! html()->form()->open('DELETE', 'DummyVariable.destroy'.DummyCreateVariableSing$->id) !!} - {!! html->submit('Delete') !!} + {!! html()->submit('Delete') !!} {!! html()->form()->close() !!}
diff --git a/tests/Console/resultsOk/create.blade.php b/tests/Console/resultsOk/create.blade.php index 1dc47cf..b0202cb 100644 --- a/tests/Console/resultsOk/create.blade.php +++ b/tests/Console/resultsOk/create.blade.php @@ -13,16 +13,16 @@ {!! html()->form()->open('posts.store') !!}
- {{ html->label('title', 'Title') }} - {{ html->text('title', null) }} + {{ html()->label('title', 'Title') }} + {{ html()->text('title', null) }}
- {{ html->label('url', 'Url') }} - {{ html->text('url', null) }} + {{ html()->label('url', 'Url') }} + {{ html()->text('url', null) }}
- {{ html->submit('Create') }} + {{ html()->submit('Create') }} {{ html()->form()->close() }} diff --git a/tests/Console/resultsOk/edit.blade.php b/tests/Console/resultsOk/edit.blade.php index df1acbc..e62b9c6 100644 --- a/tests/Console/resultsOk/edit.blade.php +++ b/tests/Console/resultsOk/edit.blade.php @@ -13,15 +13,15 @@ {{ html()->form()->modelform($post, 'PUT', array('route' => array('posts.update', $post->id))) }}
- {{ html->label('title', 'Title') }} - {{ html->text('title', null) }} + {{ html()->label('title', 'Title') }} + {{ html()->text('title', null) }}
- {{ html->label('url', 'Url') }} - {{ html->text('url', null) }} + {{ html()->label('url', 'Url') }} + {{ html()->text('url', null) }}
- {{ html->submit('Edit') }} + {{ html()->submit('Edit') }} {{ html()->form()->close() }} @stop \ No newline at end of file diff --git a/tests/Console/resultsOk/index.blade.php b/tests/Console/resultsOk/index.blade.php index de41e8e..c854cdb 100644 --- a/tests/Console/resultsOk/index.blade.php +++ b/tests/Console/resultsOk/index.blade.php @@ -27,7 +27,7 @@ Show Edit {!! html()->form()->open('DELETE',['posts.destroy', $post->id]) !!} - {!! html->submit('Delete') !!} + {!! html()->submit('Delete') !!} {!! html()->form()->close() !!}
From 6730853bc21d934f7eef7119fa170cf987467d2c Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 11:07:46 -0500 Subject: [PATCH 04/18] Forgot () on form close. Starting an extension to add strings, integers, floats, etc to input fields. --- .gitignore | 2326 ++++++++++++++++++++++ .idea/.gitignore | 3 + .idea/crud-generator-laravel.iml | 39 + .idea/php.xml | 48 + composer.json | 3 +- composer.lock | 2766 +++++++++++++++++++++++++++ src/Extension/HtmlExtended.php | 17 + src/stubs/default-theme/create.stub | 2 +- src/stubs/default-theme/edit.stub | 2 +- 9 files changed, 5203 insertions(+), 3 deletions(-) create mode 100644 .gitignore create mode 100644 composer.lock create mode 100644 src/Extension/HtmlExtended.php diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..39748a3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2326 @@ +/vendor/bin/carbon +/vendor/bin/patch-type-declarations +/vendor/bin/var-dump-server +/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonDoctrineType.php +/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonImmutableType.php +/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonType.php +/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonTypeConverter.php +/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/DateTimeDefaultPrecision.php +/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/DateTimeImmutableType.php +/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/DateTimeType.php +/vendor/carbonphp/carbon-doctrine-types/composer.json +/vendor/carbonphp/carbon-doctrine-types/LICENSE +/vendor/carbonphp/carbon-doctrine-types/README.md +/vendor/composer/autoload_classmap.php +/vendor/composer/autoload_files.php +/vendor/composer/autoload_namespaces.php +/vendor/composer/autoload_psr4.php +/vendor/composer/autoload_real.php +/vendor/composer/autoload_static.php +/vendor/composer/ClassLoader.php +/vendor/composer/installed.json +/vendor/composer/installed.php +/vendor/composer/InstalledVersions.php +/vendor/composer/LICENSE +/vendor/composer/platform_check.php +/vendor/doctrine/inflector/docs/en/index.rst +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/English/Inflectible.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/English/InflectorFactory.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/English/Rules.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/English/Uninflected.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/French/Inflectible.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/French/InflectorFactory.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/French/Rules.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/French/Uninflected.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/NorwegianBokmal/Inflectible.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/NorwegianBokmal/InflectorFactory.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/NorwegianBokmal/Rules.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/NorwegianBokmal/Uninflected.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Portuguese/Inflectible.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Portuguese/InflectorFactory.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Portuguese/Rules.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Portuguese/Uninflected.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Spanish/Inflectible.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Spanish/InflectorFactory.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Spanish/Rules.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Spanish/Uninflected.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Turkish/Inflectible.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Turkish/InflectorFactory.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Turkish/Rules.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Turkish/Uninflected.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Pattern.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Patterns.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Ruleset.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Substitution.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Substitutions.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Transformation.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Transformations.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Word.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/CachedWordInflector.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/GenericLanguageInflectorFactory.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Inflector.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/InflectorFactory.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/Language.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/LanguageInflectorFactory.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/NoopWordInflector.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/RulesetInflector.php +/vendor/doctrine/inflector/lib/Doctrine/Inflector/WordInflector.php +/vendor/doctrine/inflector/composer.json +/vendor/doctrine/inflector/LICENSE +/vendor/doctrine/inflector/README.md +/vendor/fruitcake/php-cors/src/Exceptions/InvalidOptionException.php +/vendor/fruitcake/php-cors/src/CorsService.php +/vendor/fruitcake/php-cors/composer.json +/vendor/fruitcake/php-cors/LICENSE +/vendor/fruitcake/php-cors/README.md +/vendor/guzzlehttp/uri-template/src/UriTemplate.php +/vendor/guzzlehttp/uri-template/CHANGELOG.md +/vendor/guzzlehttp/uri-template/composer.json +/vendor/guzzlehttp/uri-template/LICENSE +/vendor/guzzlehttp/uri-template/README.md +/vendor/illuminate/collections/Traits/EnumeratesValues.php +/vendor/illuminate/collections/Arr.php +/vendor/illuminate/collections/Collection.php +/vendor/illuminate/collections/composer.json +/vendor/illuminate/collections/Enumerable.php +/vendor/illuminate/collections/helpers.php +/vendor/illuminate/collections/HigherOrderCollectionProxy.php +/vendor/illuminate/collections/ItemNotFoundException.php +/vendor/illuminate/collections/LazyCollection.php +/vendor/illuminate/collections/LICENSE.md +/vendor/illuminate/collections/MultipleItemsFoundException.php +/vendor/illuminate/conditionable/Traits/Conditionable.php +/vendor/illuminate/conditionable/composer.json +/vendor/illuminate/conditionable/HigherOrderWhenProxy.php +/vendor/illuminate/conditionable/LICENSE.md +/vendor/illuminate/contracts/Auth/Access/Authorizable.php +/vendor/illuminate/contracts/Auth/Access/Gate.php +/vendor/illuminate/contracts/Auth/Middleware/AuthenticatesRequests.php +/vendor/illuminate/contracts/Auth/Authenticatable.php +/vendor/illuminate/contracts/Auth/CanResetPassword.php +/vendor/illuminate/contracts/Auth/Factory.php +/vendor/illuminate/contracts/Auth/Guard.php +/vendor/illuminate/contracts/Auth/MustVerifyEmail.php +/vendor/illuminate/contracts/Auth/PasswordBroker.php +/vendor/illuminate/contracts/Auth/PasswordBrokerFactory.php +/vendor/illuminate/contracts/Auth/StatefulGuard.php +/vendor/illuminate/contracts/Auth/SupportsBasicAuth.php +/vendor/illuminate/contracts/Auth/UserProvider.php +/vendor/illuminate/contracts/Broadcasting/Broadcaster.php +/vendor/illuminate/contracts/Broadcasting/Factory.php +/vendor/illuminate/contracts/Broadcasting/HasBroadcastChannel.php +/vendor/illuminate/contracts/Broadcasting/ShouldBeUnique.php +/vendor/illuminate/contracts/Broadcasting/ShouldBroadcast.php +/vendor/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php +/vendor/illuminate/contracts/Bus/Dispatcher.php +/vendor/illuminate/contracts/Bus/QueueingDispatcher.php +/vendor/illuminate/contracts/Cache/Factory.php +/vendor/illuminate/contracts/Cache/Lock.php +/vendor/illuminate/contracts/Cache/LockProvider.php +/vendor/illuminate/contracts/Cache/LockTimeoutException.php +/vendor/illuminate/contracts/Cache/Repository.php +/vendor/illuminate/contracts/Cache/Store.php +/vendor/illuminate/contracts/Config/Repository.php +/vendor/illuminate/contracts/Console/Application.php +/vendor/illuminate/contracts/Console/Isolatable.php +/vendor/illuminate/contracts/Console/Kernel.php +/vendor/illuminate/contracts/Console/PromptsForMissingInput.php +/vendor/illuminate/contracts/Container/BindingResolutionException.php +/vendor/illuminate/contracts/Container/CircularDependencyException.php +/vendor/illuminate/contracts/Container/Container.php +/vendor/illuminate/contracts/Container/ContextualBindingBuilder.php +/vendor/illuminate/contracts/Cookie/Factory.php +/vendor/illuminate/contracts/Cookie/QueueingFactory.php +/vendor/illuminate/contracts/Database/Eloquent/Builder.php +/vendor/illuminate/contracts/Database/Eloquent/Castable.php +/vendor/illuminate/contracts/Database/Eloquent/CastsAttributes.php +/vendor/illuminate/contracts/Database/Eloquent/CastsInboundAttributes.php +/vendor/illuminate/contracts/Database/Eloquent/DeviatesCastableAttributes.php +/vendor/illuminate/contracts/Database/Eloquent/SerializesCastableAttributes.php +/vendor/illuminate/contracts/Database/Eloquent/SupportsPartialRelations.php +/vendor/illuminate/contracts/Database/Events/MigrationEvent.php +/vendor/illuminate/contracts/Database/Query/Builder.php +/vendor/illuminate/contracts/Database/Query/ConditionExpression.php +/vendor/illuminate/contracts/Database/Query/Expression.php +/vendor/illuminate/contracts/Database/ModelIdentifier.php +/vendor/illuminate/contracts/Debug/ExceptionHandler.php +/vendor/illuminate/contracts/Encryption/DecryptException.php +/vendor/illuminate/contracts/Encryption/Encrypter.php +/vendor/illuminate/contracts/Encryption/EncryptException.php +/vendor/illuminate/contracts/Encryption/StringEncrypter.php +/vendor/illuminate/contracts/Events/Dispatcher.php +/vendor/illuminate/contracts/Events/ShouldDispatchAfterCommit.php +/vendor/illuminate/contracts/Events/ShouldHandleEventsAfterCommit.php +/vendor/illuminate/contracts/Filesystem/Cloud.php +/vendor/illuminate/contracts/Filesystem/Factory.php +/vendor/illuminate/contracts/Filesystem/FileNotFoundException.php +/vendor/illuminate/contracts/Filesystem/Filesystem.php +/vendor/illuminate/contracts/Filesystem/LockTimeoutException.php +/vendor/illuminate/contracts/Foundation/Application.php +/vendor/illuminate/contracts/Foundation/CachesConfiguration.php +/vendor/illuminate/contracts/Foundation/CachesRoutes.php +/vendor/illuminate/contracts/Foundation/ExceptionRenderer.php +/vendor/illuminate/contracts/Foundation/MaintenanceMode.php +/vendor/illuminate/contracts/Hashing/Hasher.php +/vendor/illuminate/contracts/Http/Kernel.php +/vendor/illuminate/contracts/Mail/Attachable.php +/vendor/illuminate/contracts/Mail/Factory.php +/vendor/illuminate/contracts/Mail/Mailable.php +/vendor/illuminate/contracts/Mail/Mailer.php +/vendor/illuminate/contracts/Mail/MailQueue.php +/vendor/illuminate/contracts/Notifications/Dispatcher.php +/vendor/illuminate/contracts/Notifications/Factory.php +/vendor/illuminate/contracts/Pagination/CursorPaginator.php +/vendor/illuminate/contracts/Pagination/LengthAwarePaginator.php +/vendor/illuminate/contracts/Pagination/Paginator.php +/vendor/illuminate/contracts/Pipeline/Hub.php +/vendor/illuminate/contracts/Pipeline/Pipeline.php +/vendor/illuminate/contracts/Process/InvokedProcess.php +/vendor/illuminate/contracts/Process/ProcessResult.php +/vendor/illuminate/contracts/Queue/ClearableQueue.php +/vendor/illuminate/contracts/Queue/EntityNotFoundException.php +/vendor/illuminate/contracts/Queue/EntityResolver.php +/vendor/illuminate/contracts/Queue/Factory.php +/vendor/illuminate/contracts/Queue/Job.php +/vendor/illuminate/contracts/Queue/Monitor.php +/vendor/illuminate/contracts/Queue/Queue.php +/vendor/illuminate/contracts/Queue/QueueableCollection.php +/vendor/illuminate/contracts/Queue/QueueableEntity.php +/vendor/illuminate/contracts/Queue/ShouldBeEncrypted.php +/vendor/illuminate/contracts/Queue/ShouldBeUnique.php +/vendor/illuminate/contracts/Queue/ShouldBeUniqueUntilProcessing.php +/vendor/illuminate/contracts/Queue/ShouldQueue.php +/vendor/illuminate/contracts/Queue/ShouldQueueAfterCommit.php +/vendor/illuminate/contracts/Redis/Connection.php +/vendor/illuminate/contracts/Redis/Connector.php +/vendor/illuminate/contracts/Redis/Factory.php +/vendor/illuminate/contracts/Redis/LimiterTimeoutException.php +/vendor/illuminate/contracts/Routing/BindingRegistrar.php +/vendor/illuminate/contracts/Routing/Registrar.php +/vendor/illuminate/contracts/Routing/ResponseFactory.php +/vendor/illuminate/contracts/Routing/UrlGenerator.php +/vendor/illuminate/contracts/Routing/UrlRoutable.php +/vendor/illuminate/contracts/Session/Middleware/AuthenticatesSessions.php +/vendor/illuminate/contracts/Session/Session.php +/vendor/illuminate/contracts/Support/Arrayable.php +/vendor/illuminate/contracts/Support/CanBeEscapedWhenCastToString.php +/vendor/illuminate/contracts/Support/DeferrableProvider.php +/vendor/illuminate/contracts/Support/DeferringDisplayableValue.php +/vendor/illuminate/contracts/Support/Htmlable.php +/vendor/illuminate/contracts/Support/Jsonable.php +/vendor/illuminate/contracts/Support/MessageBag.php +/vendor/illuminate/contracts/Support/MessageProvider.php +/vendor/illuminate/contracts/Support/Renderable.php +/vendor/illuminate/contracts/Support/Responsable.php +/vendor/illuminate/contracts/Support/ValidatedData.php +/vendor/illuminate/contracts/Translation/HasLocalePreference.php +/vendor/illuminate/contracts/Translation/Loader.php +/vendor/illuminate/contracts/Translation/Translator.php +/vendor/illuminate/contracts/Validation/DataAwareRule.php +/vendor/illuminate/contracts/Validation/Factory.php +/vendor/illuminate/contracts/Validation/ImplicitRule.php +/vendor/illuminate/contracts/Validation/InvokableRule.php +/vendor/illuminate/contracts/Validation/Rule.php +/vendor/illuminate/contracts/Validation/UncompromisedVerifier.php +/vendor/illuminate/contracts/Validation/ValidatesWhenResolved.php +/vendor/illuminate/contracts/Validation/ValidationRule.php +/vendor/illuminate/contracts/Validation/Validator.php +/vendor/illuminate/contracts/Validation/ValidatorAwareRule.php +/vendor/illuminate/contracts/View/Engine.php +/vendor/illuminate/contracts/View/Factory.php +/vendor/illuminate/contracts/View/View.php +/vendor/illuminate/contracts/View/ViewCompilationException.php +/vendor/illuminate/contracts/composer.json +/vendor/illuminate/contracts/LICENSE.md +/vendor/illuminate/filesystem/AwsS3V3Adapter.php +/vendor/illuminate/filesystem/composer.json +/vendor/illuminate/filesystem/Filesystem.php +/vendor/illuminate/filesystem/FilesystemAdapter.php +/vendor/illuminate/filesystem/FilesystemManager.php +/vendor/illuminate/filesystem/FilesystemServiceProvider.php +/vendor/illuminate/filesystem/functions.php +/vendor/illuminate/filesystem/LICENSE.md +/vendor/illuminate/filesystem/LockableFile.php +/vendor/illuminate/http/Client/Concerns/DeterminesStatusCode.php +/vendor/illuminate/http/Client/Events/ConnectionFailed.php +/vendor/illuminate/http/Client/Events/RequestSending.php +/vendor/illuminate/http/Client/Events/ResponseReceived.php +/vendor/illuminate/http/Client/ConnectionException.php +/vendor/illuminate/http/Client/Factory.php +/vendor/illuminate/http/Client/HttpClientException.php +/vendor/illuminate/http/Client/PendingRequest.php +/vendor/illuminate/http/Client/Pool.php +/vendor/illuminate/http/Client/Request.php +/vendor/illuminate/http/Client/RequestException.php +/vendor/illuminate/http/Client/Response.php +/vendor/illuminate/http/Client/ResponseSequence.php +/vendor/illuminate/http/Concerns/CanBePrecognitive.php +/vendor/illuminate/http/Concerns/InteractsWithContentTypes.php +/vendor/illuminate/http/Concerns/InteractsWithFlashData.php +/vendor/illuminate/http/Concerns/InteractsWithInput.php +/vendor/illuminate/http/Exceptions/HttpResponseException.php +/vendor/illuminate/http/Exceptions/PostTooLargeException.php +/vendor/illuminate/http/Exceptions/ThrottleRequestsException.php +/vendor/illuminate/http/Middleware/AddLinkHeadersForPreloadedAssets.php +/vendor/illuminate/http/Middleware/CheckResponseForModifications.php +/vendor/illuminate/http/Middleware/FrameGuard.php +/vendor/illuminate/http/Middleware/HandleCors.php +/vendor/illuminate/http/Middleware/SetCacheHeaders.php +/vendor/illuminate/http/Middleware/TrustHosts.php +/vendor/illuminate/http/Middleware/TrustProxies.php +/vendor/illuminate/http/Resources/Json/AnonymousResourceCollection.php +/vendor/illuminate/http/Resources/Json/JsonResource.php +/vendor/illuminate/http/Resources/Json/PaginatedResourceResponse.php +/vendor/illuminate/http/Resources/Json/ResourceCollection.php +/vendor/illuminate/http/Resources/Json/ResourceResponse.php +/vendor/illuminate/http/Resources/CollectsResources.php +/vendor/illuminate/http/Resources/ConditionallyLoadsAttributes.php +/vendor/illuminate/http/Resources/DelegatesToResource.php +/vendor/illuminate/http/Resources/MergeValue.php +/vendor/illuminate/http/Resources/MissingValue.php +/vendor/illuminate/http/Resources/PotentiallyMissing.php +/vendor/illuminate/http/Testing/File.php +/vendor/illuminate/http/Testing/FileFactory.php +/vendor/illuminate/http/Testing/MimeType.php +/vendor/illuminate/http/composer.json +/vendor/illuminate/http/File.php +/vendor/illuminate/http/FileHelpers.php +/vendor/illuminate/http/JsonResponse.php +/vendor/illuminate/http/LICENSE.md +/vendor/illuminate/http/RedirectResponse.php +/vendor/illuminate/http/Request.php +/vendor/illuminate/http/Response.php +/vendor/illuminate/http/ResponseTrait.php +/vendor/illuminate/http/UploadedFile.php +/vendor/illuminate/macroable/Traits/Macroable.php +/vendor/illuminate/macroable/composer.json +/vendor/illuminate/macroable/LICENSE.md +/vendor/illuminate/session/Console/stubs/database.stub +/vendor/illuminate/session/Console/SessionTableCommand.php +/vendor/illuminate/session/Middleware/AuthenticateSession.php +/vendor/illuminate/session/Middleware/StartSession.php +/vendor/illuminate/session/ArraySessionHandler.php +/vendor/illuminate/session/CacheBasedSessionHandler.php +/vendor/illuminate/session/composer.json +/vendor/illuminate/session/CookieSessionHandler.php +/vendor/illuminate/session/DatabaseSessionHandler.php +/vendor/illuminate/session/EncryptedStore.php +/vendor/illuminate/session/ExistenceAwareInterface.php +/vendor/illuminate/session/FileSessionHandler.php +/vendor/illuminate/session/LICENSE.md +/vendor/illuminate/session/NullSessionHandler.php +/vendor/illuminate/session/SessionManager.php +/vendor/illuminate/session/SessionServiceProvider.php +/vendor/illuminate/session/Store.php +/vendor/illuminate/session/SymfonySessionDecorator.php +/vendor/illuminate/session/TokenMismatchException.php +/vendor/illuminate/support/Exceptions/MathException.php +/vendor/illuminate/support/Facades/App.php +/vendor/illuminate/support/Facades/Artisan.php +/vendor/illuminate/support/Facades/Auth.php +/vendor/illuminate/support/Facades/Blade.php +/vendor/illuminate/support/Facades/Broadcast.php +/vendor/illuminate/support/Facades/Bus.php +/vendor/illuminate/support/Facades/Cache.php +/vendor/illuminate/support/Facades/Config.php +/vendor/illuminate/support/Facades/Cookie.php +/vendor/illuminate/support/Facades/Crypt.php +/vendor/illuminate/support/Facades/Date.php +/vendor/illuminate/support/Facades/DB.php +/vendor/illuminate/support/Facades/Event.php +/vendor/illuminate/support/Facades/Facade.php +/vendor/illuminate/support/Facades/File.php +/vendor/illuminate/support/Facades/Gate.php +/vendor/illuminate/support/Facades/Hash.php +/vendor/illuminate/support/Facades/Http.php +/vendor/illuminate/support/Facades/Lang.php +/vendor/illuminate/support/Facades/Log.php +/vendor/illuminate/support/Facades/Mail.php +/vendor/illuminate/support/Facades/Notification.php +/vendor/illuminate/support/Facades/ParallelTesting.php +/vendor/illuminate/support/Facades/Password.php +/vendor/illuminate/support/Facades/Pipeline.php +/vendor/illuminate/support/Facades/Process.php +/vendor/illuminate/support/Facades/Queue.php +/vendor/illuminate/support/Facades/RateLimiter.php +/vendor/illuminate/support/Facades/Redirect.php +/vendor/illuminate/support/Facades/Redis.php +/vendor/illuminate/support/Facades/Request.php +/vendor/illuminate/support/Facades/Response.php +/vendor/illuminate/support/Facades/Route.php +/vendor/illuminate/support/Facades/Schema.php +/vendor/illuminate/support/Facades/Session.php +/vendor/illuminate/support/Facades/Storage.php +/vendor/illuminate/support/Facades/URL.php +/vendor/illuminate/support/Facades/Validator.php +/vendor/illuminate/support/Facades/View.php +/vendor/illuminate/support/Facades/Vite.php +/vendor/illuminate/support/Testing/Fakes/BatchFake.php +/vendor/illuminate/support/Testing/Fakes/BatchRepositoryFake.php +/vendor/illuminate/support/Testing/Fakes/BusFake.php +/vendor/illuminate/support/Testing/Fakes/ChainedBatchTruthTest.php +/vendor/illuminate/support/Testing/Fakes/EventFake.php +/vendor/illuminate/support/Testing/Fakes/Fake.php +/vendor/illuminate/support/Testing/Fakes/MailFake.php +/vendor/illuminate/support/Testing/Fakes/NotificationFake.php +/vendor/illuminate/support/Testing/Fakes/PendingBatchFake.php +/vendor/illuminate/support/Testing/Fakes/PendingChainFake.php +/vendor/illuminate/support/Testing/Fakes/PendingMailFake.php +/vendor/illuminate/support/Testing/Fakes/QueueFake.php +/vendor/illuminate/support/Traits/CapsuleManagerTrait.php +/vendor/illuminate/support/Traits/ForwardsCalls.php +/vendor/illuminate/support/Traits/Localizable.php +/vendor/illuminate/support/Traits/ReflectsClosures.php +/vendor/illuminate/support/Traits/Tappable.php +/vendor/illuminate/support/AggregateServiceProvider.php +/vendor/illuminate/support/Benchmark.php +/vendor/illuminate/support/Carbon.php +/vendor/illuminate/support/composer.json +/vendor/illuminate/support/Composer.php +/vendor/illuminate/support/ConfigurationUrlParser.php +/vendor/illuminate/support/DateFactory.php +/vendor/illuminate/support/DefaultProviders.php +/vendor/illuminate/support/Env.php +/vendor/illuminate/support/Fluent.php +/vendor/illuminate/support/helpers.php +/vendor/illuminate/support/HigherOrderTapProxy.php +/vendor/illuminate/support/HtmlString.php +/vendor/illuminate/support/InteractsWithTime.php +/vendor/illuminate/support/Js.php +/vendor/illuminate/support/LICENSE.md +/vendor/illuminate/support/Lottery.php +/vendor/illuminate/support/Manager.php +/vendor/illuminate/support/MessageBag.php +/vendor/illuminate/support/MultipleInstanceManager.php +/vendor/illuminate/support/NamespacedItemResolver.php +/vendor/illuminate/support/Number.php +/vendor/illuminate/support/Optional.php +/vendor/illuminate/support/Pluralizer.php +/vendor/illuminate/support/ProcessUtils.php +/vendor/illuminate/support/Reflector.php +/vendor/illuminate/support/ServiceProvider.php +/vendor/illuminate/support/Sleep.php +/vendor/illuminate/support/Str.php +/vendor/illuminate/support/Stringable.php +/vendor/illuminate/support/Timebox.php +/vendor/illuminate/support/ValidatedInput.php +/vendor/illuminate/support/ViewErrorBag.php +/vendor/nesbot/carbon/bin/carbon +/vendor/nesbot/carbon/bin/carbon.bat +/vendor/nesbot/carbon/lazy/Carbon/MessageFormatter/MessageFormatterMapperStrongType.php +/vendor/nesbot/carbon/lazy/Carbon/MessageFormatter/MessageFormatterMapperWeakType.php +/vendor/nesbot/carbon/lazy/Carbon/PHPStan/AbstractMacroBuiltin.php +/vendor/nesbot/carbon/lazy/Carbon/PHPStan/AbstractMacroStatic.php +/vendor/nesbot/carbon/lazy/Carbon/PHPStan/MacroStrongType.php +/vendor/nesbot/carbon/lazy/Carbon/PHPStan/MacroWeakType.php +/vendor/nesbot/carbon/lazy/Carbon/TranslatorStrongType.php +/vendor/nesbot/carbon/lazy/Carbon/TranslatorWeakType.php +/vendor/nesbot/carbon/src/Carbon/Cli/Invoker.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/BadComparisonUnitException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/BadFluentConstructorException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/BadFluentSetterException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/BadMethodCallException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/EndLessPeriodException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/Exception.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/ImmutableException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidArgumentException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidCastException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidFormatException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidIntervalException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidPeriodDateException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidPeriodParameterException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidTimeZoneException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidTypeException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/NotACarbonClassException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/NotAPeriodException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/NotLocaleAwareException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/OutOfRangeException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/ParseErrorException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/RuntimeException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/UnitException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/UnitNotConfiguredException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/UnknownGetterException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/UnknownMethodException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/UnknownSetterException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/UnknownUnitException.php +/vendor/nesbot/carbon/src/Carbon/Exceptions/UnreachableException.php +/vendor/nesbot/carbon/src/Carbon/Lang/aa.php +/vendor/nesbot/carbon/src/Carbon/Lang/aa_DJ.php +/vendor/nesbot/carbon/src/Carbon/Lang/aa_ER.php +/vendor/nesbot/carbon/src/Carbon/Lang/aa_ER@saaho.php +/vendor/nesbot/carbon/src/Carbon/Lang/aa_ET.php +/vendor/nesbot/carbon/src/Carbon/Lang/af.php +/vendor/nesbot/carbon/src/Carbon/Lang/af_NA.php +/vendor/nesbot/carbon/src/Carbon/Lang/af_ZA.php +/vendor/nesbot/carbon/src/Carbon/Lang/agq.php +/vendor/nesbot/carbon/src/Carbon/Lang/agr.php +/vendor/nesbot/carbon/src/Carbon/Lang/agr_PE.php +/vendor/nesbot/carbon/src/Carbon/Lang/ak.php +/vendor/nesbot/carbon/src/Carbon/Lang/ak_GH.php +/vendor/nesbot/carbon/src/Carbon/Lang/am.php +/vendor/nesbot/carbon/src/Carbon/Lang/am_ET.php +/vendor/nesbot/carbon/src/Carbon/Lang/an.php +/vendor/nesbot/carbon/src/Carbon/Lang/an_ES.php +/vendor/nesbot/carbon/src/Carbon/Lang/anp.php +/vendor/nesbot/carbon/src/Carbon/Lang/anp_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_AE.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_BH.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_DJ.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_DZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_EG.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_EH.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_ER.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_IL.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_IQ.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_JO.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_KM.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_KW.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_LB.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_LY.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_MA.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_MR.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_OM.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_PS.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_QA.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_SA.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_SD.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_Shakl.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_SO.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_SS.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_SY.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_TD.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_TN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ar_YE.php +/vendor/nesbot/carbon/src/Carbon/Lang/as.php +/vendor/nesbot/carbon/src/Carbon/Lang/as_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/asa.php +/vendor/nesbot/carbon/src/Carbon/Lang/ast.php +/vendor/nesbot/carbon/src/Carbon/Lang/ast_ES.php +/vendor/nesbot/carbon/src/Carbon/Lang/ayc.php +/vendor/nesbot/carbon/src/Carbon/Lang/ayc_PE.php +/vendor/nesbot/carbon/src/Carbon/Lang/az.php +/vendor/nesbot/carbon/src/Carbon/Lang/az_AZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/az_Cyrl.php +/vendor/nesbot/carbon/src/Carbon/Lang/az_IR.php +/vendor/nesbot/carbon/src/Carbon/Lang/az_Latn.php +/vendor/nesbot/carbon/src/Carbon/Lang/bas.php +/vendor/nesbot/carbon/src/Carbon/Lang/be.php +/vendor/nesbot/carbon/src/Carbon/Lang/be_BY.php +/vendor/nesbot/carbon/src/Carbon/Lang/be_BY@latin.php +/vendor/nesbot/carbon/src/Carbon/Lang/bem.php +/vendor/nesbot/carbon/src/Carbon/Lang/bem_ZM.php +/vendor/nesbot/carbon/src/Carbon/Lang/ber.php +/vendor/nesbot/carbon/src/Carbon/Lang/ber_DZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/ber_MA.php +/vendor/nesbot/carbon/src/Carbon/Lang/bez.php +/vendor/nesbot/carbon/src/Carbon/Lang/bg.php +/vendor/nesbot/carbon/src/Carbon/Lang/bg_BG.php +/vendor/nesbot/carbon/src/Carbon/Lang/bhb.php +/vendor/nesbot/carbon/src/Carbon/Lang/bhb_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/bho.php +/vendor/nesbot/carbon/src/Carbon/Lang/bho_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/bi.php +/vendor/nesbot/carbon/src/Carbon/Lang/bi_VU.php +/vendor/nesbot/carbon/src/Carbon/Lang/bm.php +/vendor/nesbot/carbon/src/Carbon/Lang/bn.php +/vendor/nesbot/carbon/src/Carbon/Lang/bn_BD.php +/vendor/nesbot/carbon/src/Carbon/Lang/bn_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/bo.php +/vendor/nesbot/carbon/src/Carbon/Lang/bo_CN.php +/vendor/nesbot/carbon/src/Carbon/Lang/bo_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/br.php +/vendor/nesbot/carbon/src/Carbon/Lang/br_FR.php +/vendor/nesbot/carbon/src/Carbon/Lang/brx.php +/vendor/nesbot/carbon/src/Carbon/Lang/brx_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/bs.php +/vendor/nesbot/carbon/src/Carbon/Lang/bs_BA.php +/vendor/nesbot/carbon/src/Carbon/Lang/bs_Cyrl.php +/vendor/nesbot/carbon/src/Carbon/Lang/bs_Latn.php +/vendor/nesbot/carbon/src/Carbon/Lang/byn.php +/vendor/nesbot/carbon/src/Carbon/Lang/byn_ER.php +/vendor/nesbot/carbon/src/Carbon/Lang/ca.php +/vendor/nesbot/carbon/src/Carbon/Lang/ca_AD.php +/vendor/nesbot/carbon/src/Carbon/Lang/ca_ES.php +/vendor/nesbot/carbon/src/Carbon/Lang/ca_ES_Valencia.php +/vendor/nesbot/carbon/src/Carbon/Lang/ca_FR.php +/vendor/nesbot/carbon/src/Carbon/Lang/ca_IT.php +/vendor/nesbot/carbon/src/Carbon/Lang/ccp.php +/vendor/nesbot/carbon/src/Carbon/Lang/ccp_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ce.php +/vendor/nesbot/carbon/src/Carbon/Lang/ce_RU.php +/vendor/nesbot/carbon/src/Carbon/Lang/cgg.php +/vendor/nesbot/carbon/src/Carbon/Lang/chr.php +/vendor/nesbot/carbon/src/Carbon/Lang/chr_US.php +/vendor/nesbot/carbon/src/Carbon/Lang/ckb.php +/vendor/nesbot/carbon/src/Carbon/Lang/cmn.php +/vendor/nesbot/carbon/src/Carbon/Lang/cmn_TW.php +/vendor/nesbot/carbon/src/Carbon/Lang/crh.php +/vendor/nesbot/carbon/src/Carbon/Lang/crh_UA.php +/vendor/nesbot/carbon/src/Carbon/Lang/cs.php +/vendor/nesbot/carbon/src/Carbon/Lang/cs_CZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/csb.php +/vendor/nesbot/carbon/src/Carbon/Lang/csb_PL.php +/vendor/nesbot/carbon/src/Carbon/Lang/cu.php +/vendor/nesbot/carbon/src/Carbon/Lang/cv.php +/vendor/nesbot/carbon/src/Carbon/Lang/cv_RU.php +/vendor/nesbot/carbon/src/Carbon/Lang/cy.php +/vendor/nesbot/carbon/src/Carbon/Lang/cy_GB.php +/vendor/nesbot/carbon/src/Carbon/Lang/da.php +/vendor/nesbot/carbon/src/Carbon/Lang/da_DK.php +/vendor/nesbot/carbon/src/Carbon/Lang/da_GL.php +/vendor/nesbot/carbon/src/Carbon/Lang/dav.php +/vendor/nesbot/carbon/src/Carbon/Lang/de.php +/vendor/nesbot/carbon/src/Carbon/Lang/de_AT.php +/vendor/nesbot/carbon/src/Carbon/Lang/de_BE.php +/vendor/nesbot/carbon/src/Carbon/Lang/de_CH.php +/vendor/nesbot/carbon/src/Carbon/Lang/de_DE.php +/vendor/nesbot/carbon/src/Carbon/Lang/de_IT.php +/vendor/nesbot/carbon/src/Carbon/Lang/de_LI.php +/vendor/nesbot/carbon/src/Carbon/Lang/de_LU.php +/vendor/nesbot/carbon/src/Carbon/Lang/dje.php +/vendor/nesbot/carbon/src/Carbon/Lang/doi.php +/vendor/nesbot/carbon/src/Carbon/Lang/doi_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/dsb.php +/vendor/nesbot/carbon/src/Carbon/Lang/dsb_DE.php +/vendor/nesbot/carbon/src/Carbon/Lang/dua.php +/vendor/nesbot/carbon/src/Carbon/Lang/dv.php +/vendor/nesbot/carbon/src/Carbon/Lang/dv_MV.php +/vendor/nesbot/carbon/src/Carbon/Lang/dyo.php +/vendor/nesbot/carbon/src/Carbon/Lang/dz.php +/vendor/nesbot/carbon/src/Carbon/Lang/dz_BT.php +/vendor/nesbot/carbon/src/Carbon/Lang/ebu.php +/vendor/nesbot/carbon/src/Carbon/Lang/ee.php +/vendor/nesbot/carbon/src/Carbon/Lang/ee_TG.php +/vendor/nesbot/carbon/src/Carbon/Lang/el.php +/vendor/nesbot/carbon/src/Carbon/Lang/el_CY.php +/vendor/nesbot/carbon/src/Carbon/Lang/el_GR.php +/vendor/nesbot/carbon/src/Carbon/Lang/en.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_001.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_150.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_AG.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_AI.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_AS.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_AT.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_AU.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_BB.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_BE.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_BI.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_BM.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_BS.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_BW.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_BZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_CA.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_CC.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_CH.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_CK.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_CM.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_CX.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_CY.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_DE.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_DG.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_DK.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_DM.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_ER.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_FI.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_FJ.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_FK.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_FM.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_GB.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_GD.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_GG.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_GH.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_GI.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_GM.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_GU.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_GY.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_HK.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_IE.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_IL.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_IM.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_IO.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_ISO.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_JE.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_JM.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_KE.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_KI.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_KN.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_KY.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_LC.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_LR.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_LS.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_MG.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_MH.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_MO.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_MP.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_MS.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_MT.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_MU.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_MW.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_MY.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_NA.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_NF.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_NG.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_NL.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_NR.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_NU.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_NZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_PG.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_PH.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_PK.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_PN.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_PR.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_PW.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_RW.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_SB.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_SC.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_SD.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_SE.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_SG.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_SH.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_SI.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_SL.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_SS.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_SX.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_SZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_TC.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_TK.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_TO.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_TT.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_TV.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_TZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_UG.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_UM.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_US.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_US_Posix.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_VC.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_VG.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_VI.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_VU.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_WS.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_ZA.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_ZM.php +/vendor/nesbot/carbon/src/Carbon/Lang/en_ZW.php +/vendor/nesbot/carbon/src/Carbon/Lang/eo.php +/vendor/nesbot/carbon/src/Carbon/Lang/es.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_419.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_AR.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_BO.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_BR.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_BZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_CL.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_CO.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_CR.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_CU.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_DO.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_EA.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_EC.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_ES.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_GQ.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_GT.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_HN.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_IC.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_MX.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_NI.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_PA.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_PE.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_PH.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_PR.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_PY.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_SV.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_US.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_UY.php +/vendor/nesbot/carbon/src/Carbon/Lang/es_VE.php +/vendor/nesbot/carbon/src/Carbon/Lang/et.php +/vendor/nesbot/carbon/src/Carbon/Lang/et_EE.php +/vendor/nesbot/carbon/src/Carbon/Lang/eu.php +/vendor/nesbot/carbon/src/Carbon/Lang/eu_ES.php +/vendor/nesbot/carbon/src/Carbon/Lang/ewo.php +/vendor/nesbot/carbon/src/Carbon/Lang/fa.php +/vendor/nesbot/carbon/src/Carbon/Lang/fa_AF.php +/vendor/nesbot/carbon/src/Carbon/Lang/fa_IR.php +/vendor/nesbot/carbon/src/Carbon/Lang/ff.php +/vendor/nesbot/carbon/src/Carbon/Lang/ff_CM.php +/vendor/nesbot/carbon/src/Carbon/Lang/ff_GN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ff_MR.php +/vendor/nesbot/carbon/src/Carbon/Lang/ff_SN.php +/vendor/nesbot/carbon/src/Carbon/Lang/fi.php +/vendor/nesbot/carbon/src/Carbon/Lang/fi_FI.php +/vendor/nesbot/carbon/src/Carbon/Lang/fil.php +/vendor/nesbot/carbon/src/Carbon/Lang/fil_PH.php +/vendor/nesbot/carbon/src/Carbon/Lang/fo.php +/vendor/nesbot/carbon/src/Carbon/Lang/fo_DK.php +/vendor/nesbot/carbon/src/Carbon/Lang/fo_FO.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_BE.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_BF.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_BI.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_BJ.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_BL.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_CA.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_CD.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_CF.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_CG.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_CH.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_CI.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_CM.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_DJ.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_DZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_FR.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_GA.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_GF.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_GN.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_GP.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_GQ.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_HT.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_KM.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_LU.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_MA.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_MC.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_MF.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_MG.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_ML.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_MQ.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_MR.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_MU.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_NC.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_NE.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_PF.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_PM.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_RE.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_RW.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_SC.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_SN.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_SY.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_TD.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_TG.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_TN.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_VU.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_WF.php +/vendor/nesbot/carbon/src/Carbon/Lang/fr_YT.php +/vendor/nesbot/carbon/src/Carbon/Lang/fur.php +/vendor/nesbot/carbon/src/Carbon/Lang/fur_IT.php +/vendor/nesbot/carbon/src/Carbon/Lang/fy.php +/vendor/nesbot/carbon/src/Carbon/Lang/fy_DE.php +/vendor/nesbot/carbon/src/Carbon/Lang/fy_NL.php +/vendor/nesbot/carbon/src/Carbon/Lang/ga.php +/vendor/nesbot/carbon/src/Carbon/Lang/ga_IE.php +/vendor/nesbot/carbon/src/Carbon/Lang/gd.php +/vendor/nesbot/carbon/src/Carbon/Lang/gd_GB.php +/vendor/nesbot/carbon/src/Carbon/Lang/gez.php +/vendor/nesbot/carbon/src/Carbon/Lang/gez_ER.php +/vendor/nesbot/carbon/src/Carbon/Lang/gez_ET.php +/vendor/nesbot/carbon/src/Carbon/Lang/gl.php +/vendor/nesbot/carbon/src/Carbon/Lang/gl_ES.php +/vendor/nesbot/carbon/src/Carbon/Lang/gom.php +/vendor/nesbot/carbon/src/Carbon/Lang/gom_Latn.php +/vendor/nesbot/carbon/src/Carbon/Lang/gsw.php +/vendor/nesbot/carbon/src/Carbon/Lang/gsw_CH.php +/vendor/nesbot/carbon/src/Carbon/Lang/gsw_FR.php +/vendor/nesbot/carbon/src/Carbon/Lang/gsw_LI.php +/vendor/nesbot/carbon/src/Carbon/Lang/gu.php +/vendor/nesbot/carbon/src/Carbon/Lang/gu_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/guz.php +/vendor/nesbot/carbon/src/Carbon/Lang/gv.php +/vendor/nesbot/carbon/src/Carbon/Lang/gv_GB.php +/vendor/nesbot/carbon/src/Carbon/Lang/ha.php +/vendor/nesbot/carbon/src/Carbon/Lang/ha_GH.php +/vendor/nesbot/carbon/src/Carbon/Lang/ha_NE.php +/vendor/nesbot/carbon/src/Carbon/Lang/ha_NG.php +/vendor/nesbot/carbon/src/Carbon/Lang/hak.php +/vendor/nesbot/carbon/src/Carbon/Lang/hak_TW.php +/vendor/nesbot/carbon/src/Carbon/Lang/haw.php +/vendor/nesbot/carbon/src/Carbon/Lang/he.php +/vendor/nesbot/carbon/src/Carbon/Lang/he_IL.php +/vendor/nesbot/carbon/src/Carbon/Lang/hi.php +/vendor/nesbot/carbon/src/Carbon/Lang/hi_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/hif.php +/vendor/nesbot/carbon/src/Carbon/Lang/hif_FJ.php +/vendor/nesbot/carbon/src/Carbon/Lang/hne.php +/vendor/nesbot/carbon/src/Carbon/Lang/hne_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/hr.php +/vendor/nesbot/carbon/src/Carbon/Lang/hr_BA.php +/vendor/nesbot/carbon/src/Carbon/Lang/hr_HR.php +/vendor/nesbot/carbon/src/Carbon/Lang/hsb.php +/vendor/nesbot/carbon/src/Carbon/Lang/hsb_DE.php +/vendor/nesbot/carbon/src/Carbon/Lang/ht.php +/vendor/nesbot/carbon/src/Carbon/Lang/ht_HT.php +/vendor/nesbot/carbon/src/Carbon/Lang/hu.php +/vendor/nesbot/carbon/src/Carbon/Lang/hu_HU.php +/vendor/nesbot/carbon/src/Carbon/Lang/hy.php +/vendor/nesbot/carbon/src/Carbon/Lang/hy_AM.php +/vendor/nesbot/carbon/src/Carbon/Lang/i18n.php +/vendor/nesbot/carbon/src/Carbon/Lang/ia.php +/vendor/nesbot/carbon/src/Carbon/Lang/ia_FR.php +/vendor/nesbot/carbon/src/Carbon/Lang/id.php +/vendor/nesbot/carbon/src/Carbon/Lang/id_ID.php +/vendor/nesbot/carbon/src/Carbon/Lang/ig.php +/vendor/nesbot/carbon/src/Carbon/Lang/ig_NG.php +/vendor/nesbot/carbon/src/Carbon/Lang/ii.php +/vendor/nesbot/carbon/src/Carbon/Lang/ik.php +/vendor/nesbot/carbon/src/Carbon/Lang/ik_CA.php +/vendor/nesbot/carbon/src/Carbon/Lang/in.php +/vendor/nesbot/carbon/src/Carbon/Lang/is.php +/vendor/nesbot/carbon/src/Carbon/Lang/is_IS.php +/vendor/nesbot/carbon/src/Carbon/Lang/it.php +/vendor/nesbot/carbon/src/Carbon/Lang/it_CH.php +/vendor/nesbot/carbon/src/Carbon/Lang/it_IT.php +/vendor/nesbot/carbon/src/Carbon/Lang/it_SM.php +/vendor/nesbot/carbon/src/Carbon/Lang/it_VA.php +/vendor/nesbot/carbon/src/Carbon/Lang/iu.php +/vendor/nesbot/carbon/src/Carbon/Lang/iu_CA.php +/vendor/nesbot/carbon/src/Carbon/Lang/iw.php +/vendor/nesbot/carbon/src/Carbon/Lang/ja.php +/vendor/nesbot/carbon/src/Carbon/Lang/ja_JP.php +/vendor/nesbot/carbon/src/Carbon/Lang/jgo.php +/vendor/nesbot/carbon/src/Carbon/Lang/jmc.php +/vendor/nesbot/carbon/src/Carbon/Lang/jv.php +/vendor/nesbot/carbon/src/Carbon/Lang/ka.php +/vendor/nesbot/carbon/src/Carbon/Lang/ka_GE.php +/vendor/nesbot/carbon/src/Carbon/Lang/kab.php +/vendor/nesbot/carbon/src/Carbon/Lang/kab_DZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/kam.php +/vendor/nesbot/carbon/src/Carbon/Lang/kde.php +/vendor/nesbot/carbon/src/Carbon/Lang/kea.php +/vendor/nesbot/carbon/src/Carbon/Lang/khq.php +/vendor/nesbot/carbon/src/Carbon/Lang/ki.php +/vendor/nesbot/carbon/src/Carbon/Lang/kk.php +/vendor/nesbot/carbon/src/Carbon/Lang/kk_KZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/kkj.php +/vendor/nesbot/carbon/src/Carbon/Lang/kl.php +/vendor/nesbot/carbon/src/Carbon/Lang/kl_GL.php +/vendor/nesbot/carbon/src/Carbon/Lang/kln.php +/vendor/nesbot/carbon/src/Carbon/Lang/km.php +/vendor/nesbot/carbon/src/Carbon/Lang/km_KH.php +/vendor/nesbot/carbon/src/Carbon/Lang/kn.php +/vendor/nesbot/carbon/src/Carbon/Lang/kn_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ko.php +/vendor/nesbot/carbon/src/Carbon/Lang/ko_KP.php +/vendor/nesbot/carbon/src/Carbon/Lang/ko_KR.php +/vendor/nesbot/carbon/src/Carbon/Lang/kok.php +/vendor/nesbot/carbon/src/Carbon/Lang/kok_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ks.php +/vendor/nesbot/carbon/src/Carbon/Lang/ks_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ks_IN@devanagari.php +/vendor/nesbot/carbon/src/Carbon/Lang/ksb.php +/vendor/nesbot/carbon/src/Carbon/Lang/ksf.php +/vendor/nesbot/carbon/src/Carbon/Lang/ksh.php +/vendor/nesbot/carbon/src/Carbon/Lang/ku.php +/vendor/nesbot/carbon/src/Carbon/Lang/ku_TR.php +/vendor/nesbot/carbon/src/Carbon/Lang/kw.php +/vendor/nesbot/carbon/src/Carbon/Lang/kw_GB.php +/vendor/nesbot/carbon/src/Carbon/Lang/ky.php +/vendor/nesbot/carbon/src/Carbon/Lang/ky_KG.php +/vendor/nesbot/carbon/src/Carbon/Lang/lag.php +/vendor/nesbot/carbon/src/Carbon/Lang/lb.php +/vendor/nesbot/carbon/src/Carbon/Lang/lb_LU.php +/vendor/nesbot/carbon/src/Carbon/Lang/lg.php +/vendor/nesbot/carbon/src/Carbon/Lang/lg_UG.php +/vendor/nesbot/carbon/src/Carbon/Lang/li.php +/vendor/nesbot/carbon/src/Carbon/Lang/li_NL.php +/vendor/nesbot/carbon/src/Carbon/Lang/lij.php +/vendor/nesbot/carbon/src/Carbon/Lang/lij_IT.php +/vendor/nesbot/carbon/src/Carbon/Lang/lkt.php +/vendor/nesbot/carbon/src/Carbon/Lang/ln.php +/vendor/nesbot/carbon/src/Carbon/Lang/ln_AO.php +/vendor/nesbot/carbon/src/Carbon/Lang/ln_CD.php +/vendor/nesbot/carbon/src/Carbon/Lang/ln_CF.php +/vendor/nesbot/carbon/src/Carbon/Lang/ln_CG.php +/vendor/nesbot/carbon/src/Carbon/Lang/lo.php +/vendor/nesbot/carbon/src/Carbon/Lang/lo_LA.php +/vendor/nesbot/carbon/src/Carbon/Lang/lrc.php +/vendor/nesbot/carbon/src/Carbon/Lang/lrc_IQ.php +/vendor/nesbot/carbon/src/Carbon/Lang/lt.php +/vendor/nesbot/carbon/src/Carbon/Lang/lt_LT.php +/vendor/nesbot/carbon/src/Carbon/Lang/lu.php +/vendor/nesbot/carbon/src/Carbon/Lang/luo.php +/vendor/nesbot/carbon/src/Carbon/Lang/luy.php +/vendor/nesbot/carbon/src/Carbon/Lang/lv.php +/vendor/nesbot/carbon/src/Carbon/Lang/lv_LV.php +/vendor/nesbot/carbon/src/Carbon/Lang/lzh.php +/vendor/nesbot/carbon/src/Carbon/Lang/lzh_TW.php +/vendor/nesbot/carbon/src/Carbon/Lang/mag.php +/vendor/nesbot/carbon/src/Carbon/Lang/mag_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/mai.php +/vendor/nesbot/carbon/src/Carbon/Lang/mai_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/mas.php +/vendor/nesbot/carbon/src/Carbon/Lang/mas_TZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/mer.php +/vendor/nesbot/carbon/src/Carbon/Lang/mfe.php +/vendor/nesbot/carbon/src/Carbon/Lang/mfe_MU.php +/vendor/nesbot/carbon/src/Carbon/Lang/mg.php +/vendor/nesbot/carbon/src/Carbon/Lang/mg_MG.php +/vendor/nesbot/carbon/src/Carbon/Lang/mgh.php +/vendor/nesbot/carbon/src/Carbon/Lang/mgo.php +/vendor/nesbot/carbon/src/Carbon/Lang/mhr.php +/vendor/nesbot/carbon/src/Carbon/Lang/mhr_RU.php +/vendor/nesbot/carbon/src/Carbon/Lang/mi.php +/vendor/nesbot/carbon/src/Carbon/Lang/mi_NZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/miq.php +/vendor/nesbot/carbon/src/Carbon/Lang/miq_NI.php +/vendor/nesbot/carbon/src/Carbon/Lang/mjw.php +/vendor/nesbot/carbon/src/Carbon/Lang/mjw_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/mk.php +/vendor/nesbot/carbon/src/Carbon/Lang/mk_MK.php +/vendor/nesbot/carbon/src/Carbon/Lang/ml.php +/vendor/nesbot/carbon/src/Carbon/Lang/ml_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/mn.php +/vendor/nesbot/carbon/src/Carbon/Lang/mn_MN.php +/vendor/nesbot/carbon/src/Carbon/Lang/mni.php +/vendor/nesbot/carbon/src/Carbon/Lang/mni_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/mo.php +/vendor/nesbot/carbon/src/Carbon/Lang/mr.php +/vendor/nesbot/carbon/src/Carbon/Lang/mr_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ms.php +/vendor/nesbot/carbon/src/Carbon/Lang/ms_BN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ms_MY.php +/vendor/nesbot/carbon/src/Carbon/Lang/ms_SG.php +/vendor/nesbot/carbon/src/Carbon/Lang/mt.php +/vendor/nesbot/carbon/src/Carbon/Lang/mt_MT.php +/vendor/nesbot/carbon/src/Carbon/Lang/mua.php +/vendor/nesbot/carbon/src/Carbon/Lang/my.php +/vendor/nesbot/carbon/src/Carbon/Lang/my_MM.php +/vendor/nesbot/carbon/src/Carbon/Lang/mzn.php +/vendor/nesbot/carbon/src/Carbon/Lang/nan.php +/vendor/nesbot/carbon/src/Carbon/Lang/nan_TW.php +/vendor/nesbot/carbon/src/Carbon/Lang/nan_TW@latin.php +/vendor/nesbot/carbon/src/Carbon/Lang/naq.php +/vendor/nesbot/carbon/src/Carbon/Lang/nb.php +/vendor/nesbot/carbon/src/Carbon/Lang/nb_NO.php +/vendor/nesbot/carbon/src/Carbon/Lang/nb_SJ.php +/vendor/nesbot/carbon/src/Carbon/Lang/nd.php +/vendor/nesbot/carbon/src/Carbon/Lang/nds.php +/vendor/nesbot/carbon/src/Carbon/Lang/nds_DE.php +/vendor/nesbot/carbon/src/Carbon/Lang/nds_NL.php +/vendor/nesbot/carbon/src/Carbon/Lang/ne.php +/vendor/nesbot/carbon/src/Carbon/Lang/ne_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ne_NP.php +/vendor/nesbot/carbon/src/Carbon/Lang/nhn.php +/vendor/nesbot/carbon/src/Carbon/Lang/nhn_MX.php +/vendor/nesbot/carbon/src/Carbon/Lang/niu.php +/vendor/nesbot/carbon/src/Carbon/Lang/niu_NU.php +/vendor/nesbot/carbon/src/Carbon/Lang/nl.php +/vendor/nesbot/carbon/src/Carbon/Lang/nl_AW.php +/vendor/nesbot/carbon/src/Carbon/Lang/nl_BE.php +/vendor/nesbot/carbon/src/Carbon/Lang/nl_BQ.php +/vendor/nesbot/carbon/src/Carbon/Lang/nl_CW.php +/vendor/nesbot/carbon/src/Carbon/Lang/nl_NL.php +/vendor/nesbot/carbon/src/Carbon/Lang/nl_SR.php +/vendor/nesbot/carbon/src/Carbon/Lang/nl_SX.php +/vendor/nesbot/carbon/src/Carbon/Lang/nmg.php +/vendor/nesbot/carbon/src/Carbon/Lang/nn.php +/vendor/nesbot/carbon/src/Carbon/Lang/nn_NO.php +/vendor/nesbot/carbon/src/Carbon/Lang/nnh.php +/vendor/nesbot/carbon/src/Carbon/Lang/no.php +/vendor/nesbot/carbon/src/Carbon/Lang/nr.php +/vendor/nesbot/carbon/src/Carbon/Lang/nr_ZA.php +/vendor/nesbot/carbon/src/Carbon/Lang/nso.php +/vendor/nesbot/carbon/src/Carbon/Lang/nso_ZA.php +/vendor/nesbot/carbon/src/Carbon/Lang/nus.php +/vendor/nesbot/carbon/src/Carbon/Lang/nyn.php +/vendor/nesbot/carbon/src/Carbon/Lang/oc.php +/vendor/nesbot/carbon/src/Carbon/Lang/oc_FR.php +/vendor/nesbot/carbon/src/Carbon/Lang/om.php +/vendor/nesbot/carbon/src/Carbon/Lang/om_ET.php +/vendor/nesbot/carbon/src/Carbon/Lang/om_KE.php +/vendor/nesbot/carbon/src/Carbon/Lang/or.php +/vendor/nesbot/carbon/src/Carbon/Lang/or_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/os.php +/vendor/nesbot/carbon/src/Carbon/Lang/os_RU.php +/vendor/nesbot/carbon/src/Carbon/Lang/pa.php +/vendor/nesbot/carbon/src/Carbon/Lang/pa_Arab.php +/vendor/nesbot/carbon/src/Carbon/Lang/pa_Guru.php +/vendor/nesbot/carbon/src/Carbon/Lang/pa_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/pa_PK.php +/vendor/nesbot/carbon/src/Carbon/Lang/pap.php +/vendor/nesbot/carbon/src/Carbon/Lang/pap_AW.php +/vendor/nesbot/carbon/src/Carbon/Lang/pap_CW.php +/vendor/nesbot/carbon/src/Carbon/Lang/pl.php +/vendor/nesbot/carbon/src/Carbon/Lang/pl_PL.php +/vendor/nesbot/carbon/src/Carbon/Lang/prg.php +/vendor/nesbot/carbon/src/Carbon/Lang/ps.php +/vendor/nesbot/carbon/src/Carbon/Lang/ps_AF.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt_AO.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt_BR.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt_CH.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt_CV.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt_GQ.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt_GW.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt_LU.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt_MO.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt_MZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt_PT.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt_ST.php +/vendor/nesbot/carbon/src/Carbon/Lang/pt_TL.php +/vendor/nesbot/carbon/src/Carbon/Lang/qu.php +/vendor/nesbot/carbon/src/Carbon/Lang/qu_BO.php +/vendor/nesbot/carbon/src/Carbon/Lang/qu_EC.php +/vendor/nesbot/carbon/src/Carbon/Lang/quz.php +/vendor/nesbot/carbon/src/Carbon/Lang/quz_PE.php +/vendor/nesbot/carbon/src/Carbon/Lang/raj.php +/vendor/nesbot/carbon/src/Carbon/Lang/raj_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/rm.php +/vendor/nesbot/carbon/src/Carbon/Lang/rn.php +/vendor/nesbot/carbon/src/Carbon/Lang/ro.php +/vendor/nesbot/carbon/src/Carbon/Lang/ro_MD.php +/vendor/nesbot/carbon/src/Carbon/Lang/ro_RO.php +/vendor/nesbot/carbon/src/Carbon/Lang/rof.php +/vendor/nesbot/carbon/src/Carbon/Lang/ru.php +/vendor/nesbot/carbon/src/Carbon/Lang/ru_BY.php +/vendor/nesbot/carbon/src/Carbon/Lang/ru_KG.php +/vendor/nesbot/carbon/src/Carbon/Lang/ru_KZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/ru_MD.php +/vendor/nesbot/carbon/src/Carbon/Lang/ru_RU.php +/vendor/nesbot/carbon/src/Carbon/Lang/ru_UA.php +/vendor/nesbot/carbon/src/Carbon/Lang/rw.php +/vendor/nesbot/carbon/src/Carbon/Lang/rw_RW.php +/vendor/nesbot/carbon/src/Carbon/Lang/rwk.php +/vendor/nesbot/carbon/src/Carbon/Lang/sa.php +/vendor/nesbot/carbon/src/Carbon/Lang/sa_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/sah.php +/vendor/nesbot/carbon/src/Carbon/Lang/sah_RU.php +/vendor/nesbot/carbon/src/Carbon/Lang/saq.php +/vendor/nesbot/carbon/src/Carbon/Lang/sat.php +/vendor/nesbot/carbon/src/Carbon/Lang/sat_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/sbp.php +/vendor/nesbot/carbon/src/Carbon/Lang/sc.php +/vendor/nesbot/carbon/src/Carbon/Lang/sc_IT.php +/vendor/nesbot/carbon/src/Carbon/Lang/sd.php +/vendor/nesbot/carbon/src/Carbon/Lang/sd_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/sd_IN@devanagari.php +/vendor/nesbot/carbon/src/Carbon/Lang/se.php +/vendor/nesbot/carbon/src/Carbon/Lang/se_FI.php +/vendor/nesbot/carbon/src/Carbon/Lang/se_NO.php +/vendor/nesbot/carbon/src/Carbon/Lang/se_SE.php +/vendor/nesbot/carbon/src/Carbon/Lang/seh.php +/vendor/nesbot/carbon/src/Carbon/Lang/ses.php +/vendor/nesbot/carbon/src/Carbon/Lang/sg.php +/vendor/nesbot/carbon/src/Carbon/Lang/sgs.php +/vendor/nesbot/carbon/src/Carbon/Lang/sgs_LT.php +/vendor/nesbot/carbon/src/Carbon/Lang/sh.php +/vendor/nesbot/carbon/src/Carbon/Lang/shi.php +/vendor/nesbot/carbon/src/Carbon/Lang/shi_Latn.php +/vendor/nesbot/carbon/src/Carbon/Lang/shi_Tfng.php +/vendor/nesbot/carbon/src/Carbon/Lang/shn.php +/vendor/nesbot/carbon/src/Carbon/Lang/shn_MM.php +/vendor/nesbot/carbon/src/Carbon/Lang/shs.php +/vendor/nesbot/carbon/src/Carbon/Lang/shs_CA.php +/vendor/nesbot/carbon/src/Carbon/Lang/si.php +/vendor/nesbot/carbon/src/Carbon/Lang/si_LK.php +/vendor/nesbot/carbon/src/Carbon/Lang/sid.php +/vendor/nesbot/carbon/src/Carbon/Lang/sid_ET.php +/vendor/nesbot/carbon/src/Carbon/Lang/sk.php +/vendor/nesbot/carbon/src/Carbon/Lang/sk_SK.php +/vendor/nesbot/carbon/src/Carbon/Lang/sl.php +/vendor/nesbot/carbon/src/Carbon/Lang/sl_SI.php +/vendor/nesbot/carbon/src/Carbon/Lang/sm.php +/vendor/nesbot/carbon/src/Carbon/Lang/sm_WS.php +/vendor/nesbot/carbon/src/Carbon/Lang/smn.php +/vendor/nesbot/carbon/src/Carbon/Lang/sn.php +/vendor/nesbot/carbon/src/Carbon/Lang/so.php +/vendor/nesbot/carbon/src/Carbon/Lang/so_DJ.php +/vendor/nesbot/carbon/src/Carbon/Lang/so_ET.php +/vendor/nesbot/carbon/src/Carbon/Lang/so_KE.php +/vendor/nesbot/carbon/src/Carbon/Lang/so_SO.php +/vendor/nesbot/carbon/src/Carbon/Lang/sq.php +/vendor/nesbot/carbon/src/Carbon/Lang/sq_AL.php +/vendor/nesbot/carbon/src/Carbon/Lang/sq_MK.php +/vendor/nesbot/carbon/src/Carbon/Lang/sq_XK.php +/vendor/nesbot/carbon/src/Carbon/Lang/sr.php +/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl.php +/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl_BA.php +/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl_ME.php +/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl_XK.php +/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn.php +/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn_BA.php +/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn_ME.php +/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn_XK.php +/vendor/nesbot/carbon/src/Carbon/Lang/sr_ME.php +/vendor/nesbot/carbon/src/Carbon/Lang/sr_RS.php +/vendor/nesbot/carbon/src/Carbon/Lang/sr_RS@latin.php +/vendor/nesbot/carbon/src/Carbon/Lang/ss.php +/vendor/nesbot/carbon/src/Carbon/Lang/ss_ZA.php +/vendor/nesbot/carbon/src/Carbon/Lang/st.php +/vendor/nesbot/carbon/src/Carbon/Lang/st_ZA.php +/vendor/nesbot/carbon/src/Carbon/Lang/sv.php +/vendor/nesbot/carbon/src/Carbon/Lang/sv_AX.php +/vendor/nesbot/carbon/src/Carbon/Lang/sv_FI.php +/vendor/nesbot/carbon/src/Carbon/Lang/sv_SE.php +/vendor/nesbot/carbon/src/Carbon/Lang/sw.php +/vendor/nesbot/carbon/src/Carbon/Lang/sw_CD.php +/vendor/nesbot/carbon/src/Carbon/Lang/sw_KE.php +/vendor/nesbot/carbon/src/Carbon/Lang/sw_TZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/sw_UG.php +/vendor/nesbot/carbon/src/Carbon/Lang/szl.php +/vendor/nesbot/carbon/src/Carbon/Lang/szl_PL.php +/vendor/nesbot/carbon/src/Carbon/Lang/ta.php +/vendor/nesbot/carbon/src/Carbon/Lang/ta_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ta_LK.php +/vendor/nesbot/carbon/src/Carbon/Lang/ta_MY.php +/vendor/nesbot/carbon/src/Carbon/Lang/ta_SG.php +/vendor/nesbot/carbon/src/Carbon/Lang/tcy.php +/vendor/nesbot/carbon/src/Carbon/Lang/tcy_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/te.php +/vendor/nesbot/carbon/src/Carbon/Lang/te_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/teo.php +/vendor/nesbot/carbon/src/Carbon/Lang/teo_KE.php +/vendor/nesbot/carbon/src/Carbon/Lang/tet.php +/vendor/nesbot/carbon/src/Carbon/Lang/tg.php +/vendor/nesbot/carbon/src/Carbon/Lang/tg_TJ.php +/vendor/nesbot/carbon/src/Carbon/Lang/th.php +/vendor/nesbot/carbon/src/Carbon/Lang/th_TH.php +/vendor/nesbot/carbon/src/Carbon/Lang/the.php +/vendor/nesbot/carbon/src/Carbon/Lang/the_NP.php +/vendor/nesbot/carbon/src/Carbon/Lang/ti.php +/vendor/nesbot/carbon/src/Carbon/Lang/ti_ER.php +/vendor/nesbot/carbon/src/Carbon/Lang/ti_ET.php +/vendor/nesbot/carbon/src/Carbon/Lang/tig.php +/vendor/nesbot/carbon/src/Carbon/Lang/tig_ER.php +/vendor/nesbot/carbon/src/Carbon/Lang/tk.php +/vendor/nesbot/carbon/src/Carbon/Lang/tk_TM.php +/vendor/nesbot/carbon/src/Carbon/Lang/tl.php +/vendor/nesbot/carbon/src/Carbon/Lang/tl_PH.php +/vendor/nesbot/carbon/src/Carbon/Lang/tlh.php +/vendor/nesbot/carbon/src/Carbon/Lang/tn.php +/vendor/nesbot/carbon/src/Carbon/Lang/tn_ZA.php +/vendor/nesbot/carbon/src/Carbon/Lang/to.php +/vendor/nesbot/carbon/src/Carbon/Lang/to_TO.php +/vendor/nesbot/carbon/src/Carbon/Lang/tpi.php +/vendor/nesbot/carbon/src/Carbon/Lang/tpi_PG.php +/vendor/nesbot/carbon/src/Carbon/Lang/tr.php +/vendor/nesbot/carbon/src/Carbon/Lang/tr_CY.php +/vendor/nesbot/carbon/src/Carbon/Lang/tr_TR.php +/vendor/nesbot/carbon/src/Carbon/Lang/ts.php +/vendor/nesbot/carbon/src/Carbon/Lang/ts_ZA.php +/vendor/nesbot/carbon/src/Carbon/Lang/tt.php +/vendor/nesbot/carbon/src/Carbon/Lang/tt_RU.php +/vendor/nesbot/carbon/src/Carbon/Lang/tt_RU@iqtelif.php +/vendor/nesbot/carbon/src/Carbon/Lang/twq.php +/vendor/nesbot/carbon/src/Carbon/Lang/tzl.php +/vendor/nesbot/carbon/src/Carbon/Lang/tzm.php +/vendor/nesbot/carbon/src/Carbon/Lang/tzm_Latn.php +/vendor/nesbot/carbon/src/Carbon/Lang/ug.php +/vendor/nesbot/carbon/src/Carbon/Lang/ug_CN.php +/vendor/nesbot/carbon/src/Carbon/Lang/uk.php +/vendor/nesbot/carbon/src/Carbon/Lang/uk_UA.php +/vendor/nesbot/carbon/src/Carbon/Lang/unm.php +/vendor/nesbot/carbon/src/Carbon/Lang/unm_US.php +/vendor/nesbot/carbon/src/Carbon/Lang/ur.php +/vendor/nesbot/carbon/src/Carbon/Lang/ur_IN.php +/vendor/nesbot/carbon/src/Carbon/Lang/ur_PK.php +/vendor/nesbot/carbon/src/Carbon/Lang/uz.php +/vendor/nesbot/carbon/src/Carbon/Lang/uz_Arab.php +/vendor/nesbot/carbon/src/Carbon/Lang/uz_Cyrl.php +/vendor/nesbot/carbon/src/Carbon/Lang/uz_Latn.php +/vendor/nesbot/carbon/src/Carbon/Lang/uz_UZ.php +/vendor/nesbot/carbon/src/Carbon/Lang/uz_UZ@cyrillic.php +/vendor/nesbot/carbon/src/Carbon/Lang/vai.php +/vendor/nesbot/carbon/src/Carbon/Lang/vai_Latn.php +/vendor/nesbot/carbon/src/Carbon/Lang/vai_Vaii.php +/vendor/nesbot/carbon/src/Carbon/Lang/ve.php +/vendor/nesbot/carbon/src/Carbon/Lang/ve_ZA.php +/vendor/nesbot/carbon/src/Carbon/Lang/vi.php +/vendor/nesbot/carbon/src/Carbon/Lang/vi_VN.php +/vendor/nesbot/carbon/src/Carbon/Lang/vo.php +/vendor/nesbot/carbon/src/Carbon/Lang/vun.php +/vendor/nesbot/carbon/src/Carbon/Lang/wa.php +/vendor/nesbot/carbon/src/Carbon/Lang/wa_BE.php +/vendor/nesbot/carbon/src/Carbon/Lang/wae.php +/vendor/nesbot/carbon/src/Carbon/Lang/wae_CH.php +/vendor/nesbot/carbon/src/Carbon/Lang/wal.php +/vendor/nesbot/carbon/src/Carbon/Lang/wal_ET.php +/vendor/nesbot/carbon/src/Carbon/Lang/wo.php +/vendor/nesbot/carbon/src/Carbon/Lang/wo_SN.php +/vendor/nesbot/carbon/src/Carbon/Lang/xh.php +/vendor/nesbot/carbon/src/Carbon/Lang/xh_ZA.php +/vendor/nesbot/carbon/src/Carbon/Lang/xog.php +/vendor/nesbot/carbon/src/Carbon/Lang/yav.php +/vendor/nesbot/carbon/src/Carbon/Lang/yi.php +/vendor/nesbot/carbon/src/Carbon/Lang/yi_US.php +/vendor/nesbot/carbon/src/Carbon/Lang/yo.php +/vendor/nesbot/carbon/src/Carbon/Lang/yo_BJ.php +/vendor/nesbot/carbon/src/Carbon/Lang/yo_NG.php +/vendor/nesbot/carbon/src/Carbon/Lang/yue.php +/vendor/nesbot/carbon/src/Carbon/Lang/yue_Hans.php +/vendor/nesbot/carbon/src/Carbon/Lang/yue_Hant.php +/vendor/nesbot/carbon/src/Carbon/Lang/yue_HK.php +/vendor/nesbot/carbon/src/Carbon/Lang/yuw.php +/vendor/nesbot/carbon/src/Carbon/Lang/yuw_PG.php +/vendor/nesbot/carbon/src/Carbon/Lang/zgh.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_CN.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_HK.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_MO.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_SG.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_HK.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_MO.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_TW.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_HK.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_MO.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_SG.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_TW.php +/vendor/nesbot/carbon/src/Carbon/Lang/zh_YUE.php +/vendor/nesbot/carbon/src/Carbon/Lang/zu.php +/vendor/nesbot/carbon/src/Carbon/Lang/zu_ZA.php +/vendor/nesbot/carbon/src/Carbon/Laravel/ServiceProvider.php +/vendor/nesbot/carbon/src/Carbon/List/languages.php +/vendor/nesbot/carbon/src/Carbon/List/regions.php +/vendor/nesbot/carbon/src/Carbon/MessageFormatter/MessageFormatterMapper.php +/vendor/nesbot/carbon/src/Carbon/PHPStan/AbstractMacro.php +/vendor/nesbot/carbon/src/Carbon/PHPStan/Macro.php +/vendor/nesbot/carbon/src/Carbon/PHPStan/MacroExtension.php +/vendor/nesbot/carbon/src/Carbon/PHPStan/MacroScanner.php +/vendor/nesbot/carbon/src/Carbon/Traits/Boundaries.php +/vendor/nesbot/carbon/src/Carbon/Traits/Cast.php +/vendor/nesbot/carbon/src/Carbon/Traits/Comparison.php +/vendor/nesbot/carbon/src/Carbon/Traits/Converter.php +/vendor/nesbot/carbon/src/Carbon/Traits/Creator.php +/vendor/nesbot/carbon/src/Carbon/Traits/Date.php +/vendor/nesbot/carbon/src/Carbon/Traits/DeprecatedProperties.php +/vendor/nesbot/carbon/src/Carbon/Traits/Difference.php +/vendor/nesbot/carbon/src/Carbon/Traits/IntervalRounding.php +/vendor/nesbot/carbon/src/Carbon/Traits/IntervalStep.php +/vendor/nesbot/carbon/src/Carbon/Traits/Localization.php +/vendor/nesbot/carbon/src/Carbon/Traits/Macro.php +/vendor/nesbot/carbon/src/Carbon/Traits/MagicParameter.php +/vendor/nesbot/carbon/src/Carbon/Traits/Mixin.php +/vendor/nesbot/carbon/src/Carbon/Traits/Modifiers.php +/vendor/nesbot/carbon/src/Carbon/Traits/Mutability.php +/vendor/nesbot/carbon/src/Carbon/Traits/ObjectInitialisation.php +/vendor/nesbot/carbon/src/Carbon/Traits/Options.php +/vendor/nesbot/carbon/src/Carbon/Traits/Rounding.php +/vendor/nesbot/carbon/src/Carbon/Traits/Serialization.php +/vendor/nesbot/carbon/src/Carbon/Traits/Test.php +/vendor/nesbot/carbon/src/Carbon/Traits/Timestamp.php +/vendor/nesbot/carbon/src/Carbon/Traits/ToStringFormat.php +/vendor/nesbot/carbon/src/Carbon/Traits/Units.php +/vendor/nesbot/carbon/src/Carbon/Traits/Week.php +/vendor/nesbot/carbon/src/Carbon/AbstractTranslator.php +/vendor/nesbot/carbon/src/Carbon/Carbon.php +/vendor/nesbot/carbon/src/Carbon/CarbonConverterInterface.php +/vendor/nesbot/carbon/src/Carbon/CarbonImmutable.php +/vendor/nesbot/carbon/src/Carbon/CarbonInterface.php +/vendor/nesbot/carbon/src/Carbon/CarbonInterval.php +/vendor/nesbot/carbon/src/Carbon/CarbonPeriod.php +/vendor/nesbot/carbon/src/Carbon/CarbonPeriodImmutable.php +/vendor/nesbot/carbon/src/Carbon/CarbonTimeZone.php +/vendor/nesbot/carbon/src/Carbon/Factory.php +/vendor/nesbot/carbon/src/Carbon/FactoryImmutable.php +/vendor/nesbot/carbon/src/Carbon/Language.php +/vendor/nesbot/carbon/src/Carbon/Translator.php +/vendor/nesbot/carbon/src/Carbon/TranslatorImmutable.php +/vendor/nesbot/carbon/src/Carbon/TranslatorStrongTypeInterface.php +/vendor/nesbot/carbon/.phpstorm.meta.php +/vendor/nesbot/carbon/composer.json +/vendor/nesbot/carbon/extension.neon +/vendor/nesbot/carbon/LICENSE +/vendor/nesbot/carbon/readme.md +/vendor/nesbot/carbon/sponsors.php +/vendor/psr/clock/src/ClockInterface.php +/vendor/psr/clock/CHANGELOG.md +/vendor/psr/clock/composer.json +/vendor/psr/clock/LICENSE +/vendor/psr/clock/README.md +/vendor/psr/container/src/ContainerExceptionInterface.php +/vendor/psr/container/src/ContainerInterface.php +/vendor/psr/container/src/NotFoundExceptionInterface.php +/vendor/psr/container/.gitignore +/vendor/psr/container/composer.json +/vendor/psr/container/LICENSE +/vendor/psr/container/README.md +/vendor/psr/event-dispatcher/src/EventDispatcherInterface.php +/vendor/psr/event-dispatcher/src/ListenerProviderInterface.php +/vendor/psr/event-dispatcher/src/StoppableEventInterface.php +/vendor/psr/event-dispatcher/.editorconfig +/vendor/psr/event-dispatcher/.gitignore +/vendor/psr/event-dispatcher/composer.json +/vendor/psr/event-dispatcher/LICENSE +/vendor/psr/event-dispatcher/README.md +/vendor/psr/log/src/AbstractLogger.php +/vendor/psr/log/src/InvalidArgumentException.php +/vendor/psr/log/src/LoggerAwareInterface.php +/vendor/psr/log/src/LoggerAwareTrait.php +/vendor/psr/log/src/LoggerInterface.php +/vendor/psr/log/src/LoggerTrait.php +/vendor/psr/log/src/LogLevel.php +/vendor/psr/log/src/NullLogger.php +/vendor/psr/log/composer.json +/vendor/psr/log/LICENSE +/vendor/psr/log/README.md +/vendor/psr/simple-cache/src/CacheException.php +/vendor/psr/simple-cache/src/CacheInterface.php +/vendor/psr/simple-cache/src/InvalidArgumentException.php +/vendor/psr/simple-cache/.editorconfig +/vendor/psr/simple-cache/composer.json +/vendor/psr/simple-cache/LICENSE.md +/vendor/psr/simple-cache/README.md +/vendor/spatie/laravel-html/src/Elements/Attributes/Autofocus.php +/vendor/spatie/laravel-html/src/Elements/Attributes/Disabled.php +/vendor/spatie/laravel-html/src/Elements/Attributes/MinMaxLength.php +/vendor/spatie/laravel-html/src/Elements/Attributes/Name.php +/vendor/spatie/laravel-html/src/Elements/Attributes/Placeholder.php +/vendor/spatie/laravel-html/src/Elements/Attributes/ReadonlyTrait.php +/vendor/spatie/laravel-html/src/Elements/Attributes/Required.php +/vendor/spatie/laravel-html/src/Elements/Attributes/Target.php +/vendor/spatie/laravel-html/src/Elements/Attributes/Type.php +/vendor/spatie/laravel-html/src/Elements/Attributes/Value.php +/vendor/spatie/laravel-html/src/Elements/A.php +/vendor/spatie/laravel-html/src/Elements/Button.php +/vendor/spatie/laravel-html/src/Elements/Div.php +/vendor/spatie/laravel-html/src/Elements/Element.php +/vendor/spatie/laravel-html/src/Elements/Fieldset.php +/vendor/spatie/laravel-html/src/Elements/File.php +/vendor/spatie/laravel-html/src/Elements/Form.php +/vendor/spatie/laravel-html/src/Elements/I.php +/vendor/spatie/laravel-html/src/Elements/Img.php +/vendor/spatie/laravel-html/src/Elements/Input.php +/vendor/spatie/laravel-html/src/Elements/Label.php +/vendor/spatie/laravel-html/src/Elements/Legend.php +/vendor/spatie/laravel-html/src/Elements/Optgroup.php +/vendor/spatie/laravel-html/src/Elements/Option.php +/vendor/spatie/laravel-html/src/Elements/P.php +/vendor/spatie/laravel-html/src/Elements/Select.php +/vendor/spatie/laravel-html/src/Elements/Span.php +/vendor/spatie/laravel-html/src/Elements/Textarea.php +/vendor/spatie/laravel-html/src/Exceptions/InvalidChild.php +/vendor/spatie/laravel-html/src/Exceptions/InvalidHtml.php +/vendor/spatie/laravel-html/src/Exceptions/MissingTag.php +/vendor/spatie/laravel-html/src/Facades/Html.php +/vendor/spatie/laravel-html/src/Helpers/Arr.php +/vendor/spatie/laravel-html/src/Attributes.php +/vendor/spatie/laravel-html/src/BaseElement.php +/vendor/spatie/laravel-html/src/helpers.php +/vendor/spatie/laravel-html/src/Html.php +/vendor/spatie/laravel-html/src/HtmlElement.php +/vendor/spatie/laravel-html/src/HtmlServiceProvider.php +/vendor/spatie/laravel-html/src/Selectable.php +/vendor/spatie/laravel-html/CHANGELOG.md +/vendor/spatie/laravel-html/composer.json +/vendor/spatie/laravel-html/LICENSE.md +/vendor/spatie/laravel-html/README.md +/vendor/symfony/deprecation-contracts/CHANGELOG.md +/vendor/symfony/deprecation-contracts/composer.json +/vendor/symfony/deprecation-contracts/function.php +/vendor/symfony/deprecation-contracts/LICENSE +/vendor/symfony/deprecation-contracts/README.md +/vendor/symfony/error-handler/Error/ClassNotFoundError.php +/vendor/symfony/error-handler/Error/FatalError.php +/vendor/symfony/error-handler/Error/OutOfMemoryError.php +/vendor/symfony/error-handler/Error/UndefinedFunctionError.php +/vendor/symfony/error-handler/Error/UndefinedMethodError.php +/vendor/symfony/error-handler/ErrorEnhancer/ClassNotFoundErrorEnhancer.php +/vendor/symfony/error-handler/ErrorEnhancer/ErrorEnhancerInterface.php +/vendor/symfony/error-handler/ErrorEnhancer/UndefinedFunctionErrorEnhancer.php +/vendor/symfony/error-handler/ErrorEnhancer/UndefinedMethodErrorEnhancer.php +/vendor/symfony/error-handler/ErrorRenderer/CliErrorRenderer.php +/vendor/symfony/error-handler/ErrorRenderer/ErrorRendererInterface.php +/vendor/symfony/error-handler/ErrorRenderer/FileLinkFormatter.php +/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php +/vendor/symfony/error-handler/ErrorRenderer/SerializerErrorRenderer.php +/vendor/symfony/error-handler/Exception/FlattenException.php +/vendor/symfony/error-handler/Exception/SilencedErrorContext.php +/vendor/symfony/error-handler/Internal/TentativeTypes.php +/vendor/symfony/error-handler/Resources/assets/css/error.css +/vendor/symfony/error-handler/Resources/assets/css/exception.css +/vendor/symfony/error-handler/Resources/assets/css/exception_full.css +/vendor/symfony/error-handler/Resources/assets/images/chevron-right.svg +/vendor/symfony/error-handler/Resources/assets/images/favicon.png.base64 +/vendor/symfony/error-handler/Resources/assets/images/icon-book.svg +/vendor/symfony/error-handler/Resources/assets/images/icon-copy.svg +/vendor/symfony/error-handler/Resources/assets/images/icon-minus-square.svg +/vendor/symfony/error-handler/Resources/assets/images/icon-minus-square-o.svg +/vendor/symfony/error-handler/Resources/assets/images/icon-plus-square.svg +/vendor/symfony/error-handler/Resources/assets/images/icon-plus-square-o.svg +/vendor/symfony/error-handler/Resources/assets/images/icon-support.svg +/vendor/symfony/error-handler/Resources/assets/images/symfony-ghost.svg.php +/vendor/symfony/error-handler/Resources/assets/images/symfony-logo.svg +/vendor/symfony/error-handler/Resources/assets/js/exception.js +/vendor/symfony/error-handler/Resources/bin/extract-tentative-return-types.php +/vendor/symfony/error-handler/Resources/bin/patch-type-declarations +/vendor/symfony/error-handler/Resources/views/error.html.php +/vendor/symfony/error-handler/Resources/views/exception.html.php +/vendor/symfony/error-handler/Resources/views/exception_full.html.php +/vendor/symfony/error-handler/Resources/views/logs.html.php +/vendor/symfony/error-handler/Resources/views/trace.html.php +/vendor/symfony/error-handler/Resources/views/traces.html.php +/vendor/symfony/error-handler/Resources/views/traces_text.html.php +/vendor/symfony/error-handler/BufferingLogger.php +/vendor/symfony/error-handler/CHANGELOG.md +/vendor/symfony/error-handler/composer.json +/vendor/symfony/error-handler/Debug.php +/vendor/symfony/error-handler/DebugClassLoader.php +/vendor/symfony/error-handler/ErrorHandler.php +/vendor/symfony/error-handler/LICENSE +/vendor/symfony/error-handler/README.md +/vendor/symfony/error-handler/ThrowableUtils.php +/vendor/symfony/event-dispatcher/Attribute/AsEventListener.php +/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php +/vendor/symfony/event-dispatcher/Debug/WrappedListener.php +/vendor/symfony/event-dispatcher/DependencyInjection/AddEventAliasesPass.php +/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php +/vendor/symfony/event-dispatcher/CHANGELOG.md +/vendor/symfony/event-dispatcher/composer.json +/vendor/symfony/event-dispatcher/EventDispatcher.php +/vendor/symfony/event-dispatcher/EventDispatcherInterface.php +/vendor/symfony/event-dispatcher/EventSubscriberInterface.php +/vendor/symfony/event-dispatcher/GenericEvent.php +/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php +/vendor/symfony/event-dispatcher/LICENSE +/vendor/symfony/event-dispatcher/README.md +/vendor/symfony/event-dispatcher-contracts/CHANGELOG.md +/vendor/symfony/event-dispatcher-contracts/composer.json +/vendor/symfony/event-dispatcher-contracts/Event.php +/vendor/symfony/event-dispatcher-contracts/EventDispatcherInterface.php +/vendor/symfony/event-dispatcher-contracts/LICENSE +/vendor/symfony/event-dispatcher-contracts/README.md +/vendor/symfony/finder/Comparator/Comparator.php +/vendor/symfony/finder/Comparator/DateComparator.php +/vendor/symfony/finder/Comparator/NumberComparator.php +/vendor/symfony/finder/Exception/AccessDeniedException.php +/vendor/symfony/finder/Exception/DirectoryNotFoundException.php +/vendor/symfony/finder/Iterator/CustomFilterIterator.php +/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php +/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php +/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php +/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php +/vendor/symfony/finder/Iterator/FilenameFilterIterator.php +/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php +/vendor/symfony/finder/Iterator/LazyIterator.php +/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php +/vendor/symfony/finder/Iterator/PathFilterIterator.php +/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php +/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php +/vendor/symfony/finder/Iterator/SortableIterator.php +/vendor/symfony/finder/Iterator/VcsIgnoredFilterIterator.php +/vendor/symfony/finder/CHANGELOG.md +/vendor/symfony/finder/composer.json +/vendor/symfony/finder/Finder.php +/vendor/symfony/finder/Gitignore.php +/vendor/symfony/finder/Glob.php +/vendor/symfony/finder/LICENSE +/vendor/symfony/finder/README.md +/vendor/symfony/finder/SplFileInfo.php +/vendor/symfony/http-foundation/Exception/BadRequestException.php +/vendor/symfony/http-foundation/Exception/ConflictingHeadersException.php +/vendor/symfony/http-foundation/Exception/JsonException.php +/vendor/symfony/http-foundation/Exception/RequestExceptionInterface.php +/vendor/symfony/http-foundation/Exception/SessionNotFoundException.php +/vendor/symfony/http-foundation/Exception/SuspiciousOperationException.php +/vendor/symfony/http-foundation/Exception/UnexpectedValueException.php +/vendor/symfony/http-foundation/File/Exception/AccessDeniedException.php +/vendor/symfony/http-foundation/File/Exception/CannotWriteFileException.php +/vendor/symfony/http-foundation/File/Exception/ExtensionFileException.php +/vendor/symfony/http-foundation/File/Exception/FileException.php +/vendor/symfony/http-foundation/File/Exception/FileNotFoundException.php +/vendor/symfony/http-foundation/File/Exception/FormSizeFileException.php +/vendor/symfony/http-foundation/File/Exception/IniSizeFileException.php +/vendor/symfony/http-foundation/File/Exception/NoFileException.php +/vendor/symfony/http-foundation/File/Exception/NoTmpDirFileException.php +/vendor/symfony/http-foundation/File/Exception/PartialFileException.php +/vendor/symfony/http-foundation/File/Exception/UnexpectedTypeException.php +/vendor/symfony/http-foundation/File/Exception/UploadException.php +/vendor/symfony/http-foundation/File/File.php +/vendor/symfony/http-foundation/File/Stream.php +/vendor/symfony/http-foundation/File/UploadedFile.php +/vendor/symfony/http-foundation/RateLimiter/AbstractRequestRateLimiter.php +/vendor/symfony/http-foundation/RateLimiter/PeekableRequestRateLimiterInterface.php +/vendor/symfony/http-foundation/RateLimiter/RequestRateLimiterInterface.php +/vendor/symfony/http-foundation/RequestMatcher/AttributesRequestMatcher.php +/vendor/symfony/http-foundation/RequestMatcher/ExpressionRequestMatcher.php +/vendor/symfony/http-foundation/RequestMatcher/HostRequestMatcher.php +/vendor/symfony/http-foundation/RequestMatcher/IpsRequestMatcher.php +/vendor/symfony/http-foundation/RequestMatcher/IsJsonRequestMatcher.php +/vendor/symfony/http-foundation/RequestMatcher/MethodRequestMatcher.php +/vendor/symfony/http-foundation/RequestMatcher/PathRequestMatcher.php +/vendor/symfony/http-foundation/RequestMatcher/PortRequestMatcher.php +/vendor/symfony/http-foundation/RequestMatcher/SchemeRequestMatcher.php +/vendor/symfony/http-foundation/Session/Attribute/AttributeBag.php +/vendor/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php +/vendor/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php +/vendor/symfony/http-foundation/Session/Flash/FlashBag.php +/vendor/symfony/http-foundation/Session/Flash/FlashBagInterface.php +/vendor/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php +/vendor/symfony/http-foundation/Session/Storage/Handler/IdentityMarshaller.php +/vendor/symfony/http-foundation/Session/Storage/Handler/MarshallingSessionHandler.php +/vendor/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php +/vendor/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php +/vendor/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php +/vendor/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php +/vendor/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php +/vendor/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php +/vendor/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php +/vendor/symfony/http-foundation/Session/Storage/Handler/SessionHandlerFactory.php +/vendor/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php +/vendor/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php +/vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php +/vendor/symfony/http-foundation/Session/Storage/MetadataBag.php +/vendor/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php +/vendor/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php +/vendor/symfony/http-foundation/Session/Storage/MockFileSessionStorageFactory.php +/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php +/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorageFactory.php +/vendor/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php +/vendor/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorageFactory.php +/vendor/symfony/http-foundation/Session/Storage/SessionStorageFactoryInterface.php +/vendor/symfony/http-foundation/Session/Storage/SessionStorageInterface.php +/vendor/symfony/http-foundation/Session/FlashBagAwareSessionInterface.php +/vendor/symfony/http-foundation/Session/Session.php +/vendor/symfony/http-foundation/Session/SessionBagInterface.php +/vendor/symfony/http-foundation/Session/SessionBagProxy.php +/vendor/symfony/http-foundation/Session/SessionFactory.php +/vendor/symfony/http-foundation/Session/SessionFactoryInterface.php +/vendor/symfony/http-foundation/Session/SessionInterface.php +/vendor/symfony/http-foundation/Session/SessionUtils.php +/vendor/symfony/http-foundation/Test/Constraint/RequestAttributeValueSame.php +/vendor/symfony/http-foundation/Test/Constraint/ResponseCookieValueSame.php +/vendor/symfony/http-foundation/Test/Constraint/ResponseFormatSame.php +/vendor/symfony/http-foundation/Test/Constraint/ResponseHasCookie.php +/vendor/symfony/http-foundation/Test/Constraint/ResponseHasHeader.php +/vendor/symfony/http-foundation/Test/Constraint/ResponseHeaderLocationSame.php +/vendor/symfony/http-foundation/Test/Constraint/ResponseHeaderSame.php +/vendor/symfony/http-foundation/Test/Constraint/ResponseIsRedirected.php +/vendor/symfony/http-foundation/Test/Constraint/ResponseIsSuccessful.php +/vendor/symfony/http-foundation/Test/Constraint/ResponseIsUnprocessable.php +/vendor/symfony/http-foundation/Test/Constraint/ResponseStatusCodeSame.php +/vendor/symfony/http-foundation/AcceptHeader.php +/vendor/symfony/http-foundation/AcceptHeaderItem.php +/vendor/symfony/http-foundation/BinaryFileResponse.php +/vendor/symfony/http-foundation/ChainRequestMatcher.php +/vendor/symfony/http-foundation/CHANGELOG.md +/vendor/symfony/http-foundation/composer.json +/vendor/symfony/http-foundation/Cookie.php +/vendor/symfony/http-foundation/ExpressionRequestMatcher.php +/vendor/symfony/http-foundation/FileBag.php +/vendor/symfony/http-foundation/HeaderBag.php +/vendor/symfony/http-foundation/HeaderUtils.php +/vendor/symfony/http-foundation/InputBag.php +/vendor/symfony/http-foundation/IpUtils.php +/vendor/symfony/http-foundation/JsonResponse.php +/vendor/symfony/http-foundation/LICENSE +/vendor/symfony/http-foundation/ParameterBag.php +/vendor/symfony/http-foundation/README.md +/vendor/symfony/http-foundation/RedirectResponse.php +/vendor/symfony/http-foundation/Request.php +/vendor/symfony/http-foundation/RequestMatcher.php +/vendor/symfony/http-foundation/RequestMatcherInterface.php +/vendor/symfony/http-foundation/RequestStack.php +/vendor/symfony/http-foundation/Response.php +/vendor/symfony/http-foundation/ResponseHeaderBag.php +/vendor/symfony/http-foundation/ServerBag.php +/vendor/symfony/http-foundation/StreamedJsonResponse.php +/vendor/symfony/http-foundation/StreamedResponse.php +/vendor/symfony/http-foundation/UriSigner.php +/vendor/symfony/http-foundation/UrlHelper.php +/vendor/symfony/http-kernel/Attribute/AsController.php +/vendor/symfony/http-kernel/Attribute/AsTargetedValueResolver.php +/vendor/symfony/http-kernel/Attribute/Cache.php +/vendor/symfony/http-kernel/Attribute/MapDateTime.php +/vendor/symfony/http-kernel/Attribute/MapQueryParameter.php +/vendor/symfony/http-kernel/Attribute/MapQueryString.php +/vendor/symfony/http-kernel/Attribute/MapRequestPayload.php +/vendor/symfony/http-kernel/Attribute/ValueResolver.php +/vendor/symfony/http-kernel/Attribute/WithHttpStatus.php +/vendor/symfony/http-kernel/Attribute/WithLogLevel.php +/vendor/symfony/http-kernel/Bundle/AbstractBundle.php +/vendor/symfony/http-kernel/Bundle/Bundle.php +/vendor/symfony/http-kernel/Bundle/BundleExtension.php +/vendor/symfony/http-kernel/Bundle/BundleInterface.php +/vendor/symfony/http-kernel/CacheClearer/CacheClearerInterface.php +/vendor/symfony/http-kernel/CacheClearer/ChainCacheClearer.php +/vendor/symfony/http-kernel/CacheClearer/Psr6CacheClearer.php +/vendor/symfony/http-kernel/CacheWarmer/CacheWarmer.php +/vendor/symfony/http-kernel/CacheWarmer/CacheWarmerAggregate.php +/vendor/symfony/http-kernel/CacheWarmer/CacheWarmerInterface.php +/vendor/symfony/http-kernel/CacheWarmer/WarmableInterface.php +/vendor/symfony/http-kernel/Config/FileLocator.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/BackedEnumValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/DateTimeValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/DefaultValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/NotTaggedControllerValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/QueryParameterValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/RequestAttributeValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/RequestPayloadValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/RequestValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/ServiceValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/SessionValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/TraceableValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/UidValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver/VariadicValueResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolver.php +/vendor/symfony/http-kernel/Controller/ArgumentResolverInterface.php +/vendor/symfony/http-kernel/Controller/ArgumentValueResolverInterface.php +/vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php +/vendor/symfony/http-kernel/Controller/ControllerReference.php +/vendor/symfony/http-kernel/Controller/ControllerResolver.php +/vendor/symfony/http-kernel/Controller/ControllerResolverInterface.php +/vendor/symfony/http-kernel/Controller/ErrorController.php +/vendor/symfony/http-kernel/Controller/TraceableArgumentResolver.php +/vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php +/vendor/symfony/http-kernel/Controller/ValueResolverInterface.php +/vendor/symfony/http-kernel/ControllerMetadata/ArgumentMetadata.php +/vendor/symfony/http-kernel/ControllerMetadata/ArgumentMetadataFactory.php +/vendor/symfony/http-kernel/ControllerMetadata/ArgumentMetadataFactoryInterface.php +/vendor/symfony/http-kernel/DataCollector/AjaxDataCollector.php +/vendor/symfony/http-kernel/DataCollector/ConfigDataCollector.php +/vendor/symfony/http-kernel/DataCollector/DataCollector.php +/vendor/symfony/http-kernel/DataCollector/DataCollectorInterface.php +/vendor/symfony/http-kernel/DataCollector/DumpDataCollector.php +/vendor/symfony/http-kernel/DataCollector/EventDataCollector.php +/vendor/symfony/http-kernel/DataCollector/ExceptionDataCollector.php +/vendor/symfony/http-kernel/DataCollector/LateDataCollectorInterface.php +/vendor/symfony/http-kernel/DataCollector/LoggerDataCollector.php +/vendor/symfony/http-kernel/DataCollector/MemoryDataCollector.php +/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php +/vendor/symfony/http-kernel/DataCollector/RouterDataCollector.php +/vendor/symfony/http-kernel/DataCollector/TimeDataCollector.php +/vendor/symfony/http-kernel/Debug/ErrorHandlerConfigurator.php +/vendor/symfony/http-kernel/Debug/FileLinkFormatter.php +/vendor/symfony/http-kernel/Debug/TraceableEventDispatcher.php +/vendor/symfony/http-kernel/Debug/VirtualRequestStack.php +/vendor/symfony/http-kernel/DependencyInjection/AddAnnotatedClassesToCachePass.php +/vendor/symfony/http-kernel/DependencyInjection/ConfigurableExtension.php +/vendor/symfony/http-kernel/DependencyInjection/ControllerArgumentValueResolverPass.php +/vendor/symfony/http-kernel/DependencyInjection/Extension.php +/vendor/symfony/http-kernel/DependencyInjection/FragmentRendererPass.php +/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php +/vendor/symfony/http-kernel/DependencyInjection/LoggerPass.php +/vendor/symfony/http-kernel/DependencyInjection/MergeExtensionConfigurationPass.php +/vendor/symfony/http-kernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php +/vendor/symfony/http-kernel/DependencyInjection/RegisterLocaleAwareServicesPass.php +/vendor/symfony/http-kernel/DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php +/vendor/symfony/http-kernel/DependencyInjection/ResettableServicePass.php +/vendor/symfony/http-kernel/DependencyInjection/ServicesResetter.php +/vendor/symfony/http-kernel/Event/ControllerArgumentsEvent.php +/vendor/symfony/http-kernel/Event/ControllerEvent.php +/vendor/symfony/http-kernel/Event/ExceptionEvent.php +/vendor/symfony/http-kernel/Event/FinishRequestEvent.php +/vendor/symfony/http-kernel/Event/KernelEvent.php +/vendor/symfony/http-kernel/Event/RequestEvent.php +/vendor/symfony/http-kernel/Event/ResponseEvent.php +/vendor/symfony/http-kernel/Event/TerminateEvent.php +/vendor/symfony/http-kernel/Event/ViewEvent.php +/vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php +/vendor/symfony/http-kernel/EventListener/AddRequestFormatsListener.php +/vendor/symfony/http-kernel/EventListener/CacheAttributeListener.php +/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php +/vendor/symfony/http-kernel/EventListener/DisallowRobotsIndexingListener.php +/vendor/symfony/http-kernel/EventListener/DumpListener.php +/vendor/symfony/http-kernel/EventListener/ErrorListener.php +/vendor/symfony/http-kernel/EventListener/FragmentListener.php +/vendor/symfony/http-kernel/EventListener/LocaleAwareListener.php +/vendor/symfony/http-kernel/EventListener/LocaleListener.php +/vendor/symfony/http-kernel/EventListener/ProfilerListener.php +/vendor/symfony/http-kernel/EventListener/ResponseListener.php +/vendor/symfony/http-kernel/EventListener/RouterListener.php +/vendor/symfony/http-kernel/EventListener/SessionListener.php +/vendor/symfony/http-kernel/EventListener/StreamedResponseListener.php +/vendor/symfony/http-kernel/EventListener/SurrogateListener.php +/vendor/symfony/http-kernel/EventListener/ValidateRequestListener.php +/vendor/symfony/http-kernel/Exception/AccessDeniedHttpException.php +/vendor/symfony/http-kernel/Exception/BadRequestHttpException.php +/vendor/symfony/http-kernel/Exception/ConflictHttpException.php +/vendor/symfony/http-kernel/Exception/ControllerDoesNotReturnResponseException.php +/vendor/symfony/http-kernel/Exception/GoneHttpException.php +/vendor/symfony/http-kernel/Exception/HttpException.php +/vendor/symfony/http-kernel/Exception/HttpExceptionInterface.php +/vendor/symfony/http-kernel/Exception/InvalidMetadataException.php +/vendor/symfony/http-kernel/Exception/LengthRequiredHttpException.php +/vendor/symfony/http-kernel/Exception/LockedHttpException.php +/vendor/symfony/http-kernel/Exception/MethodNotAllowedHttpException.php +/vendor/symfony/http-kernel/Exception/NotAcceptableHttpException.php +/vendor/symfony/http-kernel/Exception/NotFoundHttpException.php +/vendor/symfony/http-kernel/Exception/PreconditionFailedHttpException.php +/vendor/symfony/http-kernel/Exception/PreconditionRequiredHttpException.php +/vendor/symfony/http-kernel/Exception/ResolverNotFoundException.php +/vendor/symfony/http-kernel/Exception/ServiceUnavailableHttpException.php +/vendor/symfony/http-kernel/Exception/TooManyRequestsHttpException.php +/vendor/symfony/http-kernel/Exception/UnauthorizedHttpException.php +/vendor/symfony/http-kernel/Exception/UnexpectedSessionUsageException.php +/vendor/symfony/http-kernel/Exception/UnprocessableEntityHttpException.php +/vendor/symfony/http-kernel/Exception/UnsupportedMediaTypeHttpException.php +/vendor/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php +/vendor/symfony/http-kernel/Fragment/EsiFragmentRenderer.php +/vendor/symfony/http-kernel/Fragment/FragmentHandler.php +/vendor/symfony/http-kernel/Fragment/FragmentRendererInterface.php +/vendor/symfony/http-kernel/Fragment/FragmentUriGenerator.php +/vendor/symfony/http-kernel/Fragment/FragmentUriGeneratorInterface.php +/vendor/symfony/http-kernel/Fragment/HIncludeFragmentRenderer.php +/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php +/vendor/symfony/http-kernel/Fragment/RoutableFragmentRenderer.php +/vendor/symfony/http-kernel/Fragment/SsiFragmentRenderer.php +/vendor/symfony/http-kernel/HttpCache/AbstractSurrogate.php +/vendor/symfony/http-kernel/HttpCache/Esi.php +/vendor/symfony/http-kernel/HttpCache/HttpCache.php +/vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategy.php +/vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategyInterface.php +/vendor/symfony/http-kernel/HttpCache/Ssi.php +/vendor/symfony/http-kernel/HttpCache/Store.php +/vendor/symfony/http-kernel/HttpCache/StoreInterface.php +/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php +/vendor/symfony/http-kernel/HttpCache/SurrogateInterface.php +/vendor/symfony/http-kernel/Log/DebugLoggerConfigurator.php +/vendor/symfony/http-kernel/Log/DebugLoggerInterface.php +/vendor/symfony/http-kernel/Log/Logger.php +/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php +/vendor/symfony/http-kernel/Profiler/Profile.php +/vendor/symfony/http-kernel/Profiler/Profiler.php +/vendor/symfony/http-kernel/Profiler/ProfilerStorageInterface.php +/vendor/symfony/http-kernel/Resources/welcome.html.php +/vendor/symfony/http-kernel/CHANGELOG.md +/vendor/symfony/http-kernel/composer.json +/vendor/symfony/http-kernel/HttpClientKernel.php +/vendor/symfony/http-kernel/HttpKernel.php +/vendor/symfony/http-kernel/HttpKernelBrowser.php +/vendor/symfony/http-kernel/HttpKernelInterface.php +/vendor/symfony/http-kernel/Kernel.php +/vendor/symfony/http-kernel/KernelEvents.php +/vendor/symfony/http-kernel/KernelInterface.php +/vendor/symfony/http-kernel/LICENSE +/vendor/symfony/http-kernel/README.md +/vendor/symfony/http-kernel/RebootableInterface.php +/vendor/symfony/http-kernel/TerminableInterface.php +/vendor/symfony/http-kernel/UriSigner.php +/vendor/symfony/mime/Crypto/DkimOptions.php +/vendor/symfony/mime/Crypto/DkimSigner.php +/vendor/symfony/mime/Crypto/SMime.php +/vendor/symfony/mime/Crypto/SMimeEncrypter.php +/vendor/symfony/mime/Crypto/SMimeSigner.php +/vendor/symfony/mime/DependencyInjection/AddMimeTypeGuesserPass.php +/vendor/symfony/mime/Encoder/AddressEncoderInterface.php +/vendor/symfony/mime/Encoder/Base64ContentEncoder.php +/vendor/symfony/mime/Encoder/Base64Encoder.php +/vendor/symfony/mime/Encoder/Base64MimeHeaderEncoder.php +/vendor/symfony/mime/Encoder/ContentEncoderInterface.php +/vendor/symfony/mime/Encoder/EightBitContentEncoder.php +/vendor/symfony/mime/Encoder/EncoderInterface.php +/vendor/symfony/mime/Encoder/IdnAddressEncoder.php +/vendor/symfony/mime/Encoder/MimeHeaderEncoderInterface.php +/vendor/symfony/mime/Encoder/QpContentEncoder.php +/vendor/symfony/mime/Encoder/QpEncoder.php +/vendor/symfony/mime/Encoder/QpMimeHeaderEncoder.php +/vendor/symfony/mime/Encoder/Rfc2231Encoder.php +/vendor/symfony/mime/Exception/AddressEncoderException.php +/vendor/symfony/mime/Exception/ExceptionInterface.php +/vendor/symfony/mime/Exception/InvalidArgumentException.php +/vendor/symfony/mime/Exception/LogicException.php +/vendor/symfony/mime/Exception/RfcComplianceException.php +/vendor/symfony/mime/Exception/RuntimeException.php +/vendor/symfony/mime/Header/AbstractHeader.php +/vendor/symfony/mime/Header/DateHeader.php +/vendor/symfony/mime/Header/HeaderInterface.php +/vendor/symfony/mime/Header/Headers.php +/vendor/symfony/mime/Header/IdentificationHeader.php +/vendor/symfony/mime/Header/MailboxHeader.php +/vendor/symfony/mime/Header/MailboxListHeader.php +/vendor/symfony/mime/Header/ParameterizedHeader.php +/vendor/symfony/mime/Header/PathHeader.php +/vendor/symfony/mime/Header/UnstructuredHeader.php +/vendor/symfony/mime/HtmlToTextConverter/DefaultHtmlToTextConverter.php +/vendor/symfony/mime/HtmlToTextConverter/HtmlToTextConverterInterface.php +/vendor/symfony/mime/HtmlToTextConverter/LeagueHtmlToMarkdownConverter.php +/vendor/symfony/mime/Part/Multipart/AlternativePart.php +/vendor/symfony/mime/Part/Multipart/DigestPart.php +/vendor/symfony/mime/Part/Multipart/FormDataPart.php +/vendor/symfony/mime/Part/Multipart/MixedPart.php +/vendor/symfony/mime/Part/Multipart/RelatedPart.php +/vendor/symfony/mime/Part/AbstractMultipartPart.php +/vendor/symfony/mime/Part/AbstractPart.php +/vendor/symfony/mime/Part/DataPart.php +/vendor/symfony/mime/Part/File.php +/vendor/symfony/mime/Part/MessagePart.php +/vendor/symfony/mime/Part/SMimePart.php +/vendor/symfony/mime/Part/TextPart.php +/vendor/symfony/mime/Resources/bin/update_mime_types.php +/vendor/symfony/mime/Test/Constraint/EmailAddressContains.php +/vendor/symfony/mime/Test/Constraint/EmailAttachmentCount.php +/vendor/symfony/mime/Test/Constraint/EmailHasHeader.php +/vendor/symfony/mime/Test/Constraint/EmailHeaderSame.php +/vendor/symfony/mime/Test/Constraint/EmailHtmlBodyContains.php +/vendor/symfony/mime/Test/Constraint/EmailSubjectContains.php +/vendor/symfony/mime/Test/Constraint/EmailTextBodyContains.php +/vendor/symfony/mime/Address.php +/vendor/symfony/mime/BodyRendererInterface.php +/vendor/symfony/mime/CHANGELOG.md +/vendor/symfony/mime/CharacterStream.php +/vendor/symfony/mime/composer.json +/vendor/symfony/mime/DraftEmail.php +/vendor/symfony/mime/Email.php +/vendor/symfony/mime/FileBinaryMimeTypeGuesser.php +/vendor/symfony/mime/FileinfoMimeTypeGuesser.php +/vendor/symfony/mime/LICENSE +/vendor/symfony/mime/Message.php +/vendor/symfony/mime/MessageConverter.php +/vendor/symfony/mime/MimeTypeGuesserInterface.php +/vendor/symfony/mime/MimeTypes.php +/vendor/symfony/mime/MimeTypesInterface.php +/vendor/symfony/mime/RawMessage.php +/vendor/symfony/mime/README.md +/vendor/symfony/polyfill-ctype/bootstrap.php +/vendor/symfony/polyfill-ctype/bootstrap80.php +/vendor/symfony/polyfill-ctype/composer.json +/vendor/symfony/polyfill-ctype/Ctype.php +/vendor/symfony/polyfill-ctype/LICENSE +/vendor/symfony/polyfill-ctype/README.md +/vendor/symfony/polyfill-intl-idn/Resources/unidata/deviation.php +/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php +/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php +/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php +/vendor/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php +/vendor/symfony/polyfill-intl-idn/Resources/unidata/ignored.php +/vendor/symfony/polyfill-intl-idn/Resources/unidata/mapped.php +/vendor/symfony/polyfill-intl-idn/Resources/unidata/Regex.php +/vendor/symfony/polyfill-intl-idn/Resources/unidata/virama.php +/vendor/symfony/polyfill-intl-idn/bootstrap.php +/vendor/symfony/polyfill-intl-idn/bootstrap80.php +/vendor/symfony/polyfill-intl-idn/composer.json +/vendor/symfony/polyfill-intl-idn/Idn.php +/vendor/symfony/polyfill-intl-idn/Info.php +/vendor/symfony/polyfill-intl-idn/LICENSE +/vendor/symfony/polyfill-intl-idn/README.md +/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php +/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php +/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php +/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php +/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php +/vendor/symfony/polyfill-intl-normalizer/bootstrap.php +/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php +/vendor/symfony/polyfill-intl-normalizer/composer.json +/vendor/symfony/polyfill-intl-normalizer/LICENSE +/vendor/symfony/polyfill-intl-normalizer/Normalizer.php +/vendor/symfony/polyfill-intl-normalizer/README.md +/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php +/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +/vendor/symfony/polyfill-mbstring/bootstrap.php +/vendor/symfony/polyfill-mbstring/bootstrap80.php +/vendor/symfony/polyfill-mbstring/composer.json +/vendor/symfony/polyfill-mbstring/LICENSE +/vendor/symfony/polyfill-mbstring/Mbstring.php +/vendor/symfony/polyfill-mbstring/README.md +/vendor/symfony/polyfill-php72/bootstrap.php +/vendor/symfony/polyfill-php72/composer.json +/vendor/symfony/polyfill-php72/LICENSE +/vendor/symfony/polyfill-php72/Php72.php +/vendor/symfony/polyfill-php72/README.md +/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php +/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php +/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php +/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php +/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php +/vendor/symfony/polyfill-php80/bootstrap.php +/vendor/symfony/polyfill-php80/composer.json +/vendor/symfony/polyfill-php80/LICENSE +/vendor/symfony/polyfill-php80/Php80.php +/vendor/symfony/polyfill-php80/PhpToken.php +/vendor/symfony/polyfill-php80/README.md +/vendor/symfony/polyfill-php83/Resources/stubs/DateError.php +/vendor/symfony/polyfill-php83/Resources/stubs/DateException.php +/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php +/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php +/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php +/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php +/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php +/vendor/symfony/polyfill-php83/Resources/stubs/DateObjectError.php +/vendor/symfony/polyfill-php83/Resources/stubs/DateRangeError.php +/vendor/symfony/polyfill-php83/Resources/stubs/Override.php +/vendor/symfony/polyfill-php83/bootstrap.php +/vendor/symfony/polyfill-php83/bootstrap81.php +/vendor/symfony/polyfill-php83/composer.json +/vendor/symfony/polyfill-php83/LICENSE +/vendor/symfony/polyfill-php83/Php83.php +/vendor/symfony/polyfill-php83/README.md +/vendor/symfony/translation/Catalogue/AbstractOperation.php +/vendor/symfony/translation/Catalogue/MergeOperation.php +/vendor/symfony/translation/Catalogue/OperationInterface.php +/vendor/symfony/translation/Catalogue/TargetOperation.php +/vendor/symfony/translation/Command/TranslationPullCommand.php +/vendor/symfony/translation/Command/TranslationPushCommand.php +/vendor/symfony/translation/Command/TranslationTrait.php +/vendor/symfony/translation/Command/XliffLintCommand.php +/vendor/symfony/translation/DataCollector/TranslationDataCollector.php +/vendor/symfony/translation/DependencyInjection/DataCollectorTranslatorPass.php +/vendor/symfony/translation/DependencyInjection/LoggingTranslatorPass.php +/vendor/symfony/translation/DependencyInjection/TranslationDumperPass.php +/vendor/symfony/translation/DependencyInjection/TranslationExtractorPass.php +/vendor/symfony/translation/DependencyInjection/TranslatorPass.php +/vendor/symfony/translation/DependencyInjection/TranslatorPathsPass.php +/vendor/symfony/translation/Dumper/CsvFileDumper.php +/vendor/symfony/translation/Dumper/DumperInterface.php +/vendor/symfony/translation/Dumper/FileDumper.php +/vendor/symfony/translation/Dumper/IcuResFileDumper.php +/vendor/symfony/translation/Dumper/IniFileDumper.php +/vendor/symfony/translation/Dumper/JsonFileDumper.php +/vendor/symfony/translation/Dumper/MoFileDumper.php +/vendor/symfony/translation/Dumper/PhpFileDumper.php +/vendor/symfony/translation/Dumper/PoFileDumper.php +/vendor/symfony/translation/Dumper/QtFileDumper.php +/vendor/symfony/translation/Dumper/XliffFileDumper.php +/vendor/symfony/translation/Dumper/YamlFileDumper.php +/vendor/symfony/translation/Exception/ExceptionInterface.php +/vendor/symfony/translation/Exception/IncompleteDsnException.php +/vendor/symfony/translation/Exception/InvalidArgumentException.php +/vendor/symfony/translation/Exception/InvalidResourceException.php +/vendor/symfony/translation/Exception/LogicException.php +/vendor/symfony/translation/Exception/MissingRequiredOptionException.php +/vendor/symfony/translation/Exception/NotFoundResourceException.php +/vendor/symfony/translation/Exception/ProviderException.php +/vendor/symfony/translation/Exception/ProviderExceptionInterface.php +/vendor/symfony/translation/Exception/RuntimeException.php +/vendor/symfony/translation/Exception/UnsupportedSchemeException.php +/vendor/symfony/translation/Extractor/Visitor/AbstractVisitor.php +/vendor/symfony/translation/Extractor/Visitor/ConstraintVisitor.php +/vendor/symfony/translation/Extractor/Visitor/TranslatableMessageVisitor.php +/vendor/symfony/translation/Extractor/Visitor/TransMethodVisitor.php +/vendor/symfony/translation/Extractor/AbstractFileExtractor.php +/vendor/symfony/translation/Extractor/ChainExtractor.php +/vendor/symfony/translation/Extractor/ExtractorInterface.php +/vendor/symfony/translation/Extractor/PhpAstExtractor.php +/vendor/symfony/translation/Extractor/PhpExtractor.php +/vendor/symfony/translation/Extractor/PhpStringTokenParser.php +/vendor/symfony/translation/Formatter/IntlFormatter.php +/vendor/symfony/translation/Formatter/IntlFormatterInterface.php +/vendor/symfony/translation/Formatter/MessageFormatter.php +/vendor/symfony/translation/Formatter/MessageFormatterInterface.php +/vendor/symfony/translation/Loader/ArrayLoader.php +/vendor/symfony/translation/Loader/CsvFileLoader.php +/vendor/symfony/translation/Loader/FileLoader.php +/vendor/symfony/translation/Loader/IcuDatFileLoader.php +/vendor/symfony/translation/Loader/IcuResFileLoader.php +/vendor/symfony/translation/Loader/IniFileLoader.php +/vendor/symfony/translation/Loader/JsonFileLoader.php +/vendor/symfony/translation/Loader/LoaderInterface.php +/vendor/symfony/translation/Loader/MoFileLoader.php +/vendor/symfony/translation/Loader/PhpFileLoader.php +/vendor/symfony/translation/Loader/PoFileLoader.php +/vendor/symfony/translation/Loader/QtFileLoader.php +/vendor/symfony/translation/Loader/XliffFileLoader.php +/vendor/symfony/translation/Loader/YamlFileLoader.php +/vendor/symfony/translation/Provider/AbstractProviderFactory.php +/vendor/symfony/translation/Provider/Dsn.php +/vendor/symfony/translation/Provider/FilteringProvider.php +/vendor/symfony/translation/Provider/NullProvider.php +/vendor/symfony/translation/Provider/NullProviderFactory.php +/vendor/symfony/translation/Provider/ProviderFactoryInterface.php +/vendor/symfony/translation/Provider/ProviderInterface.php +/vendor/symfony/translation/Provider/TranslationProviderCollection.php +/vendor/symfony/translation/Provider/TranslationProviderCollectionFactory.php +/vendor/symfony/translation/Reader/TranslationReader.php +/vendor/symfony/translation/Reader/TranslationReaderInterface.php +/vendor/symfony/translation/Resources/bin/translation-status.php +/vendor/symfony/translation/Resources/data/parents.json +/vendor/symfony/translation/Resources/schemas/xliff-core-1.2-transitional.xsd +/vendor/symfony/translation/Resources/schemas/xliff-core-2.0.xsd +/vendor/symfony/translation/Resources/schemas/xml.xsd +/vendor/symfony/translation/Resources/functions.php +/vendor/symfony/translation/Test/ProviderFactoryTestCase.php +/vendor/symfony/translation/Test/ProviderTestCase.php +/vendor/symfony/translation/Util/ArrayConverter.php +/vendor/symfony/translation/Util/XliffUtils.php +/vendor/symfony/translation/Writer/TranslationWriter.php +/vendor/symfony/translation/Writer/TranslationWriterInterface.php +/vendor/symfony/translation/CatalogueMetadataAwareInterface.php +/vendor/symfony/translation/CHANGELOG.md +/vendor/symfony/translation/composer.json +/vendor/symfony/translation/DataCollectorTranslator.php +/vendor/symfony/translation/IdentityTranslator.php +/vendor/symfony/translation/LICENSE +/vendor/symfony/translation/LocaleSwitcher.php +/vendor/symfony/translation/LoggingTranslator.php +/vendor/symfony/translation/MessageCatalogue.php +/vendor/symfony/translation/MessageCatalogueInterface.php +/vendor/symfony/translation/MetadataAwareInterface.php +/vendor/symfony/translation/PseudoLocalizationTranslator.php +/vendor/symfony/translation/README.md +/vendor/symfony/translation/TranslatableMessage.php +/vendor/symfony/translation/Translator.php +/vendor/symfony/translation/TranslatorBag.php +/vendor/symfony/translation/TranslatorBagInterface.php +/vendor/symfony/translation-contracts/Test/TranslatorTest.php +/vendor/symfony/translation-contracts/CHANGELOG.md +/vendor/symfony/translation-contracts/composer.json +/vendor/symfony/translation-contracts/LICENSE +/vendor/symfony/translation-contracts/LocaleAwareInterface.php +/vendor/symfony/translation-contracts/README.md +/vendor/symfony/translation-contracts/TranslatableInterface.php +/vendor/symfony/translation-contracts/TranslatorInterface.php +/vendor/symfony/translation-contracts/TranslatorTrait.php +/vendor/symfony/var-dumper/Caster/AmqpCaster.php +/vendor/symfony/var-dumper/Caster/ArgsStub.php +/vendor/symfony/var-dumper/Caster/Caster.php +/vendor/symfony/var-dumper/Caster/ClassStub.php +/vendor/symfony/var-dumper/Caster/ConstStub.php +/vendor/symfony/var-dumper/Caster/CutArrayStub.php +/vendor/symfony/var-dumper/Caster/CutStub.php +/vendor/symfony/var-dumper/Caster/DateCaster.php +/vendor/symfony/var-dumper/Caster/DoctrineCaster.php +/vendor/symfony/var-dumper/Caster/DOMCaster.php +/vendor/symfony/var-dumper/Caster/DsCaster.php +/vendor/symfony/var-dumper/Caster/DsPairStub.php +/vendor/symfony/var-dumper/Caster/EnumStub.php +/vendor/symfony/var-dumper/Caster/ExceptionCaster.php +/vendor/symfony/var-dumper/Caster/FFICaster.php +/vendor/symfony/var-dumper/Caster/FiberCaster.php +/vendor/symfony/var-dumper/Caster/FrameStub.php +/vendor/symfony/var-dumper/Caster/GmpCaster.php +/vendor/symfony/var-dumper/Caster/ImagineCaster.php +/vendor/symfony/var-dumper/Caster/ImgStub.php +/vendor/symfony/var-dumper/Caster/IntlCaster.php +/vendor/symfony/var-dumper/Caster/LinkStub.php +/vendor/symfony/var-dumper/Caster/MemcachedCaster.php +/vendor/symfony/var-dumper/Caster/MysqliCaster.php +/vendor/symfony/var-dumper/Caster/PdoCaster.php +/vendor/symfony/var-dumper/Caster/PgSqlCaster.php +/vendor/symfony/var-dumper/Caster/ProxyManagerCaster.php +/vendor/symfony/var-dumper/Caster/RdKafkaCaster.php +/vendor/symfony/var-dumper/Caster/RedisCaster.php +/vendor/symfony/var-dumper/Caster/ReflectionCaster.php +/vendor/symfony/var-dumper/Caster/ResourceCaster.php +/vendor/symfony/var-dumper/Caster/ScalarStub.php +/vendor/symfony/var-dumper/Caster/SplCaster.php +/vendor/symfony/var-dumper/Caster/StubCaster.php +/vendor/symfony/var-dumper/Caster/SymfonyCaster.php +/vendor/symfony/var-dumper/Caster/TraceStub.php +/vendor/symfony/var-dumper/Caster/UninitializedStub.php +/vendor/symfony/var-dumper/Caster/UuidCaster.php +/vendor/symfony/var-dumper/Caster/XmlReaderCaster.php +/vendor/symfony/var-dumper/Caster/XmlResourceCaster.php +/vendor/symfony/var-dumper/Cloner/AbstractCloner.php +/vendor/symfony/var-dumper/Cloner/ClonerInterface.php +/vendor/symfony/var-dumper/Cloner/Cursor.php +/vendor/symfony/var-dumper/Cloner/Data.php +/vendor/symfony/var-dumper/Cloner/DumperInterface.php +/vendor/symfony/var-dumper/Cloner/Stub.php +/vendor/symfony/var-dumper/Cloner/VarCloner.php +/vendor/symfony/var-dumper/Command/Descriptor/CliDescriptor.php +/vendor/symfony/var-dumper/Command/Descriptor/DumpDescriptorInterface.php +/vendor/symfony/var-dumper/Command/Descriptor/HtmlDescriptor.php +/vendor/symfony/var-dumper/Command/ServerDumpCommand.php +/vendor/symfony/var-dumper/Dumper/ContextProvider/CliContextProvider.php +/vendor/symfony/var-dumper/Dumper/ContextProvider/ContextProviderInterface.php +/vendor/symfony/var-dumper/Dumper/ContextProvider/RequestContextProvider.php +/vendor/symfony/var-dumper/Dumper/ContextProvider/SourceContextProvider.php +/vendor/symfony/var-dumper/Dumper/AbstractDumper.php +/vendor/symfony/var-dumper/Dumper/CliDumper.php +/vendor/symfony/var-dumper/Dumper/ContextualizedDumper.php +/vendor/symfony/var-dumper/Dumper/DataDumperInterface.php +/vendor/symfony/var-dumper/Dumper/HtmlDumper.php +/vendor/symfony/var-dumper/Dumper/ServerDumper.php +/vendor/symfony/var-dumper/Exception/ThrowingCasterException.php +/vendor/symfony/var-dumper/Resources/bin/var-dump-server +/vendor/symfony/var-dumper/Resources/css/htmlDescriptor.css +/vendor/symfony/var-dumper/Resources/functions/dump.php +/vendor/symfony/var-dumper/Resources/js/htmlDescriptor.js +/vendor/symfony/var-dumper/Server/Connection.php +/vendor/symfony/var-dumper/Server/DumpServer.php +/vendor/symfony/var-dumper/Test/VarDumperTestTrait.php +/vendor/symfony/var-dumper/CHANGELOG.md +/vendor/symfony/var-dumper/composer.json +/vendor/symfony/var-dumper/LICENSE +/vendor/symfony/var-dumper/README.md +/vendor/symfony/var-dumper/VarDumper.php +/vendor/voku/portable-ascii/src/voku/helper/data/ascii_by_languages.php +/vendor/voku/portable-ascii/src/voku/helper/data/ascii_extras_by_languages.php +/vendor/voku/portable-ascii/src/voku/helper/data/ascii_language_max_key.php +/vendor/voku/portable-ascii/src/voku/helper/data/ascii_ord.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0a0.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0a1.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0a2.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0a3.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0a4.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0ac.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0ad.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0ae.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0af.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0b0.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0b1.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0b2.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0b3.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0b4.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0b5.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0b6.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0b7.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0b8.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0b9.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0ba.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0bb.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0bc.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0bd.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0be.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0bf.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0c0.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0c1.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0c2.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0c3.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0c4.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0c5.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0c6.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0c7.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0c8.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0c9.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0ca.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0cb.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0cc.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0cd.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0ce.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0cf.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0d0.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0d1.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0d2.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0d3.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0d4.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0d5.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0d6.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0d7.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0f9.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0fa.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0fb.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0fc.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0fd.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0fe.php +/vendor/voku/portable-ascii/src/voku/helper/data/x0ff.php +/vendor/voku/portable-ascii/src/voku/helper/data/x00a.php +/vendor/voku/portable-ascii/src/voku/helper/data/x00b.php +/vendor/voku/portable-ascii/src/voku/helper/data/x00c.php +/vendor/voku/portable-ascii/src/voku/helper/data/x00d.php +/vendor/voku/portable-ascii/src/voku/helper/data/x00e.php +/vendor/voku/portable-ascii/src/voku/helper/data/x00f.php +/vendor/voku/portable-ascii/src/voku/helper/data/x000.php +/vendor/voku/portable-ascii/src/voku/helper/data/x1d4.php +/vendor/voku/portable-ascii/src/voku/helper/data/x1d5.php +/vendor/voku/portable-ascii/src/voku/helper/data/x1d6.php +/vendor/voku/portable-ascii/src/voku/helper/data/x1d7.php +/vendor/voku/portable-ascii/src/voku/helper/data/x1f1.php +/vendor/voku/portable-ascii/src/voku/helper/data/x01d.php +/vendor/voku/portable-ascii/src/voku/helper/data/x01e.php +/vendor/voku/portable-ascii/src/voku/helper/data/x01f.php +/vendor/voku/portable-ascii/src/voku/helper/data/x001.php +/vendor/voku/portable-ascii/src/voku/helper/data/x02a.php +/vendor/voku/portable-ascii/src/voku/helper/data/x02c.php +/vendor/voku/portable-ascii/src/voku/helper/data/x02e.php +/vendor/voku/portable-ascii/src/voku/helper/data/x02f.php +/vendor/voku/portable-ascii/src/voku/helper/data/x002.php +/vendor/voku/portable-ascii/src/voku/helper/data/x003.php +/vendor/voku/portable-ascii/src/voku/helper/data/x04d.php +/vendor/voku/portable-ascii/src/voku/helper/data/x04e.php +/vendor/voku/portable-ascii/src/voku/helper/data/x04f.php +/vendor/voku/portable-ascii/src/voku/helper/data/x004.php +/vendor/voku/portable-ascii/src/voku/helper/data/x05a.php +/vendor/voku/portable-ascii/src/voku/helper/data/x05b.php +/vendor/voku/portable-ascii/src/voku/helper/data/x05c.php +/vendor/voku/portable-ascii/src/voku/helper/data/x05d.php +/vendor/voku/portable-ascii/src/voku/helper/data/x05e.php +/vendor/voku/portable-ascii/src/voku/helper/data/x05f.php +/vendor/voku/portable-ascii/src/voku/helper/data/x005.php +/vendor/voku/portable-ascii/src/voku/helper/data/x06a.php +/vendor/voku/portable-ascii/src/voku/helper/data/x06b.php +/vendor/voku/portable-ascii/src/voku/helper/data/x06c.php +/vendor/voku/portable-ascii/src/voku/helper/data/x06d.php +/vendor/voku/portable-ascii/src/voku/helper/data/x06e.php +/vendor/voku/portable-ascii/src/voku/helper/data/x06f.php +/vendor/voku/portable-ascii/src/voku/helper/data/x006.php +/vendor/voku/portable-ascii/src/voku/helper/data/x07a.php +/vendor/voku/portable-ascii/src/voku/helper/data/x07b.php +/vendor/voku/portable-ascii/src/voku/helper/data/x07c.php +/vendor/voku/portable-ascii/src/voku/helper/data/x07d.php +/vendor/voku/portable-ascii/src/voku/helper/data/x07e.php +/vendor/voku/portable-ascii/src/voku/helper/data/x07f.php +/vendor/voku/portable-ascii/src/voku/helper/data/x007.php +/vendor/voku/portable-ascii/src/voku/helper/data/x08a.php +/vendor/voku/portable-ascii/src/voku/helper/data/x08b.php +/vendor/voku/portable-ascii/src/voku/helper/data/x08c.php +/vendor/voku/portable-ascii/src/voku/helper/data/x08d.php +/vendor/voku/portable-ascii/src/voku/helper/data/x08e.php +/vendor/voku/portable-ascii/src/voku/helper/data/x08f.php +/vendor/voku/portable-ascii/src/voku/helper/data/x09a.php +/vendor/voku/portable-ascii/src/voku/helper/data/x09b.php +/vendor/voku/portable-ascii/src/voku/helper/data/x09c.php +/vendor/voku/portable-ascii/src/voku/helper/data/x09d.php +/vendor/voku/portable-ascii/src/voku/helper/data/x09e.php +/vendor/voku/portable-ascii/src/voku/helper/data/x09f.php +/vendor/voku/portable-ascii/src/voku/helper/data/x009.php +/vendor/voku/portable-ascii/src/voku/helper/data/x010.php +/vendor/voku/portable-ascii/src/voku/helper/data/x011.php +/vendor/voku/portable-ascii/src/voku/helper/data/x012.php +/vendor/voku/portable-ascii/src/voku/helper/data/x013.php +/vendor/voku/portable-ascii/src/voku/helper/data/x014.php +/vendor/voku/portable-ascii/src/voku/helper/data/x015.php +/vendor/voku/portable-ascii/src/voku/helper/data/x016.php +/vendor/voku/portable-ascii/src/voku/helper/data/x017.php +/vendor/voku/portable-ascii/src/voku/helper/data/x018.php +/vendor/voku/portable-ascii/src/voku/helper/data/x020.php +/vendor/voku/portable-ascii/src/voku/helper/data/x021.php +/vendor/voku/portable-ascii/src/voku/helper/data/x022.php +/vendor/voku/portable-ascii/src/voku/helper/data/x023.php +/vendor/voku/portable-ascii/src/voku/helper/data/x024.php +/vendor/voku/portable-ascii/src/voku/helper/data/x025.php +/vendor/voku/portable-ascii/src/voku/helper/data/x026.php +/vendor/voku/portable-ascii/src/voku/helper/data/x027.php +/vendor/voku/portable-ascii/src/voku/helper/data/x028.php +/vendor/voku/portable-ascii/src/voku/helper/data/x029.php +/vendor/voku/portable-ascii/src/voku/helper/data/x030.php +/vendor/voku/portable-ascii/src/voku/helper/data/x031.php +/vendor/voku/portable-ascii/src/voku/helper/data/x032.php +/vendor/voku/portable-ascii/src/voku/helper/data/x033.php +/vendor/voku/portable-ascii/src/voku/helper/data/x050.php +/vendor/voku/portable-ascii/src/voku/helper/data/x051.php +/vendor/voku/portable-ascii/src/voku/helper/data/x052.php +/vendor/voku/portable-ascii/src/voku/helper/data/x053.php +/vendor/voku/portable-ascii/src/voku/helper/data/x054.php +/vendor/voku/portable-ascii/src/voku/helper/data/x055.php +/vendor/voku/portable-ascii/src/voku/helper/data/x056.php +/vendor/voku/portable-ascii/src/voku/helper/data/x057.php +/vendor/voku/portable-ascii/src/voku/helper/data/x058.php +/vendor/voku/portable-ascii/src/voku/helper/data/x059.php +/vendor/voku/portable-ascii/src/voku/helper/data/x060.php +/vendor/voku/portable-ascii/src/voku/helper/data/x061.php +/vendor/voku/portable-ascii/src/voku/helper/data/x062.php +/vendor/voku/portable-ascii/src/voku/helper/data/x063.php +/vendor/voku/portable-ascii/src/voku/helper/data/x064.php +/vendor/voku/portable-ascii/src/voku/helper/data/x065.php +/vendor/voku/portable-ascii/src/voku/helper/data/x066.php +/vendor/voku/portable-ascii/src/voku/helper/data/x067.php +/vendor/voku/portable-ascii/src/voku/helper/data/x068.php +/vendor/voku/portable-ascii/src/voku/helper/data/x069.php +/vendor/voku/portable-ascii/src/voku/helper/data/x070.php +/vendor/voku/portable-ascii/src/voku/helper/data/x071.php +/vendor/voku/portable-ascii/src/voku/helper/data/x072.php +/vendor/voku/portable-ascii/src/voku/helper/data/x073.php +/vendor/voku/portable-ascii/src/voku/helper/data/x074.php +/vendor/voku/portable-ascii/src/voku/helper/data/x075.php +/vendor/voku/portable-ascii/src/voku/helper/data/x076.php +/vendor/voku/portable-ascii/src/voku/helper/data/x077.php +/vendor/voku/portable-ascii/src/voku/helper/data/x078.php +/vendor/voku/portable-ascii/src/voku/helper/data/x079.php +/vendor/voku/portable-ascii/src/voku/helper/data/x080.php +/vendor/voku/portable-ascii/src/voku/helper/data/x081.php +/vendor/voku/portable-ascii/src/voku/helper/data/x082.php +/vendor/voku/portable-ascii/src/voku/helper/data/x083.php +/vendor/voku/portable-ascii/src/voku/helper/data/x084.php +/vendor/voku/portable-ascii/src/voku/helper/data/x085.php +/vendor/voku/portable-ascii/src/voku/helper/data/x086.php +/vendor/voku/portable-ascii/src/voku/helper/data/x087.php +/vendor/voku/portable-ascii/src/voku/helper/data/x088.php +/vendor/voku/portable-ascii/src/voku/helper/data/x089.php +/vendor/voku/portable-ascii/src/voku/helper/data/x090.php +/vendor/voku/portable-ascii/src/voku/helper/data/x091.php +/vendor/voku/portable-ascii/src/voku/helper/data/x092.php +/vendor/voku/portable-ascii/src/voku/helper/data/x093.php +/vendor/voku/portable-ascii/src/voku/helper/data/x094.php +/vendor/voku/portable-ascii/src/voku/helper/data/x095.php +/vendor/voku/portable-ascii/src/voku/helper/data/x096.php +/vendor/voku/portable-ascii/src/voku/helper/data/x097.php +/vendor/voku/portable-ascii/src/voku/helper/data/x098.php +/vendor/voku/portable-ascii/src/voku/helper/data/x099.php +/vendor/voku/portable-ascii/src/voku/helper/ASCII.php +/vendor/voku/portable-ascii/CHANGELOG.md +/vendor/voku/portable-ascii/composer.json +/vendor/voku/portable-ascii/LICENSE.txt +/vendor/voku/portable-ascii/README.md +/vendor/autoload.php diff --git a/.idea/.gitignore b/.idea/.gitignore index 13566b8..700e66c 100644 --- a/.idea/.gitignore +++ b/.idea/.gitignore @@ -6,3 +6,6 @@ # Datasource local storage ignored files /dataSources/ /dataSources.local.xml +/codeception.xml +/phpspec.xml +/phpunit.xml diff --git a/.idea/crud-generator-laravel.iml b/.idea/crud-generator-laravel.iml index 4005316..e90ac14 100644 --- a/.idea/crud-generator-laravel.iml +++ b/.idea/crud-generator-laravel.iml @@ -3,6 +3,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.idea/php.xml b/.idea/php.xml index a85fe78..84f3a59 100644 --- a/.idea/php.xml +++ b/.idea/php.xml @@ -10,10 +10,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/composer.json b/composer.json index 168e5c7..62b2e41 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,8 @@ ], "require": { - "php": ">=8.0.0" + "php": ">=8.0.0", + "spatie/laravel-html": "^3.4" }, "autoload": { diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..659806e --- /dev/null +++ b/composer.lock @@ -0,0 +1,2766 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "91fd08d0231bb1228ca799b7e6743b6c", + "packages": [ + { + "name": "carbonphp/carbon-doctrine-types", + "version": "3.1.0", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git", + "reference": "a31d3358a2a5d6ae947df1691d1f321418a5f3d5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/a31d3358a2a5d6ae947df1691d1f321418a5f3d5", + "reference": "a31d3358a2a5d6ae947df1691d1f321418a5f3d5", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "conflict": { + "doctrine/dbal": "<4.0.0 || >=5.0.0" + }, + "require-dev": { + "doctrine/dbal": "^4.0.0", + "nesbot/carbon": "^2.71.0 || ^3.0.0", + "phpunit/phpunit": "^10.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "KyleKatarn", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Types to use Carbon in Doctrine", + "keywords": [ + "carbon", + "date", + "datetime", + "doctrine", + "time" + ], + "support": { + "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.1.0" + }, + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2023-12-10T15:33:53+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.9", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/2930cd5ef353871c821d5c43ed030d39ac8cfe65", + "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.9" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2024-01-15T18:05:13+00:00" + }, + { + "name": "fruitcake/php-cors", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/fruitcake/php-cors.git", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b", + "shasum": "" + }, + "require": { + "php": "^7.4|^8.0", + "symfony/http-foundation": "^4.4|^5.4|^6|^7" + }, + "require-dev": { + "phpstan/phpstan": "^1.4", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "Fruitcake\\Cors\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fruitcake", + "homepage": "https://fruitcake.nl" + }, + { + "name": "Barryvdh", + "email": "barryvdh@gmail.com" + } + ], + "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", + "homepage": "https://github.com/fruitcake/php-cors", + "keywords": [ + "cors", + "laravel", + "symfony" + ], + "support": { + "issues": "https://github.com/fruitcake/php-cors/issues", + "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2023-10-12T05:21:21+00:00" + }, + { + "name": "guzzlehttp/uri-template", + "version": "v1.0.3", + "source": { + "type": "git", + "url": "https://github.com/guzzle/uri-template.git", + "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c", + "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "uri-template/tests": "1.0.0" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\UriTemplate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + } + ], + "description": "A polyfill class for uri_template of PHP", + "keywords": [ + "guzzlehttp", + "uri-template" + ], + "support": { + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", + "type": "tidelift" + } + ], + "time": "2023-12-03T19:50:20+00:00" + }, + { + "name": "illuminate/collections", + "version": "v10.41.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/collections.git", + "reference": "82025fd7ac761cc50d5dbd9f9532ebf066821858" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/collections/zipball/82025fd7ac761cc50d5dbd9f9532ebf066821858", + "reference": "82025fd7ac761cc50d5dbd9f9532ebf066821858", + "shasum": "" + }, + "require": { + "illuminate/conditionable": "^10.0", + "illuminate/contracts": "^10.0", + "illuminate/macroable": "^10.0", + "php": "^8.1" + }, + "suggest": { + "symfony/var-dumper": "Required to use the dump method (^6.2)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "files": [ + "helpers.php" + ], + "psr-4": { + "Illuminate\\Support\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Collections package.", + "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-01-01T15:17:18+00:00" + }, + { + "name": "illuminate/conditionable", + "version": "v10.41.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/conditionable.git", + "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/conditionable/zipball/d0958e4741fc9d6f516a552060fd1b829a85e009", + "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009", + "shasum": "" + }, + "require": { + "php": "^8.0.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Support\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Conditionable package.", + "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2023-02-03T08:06:17+00:00" + }, + { + "name": "illuminate/contracts", + "version": "v10.41.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/contracts.git", + "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/contracts/zipball/8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac", + "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac", + "shasum": "" + }, + "require": { + "php": "^8.1", + "psr/container": "^1.1.1|^2.0.1", + "psr/simple-cache": "^1.0|^2.0|^3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Contracts\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Contracts package.", + "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-01-15T18:52:32+00:00" + }, + { + "name": "illuminate/filesystem", + "version": "v10.41.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/filesystem.git", + "reference": "c765c61cf1308d4f5f3dc3c03ed5f920953b795c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/filesystem/zipball/c765c61cf1308d4f5f3dc3c03ed5f920953b795c", + "reference": "c765c61cf1308d4f5f3dc3c03ed5f920953b795c", + "shasum": "" + }, + "require": { + "illuminate/collections": "^10.0", + "illuminate/contracts": "^10.0", + "illuminate/macroable": "^10.0", + "illuminate/support": "^10.0", + "php": "^8.1", + "symfony/finder": "^6.2" + }, + "suggest": { + "ext-fileinfo": "Required to use the Filesystem class.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-hash": "Required to use the Filesystem class.", + "illuminate/http": "Required for handling uploaded files (^7.0).", + "league/flysystem": "Required to use the Flysystem local driver (^3.0.16).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).", + "symfony/mime": "Required to enable support for guessing extensions (^6.2)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "files": [ + "functions.php" + ], + "psr-4": { + "Illuminate\\Filesystem\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Filesystem package.", + "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2023-12-21T15:30:21+00:00" + }, + { + "name": "illuminate/http", + "version": "v10.41.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/http.git", + "reference": "2e07f30f8ad387a9714446355ecc91dd9a1a95cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/http/zipball/2e07f30f8ad387a9714446355ecc91dd9a1a95cf", + "reference": "2e07f30f8ad387a9714446355ecc91dd9a1a95cf", + "shasum": "" + }, + "require": { + "ext-filter": "*", + "fruitcake/php-cors": "^1.2", + "guzzlehttp/uri-template": "^1.0", + "illuminate/collections": "^10.0", + "illuminate/macroable": "^10.0", + "illuminate/session": "^10.0", + "illuminate/support": "^10.0", + "php": "^8.1", + "symfony/http-foundation": "^6.4", + "symfony/http-kernel": "^6.2", + "symfony/mime": "^6.2" + }, + "suggest": { + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "guzzlehttp/guzzle": "Required to use the HTTP Client (^7.5)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Http\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Http package.", + "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-01-01T15:24:30+00:00" + }, + { + "name": "illuminate/macroable", + "version": "v10.41.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/macroable.git", + "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27", + "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Support\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Macroable package.", + "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2023-06-05T12:46:42+00:00" + }, + { + "name": "illuminate/session", + "version": "v10.41.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/session.git", + "reference": "a095707b83327e27ba292c9c4d2413888b1f517c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/session/zipball/a095707b83327e27ba292c9c4d2413888b1f517c", + "reference": "a095707b83327e27ba292c9c4d2413888b1f517c", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-session": "*", + "illuminate/collections": "^10.0", + "illuminate/contracts": "^10.0", + "illuminate/filesystem": "^10.0", + "illuminate/support": "^10.0", + "php": "^8.1", + "symfony/finder": "^6.2", + "symfony/http-foundation": "^6.4" + }, + "suggest": { + "illuminate/console": "Required to use the session:table command (^10.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Session\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Session package.", + "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2023-12-29T21:53:12+00:00" + }, + { + "name": "illuminate/support", + "version": "v10.41.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/support.git", + "reference": "1355b7d28ebb802e95bffcb27417862961382c52" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/support/zipball/1355b7d28ebb802e95bffcb27417862961382c52", + "reference": "1355b7d28ebb802e95bffcb27417862961382c52", + "shasum": "" + }, + "require": { + "doctrine/inflector": "^2.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-mbstring": "*", + "illuminate/collections": "^10.0", + "illuminate/conditionable": "^10.0", + "illuminate/contracts": "^10.0", + "illuminate/macroable": "^10.0", + "nesbot/carbon": "^2.67", + "php": "^8.1", + "voku/portable-ascii": "^2.0" + }, + "conflict": { + "tightenco/collect": "<5.5.33" + }, + "suggest": { + "illuminate/filesystem": "Required to use the composer class (^10.0).", + "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).", + "ramsey/uuid": "Required to use Str::uuid() (^4.7).", + "symfony/process": "Required to use the composer class (^6.2).", + "symfony/uid": "Required to use Str::ulid() (^6.2).", + "symfony/var-dumper": "Required to use the dd function (^6.2).", + "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "files": [ + "helpers.php" + ], + "psr-4": { + "Illuminate\\Support\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Support package.", + "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-01-15T18:53:10+00:00" + }, + { + "name": "nesbot/carbon", + "version": "2.72.1", + "source": { + "type": "git", + "url": "https://github.com/briannesbitt/Carbon.git", + "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78", + "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "*", + "ext-json": "*", + "php": "^7.1.8 || ^8.0", + "psr/clock": "^1.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16", + "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0", + "doctrine/orm": "^2.7 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.0", + "kylekatarnls/multi-tester": "^2.0", + "ondrejmirtes/better-reflection": "*", + "phpmd/phpmd": "^2.9", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12.99 || ^1.7.14", + "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", + "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", + "squizlabs/php_codesniffer": "^3.4" + }, + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev", + "dev-master": "2.x-dev" + }, + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Carbon\\": "src/Carbon/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "https://markido.com" + }, + { + "name": "kylekatarnls", + "homepage": "https://github.com/kylekatarnls" + } + ], + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "https://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ], + "support": { + "docs": "https://carbon.nesbot.com/docs", + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, + "funding": [ + { + "url": "https://github.com/sponsors/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon#sponsor", + "type": "opencollective" + }, + { + "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", + "type": "tidelift" + } + ], + "time": "2023-12-08T23:47:49+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", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/log", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.0" + }, + "time": "2021-07-14T16:46:02+00:00" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "time": "2021-10-29T13:26:27+00:00" + }, + { + "name": "spatie/laravel-html", + "version": "3.4.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-html.git", + "reference": "20bd3185ae085b2eced952bc5191cb8eb922250e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-html/zipball/20bd3185ae085b2eced952bc5191cb8eb922250e", + "reference": "20bd3185ae085b2eced952bc5191cb8eb922250e", + "shasum": "" + }, + "require": { + "illuminate/http": "^9.0|^8.0|^10.0", + "illuminate/support": "^9.0|^8.0|^10.0", + "php": "^8.0" + }, + "require-dev": { + "mockery/mockery": "^1.3", + "orchestra/testbench": "^7.0|^6.23|^8.0", + "pestphp/pest": "^1.22" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Spatie\\Html\\HtmlServiceProvider" + ], + "aliases": { + "Html": "Spatie\\Html\\Facades\\Html" + } + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\Html\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Sebastian De Deyne", + "email": "sebastian@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + }, + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "A fluent html builder", + "homepage": "https://github.com/spatie/laravel-html", + "keywords": [ + "html", + "spatie" + ], + "support": { + "source": "https://github.com/spatie/laravel-html/tree/3.4.0" + }, + "funding": [ + { + "url": "https://spatie.be/open-source/support-us", + "type": "custom" + } + ], + "time": "2024-01-05T16:35:10+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "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": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v7.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "80b1258be1b84c12a345d0ec3881bbf2e5270cc2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/80b1258be1b84c12a345d0ec3881bbf2e5270cc2", + "reference": "80b1258be1b84c12a345d0ec3881bbf2e5270cc2", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^6.4|^7.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v7.0.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": "2023-10-20T16:35:23+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v7.0.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "098b62ae81fdd6cbf941f355059f617db28f4f9a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/098b62ae81fdd6cbf941f355059f617db28f4f9a", + "reference": "098b62ae81fdd6cbf941f355059f617db28f4f9a", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.2" + }, + "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": "2023-12-27T22:24:19+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/finder", + "version": "v6.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "11d736e97f116ac375a81f96e662911a34cd50ce" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce", + "reference": "11d736e97f116ac375a81f96e662911a34cd50ce", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "symfony/filesystem": "^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v6.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-10-31T17:30:12+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v6.4.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "172d807f9ef3fc3fbed8377cc57c20d389269271" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/172d807f9ef3fc3fbed8377cc57c20d389269271", + "reference": "172d807f9ef3fc3fbed8377cc57c20d389269271", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "symfony/cache": "<6.3" + }, + "require-dev": { + "doctrine/dbal": "^2.13.1|^3|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.3|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0", + "symfony/mime": "^5.4|^6.0|^7.0", + "symfony/rate-limiter": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v6.4.2" + }, + "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": "2023-12-27T22:16:42+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v6.4.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "13e8387320b5942d0dc408440c888e2d526efef4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/13e8387320b5942d0dc408440c888e2d526efef4", + "reference": "13e8387320b5942d0dc408440c888e2d526efef4", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<5.4", + "symfony/cache": "<5.4", + "symfony/config": "<6.1", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<5.4", + "symfony/form": "<5.4", + "symfony/http-client": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<5.4", + "symfony/messenger": "<5.4", + "symfony/translation": "<5.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<5.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.3", + "twig/twig": "<2.13" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^5.4|^6.0|^7.0", + "symfony/clock": "^6.2|^7.0", + "symfony/config": "^6.1|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/css-selector": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/property-access": "^5.4.5|^6.0.5|^7.0", + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.3|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/translation": "^5.4|^6.0|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^5.4|^6.0|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-exporter": "^6.2|^7.0", + "twig/twig": "^2.13|^3.0.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v6.4.2" + }, + "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": "2023-12-30T15:31:44+00:00" + }, + { + "name": "symfony/mime", + "version": "v6.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/ca4f58b2ef4baa8f6cecbeca2573f88cd577d205", + "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<5.4", + "symfony/serializer": "<6.3.2" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/property-access": "^5.4|^6.0|^7.0", + "symfony/property-info": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.3.2|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v6.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-10-17T11:49:05+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.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": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.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": "2023-01-26T09:30:37+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "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 for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.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": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "42292d99c55abe617799667f454222c54c60e229" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", + "reference": "42292d99c55abe617799667f454222c54c60e229", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "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 for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.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": "2023-07-28T09:04:16+00:00" + }, + { + "name": "symfony/polyfill-php72", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179", + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } + }, + "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 7.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.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": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.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": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-php83", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "symfony/polyfill-php80": "^1.14" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php83\\": "" + }, + "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.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.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": "2023-08-16T06:22:46+00:00" + }, + { + "name": "symfony/translation", + "version": "v6.4.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "a2ab2ec1a462e53016de8e8d5e8912bfd62ea681" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/a2ab2ec1a462e53016de8e8d5e8912bfd62ea681", + "reference": "a2ab2ec1a462e53016de8e8d5e8912bfd62ea681", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "symfony/config": "<5.4", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<5.4", + "symfony/yaml": "<5.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^4.13", + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/intl": "^5.4|^6.0|^7.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v6.4.2" + }, + "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": "2023-12-18T09:25:29+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.4.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "06450585bf65e978026bda220cdebca3f867fde7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7", + "reference": "06450585bf65e978026bda220cdebca3f867fde7", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1" + }, + "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": "2023-12-26T14:02:43+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v7.0.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "5f6f1a527002068f6d40fda068399220eabebf71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/5f6f1a527002068f6d40fda068399220eabebf71", + "reference": "5f6f1a527002068f6d40fda068399220eabebf71", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/uid": "^6.4|^7.0", + "twig/twig": "^3.0.4" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "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": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v7.0.2" + }, + "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": "2023-12-28T19:18:20+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "b56450eed252f6801410d810c8e1727224ae0743" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", + "reference": "b56450eed252f6801410d810c8e1727224ae0743", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "http://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/2.0.1" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2022-03-08T17:03:00+00:00" + } + ], + "packages-dev": [], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": { + "php": ">=8.0.0" + }, + "platform-dev": [], + "plugin-api-version": "2.2.0" +} diff --git a/src/Extension/HtmlExtended.php b/src/Extension/HtmlExtended.php new file mode 100644 index 0000000..7e1d115 --- /dev/null +++ b/src/Extension/HtmlExtended.php @@ -0,0 +1,17 @@ +text($args); + } + public function integer(...$args): Html\Elements\Input + { + return html()->text($args); + } +} \ No newline at end of file diff --git a/src/stubs/default-theme/create.stub b/src/stubs/default-theme/create.stub index 2f92b2d..b3f9735 100644 --- a/src/stubs/default-theme/create.stub +++ b/src/stubs/default-theme/create.stub @@ -13,7 +13,7 @@ {{ html()->form('PUT', 'DummyVariable.store' )->open() }} DummyFormCreate {{ html()->submit('Create') }} - {{ html()->form->close() }} + {{ html()->form()->close() }} @stop diff --git a/src/stubs/default-theme/edit.stub b/src/stubs/default-theme/edit.stub index dfdc451..973e4d0 100644 --- a/src/stubs/default-theme/edit.stub +++ b/src/stubs/default-theme/edit.stub @@ -13,5 +13,5 @@ {{ html()->form('PUT', 'DummyVariable.update'.DummyCreateVariableSing$->id )->open() }} DummyFormCreate {{ html()->submit('Edit') }} - {{ html()->form->close() }} + {{ html()->form()->close() }} @stop From d708fc41ed64abc26a9e3ae89e0538c2ca3cd65e Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 11:16:35 -0500 Subject: [PATCH 05/18] Spatie has the label params swapped from laravelcollective --- src/Services/MakeViewsService.php | 4 ++-- src/stubs/commentable/views/comment-block.stub | 2 +- tests/Console/resultsOk/create.blade.php | 4 ++-- tests/Console/resultsOk/edit.blade.php | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Services/MakeViewsService.php b/src/Services/MakeViewsService.php index aefdc65..f9d7a5d 100644 --- a/src/Services/MakeViewsService.php +++ b/src/Services/MakeViewsService.php @@ -126,7 +126,7 @@ public function findAndReplaceCreateViewPlaceholderColumns($columns, $templateVi // our placeholders $formCreate .=str_repeat("\t", 2).'
'."\n"; - $formCreate .=str_repeat("\t", 3).'{{ html()->label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; + $formCreate .=str_repeat("\t", 3).'{{ html()->label(\''.ucfirst(trim($column)).'\', \''.trim($column).'\', [\'class\'=>\'form-label\']) }}'."\n"; $formCreate .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; $formCreate .=str_repeat("\t", 2).'
'."\n"; } @@ -160,7 +160,7 @@ public function findAndReplaceEditViewPlaceholderColumns($columns, $templateView // our placeholders $formEdit .=str_repeat("\t", 2).'
'."\n"; - $formEdit .=str_repeat("\t", 3).'{{ html()->label(\''.trim($column).'\', \''.ucfirst(trim($column)).'\', [\'class\'=>\'form-label\']) }}'."\n"; + $formEdit .=str_repeat("\t", 3).'{{ html()->label(\''.ucfirst(trim($column)).'\', \''.trim($column).'\', [\'class\'=>\'form-label\']) }}'."\n"; $formEdit .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; $formEdit .=str_repeat("\t", 2).'
'."\n"; } diff --git a/src/stubs/commentable/views/comment-block.stub b/src/stubs/commentable/views/comment-block.stub index abd1499..2301976 100644 --- a/src/stubs/commentable/views/comment-block.stub +++ b/src/stubs/commentable/views/comment-block.stub @@ -1,6 +1,6 @@ {!! html()->form()->open('{{route_comment}}.store'.{parent_variable}}->id) !!}
- {{ html()->label('comment', 'Comment') }} + {{ html()->label('Comment', 'comment') }} {{ html()->textarea()('comment') }}
{{ html()->submit('Create') }} diff --git a/tests/Console/resultsOk/create.blade.php b/tests/Console/resultsOk/create.blade.php index b0202cb..faa7eff 100644 --- a/tests/Console/resultsOk/create.blade.php +++ b/tests/Console/resultsOk/create.blade.php @@ -13,11 +13,11 @@ {!! html()->form()->open('posts.store') !!}
- {{ html()->label('title', 'Title') }} + {{ html()->label('Title', 'title') }} {{ html()->text('title', null) }}
- {{ html()->label('url', 'Url') }} + {{ html()->label('Url', 'url') }} {{ html()->text('url', null) }}
diff --git a/tests/Console/resultsOk/edit.blade.php b/tests/Console/resultsOk/edit.blade.php index e62b9c6..d378d28 100644 --- a/tests/Console/resultsOk/edit.blade.php +++ b/tests/Console/resultsOk/edit.blade.php @@ -13,11 +13,11 @@ {{ html()->form()->modelform($post, 'PUT', array('route' => array('posts.update', $post->id))) }}
- {{ html()->label('title', 'Title') }} + {{ html()->label('Title', 'title') }} {{ html()->text('title', null) }}
- {{ html()->label('url', 'Url') }} + {{ html()->label('Url', 'url') }} {{ html()->text('url', null) }}
From b3a3f1c5d554c00447afbca3238a75bd3cf42c71 Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 11:22:34 -0500 Subject: [PATCH 06/18] Extending some html types from sql type --- src/Services/MakeViewsService.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/Services/MakeViewsService.php b/src/Services/MakeViewsService.php index f9d7a5d..132b372 100644 --- a/src/Services/MakeViewsService.php +++ b/src/Services/MakeViewsService.php @@ -160,8 +160,8 @@ public function findAndReplaceEditViewPlaceholderColumns($columns, $templateView // our placeholders $formEdit .=str_repeat("\t", 2).'
'."\n"; - $formEdit .=str_repeat("\t", 3).'{{ html()->label(\''.ucfirst(trim($column)).'\', \''.trim($column).'\', [\'class\'=>\'form-label\']) }}'."\n"; - $formEdit .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; + $formEdit .=str_repeat("\t", 3).'{{ html()->label(\''.ucfirst(trim($column)).'\', \''.trim($column).'\') }}'."\n"; + $formEdit .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\''.trim($column).'\', null }}'."\n"; $formEdit .=str_repeat("\t", 2).'
'."\n"; } @@ -195,7 +195,10 @@ private function getHtmlType($sql_type) [ 'string' => 'text', 'text' => 'textarea', - 'integer' => 'text' + 'integer' => 'number', + 'float' => 'number', + 'double' => 'number', + 'bool' => 'checkbox' ]; return (isset($conversion[$sql_type]) ? $conversion[$sql_type] : 'string'); } From ee9d29d866f8123474545664c4fb288cf5abfe35 Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 11:56:30 -0500 Subject: [PATCH 07/18] Writing code that writes code is always a trip :) --- src/Extension/HtmlExtended.php | 17 ----------------- src/Services/MakeViewsService.php | 10 ++++++++-- src/stubs/commentable/views/comment-block.stub | 4 ++-- src/stubs/default-theme/index.stub | 2 +- .../default-theme/livewire/index-datatable.stub | 2 +- tests/Console/resultsOk/create.blade.php | 2 +- tests/Console/resultsOk/edit.blade.php | 2 +- tests/Console/resultsOk/index.blade.php | 2 +- .../Console/resultsOk/post-datatable.blade.php | 2 +- 9 files changed, 16 insertions(+), 27 deletions(-) delete mode 100644 src/Extension/HtmlExtended.php diff --git a/src/Extension/HtmlExtended.php b/src/Extension/HtmlExtended.php deleted file mode 100644 index 7e1d115..0000000 --- a/src/Extension/HtmlExtended.php +++ /dev/null @@ -1,17 +0,0 @@ -text($args); - } - public function integer(...$args): Html\Elements\Input - { - return html()->text($args); - } -} \ No newline at end of file diff --git a/src/Services/MakeViewsService.php b/src/Services/MakeViewsService.php index 132b372..50a749f 100644 --- a/src/Services/MakeViewsService.php +++ b/src/Services/MakeViewsService.php @@ -123,11 +123,16 @@ public function findAndReplaceCreateViewPlaceholderColumns($columns, $templateVi $sql_type = (count($type)==2) ? $type[1] : 'string'; $column = $type[0]; $typeHtml = $this->getHtmlType($sql_type); + $number_types = ['decimal', 'float', 'double']; // our placeholders $formCreate .=str_repeat("\t", 2).'
'."\n"; - $formCreate .=str_repeat("\t", 3).'{{ html()->label(\''.ucfirst(trim($column)).'\', \''.trim($column).'\', [\'class\'=>\'form-label\']) }}'."\n"; - $formCreate .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\''.trim($column).'\', null, array(\'class\' => \'form-control\')) }}'."\n"; + $formCreate .=str_repeat("\t", 3).'{{ html()->label(\''.ucfirst(trim($column)).'\', \''.trim($column).'\')->class(\'form-label\') }}'."\n"; + + $formCreate .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\''.trim($column).'\', null)->class(\'form-control\') }}'; + if(in_array($sql_type, $number_types)) + $formCreate .="->step(.000001)"; + $formCreate .="\n"; $formCreate .=str_repeat("\t", 2).'
'."\n"; } @@ -198,6 +203,7 @@ private function getHtmlType($sql_type) 'integer' => 'number', 'float' => 'number', 'double' => 'number', + 'decimal' => 'number', 'bool' => 'checkbox' ]; return (isset($conversion[$sql_type]) ? $conversion[$sql_type] : 'string'); diff --git a/src/stubs/commentable/views/comment-block.stub b/src/stubs/commentable/views/comment-block.stub index 2301976..23bbf45 100644 --- a/src/stubs/commentable/views/comment-block.stub +++ b/src/stubs/commentable/views/comment-block.stub @@ -1,4 +1,4 @@ -{!! html()->form()->open('{{route_comment}}.store'.{parent_variable}}->id) !!} +{!! html()->form(route('{{route_comment}}.store', {parent_variable}}->id))->open() !!}
{{ html()->label('Comment', 'comment') }} {{ html()->textarea()('comment') }} @@ -10,7 +10,7 @@ @foreach({{parent_variable}}->{{name_relationship}} as $comment)
- {!! html()->form()->open('method' => 'DELETE', '{{route_comment}}.destroy'.{{comment_variable}}->id]) !!} + {!! html()->form('DELETE', route('{{route_comment}}.destroy', {{comment_variable}}->id))->open() !!} {!! html()->submit('❌') !!} {!! html()->form()->close() !!}
diff --git a/src/stubs/default-theme/index.stub b/src/stubs/default-theme/index.stub index d46f7fb..2c66353 100644 --- a/src/stubs/default-theme/index.stub +++ b/src/stubs/default-theme/index.stub @@ -22,7 +22,7 @@ DummyIndexTable
Show Edit - {!! html()->form()->open('DELETE', 'DummyVariable.destroy'.DummyCreateVariableSing$->id) !!} + {!! html()->form('DELETE', route('DummyVariable.destroy', DummyCreateVariableSing$->id))->open() !!} {!! html()->submit('Delete') !!} {!! html()->form()->close() !!}
diff --git a/src/stubs/default-theme/livewire/index-datatable.stub b/src/stubs/default-theme/livewire/index-datatable.stub index 53576d6..b2efdfc 100644 --- a/src/stubs/default-theme/livewire/index-datatable.stub +++ b/src/stubs/default-theme/livewire/index-datatable.stub @@ -25,7 +25,7 @@ DummyIndexTable
Show Edit - {!! html()->form()->open('DELETE', 'DummyVariable.destroy'.DummyCreateVariableSing$->id) !!} + {!! html()->form('DELETE', route('DummyVariable.destroy', DummyCreateVariableSing$->id))->open() !!} {!! html()->submit('Delete') !!} {!! html()->form()->close() !!}
diff --git a/tests/Console/resultsOk/create.blade.php b/tests/Console/resultsOk/create.blade.php index faa7eff..0d7fd9f 100644 --- a/tests/Console/resultsOk/create.blade.php +++ b/tests/Console/resultsOk/create.blade.php @@ -10,7 +10,7 @@
@endif - {!! html()->form()->open('posts.store') !!} + {!! html()->form('POST', route('posts.store'))->open() !!}
{{ html()->label('Title', 'title') }} diff --git a/tests/Console/resultsOk/edit.blade.php b/tests/Console/resultsOk/edit.blade.php index d378d28..d1ee39e 100644 --- a/tests/Console/resultsOk/edit.blade.php +++ b/tests/Console/resultsOk/edit.blade.php @@ -10,7 +10,7 @@
@endif - {{ html()->form()->modelform($post, 'PUT', array('route' => array('posts.update', $post->id))) }} + {{ html()->form()->modelform($post, 'PUT', route('posts.update', $post->id)) }}
{{ html()->label('Title', 'title') }} diff --git a/tests/Console/resultsOk/index.blade.php b/tests/Console/resultsOk/index.blade.php index c854cdb..297d39d 100644 --- a/tests/Console/resultsOk/index.blade.php +++ b/tests/Console/resultsOk/index.blade.php @@ -26,7 +26,7 @@
Show Edit - {!! html()->form()->open('DELETE',['posts.destroy', $post->id]) !!} + {!! html()->form('DELETE', route('posts.destroy', $post->id))->open() !!} {!! html()->submit('Delete') !!} {!! html()->form()->close() !!}
diff --git a/tests/Console/resultsOk/post-datatable.blade.php b/tests/Console/resultsOk/post-datatable.blade.php index c4c202b..8f4a475 100644 --- a/tests/Console/resultsOk/post-datatable.blade.php +++ b/tests/Console/resultsOk/post-datatable.blade.php @@ -29,7 +29,7 @@
Show Edit - {!! html()->form()->open('DELETE',['posts.destroy', $post->id]) !!} + {!! html()->form('DELETE',route('posts.destroy', $post->id))->open() !!} {!! html()->form()->submit('Delete') !!} {!! html()->form()->close() !!}
From c722c2389331342abc9829e48c6b46209cccd9a8 Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 12:13:44 -0500 Subject: [PATCH 08/18] Same thing about writing code that writes code. --- src/Services/MakeViewsService.php | 6 +++--- src/stubs/default-theme/index.stub | 13 ++++--------- .../default-theme/livewire/index-datatable.stub | 4 ++-- 3 files changed, 9 insertions(+), 14 deletions(-) diff --git a/src/Services/MakeViewsService.php b/src/Services/MakeViewsService.php index 50a749f..4037ed8 100644 --- a/src/Services/MakeViewsService.php +++ b/src/Services/MakeViewsService.php @@ -78,7 +78,7 @@ public function findAndReplaceIndexViewPlaceholderColumns($columns, $templateVie $column = $type[0]; // our placeholders - $thIndex .=str_repeat("\t", 4)."".trim($column)."\n"; + $thIndex .=str_repeat("\t", 4)."".trim($column)."\n"; if($column == $columnInSearch) $indexView .=str_repeat("\t", 5).'{!! $this->search ? $this->highlightTitle(DummyCreateVariableSing$->'.$columnInSearch.') : DummyCreateVariableSing$->'.$columnInSearch.' !!}'."\n"; @@ -129,10 +129,10 @@ public function findAndReplaceCreateViewPlaceholderColumns($columns, $templateVi $formCreate .=str_repeat("\t", 2).'
'."\n"; $formCreate .=str_repeat("\t", 3).'{{ html()->label(\''.ucfirst(trim($column)).'\', \''.trim($column).'\')->class(\'form-label\') }}'."\n"; - $formCreate .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\''.trim($column).'\', null)->class(\'form-control\') }}'; + $formCreate .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\''.trim($column).'\', null)->class(\'form-control\')'; if(in_array($sql_type, $number_types)) $formCreate .="->step(.000001)"; - $formCreate .="\n"; + $formCreate .=" }}\n"; $formCreate .=str_repeat("\t", 2).'
'."\n"; } diff --git a/src/stubs/default-theme/index.stub b/src/stubs/default-theme/index.stub index 2c66353..0a632df 100644 --- a/src/stubs/default-theme/index.stub +++ b/src/stubs/default-theme/index.stub @@ -1,23 +1,19 @@ @extends('DummyExtends') - @section('DummySection') - - - -DummyHeaderTable - + + DummyHeaderTable + @foreach(DummyCreateVariable$ as DummyCreateVariableSing$) - -DummyIndexTable + DummyIndexTable
idActionidAction
{{ DummyCreateVariableSing$->id }}
Show @@ -32,5 +28,4 @@ DummyIndexTable @endforeach
- @stop diff --git a/src/stubs/default-theme/livewire/index-datatable.stub b/src/stubs/default-theme/livewire/index-datatable.stub index b2efdfc..4f7fb12 100644 --- a/src/stubs/default-theme/livewire/index-datatable.stub +++ b/src/stubs/default-theme/livewire/index-datatable.stub @@ -12,7 +12,7 @@ id -DummyHeaderTable + DummyHeaderTable Action @@ -20,7 +20,7 @@ DummyHeaderTable @foreach(DummyCreateVariable$ as DummyCreateVariableSing$) {{ DummyCreateVariableSing$->id }} -DummyIndexTable + DummyIndexTable
Show From 199061d54753f06fd8bb5287e930655eefba23c5 Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 12:16:41 -0500 Subject: [PATCH 09/18] I was sending step wrong. My bad. --- src/Services/MakeViewsService.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Services/MakeViewsService.php b/src/Services/MakeViewsService.php index 4037ed8..792c9e9 100644 --- a/src/Services/MakeViewsService.php +++ b/src/Services/MakeViewsService.php @@ -129,10 +129,10 @@ public function findAndReplaceCreateViewPlaceholderColumns($columns, $templateVi $formCreate .=str_repeat("\t", 2).'
'."\n"; $formCreate .=str_repeat("\t", 3).'{{ html()->label(\''.ucfirst(trim($column)).'\', \''.trim($column).'\')->class(\'form-label\') }}'."\n"; - $formCreate .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\''.trim($column).'\', null)->class(\'form-control\')'; + $formCreate .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\'name: '.trim($column).'\''; if(in_array($sql_type, $number_types)) - $formCreate .="->step(.000001)"; - $formCreate .=" }}\n"; + $formCreate .="step: .000001"; + $formCreate .=")->class(\'form-control\') }}\n"; $formCreate .=str_repeat("\t", 2).'
'."\n"; } From 2a4f083fa4735a233bed2c0daed407bea4682e6e Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 12:17:50 -0500 Subject: [PATCH 10/18] Didn't need to escape the ' anymore, should review what strings are used and how to avoid some necessary escape sequences. --- src/Services/MakeViewsService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/MakeViewsService.php b/src/Services/MakeViewsService.php index 792c9e9..de1490d 100644 --- a/src/Services/MakeViewsService.php +++ b/src/Services/MakeViewsService.php @@ -132,7 +132,7 @@ public function findAndReplaceCreateViewPlaceholderColumns($columns, $templateVi $formCreate .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\'name: '.trim($column).'\''; if(in_array($sql_type, $number_types)) $formCreate .="step: .000001"; - $formCreate .=")->class(\'form-control\') }}\n"; + $formCreate .=")->class('form-control') }}\n"; $formCreate .=str_repeat("\t", 2).'
'."\n"; } From 47361a050b71eb3e7d72650d7d89c25c63d90a78 Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 12:18:37 -0500 Subject: [PATCH 11/18] And this is just me not thinking :) --- src/Services/MakeViewsService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/MakeViewsService.php b/src/Services/MakeViewsService.php index de1490d..5432e73 100644 --- a/src/Services/MakeViewsService.php +++ b/src/Services/MakeViewsService.php @@ -131,7 +131,7 @@ public function findAndReplaceCreateViewPlaceholderColumns($columns, $templateVi $formCreate .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\'name: '.trim($column).'\''; if(in_array($sql_type, $number_types)) - $formCreate .="step: .000001"; + $formCreate .=", step: .000001"; $formCreate .=")->class('form-control') }}\n"; $formCreate .=str_repeat("\t", 2).'
'."\n"; } From 3ac7cadda52a46e418a0a3ad1cecfe0381231cae Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 12:20:25 -0500 Subject: [PATCH 12/18] I'm blaming this one on IDE markup, but another dumb mistake. --- src/Services/MakeViewsService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/MakeViewsService.php b/src/Services/MakeViewsService.php index 5432e73..263bd9f 100644 --- a/src/Services/MakeViewsService.php +++ b/src/Services/MakeViewsService.php @@ -129,7 +129,7 @@ public function findAndReplaceCreateViewPlaceholderColumns($columns, $templateVi $formCreate .=str_repeat("\t", 2).'
'."\n"; $formCreate .=str_repeat("\t", 3).'{{ html()->label(\''.ucfirst(trim($column)).'\', \''.trim($column).'\')->class(\'form-label\') }}'."\n"; - $formCreate .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(\'name: '.trim($column).'\''; + $formCreate .=str_repeat("\t", 3).'{{ html()->'.$typeHtml.'(name: \''.trim($column).'\''; if(in_array($sql_type, $number_types)) $formCreate .=", step: .000001"; $formCreate .=")->class('form-control') }}\n"; From 1c11d2178a10d0b9f87cc8d88e88527cf9fb2c84 Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 12:22:42 -0500 Subject: [PATCH 13/18] Forms didn't have correct route syntax. --- src/stubs/default-theme/create.stub | 2 +- src/stubs/default-theme/edit.stub | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stubs/default-theme/create.stub b/src/stubs/default-theme/create.stub index b3f9735..aaebdef 100644 --- a/src/stubs/default-theme/create.stub +++ b/src/stubs/default-theme/create.stub @@ -10,7 +10,7 @@
@endif - {{ html()->form('PUT', 'DummyVariable.store' )->open() }} + {{ html()->form('POST', route('DummyVariable.store') )->open() }} DummyFormCreate {{ html()->submit('Create') }} {{ html()->form()->close() }} diff --git a/src/stubs/default-theme/edit.stub b/src/stubs/default-theme/edit.stub index 973e4d0..d400a50 100644 --- a/src/stubs/default-theme/edit.stub +++ b/src/stubs/default-theme/edit.stub @@ -10,7 +10,7 @@
@endif - {{ html()->form('PUT', 'DummyVariable.update'.DummyCreateVariableSing$->id )->open() }} + {{ html()->form('PUT', route(['DummyVariable.update', DummyCreateVariableSing$->id]) )->open() }} DummyFormCreate {{ html()->submit('Edit') }} {{ html()->form()->close() }} From 3e106648f108da33ffdf3c300bda5edaa63d5084 Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 12:24:27 -0500 Subject: [PATCH 14/18] Adding some button classes back in --- src/stubs/commentable/views/comment-block.stub | 4 ++-- src/stubs/default-theme/create.stub | 2 +- src/stubs/default-theme/edit.stub | 2 +- src/stubs/default-theme/index.stub | 2 +- src/stubs/default-theme/livewire/index-datatable.stub | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/stubs/commentable/views/comment-block.stub b/src/stubs/commentable/views/comment-block.stub index 23bbf45..d1fdf63 100644 --- a/src/stubs/commentable/views/comment-block.stub +++ b/src/stubs/commentable/views/comment-block.stub @@ -3,7 +3,7 @@ {{ html()->label('Comment', 'comment') }} {{ html()->textarea()('comment') }} - {{ html()->submit('Create') }} + {{ html()->submit('Create')->class('btn btn-primary') }} {{ html()->form()->close() }}
@@ -11,7 +11,7 @@
{!! html()->form('DELETE', route('{{route_comment}}.destroy', {{comment_variable}}->id))->open() !!} - {!! html()->submit('❌') !!} + {!! html()->submit('❌')->class('btn btn-sm') !!} {!! html()->form()->close() !!}
diff --git a/src/stubs/default-theme/create.stub b/src/stubs/default-theme/create.stub index aaebdef..03d0949 100644 --- a/src/stubs/default-theme/create.stub +++ b/src/stubs/default-theme/create.stub @@ -12,7 +12,7 @@ {{ html()->form('POST', route('DummyVariable.store') )->open() }} DummyFormCreate - {{ html()->submit('Create') }} + {{ html()->submit('Create')->class('btn btn-primary') }} {{ html()->form()->close() }} diff --git a/src/stubs/default-theme/edit.stub b/src/stubs/default-theme/edit.stub index d400a50..d7c9f7e 100644 --- a/src/stubs/default-theme/edit.stub +++ b/src/stubs/default-theme/edit.stub @@ -12,6 +12,6 @@ {{ html()->form('PUT', route(['DummyVariable.update', DummyCreateVariableSing$->id]) )->open() }} DummyFormCreate - {{ html()->submit('Edit') }} + {{ html()->submit('Edit')->class('btn btn-primary') }} {{ html()->form()->close() }} @stop diff --git a/src/stubs/default-theme/index.stub b/src/stubs/default-theme/index.stub index 0a632df..191ebd5 100644 --- a/src/stubs/default-theme/index.stub +++ b/src/stubs/default-theme/index.stub @@ -19,7 +19,7 @@ Show Edit {!! html()->form('DELETE', route('DummyVariable.destroy', DummyCreateVariableSing$->id))->open() !!} - {!! html()->submit('Delete') !!} + {!! html()->submit('Delete')->class('btn btn-danger') !!} {!! html()->form()->close() !!}
diff --git a/src/stubs/default-theme/livewire/index-datatable.stub b/src/stubs/default-theme/livewire/index-datatable.stub index 4f7fb12..639357b 100644 --- a/src/stubs/default-theme/livewire/index-datatable.stub +++ b/src/stubs/default-theme/livewire/index-datatable.stub @@ -26,7 +26,7 @@ Show Edit {!! html()->form('DELETE', route('DummyVariable.destroy', DummyCreateVariableSing$->id))->open() !!} - {!! html()->submit('Delete') !!} + {!! html()->submit('Delete')->class('btn btn-danger') !!} {!! html()->form()->close() !!}
From 4b3512b1398fe3df5742fe115c1fa6b00ab7acdf Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 12:28:18 -0500 Subject: [PATCH 15/18] Removing idea, cleaning up gitignore --- .gitignore | 2328 +----------------------------- .idea/.gitignore | 11 - .idea/crud-generator-laravel.iml | 49 - .idea/modules.xml | 8 - .idea/php.xml | 68 - .idea/vcs.xml | 6 - 6 files changed, 2 insertions(+), 2468 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/crud-generator-laravel.iml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/php.xml delete mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore index 39748a3..cac762f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2326 +1,2 @@ -/vendor/bin/carbon -/vendor/bin/patch-type-declarations -/vendor/bin/var-dump-server -/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonDoctrineType.php -/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonImmutableType.php -/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonType.php -/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonTypeConverter.php -/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/DateTimeDefaultPrecision.php -/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/DateTimeImmutableType.php -/vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/DateTimeType.php -/vendor/carbonphp/carbon-doctrine-types/composer.json -/vendor/carbonphp/carbon-doctrine-types/LICENSE -/vendor/carbonphp/carbon-doctrine-types/README.md -/vendor/composer/autoload_classmap.php -/vendor/composer/autoload_files.php -/vendor/composer/autoload_namespaces.php -/vendor/composer/autoload_psr4.php -/vendor/composer/autoload_real.php -/vendor/composer/autoload_static.php -/vendor/composer/ClassLoader.php -/vendor/composer/installed.json -/vendor/composer/installed.php -/vendor/composer/InstalledVersions.php -/vendor/composer/LICENSE -/vendor/composer/platform_check.php -/vendor/doctrine/inflector/docs/en/index.rst -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/English/Inflectible.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/English/InflectorFactory.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/English/Rules.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/English/Uninflected.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/French/Inflectible.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/French/InflectorFactory.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/French/Rules.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/French/Uninflected.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/NorwegianBokmal/Inflectible.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/NorwegianBokmal/InflectorFactory.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/NorwegianBokmal/Rules.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/NorwegianBokmal/Uninflected.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Portuguese/Inflectible.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Portuguese/InflectorFactory.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Portuguese/Rules.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Portuguese/Uninflected.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Spanish/Inflectible.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Spanish/InflectorFactory.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Spanish/Rules.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Spanish/Uninflected.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Turkish/Inflectible.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Turkish/InflectorFactory.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Turkish/Rules.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Turkish/Uninflected.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Pattern.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Patterns.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Ruleset.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Substitution.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Substitutions.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Transformation.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Transformations.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Word.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/CachedWordInflector.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/GenericLanguageInflectorFactory.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Inflector.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/InflectorFactory.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/Language.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/LanguageInflectorFactory.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/NoopWordInflector.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/RulesetInflector.php -/vendor/doctrine/inflector/lib/Doctrine/Inflector/WordInflector.php -/vendor/doctrine/inflector/composer.json -/vendor/doctrine/inflector/LICENSE -/vendor/doctrine/inflector/README.md -/vendor/fruitcake/php-cors/src/Exceptions/InvalidOptionException.php -/vendor/fruitcake/php-cors/src/CorsService.php -/vendor/fruitcake/php-cors/composer.json -/vendor/fruitcake/php-cors/LICENSE -/vendor/fruitcake/php-cors/README.md -/vendor/guzzlehttp/uri-template/src/UriTemplate.php -/vendor/guzzlehttp/uri-template/CHANGELOG.md -/vendor/guzzlehttp/uri-template/composer.json -/vendor/guzzlehttp/uri-template/LICENSE -/vendor/guzzlehttp/uri-template/README.md -/vendor/illuminate/collections/Traits/EnumeratesValues.php -/vendor/illuminate/collections/Arr.php -/vendor/illuminate/collections/Collection.php -/vendor/illuminate/collections/composer.json -/vendor/illuminate/collections/Enumerable.php -/vendor/illuminate/collections/helpers.php -/vendor/illuminate/collections/HigherOrderCollectionProxy.php -/vendor/illuminate/collections/ItemNotFoundException.php -/vendor/illuminate/collections/LazyCollection.php -/vendor/illuminate/collections/LICENSE.md -/vendor/illuminate/collections/MultipleItemsFoundException.php -/vendor/illuminate/conditionable/Traits/Conditionable.php -/vendor/illuminate/conditionable/composer.json -/vendor/illuminate/conditionable/HigherOrderWhenProxy.php -/vendor/illuminate/conditionable/LICENSE.md -/vendor/illuminate/contracts/Auth/Access/Authorizable.php -/vendor/illuminate/contracts/Auth/Access/Gate.php -/vendor/illuminate/contracts/Auth/Middleware/AuthenticatesRequests.php -/vendor/illuminate/contracts/Auth/Authenticatable.php -/vendor/illuminate/contracts/Auth/CanResetPassword.php -/vendor/illuminate/contracts/Auth/Factory.php -/vendor/illuminate/contracts/Auth/Guard.php -/vendor/illuminate/contracts/Auth/MustVerifyEmail.php -/vendor/illuminate/contracts/Auth/PasswordBroker.php -/vendor/illuminate/contracts/Auth/PasswordBrokerFactory.php -/vendor/illuminate/contracts/Auth/StatefulGuard.php -/vendor/illuminate/contracts/Auth/SupportsBasicAuth.php -/vendor/illuminate/contracts/Auth/UserProvider.php -/vendor/illuminate/contracts/Broadcasting/Broadcaster.php -/vendor/illuminate/contracts/Broadcasting/Factory.php -/vendor/illuminate/contracts/Broadcasting/HasBroadcastChannel.php -/vendor/illuminate/contracts/Broadcasting/ShouldBeUnique.php -/vendor/illuminate/contracts/Broadcasting/ShouldBroadcast.php -/vendor/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php -/vendor/illuminate/contracts/Bus/Dispatcher.php -/vendor/illuminate/contracts/Bus/QueueingDispatcher.php -/vendor/illuminate/contracts/Cache/Factory.php -/vendor/illuminate/contracts/Cache/Lock.php -/vendor/illuminate/contracts/Cache/LockProvider.php -/vendor/illuminate/contracts/Cache/LockTimeoutException.php -/vendor/illuminate/contracts/Cache/Repository.php -/vendor/illuminate/contracts/Cache/Store.php -/vendor/illuminate/contracts/Config/Repository.php -/vendor/illuminate/contracts/Console/Application.php -/vendor/illuminate/contracts/Console/Isolatable.php -/vendor/illuminate/contracts/Console/Kernel.php -/vendor/illuminate/contracts/Console/PromptsForMissingInput.php -/vendor/illuminate/contracts/Container/BindingResolutionException.php -/vendor/illuminate/contracts/Container/CircularDependencyException.php -/vendor/illuminate/contracts/Container/Container.php -/vendor/illuminate/contracts/Container/ContextualBindingBuilder.php -/vendor/illuminate/contracts/Cookie/Factory.php -/vendor/illuminate/contracts/Cookie/QueueingFactory.php -/vendor/illuminate/contracts/Database/Eloquent/Builder.php -/vendor/illuminate/contracts/Database/Eloquent/Castable.php -/vendor/illuminate/contracts/Database/Eloquent/CastsAttributes.php -/vendor/illuminate/contracts/Database/Eloquent/CastsInboundAttributes.php -/vendor/illuminate/contracts/Database/Eloquent/DeviatesCastableAttributes.php -/vendor/illuminate/contracts/Database/Eloquent/SerializesCastableAttributes.php -/vendor/illuminate/contracts/Database/Eloquent/SupportsPartialRelations.php -/vendor/illuminate/contracts/Database/Events/MigrationEvent.php -/vendor/illuminate/contracts/Database/Query/Builder.php -/vendor/illuminate/contracts/Database/Query/ConditionExpression.php -/vendor/illuminate/contracts/Database/Query/Expression.php -/vendor/illuminate/contracts/Database/ModelIdentifier.php -/vendor/illuminate/contracts/Debug/ExceptionHandler.php -/vendor/illuminate/contracts/Encryption/DecryptException.php -/vendor/illuminate/contracts/Encryption/Encrypter.php -/vendor/illuminate/contracts/Encryption/EncryptException.php -/vendor/illuminate/contracts/Encryption/StringEncrypter.php -/vendor/illuminate/contracts/Events/Dispatcher.php -/vendor/illuminate/contracts/Events/ShouldDispatchAfterCommit.php -/vendor/illuminate/contracts/Events/ShouldHandleEventsAfterCommit.php -/vendor/illuminate/contracts/Filesystem/Cloud.php -/vendor/illuminate/contracts/Filesystem/Factory.php -/vendor/illuminate/contracts/Filesystem/FileNotFoundException.php -/vendor/illuminate/contracts/Filesystem/Filesystem.php -/vendor/illuminate/contracts/Filesystem/LockTimeoutException.php -/vendor/illuminate/contracts/Foundation/Application.php -/vendor/illuminate/contracts/Foundation/CachesConfiguration.php -/vendor/illuminate/contracts/Foundation/CachesRoutes.php -/vendor/illuminate/contracts/Foundation/ExceptionRenderer.php -/vendor/illuminate/contracts/Foundation/MaintenanceMode.php -/vendor/illuminate/contracts/Hashing/Hasher.php -/vendor/illuminate/contracts/Http/Kernel.php -/vendor/illuminate/contracts/Mail/Attachable.php -/vendor/illuminate/contracts/Mail/Factory.php -/vendor/illuminate/contracts/Mail/Mailable.php -/vendor/illuminate/contracts/Mail/Mailer.php -/vendor/illuminate/contracts/Mail/MailQueue.php -/vendor/illuminate/contracts/Notifications/Dispatcher.php -/vendor/illuminate/contracts/Notifications/Factory.php -/vendor/illuminate/contracts/Pagination/CursorPaginator.php -/vendor/illuminate/contracts/Pagination/LengthAwarePaginator.php -/vendor/illuminate/contracts/Pagination/Paginator.php -/vendor/illuminate/contracts/Pipeline/Hub.php -/vendor/illuminate/contracts/Pipeline/Pipeline.php -/vendor/illuminate/contracts/Process/InvokedProcess.php -/vendor/illuminate/contracts/Process/ProcessResult.php -/vendor/illuminate/contracts/Queue/ClearableQueue.php -/vendor/illuminate/contracts/Queue/EntityNotFoundException.php -/vendor/illuminate/contracts/Queue/EntityResolver.php -/vendor/illuminate/contracts/Queue/Factory.php -/vendor/illuminate/contracts/Queue/Job.php -/vendor/illuminate/contracts/Queue/Monitor.php -/vendor/illuminate/contracts/Queue/Queue.php -/vendor/illuminate/contracts/Queue/QueueableCollection.php -/vendor/illuminate/contracts/Queue/QueueableEntity.php -/vendor/illuminate/contracts/Queue/ShouldBeEncrypted.php -/vendor/illuminate/contracts/Queue/ShouldBeUnique.php -/vendor/illuminate/contracts/Queue/ShouldBeUniqueUntilProcessing.php -/vendor/illuminate/contracts/Queue/ShouldQueue.php -/vendor/illuminate/contracts/Queue/ShouldQueueAfterCommit.php -/vendor/illuminate/contracts/Redis/Connection.php -/vendor/illuminate/contracts/Redis/Connector.php -/vendor/illuminate/contracts/Redis/Factory.php -/vendor/illuminate/contracts/Redis/LimiterTimeoutException.php -/vendor/illuminate/contracts/Routing/BindingRegistrar.php -/vendor/illuminate/contracts/Routing/Registrar.php -/vendor/illuminate/contracts/Routing/ResponseFactory.php -/vendor/illuminate/contracts/Routing/UrlGenerator.php -/vendor/illuminate/contracts/Routing/UrlRoutable.php -/vendor/illuminate/contracts/Session/Middleware/AuthenticatesSessions.php -/vendor/illuminate/contracts/Session/Session.php -/vendor/illuminate/contracts/Support/Arrayable.php -/vendor/illuminate/contracts/Support/CanBeEscapedWhenCastToString.php -/vendor/illuminate/contracts/Support/DeferrableProvider.php -/vendor/illuminate/contracts/Support/DeferringDisplayableValue.php -/vendor/illuminate/contracts/Support/Htmlable.php -/vendor/illuminate/contracts/Support/Jsonable.php -/vendor/illuminate/contracts/Support/MessageBag.php -/vendor/illuminate/contracts/Support/MessageProvider.php -/vendor/illuminate/contracts/Support/Renderable.php -/vendor/illuminate/contracts/Support/Responsable.php -/vendor/illuminate/contracts/Support/ValidatedData.php -/vendor/illuminate/contracts/Translation/HasLocalePreference.php -/vendor/illuminate/contracts/Translation/Loader.php -/vendor/illuminate/contracts/Translation/Translator.php -/vendor/illuminate/contracts/Validation/DataAwareRule.php -/vendor/illuminate/contracts/Validation/Factory.php -/vendor/illuminate/contracts/Validation/ImplicitRule.php -/vendor/illuminate/contracts/Validation/InvokableRule.php -/vendor/illuminate/contracts/Validation/Rule.php -/vendor/illuminate/contracts/Validation/UncompromisedVerifier.php -/vendor/illuminate/contracts/Validation/ValidatesWhenResolved.php -/vendor/illuminate/contracts/Validation/ValidationRule.php -/vendor/illuminate/contracts/Validation/Validator.php -/vendor/illuminate/contracts/Validation/ValidatorAwareRule.php -/vendor/illuminate/contracts/View/Engine.php -/vendor/illuminate/contracts/View/Factory.php -/vendor/illuminate/contracts/View/View.php -/vendor/illuminate/contracts/View/ViewCompilationException.php -/vendor/illuminate/contracts/composer.json -/vendor/illuminate/contracts/LICENSE.md -/vendor/illuminate/filesystem/AwsS3V3Adapter.php -/vendor/illuminate/filesystem/composer.json -/vendor/illuminate/filesystem/Filesystem.php -/vendor/illuminate/filesystem/FilesystemAdapter.php -/vendor/illuminate/filesystem/FilesystemManager.php -/vendor/illuminate/filesystem/FilesystemServiceProvider.php -/vendor/illuminate/filesystem/functions.php -/vendor/illuminate/filesystem/LICENSE.md -/vendor/illuminate/filesystem/LockableFile.php -/vendor/illuminate/http/Client/Concerns/DeterminesStatusCode.php -/vendor/illuminate/http/Client/Events/ConnectionFailed.php -/vendor/illuminate/http/Client/Events/RequestSending.php -/vendor/illuminate/http/Client/Events/ResponseReceived.php -/vendor/illuminate/http/Client/ConnectionException.php -/vendor/illuminate/http/Client/Factory.php -/vendor/illuminate/http/Client/HttpClientException.php -/vendor/illuminate/http/Client/PendingRequest.php -/vendor/illuminate/http/Client/Pool.php -/vendor/illuminate/http/Client/Request.php -/vendor/illuminate/http/Client/RequestException.php -/vendor/illuminate/http/Client/Response.php -/vendor/illuminate/http/Client/ResponseSequence.php -/vendor/illuminate/http/Concerns/CanBePrecognitive.php -/vendor/illuminate/http/Concerns/InteractsWithContentTypes.php -/vendor/illuminate/http/Concerns/InteractsWithFlashData.php -/vendor/illuminate/http/Concerns/InteractsWithInput.php -/vendor/illuminate/http/Exceptions/HttpResponseException.php -/vendor/illuminate/http/Exceptions/PostTooLargeException.php -/vendor/illuminate/http/Exceptions/ThrottleRequestsException.php -/vendor/illuminate/http/Middleware/AddLinkHeadersForPreloadedAssets.php -/vendor/illuminate/http/Middleware/CheckResponseForModifications.php -/vendor/illuminate/http/Middleware/FrameGuard.php -/vendor/illuminate/http/Middleware/HandleCors.php -/vendor/illuminate/http/Middleware/SetCacheHeaders.php -/vendor/illuminate/http/Middleware/TrustHosts.php -/vendor/illuminate/http/Middleware/TrustProxies.php -/vendor/illuminate/http/Resources/Json/AnonymousResourceCollection.php -/vendor/illuminate/http/Resources/Json/JsonResource.php -/vendor/illuminate/http/Resources/Json/PaginatedResourceResponse.php -/vendor/illuminate/http/Resources/Json/ResourceCollection.php -/vendor/illuminate/http/Resources/Json/ResourceResponse.php -/vendor/illuminate/http/Resources/CollectsResources.php -/vendor/illuminate/http/Resources/ConditionallyLoadsAttributes.php -/vendor/illuminate/http/Resources/DelegatesToResource.php -/vendor/illuminate/http/Resources/MergeValue.php -/vendor/illuminate/http/Resources/MissingValue.php -/vendor/illuminate/http/Resources/PotentiallyMissing.php -/vendor/illuminate/http/Testing/File.php -/vendor/illuminate/http/Testing/FileFactory.php -/vendor/illuminate/http/Testing/MimeType.php -/vendor/illuminate/http/composer.json -/vendor/illuminate/http/File.php -/vendor/illuminate/http/FileHelpers.php -/vendor/illuminate/http/JsonResponse.php -/vendor/illuminate/http/LICENSE.md -/vendor/illuminate/http/RedirectResponse.php -/vendor/illuminate/http/Request.php -/vendor/illuminate/http/Response.php -/vendor/illuminate/http/ResponseTrait.php -/vendor/illuminate/http/UploadedFile.php -/vendor/illuminate/macroable/Traits/Macroable.php -/vendor/illuminate/macroable/composer.json -/vendor/illuminate/macroable/LICENSE.md -/vendor/illuminate/session/Console/stubs/database.stub -/vendor/illuminate/session/Console/SessionTableCommand.php -/vendor/illuminate/session/Middleware/AuthenticateSession.php -/vendor/illuminate/session/Middleware/StartSession.php -/vendor/illuminate/session/ArraySessionHandler.php -/vendor/illuminate/session/CacheBasedSessionHandler.php -/vendor/illuminate/session/composer.json -/vendor/illuminate/session/CookieSessionHandler.php -/vendor/illuminate/session/DatabaseSessionHandler.php -/vendor/illuminate/session/EncryptedStore.php -/vendor/illuminate/session/ExistenceAwareInterface.php -/vendor/illuminate/session/FileSessionHandler.php -/vendor/illuminate/session/LICENSE.md -/vendor/illuminate/session/NullSessionHandler.php -/vendor/illuminate/session/SessionManager.php -/vendor/illuminate/session/SessionServiceProvider.php -/vendor/illuminate/session/Store.php -/vendor/illuminate/session/SymfonySessionDecorator.php -/vendor/illuminate/session/TokenMismatchException.php -/vendor/illuminate/support/Exceptions/MathException.php -/vendor/illuminate/support/Facades/App.php -/vendor/illuminate/support/Facades/Artisan.php -/vendor/illuminate/support/Facades/Auth.php -/vendor/illuminate/support/Facades/Blade.php -/vendor/illuminate/support/Facades/Broadcast.php -/vendor/illuminate/support/Facades/Bus.php -/vendor/illuminate/support/Facades/Cache.php -/vendor/illuminate/support/Facades/Config.php -/vendor/illuminate/support/Facades/Cookie.php -/vendor/illuminate/support/Facades/Crypt.php -/vendor/illuminate/support/Facades/Date.php -/vendor/illuminate/support/Facades/DB.php -/vendor/illuminate/support/Facades/Event.php -/vendor/illuminate/support/Facades/Facade.php -/vendor/illuminate/support/Facades/File.php -/vendor/illuminate/support/Facades/Gate.php -/vendor/illuminate/support/Facades/Hash.php -/vendor/illuminate/support/Facades/Http.php -/vendor/illuminate/support/Facades/Lang.php -/vendor/illuminate/support/Facades/Log.php -/vendor/illuminate/support/Facades/Mail.php -/vendor/illuminate/support/Facades/Notification.php -/vendor/illuminate/support/Facades/ParallelTesting.php -/vendor/illuminate/support/Facades/Password.php -/vendor/illuminate/support/Facades/Pipeline.php -/vendor/illuminate/support/Facades/Process.php -/vendor/illuminate/support/Facades/Queue.php -/vendor/illuminate/support/Facades/RateLimiter.php -/vendor/illuminate/support/Facades/Redirect.php -/vendor/illuminate/support/Facades/Redis.php -/vendor/illuminate/support/Facades/Request.php -/vendor/illuminate/support/Facades/Response.php -/vendor/illuminate/support/Facades/Route.php -/vendor/illuminate/support/Facades/Schema.php -/vendor/illuminate/support/Facades/Session.php -/vendor/illuminate/support/Facades/Storage.php -/vendor/illuminate/support/Facades/URL.php -/vendor/illuminate/support/Facades/Validator.php -/vendor/illuminate/support/Facades/View.php -/vendor/illuminate/support/Facades/Vite.php -/vendor/illuminate/support/Testing/Fakes/BatchFake.php -/vendor/illuminate/support/Testing/Fakes/BatchRepositoryFake.php -/vendor/illuminate/support/Testing/Fakes/BusFake.php -/vendor/illuminate/support/Testing/Fakes/ChainedBatchTruthTest.php -/vendor/illuminate/support/Testing/Fakes/EventFake.php -/vendor/illuminate/support/Testing/Fakes/Fake.php -/vendor/illuminate/support/Testing/Fakes/MailFake.php -/vendor/illuminate/support/Testing/Fakes/NotificationFake.php -/vendor/illuminate/support/Testing/Fakes/PendingBatchFake.php -/vendor/illuminate/support/Testing/Fakes/PendingChainFake.php -/vendor/illuminate/support/Testing/Fakes/PendingMailFake.php -/vendor/illuminate/support/Testing/Fakes/QueueFake.php -/vendor/illuminate/support/Traits/CapsuleManagerTrait.php -/vendor/illuminate/support/Traits/ForwardsCalls.php -/vendor/illuminate/support/Traits/Localizable.php -/vendor/illuminate/support/Traits/ReflectsClosures.php -/vendor/illuminate/support/Traits/Tappable.php -/vendor/illuminate/support/AggregateServiceProvider.php -/vendor/illuminate/support/Benchmark.php -/vendor/illuminate/support/Carbon.php -/vendor/illuminate/support/composer.json -/vendor/illuminate/support/Composer.php -/vendor/illuminate/support/ConfigurationUrlParser.php -/vendor/illuminate/support/DateFactory.php -/vendor/illuminate/support/DefaultProviders.php -/vendor/illuminate/support/Env.php -/vendor/illuminate/support/Fluent.php -/vendor/illuminate/support/helpers.php -/vendor/illuminate/support/HigherOrderTapProxy.php -/vendor/illuminate/support/HtmlString.php -/vendor/illuminate/support/InteractsWithTime.php -/vendor/illuminate/support/Js.php -/vendor/illuminate/support/LICENSE.md -/vendor/illuminate/support/Lottery.php -/vendor/illuminate/support/Manager.php -/vendor/illuminate/support/MessageBag.php -/vendor/illuminate/support/MultipleInstanceManager.php -/vendor/illuminate/support/NamespacedItemResolver.php -/vendor/illuminate/support/Number.php -/vendor/illuminate/support/Optional.php -/vendor/illuminate/support/Pluralizer.php -/vendor/illuminate/support/ProcessUtils.php -/vendor/illuminate/support/Reflector.php -/vendor/illuminate/support/ServiceProvider.php -/vendor/illuminate/support/Sleep.php -/vendor/illuminate/support/Str.php -/vendor/illuminate/support/Stringable.php -/vendor/illuminate/support/Timebox.php -/vendor/illuminate/support/ValidatedInput.php -/vendor/illuminate/support/ViewErrorBag.php -/vendor/nesbot/carbon/bin/carbon -/vendor/nesbot/carbon/bin/carbon.bat -/vendor/nesbot/carbon/lazy/Carbon/MessageFormatter/MessageFormatterMapperStrongType.php -/vendor/nesbot/carbon/lazy/Carbon/MessageFormatter/MessageFormatterMapperWeakType.php -/vendor/nesbot/carbon/lazy/Carbon/PHPStan/AbstractMacroBuiltin.php -/vendor/nesbot/carbon/lazy/Carbon/PHPStan/AbstractMacroStatic.php -/vendor/nesbot/carbon/lazy/Carbon/PHPStan/MacroStrongType.php -/vendor/nesbot/carbon/lazy/Carbon/PHPStan/MacroWeakType.php -/vendor/nesbot/carbon/lazy/Carbon/TranslatorStrongType.php -/vendor/nesbot/carbon/lazy/Carbon/TranslatorWeakType.php -/vendor/nesbot/carbon/src/Carbon/Cli/Invoker.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/BadComparisonUnitException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/BadFluentConstructorException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/BadFluentSetterException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/BadMethodCallException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/EndLessPeriodException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/Exception.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/ImmutableException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidArgumentException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidCastException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidFormatException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidIntervalException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidPeriodDateException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidPeriodParameterException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidTimeZoneException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidTypeException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/NotACarbonClassException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/NotAPeriodException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/NotLocaleAwareException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/OutOfRangeException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/ParseErrorException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/RuntimeException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/UnitException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/UnitNotConfiguredException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/UnknownGetterException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/UnknownMethodException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/UnknownSetterException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/UnknownUnitException.php -/vendor/nesbot/carbon/src/Carbon/Exceptions/UnreachableException.php -/vendor/nesbot/carbon/src/Carbon/Lang/aa.php -/vendor/nesbot/carbon/src/Carbon/Lang/aa_DJ.php -/vendor/nesbot/carbon/src/Carbon/Lang/aa_ER.php -/vendor/nesbot/carbon/src/Carbon/Lang/aa_ER@saaho.php -/vendor/nesbot/carbon/src/Carbon/Lang/aa_ET.php -/vendor/nesbot/carbon/src/Carbon/Lang/af.php -/vendor/nesbot/carbon/src/Carbon/Lang/af_NA.php -/vendor/nesbot/carbon/src/Carbon/Lang/af_ZA.php -/vendor/nesbot/carbon/src/Carbon/Lang/agq.php -/vendor/nesbot/carbon/src/Carbon/Lang/agr.php -/vendor/nesbot/carbon/src/Carbon/Lang/agr_PE.php -/vendor/nesbot/carbon/src/Carbon/Lang/ak.php -/vendor/nesbot/carbon/src/Carbon/Lang/ak_GH.php -/vendor/nesbot/carbon/src/Carbon/Lang/am.php -/vendor/nesbot/carbon/src/Carbon/Lang/am_ET.php -/vendor/nesbot/carbon/src/Carbon/Lang/an.php -/vendor/nesbot/carbon/src/Carbon/Lang/an_ES.php -/vendor/nesbot/carbon/src/Carbon/Lang/anp.php -/vendor/nesbot/carbon/src/Carbon/Lang/anp_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_AE.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_BH.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_DJ.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_DZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_EG.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_EH.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_ER.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_IL.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_IQ.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_JO.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_KM.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_KW.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_LB.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_LY.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_MA.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_MR.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_OM.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_PS.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_QA.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_SA.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_SD.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_Shakl.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_SO.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_SS.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_SY.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_TD.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_TN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ar_YE.php -/vendor/nesbot/carbon/src/Carbon/Lang/as.php -/vendor/nesbot/carbon/src/Carbon/Lang/as_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/asa.php -/vendor/nesbot/carbon/src/Carbon/Lang/ast.php -/vendor/nesbot/carbon/src/Carbon/Lang/ast_ES.php -/vendor/nesbot/carbon/src/Carbon/Lang/ayc.php -/vendor/nesbot/carbon/src/Carbon/Lang/ayc_PE.php -/vendor/nesbot/carbon/src/Carbon/Lang/az.php -/vendor/nesbot/carbon/src/Carbon/Lang/az_AZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/az_Cyrl.php -/vendor/nesbot/carbon/src/Carbon/Lang/az_IR.php -/vendor/nesbot/carbon/src/Carbon/Lang/az_Latn.php -/vendor/nesbot/carbon/src/Carbon/Lang/bas.php -/vendor/nesbot/carbon/src/Carbon/Lang/be.php -/vendor/nesbot/carbon/src/Carbon/Lang/be_BY.php -/vendor/nesbot/carbon/src/Carbon/Lang/be_BY@latin.php -/vendor/nesbot/carbon/src/Carbon/Lang/bem.php -/vendor/nesbot/carbon/src/Carbon/Lang/bem_ZM.php -/vendor/nesbot/carbon/src/Carbon/Lang/ber.php -/vendor/nesbot/carbon/src/Carbon/Lang/ber_DZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/ber_MA.php -/vendor/nesbot/carbon/src/Carbon/Lang/bez.php -/vendor/nesbot/carbon/src/Carbon/Lang/bg.php -/vendor/nesbot/carbon/src/Carbon/Lang/bg_BG.php -/vendor/nesbot/carbon/src/Carbon/Lang/bhb.php -/vendor/nesbot/carbon/src/Carbon/Lang/bhb_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/bho.php -/vendor/nesbot/carbon/src/Carbon/Lang/bho_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/bi.php -/vendor/nesbot/carbon/src/Carbon/Lang/bi_VU.php -/vendor/nesbot/carbon/src/Carbon/Lang/bm.php -/vendor/nesbot/carbon/src/Carbon/Lang/bn.php -/vendor/nesbot/carbon/src/Carbon/Lang/bn_BD.php -/vendor/nesbot/carbon/src/Carbon/Lang/bn_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/bo.php -/vendor/nesbot/carbon/src/Carbon/Lang/bo_CN.php -/vendor/nesbot/carbon/src/Carbon/Lang/bo_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/br.php -/vendor/nesbot/carbon/src/Carbon/Lang/br_FR.php -/vendor/nesbot/carbon/src/Carbon/Lang/brx.php -/vendor/nesbot/carbon/src/Carbon/Lang/brx_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/bs.php -/vendor/nesbot/carbon/src/Carbon/Lang/bs_BA.php -/vendor/nesbot/carbon/src/Carbon/Lang/bs_Cyrl.php -/vendor/nesbot/carbon/src/Carbon/Lang/bs_Latn.php -/vendor/nesbot/carbon/src/Carbon/Lang/byn.php -/vendor/nesbot/carbon/src/Carbon/Lang/byn_ER.php -/vendor/nesbot/carbon/src/Carbon/Lang/ca.php -/vendor/nesbot/carbon/src/Carbon/Lang/ca_AD.php -/vendor/nesbot/carbon/src/Carbon/Lang/ca_ES.php -/vendor/nesbot/carbon/src/Carbon/Lang/ca_ES_Valencia.php -/vendor/nesbot/carbon/src/Carbon/Lang/ca_FR.php -/vendor/nesbot/carbon/src/Carbon/Lang/ca_IT.php -/vendor/nesbot/carbon/src/Carbon/Lang/ccp.php -/vendor/nesbot/carbon/src/Carbon/Lang/ccp_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ce.php -/vendor/nesbot/carbon/src/Carbon/Lang/ce_RU.php -/vendor/nesbot/carbon/src/Carbon/Lang/cgg.php -/vendor/nesbot/carbon/src/Carbon/Lang/chr.php -/vendor/nesbot/carbon/src/Carbon/Lang/chr_US.php -/vendor/nesbot/carbon/src/Carbon/Lang/ckb.php -/vendor/nesbot/carbon/src/Carbon/Lang/cmn.php -/vendor/nesbot/carbon/src/Carbon/Lang/cmn_TW.php -/vendor/nesbot/carbon/src/Carbon/Lang/crh.php -/vendor/nesbot/carbon/src/Carbon/Lang/crh_UA.php -/vendor/nesbot/carbon/src/Carbon/Lang/cs.php -/vendor/nesbot/carbon/src/Carbon/Lang/cs_CZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/csb.php -/vendor/nesbot/carbon/src/Carbon/Lang/csb_PL.php -/vendor/nesbot/carbon/src/Carbon/Lang/cu.php -/vendor/nesbot/carbon/src/Carbon/Lang/cv.php -/vendor/nesbot/carbon/src/Carbon/Lang/cv_RU.php -/vendor/nesbot/carbon/src/Carbon/Lang/cy.php -/vendor/nesbot/carbon/src/Carbon/Lang/cy_GB.php -/vendor/nesbot/carbon/src/Carbon/Lang/da.php -/vendor/nesbot/carbon/src/Carbon/Lang/da_DK.php -/vendor/nesbot/carbon/src/Carbon/Lang/da_GL.php -/vendor/nesbot/carbon/src/Carbon/Lang/dav.php -/vendor/nesbot/carbon/src/Carbon/Lang/de.php -/vendor/nesbot/carbon/src/Carbon/Lang/de_AT.php -/vendor/nesbot/carbon/src/Carbon/Lang/de_BE.php -/vendor/nesbot/carbon/src/Carbon/Lang/de_CH.php -/vendor/nesbot/carbon/src/Carbon/Lang/de_DE.php -/vendor/nesbot/carbon/src/Carbon/Lang/de_IT.php -/vendor/nesbot/carbon/src/Carbon/Lang/de_LI.php -/vendor/nesbot/carbon/src/Carbon/Lang/de_LU.php -/vendor/nesbot/carbon/src/Carbon/Lang/dje.php -/vendor/nesbot/carbon/src/Carbon/Lang/doi.php -/vendor/nesbot/carbon/src/Carbon/Lang/doi_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/dsb.php -/vendor/nesbot/carbon/src/Carbon/Lang/dsb_DE.php -/vendor/nesbot/carbon/src/Carbon/Lang/dua.php -/vendor/nesbot/carbon/src/Carbon/Lang/dv.php -/vendor/nesbot/carbon/src/Carbon/Lang/dv_MV.php -/vendor/nesbot/carbon/src/Carbon/Lang/dyo.php -/vendor/nesbot/carbon/src/Carbon/Lang/dz.php -/vendor/nesbot/carbon/src/Carbon/Lang/dz_BT.php -/vendor/nesbot/carbon/src/Carbon/Lang/ebu.php -/vendor/nesbot/carbon/src/Carbon/Lang/ee.php -/vendor/nesbot/carbon/src/Carbon/Lang/ee_TG.php -/vendor/nesbot/carbon/src/Carbon/Lang/el.php -/vendor/nesbot/carbon/src/Carbon/Lang/el_CY.php -/vendor/nesbot/carbon/src/Carbon/Lang/el_GR.php -/vendor/nesbot/carbon/src/Carbon/Lang/en.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_001.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_150.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_AG.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_AI.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_AS.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_AT.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_AU.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_BB.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_BE.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_BI.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_BM.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_BS.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_BW.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_BZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_CA.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_CC.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_CH.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_CK.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_CM.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_CX.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_CY.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_DE.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_DG.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_DK.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_DM.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_ER.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_FI.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_FJ.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_FK.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_FM.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_GB.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_GD.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_GG.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_GH.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_GI.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_GM.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_GU.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_GY.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_HK.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_IE.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_IL.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_IM.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_IO.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_ISO.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_JE.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_JM.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_KE.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_KI.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_KN.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_KY.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_LC.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_LR.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_LS.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_MG.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_MH.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_MO.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_MP.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_MS.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_MT.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_MU.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_MW.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_MY.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_NA.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_NF.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_NG.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_NL.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_NR.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_NU.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_NZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_PG.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_PH.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_PK.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_PN.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_PR.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_PW.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_RW.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_SB.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_SC.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_SD.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_SE.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_SG.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_SH.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_SI.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_SL.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_SS.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_SX.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_SZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_TC.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_TK.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_TO.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_TT.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_TV.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_TZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_UG.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_UM.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_US.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_US_Posix.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_VC.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_VG.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_VI.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_VU.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_WS.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_ZA.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_ZM.php -/vendor/nesbot/carbon/src/Carbon/Lang/en_ZW.php -/vendor/nesbot/carbon/src/Carbon/Lang/eo.php -/vendor/nesbot/carbon/src/Carbon/Lang/es.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_419.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_AR.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_BO.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_BR.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_BZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_CL.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_CO.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_CR.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_CU.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_DO.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_EA.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_EC.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_ES.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_GQ.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_GT.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_HN.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_IC.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_MX.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_NI.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_PA.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_PE.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_PH.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_PR.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_PY.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_SV.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_US.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_UY.php -/vendor/nesbot/carbon/src/Carbon/Lang/es_VE.php -/vendor/nesbot/carbon/src/Carbon/Lang/et.php -/vendor/nesbot/carbon/src/Carbon/Lang/et_EE.php -/vendor/nesbot/carbon/src/Carbon/Lang/eu.php -/vendor/nesbot/carbon/src/Carbon/Lang/eu_ES.php -/vendor/nesbot/carbon/src/Carbon/Lang/ewo.php -/vendor/nesbot/carbon/src/Carbon/Lang/fa.php -/vendor/nesbot/carbon/src/Carbon/Lang/fa_AF.php -/vendor/nesbot/carbon/src/Carbon/Lang/fa_IR.php -/vendor/nesbot/carbon/src/Carbon/Lang/ff.php -/vendor/nesbot/carbon/src/Carbon/Lang/ff_CM.php -/vendor/nesbot/carbon/src/Carbon/Lang/ff_GN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ff_MR.php -/vendor/nesbot/carbon/src/Carbon/Lang/ff_SN.php -/vendor/nesbot/carbon/src/Carbon/Lang/fi.php -/vendor/nesbot/carbon/src/Carbon/Lang/fi_FI.php -/vendor/nesbot/carbon/src/Carbon/Lang/fil.php -/vendor/nesbot/carbon/src/Carbon/Lang/fil_PH.php -/vendor/nesbot/carbon/src/Carbon/Lang/fo.php -/vendor/nesbot/carbon/src/Carbon/Lang/fo_DK.php -/vendor/nesbot/carbon/src/Carbon/Lang/fo_FO.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_BE.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_BF.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_BI.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_BJ.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_BL.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_CA.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_CD.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_CF.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_CG.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_CH.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_CI.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_CM.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_DJ.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_DZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_FR.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_GA.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_GF.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_GN.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_GP.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_GQ.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_HT.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_KM.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_LU.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_MA.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_MC.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_MF.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_MG.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_ML.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_MQ.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_MR.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_MU.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_NC.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_NE.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_PF.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_PM.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_RE.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_RW.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_SC.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_SN.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_SY.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_TD.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_TG.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_TN.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_VU.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_WF.php -/vendor/nesbot/carbon/src/Carbon/Lang/fr_YT.php -/vendor/nesbot/carbon/src/Carbon/Lang/fur.php -/vendor/nesbot/carbon/src/Carbon/Lang/fur_IT.php -/vendor/nesbot/carbon/src/Carbon/Lang/fy.php -/vendor/nesbot/carbon/src/Carbon/Lang/fy_DE.php -/vendor/nesbot/carbon/src/Carbon/Lang/fy_NL.php -/vendor/nesbot/carbon/src/Carbon/Lang/ga.php -/vendor/nesbot/carbon/src/Carbon/Lang/ga_IE.php -/vendor/nesbot/carbon/src/Carbon/Lang/gd.php -/vendor/nesbot/carbon/src/Carbon/Lang/gd_GB.php -/vendor/nesbot/carbon/src/Carbon/Lang/gez.php -/vendor/nesbot/carbon/src/Carbon/Lang/gez_ER.php -/vendor/nesbot/carbon/src/Carbon/Lang/gez_ET.php -/vendor/nesbot/carbon/src/Carbon/Lang/gl.php -/vendor/nesbot/carbon/src/Carbon/Lang/gl_ES.php -/vendor/nesbot/carbon/src/Carbon/Lang/gom.php -/vendor/nesbot/carbon/src/Carbon/Lang/gom_Latn.php -/vendor/nesbot/carbon/src/Carbon/Lang/gsw.php -/vendor/nesbot/carbon/src/Carbon/Lang/gsw_CH.php -/vendor/nesbot/carbon/src/Carbon/Lang/gsw_FR.php -/vendor/nesbot/carbon/src/Carbon/Lang/gsw_LI.php -/vendor/nesbot/carbon/src/Carbon/Lang/gu.php -/vendor/nesbot/carbon/src/Carbon/Lang/gu_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/guz.php -/vendor/nesbot/carbon/src/Carbon/Lang/gv.php -/vendor/nesbot/carbon/src/Carbon/Lang/gv_GB.php -/vendor/nesbot/carbon/src/Carbon/Lang/ha.php -/vendor/nesbot/carbon/src/Carbon/Lang/ha_GH.php -/vendor/nesbot/carbon/src/Carbon/Lang/ha_NE.php -/vendor/nesbot/carbon/src/Carbon/Lang/ha_NG.php -/vendor/nesbot/carbon/src/Carbon/Lang/hak.php -/vendor/nesbot/carbon/src/Carbon/Lang/hak_TW.php -/vendor/nesbot/carbon/src/Carbon/Lang/haw.php -/vendor/nesbot/carbon/src/Carbon/Lang/he.php -/vendor/nesbot/carbon/src/Carbon/Lang/he_IL.php -/vendor/nesbot/carbon/src/Carbon/Lang/hi.php -/vendor/nesbot/carbon/src/Carbon/Lang/hi_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/hif.php -/vendor/nesbot/carbon/src/Carbon/Lang/hif_FJ.php -/vendor/nesbot/carbon/src/Carbon/Lang/hne.php -/vendor/nesbot/carbon/src/Carbon/Lang/hne_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/hr.php -/vendor/nesbot/carbon/src/Carbon/Lang/hr_BA.php -/vendor/nesbot/carbon/src/Carbon/Lang/hr_HR.php -/vendor/nesbot/carbon/src/Carbon/Lang/hsb.php -/vendor/nesbot/carbon/src/Carbon/Lang/hsb_DE.php -/vendor/nesbot/carbon/src/Carbon/Lang/ht.php -/vendor/nesbot/carbon/src/Carbon/Lang/ht_HT.php -/vendor/nesbot/carbon/src/Carbon/Lang/hu.php -/vendor/nesbot/carbon/src/Carbon/Lang/hu_HU.php -/vendor/nesbot/carbon/src/Carbon/Lang/hy.php -/vendor/nesbot/carbon/src/Carbon/Lang/hy_AM.php -/vendor/nesbot/carbon/src/Carbon/Lang/i18n.php -/vendor/nesbot/carbon/src/Carbon/Lang/ia.php -/vendor/nesbot/carbon/src/Carbon/Lang/ia_FR.php -/vendor/nesbot/carbon/src/Carbon/Lang/id.php -/vendor/nesbot/carbon/src/Carbon/Lang/id_ID.php -/vendor/nesbot/carbon/src/Carbon/Lang/ig.php -/vendor/nesbot/carbon/src/Carbon/Lang/ig_NG.php -/vendor/nesbot/carbon/src/Carbon/Lang/ii.php -/vendor/nesbot/carbon/src/Carbon/Lang/ik.php -/vendor/nesbot/carbon/src/Carbon/Lang/ik_CA.php -/vendor/nesbot/carbon/src/Carbon/Lang/in.php -/vendor/nesbot/carbon/src/Carbon/Lang/is.php -/vendor/nesbot/carbon/src/Carbon/Lang/is_IS.php -/vendor/nesbot/carbon/src/Carbon/Lang/it.php -/vendor/nesbot/carbon/src/Carbon/Lang/it_CH.php -/vendor/nesbot/carbon/src/Carbon/Lang/it_IT.php -/vendor/nesbot/carbon/src/Carbon/Lang/it_SM.php -/vendor/nesbot/carbon/src/Carbon/Lang/it_VA.php -/vendor/nesbot/carbon/src/Carbon/Lang/iu.php -/vendor/nesbot/carbon/src/Carbon/Lang/iu_CA.php -/vendor/nesbot/carbon/src/Carbon/Lang/iw.php -/vendor/nesbot/carbon/src/Carbon/Lang/ja.php -/vendor/nesbot/carbon/src/Carbon/Lang/ja_JP.php -/vendor/nesbot/carbon/src/Carbon/Lang/jgo.php -/vendor/nesbot/carbon/src/Carbon/Lang/jmc.php -/vendor/nesbot/carbon/src/Carbon/Lang/jv.php -/vendor/nesbot/carbon/src/Carbon/Lang/ka.php -/vendor/nesbot/carbon/src/Carbon/Lang/ka_GE.php -/vendor/nesbot/carbon/src/Carbon/Lang/kab.php -/vendor/nesbot/carbon/src/Carbon/Lang/kab_DZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/kam.php -/vendor/nesbot/carbon/src/Carbon/Lang/kde.php -/vendor/nesbot/carbon/src/Carbon/Lang/kea.php -/vendor/nesbot/carbon/src/Carbon/Lang/khq.php -/vendor/nesbot/carbon/src/Carbon/Lang/ki.php -/vendor/nesbot/carbon/src/Carbon/Lang/kk.php -/vendor/nesbot/carbon/src/Carbon/Lang/kk_KZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/kkj.php -/vendor/nesbot/carbon/src/Carbon/Lang/kl.php -/vendor/nesbot/carbon/src/Carbon/Lang/kl_GL.php -/vendor/nesbot/carbon/src/Carbon/Lang/kln.php -/vendor/nesbot/carbon/src/Carbon/Lang/km.php -/vendor/nesbot/carbon/src/Carbon/Lang/km_KH.php -/vendor/nesbot/carbon/src/Carbon/Lang/kn.php -/vendor/nesbot/carbon/src/Carbon/Lang/kn_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ko.php -/vendor/nesbot/carbon/src/Carbon/Lang/ko_KP.php -/vendor/nesbot/carbon/src/Carbon/Lang/ko_KR.php -/vendor/nesbot/carbon/src/Carbon/Lang/kok.php -/vendor/nesbot/carbon/src/Carbon/Lang/kok_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ks.php -/vendor/nesbot/carbon/src/Carbon/Lang/ks_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ks_IN@devanagari.php -/vendor/nesbot/carbon/src/Carbon/Lang/ksb.php -/vendor/nesbot/carbon/src/Carbon/Lang/ksf.php -/vendor/nesbot/carbon/src/Carbon/Lang/ksh.php -/vendor/nesbot/carbon/src/Carbon/Lang/ku.php -/vendor/nesbot/carbon/src/Carbon/Lang/ku_TR.php -/vendor/nesbot/carbon/src/Carbon/Lang/kw.php -/vendor/nesbot/carbon/src/Carbon/Lang/kw_GB.php -/vendor/nesbot/carbon/src/Carbon/Lang/ky.php -/vendor/nesbot/carbon/src/Carbon/Lang/ky_KG.php -/vendor/nesbot/carbon/src/Carbon/Lang/lag.php -/vendor/nesbot/carbon/src/Carbon/Lang/lb.php -/vendor/nesbot/carbon/src/Carbon/Lang/lb_LU.php -/vendor/nesbot/carbon/src/Carbon/Lang/lg.php -/vendor/nesbot/carbon/src/Carbon/Lang/lg_UG.php -/vendor/nesbot/carbon/src/Carbon/Lang/li.php -/vendor/nesbot/carbon/src/Carbon/Lang/li_NL.php -/vendor/nesbot/carbon/src/Carbon/Lang/lij.php -/vendor/nesbot/carbon/src/Carbon/Lang/lij_IT.php -/vendor/nesbot/carbon/src/Carbon/Lang/lkt.php -/vendor/nesbot/carbon/src/Carbon/Lang/ln.php -/vendor/nesbot/carbon/src/Carbon/Lang/ln_AO.php -/vendor/nesbot/carbon/src/Carbon/Lang/ln_CD.php -/vendor/nesbot/carbon/src/Carbon/Lang/ln_CF.php -/vendor/nesbot/carbon/src/Carbon/Lang/ln_CG.php -/vendor/nesbot/carbon/src/Carbon/Lang/lo.php -/vendor/nesbot/carbon/src/Carbon/Lang/lo_LA.php -/vendor/nesbot/carbon/src/Carbon/Lang/lrc.php -/vendor/nesbot/carbon/src/Carbon/Lang/lrc_IQ.php -/vendor/nesbot/carbon/src/Carbon/Lang/lt.php -/vendor/nesbot/carbon/src/Carbon/Lang/lt_LT.php -/vendor/nesbot/carbon/src/Carbon/Lang/lu.php -/vendor/nesbot/carbon/src/Carbon/Lang/luo.php -/vendor/nesbot/carbon/src/Carbon/Lang/luy.php -/vendor/nesbot/carbon/src/Carbon/Lang/lv.php -/vendor/nesbot/carbon/src/Carbon/Lang/lv_LV.php -/vendor/nesbot/carbon/src/Carbon/Lang/lzh.php -/vendor/nesbot/carbon/src/Carbon/Lang/lzh_TW.php -/vendor/nesbot/carbon/src/Carbon/Lang/mag.php -/vendor/nesbot/carbon/src/Carbon/Lang/mag_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/mai.php -/vendor/nesbot/carbon/src/Carbon/Lang/mai_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/mas.php -/vendor/nesbot/carbon/src/Carbon/Lang/mas_TZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/mer.php -/vendor/nesbot/carbon/src/Carbon/Lang/mfe.php -/vendor/nesbot/carbon/src/Carbon/Lang/mfe_MU.php -/vendor/nesbot/carbon/src/Carbon/Lang/mg.php -/vendor/nesbot/carbon/src/Carbon/Lang/mg_MG.php -/vendor/nesbot/carbon/src/Carbon/Lang/mgh.php -/vendor/nesbot/carbon/src/Carbon/Lang/mgo.php -/vendor/nesbot/carbon/src/Carbon/Lang/mhr.php -/vendor/nesbot/carbon/src/Carbon/Lang/mhr_RU.php -/vendor/nesbot/carbon/src/Carbon/Lang/mi.php -/vendor/nesbot/carbon/src/Carbon/Lang/mi_NZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/miq.php -/vendor/nesbot/carbon/src/Carbon/Lang/miq_NI.php -/vendor/nesbot/carbon/src/Carbon/Lang/mjw.php -/vendor/nesbot/carbon/src/Carbon/Lang/mjw_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/mk.php -/vendor/nesbot/carbon/src/Carbon/Lang/mk_MK.php -/vendor/nesbot/carbon/src/Carbon/Lang/ml.php -/vendor/nesbot/carbon/src/Carbon/Lang/ml_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/mn.php -/vendor/nesbot/carbon/src/Carbon/Lang/mn_MN.php -/vendor/nesbot/carbon/src/Carbon/Lang/mni.php -/vendor/nesbot/carbon/src/Carbon/Lang/mni_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/mo.php -/vendor/nesbot/carbon/src/Carbon/Lang/mr.php -/vendor/nesbot/carbon/src/Carbon/Lang/mr_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ms.php -/vendor/nesbot/carbon/src/Carbon/Lang/ms_BN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ms_MY.php -/vendor/nesbot/carbon/src/Carbon/Lang/ms_SG.php -/vendor/nesbot/carbon/src/Carbon/Lang/mt.php -/vendor/nesbot/carbon/src/Carbon/Lang/mt_MT.php -/vendor/nesbot/carbon/src/Carbon/Lang/mua.php -/vendor/nesbot/carbon/src/Carbon/Lang/my.php -/vendor/nesbot/carbon/src/Carbon/Lang/my_MM.php -/vendor/nesbot/carbon/src/Carbon/Lang/mzn.php -/vendor/nesbot/carbon/src/Carbon/Lang/nan.php -/vendor/nesbot/carbon/src/Carbon/Lang/nan_TW.php -/vendor/nesbot/carbon/src/Carbon/Lang/nan_TW@latin.php -/vendor/nesbot/carbon/src/Carbon/Lang/naq.php -/vendor/nesbot/carbon/src/Carbon/Lang/nb.php -/vendor/nesbot/carbon/src/Carbon/Lang/nb_NO.php -/vendor/nesbot/carbon/src/Carbon/Lang/nb_SJ.php -/vendor/nesbot/carbon/src/Carbon/Lang/nd.php -/vendor/nesbot/carbon/src/Carbon/Lang/nds.php -/vendor/nesbot/carbon/src/Carbon/Lang/nds_DE.php -/vendor/nesbot/carbon/src/Carbon/Lang/nds_NL.php -/vendor/nesbot/carbon/src/Carbon/Lang/ne.php -/vendor/nesbot/carbon/src/Carbon/Lang/ne_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ne_NP.php -/vendor/nesbot/carbon/src/Carbon/Lang/nhn.php -/vendor/nesbot/carbon/src/Carbon/Lang/nhn_MX.php -/vendor/nesbot/carbon/src/Carbon/Lang/niu.php -/vendor/nesbot/carbon/src/Carbon/Lang/niu_NU.php -/vendor/nesbot/carbon/src/Carbon/Lang/nl.php -/vendor/nesbot/carbon/src/Carbon/Lang/nl_AW.php -/vendor/nesbot/carbon/src/Carbon/Lang/nl_BE.php -/vendor/nesbot/carbon/src/Carbon/Lang/nl_BQ.php -/vendor/nesbot/carbon/src/Carbon/Lang/nl_CW.php -/vendor/nesbot/carbon/src/Carbon/Lang/nl_NL.php -/vendor/nesbot/carbon/src/Carbon/Lang/nl_SR.php -/vendor/nesbot/carbon/src/Carbon/Lang/nl_SX.php -/vendor/nesbot/carbon/src/Carbon/Lang/nmg.php -/vendor/nesbot/carbon/src/Carbon/Lang/nn.php -/vendor/nesbot/carbon/src/Carbon/Lang/nn_NO.php -/vendor/nesbot/carbon/src/Carbon/Lang/nnh.php -/vendor/nesbot/carbon/src/Carbon/Lang/no.php -/vendor/nesbot/carbon/src/Carbon/Lang/nr.php -/vendor/nesbot/carbon/src/Carbon/Lang/nr_ZA.php -/vendor/nesbot/carbon/src/Carbon/Lang/nso.php -/vendor/nesbot/carbon/src/Carbon/Lang/nso_ZA.php -/vendor/nesbot/carbon/src/Carbon/Lang/nus.php -/vendor/nesbot/carbon/src/Carbon/Lang/nyn.php -/vendor/nesbot/carbon/src/Carbon/Lang/oc.php -/vendor/nesbot/carbon/src/Carbon/Lang/oc_FR.php -/vendor/nesbot/carbon/src/Carbon/Lang/om.php -/vendor/nesbot/carbon/src/Carbon/Lang/om_ET.php -/vendor/nesbot/carbon/src/Carbon/Lang/om_KE.php -/vendor/nesbot/carbon/src/Carbon/Lang/or.php -/vendor/nesbot/carbon/src/Carbon/Lang/or_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/os.php -/vendor/nesbot/carbon/src/Carbon/Lang/os_RU.php -/vendor/nesbot/carbon/src/Carbon/Lang/pa.php -/vendor/nesbot/carbon/src/Carbon/Lang/pa_Arab.php -/vendor/nesbot/carbon/src/Carbon/Lang/pa_Guru.php -/vendor/nesbot/carbon/src/Carbon/Lang/pa_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/pa_PK.php -/vendor/nesbot/carbon/src/Carbon/Lang/pap.php -/vendor/nesbot/carbon/src/Carbon/Lang/pap_AW.php -/vendor/nesbot/carbon/src/Carbon/Lang/pap_CW.php -/vendor/nesbot/carbon/src/Carbon/Lang/pl.php -/vendor/nesbot/carbon/src/Carbon/Lang/pl_PL.php -/vendor/nesbot/carbon/src/Carbon/Lang/prg.php -/vendor/nesbot/carbon/src/Carbon/Lang/ps.php -/vendor/nesbot/carbon/src/Carbon/Lang/ps_AF.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt_AO.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt_BR.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt_CH.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt_CV.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt_GQ.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt_GW.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt_LU.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt_MO.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt_MZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt_PT.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt_ST.php -/vendor/nesbot/carbon/src/Carbon/Lang/pt_TL.php -/vendor/nesbot/carbon/src/Carbon/Lang/qu.php -/vendor/nesbot/carbon/src/Carbon/Lang/qu_BO.php -/vendor/nesbot/carbon/src/Carbon/Lang/qu_EC.php -/vendor/nesbot/carbon/src/Carbon/Lang/quz.php -/vendor/nesbot/carbon/src/Carbon/Lang/quz_PE.php -/vendor/nesbot/carbon/src/Carbon/Lang/raj.php -/vendor/nesbot/carbon/src/Carbon/Lang/raj_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/rm.php -/vendor/nesbot/carbon/src/Carbon/Lang/rn.php -/vendor/nesbot/carbon/src/Carbon/Lang/ro.php -/vendor/nesbot/carbon/src/Carbon/Lang/ro_MD.php -/vendor/nesbot/carbon/src/Carbon/Lang/ro_RO.php -/vendor/nesbot/carbon/src/Carbon/Lang/rof.php -/vendor/nesbot/carbon/src/Carbon/Lang/ru.php -/vendor/nesbot/carbon/src/Carbon/Lang/ru_BY.php -/vendor/nesbot/carbon/src/Carbon/Lang/ru_KG.php -/vendor/nesbot/carbon/src/Carbon/Lang/ru_KZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/ru_MD.php -/vendor/nesbot/carbon/src/Carbon/Lang/ru_RU.php -/vendor/nesbot/carbon/src/Carbon/Lang/ru_UA.php -/vendor/nesbot/carbon/src/Carbon/Lang/rw.php -/vendor/nesbot/carbon/src/Carbon/Lang/rw_RW.php -/vendor/nesbot/carbon/src/Carbon/Lang/rwk.php -/vendor/nesbot/carbon/src/Carbon/Lang/sa.php -/vendor/nesbot/carbon/src/Carbon/Lang/sa_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/sah.php -/vendor/nesbot/carbon/src/Carbon/Lang/sah_RU.php -/vendor/nesbot/carbon/src/Carbon/Lang/saq.php -/vendor/nesbot/carbon/src/Carbon/Lang/sat.php -/vendor/nesbot/carbon/src/Carbon/Lang/sat_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/sbp.php -/vendor/nesbot/carbon/src/Carbon/Lang/sc.php -/vendor/nesbot/carbon/src/Carbon/Lang/sc_IT.php -/vendor/nesbot/carbon/src/Carbon/Lang/sd.php -/vendor/nesbot/carbon/src/Carbon/Lang/sd_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/sd_IN@devanagari.php -/vendor/nesbot/carbon/src/Carbon/Lang/se.php -/vendor/nesbot/carbon/src/Carbon/Lang/se_FI.php -/vendor/nesbot/carbon/src/Carbon/Lang/se_NO.php -/vendor/nesbot/carbon/src/Carbon/Lang/se_SE.php -/vendor/nesbot/carbon/src/Carbon/Lang/seh.php -/vendor/nesbot/carbon/src/Carbon/Lang/ses.php -/vendor/nesbot/carbon/src/Carbon/Lang/sg.php -/vendor/nesbot/carbon/src/Carbon/Lang/sgs.php -/vendor/nesbot/carbon/src/Carbon/Lang/sgs_LT.php -/vendor/nesbot/carbon/src/Carbon/Lang/sh.php -/vendor/nesbot/carbon/src/Carbon/Lang/shi.php -/vendor/nesbot/carbon/src/Carbon/Lang/shi_Latn.php -/vendor/nesbot/carbon/src/Carbon/Lang/shi_Tfng.php -/vendor/nesbot/carbon/src/Carbon/Lang/shn.php -/vendor/nesbot/carbon/src/Carbon/Lang/shn_MM.php -/vendor/nesbot/carbon/src/Carbon/Lang/shs.php -/vendor/nesbot/carbon/src/Carbon/Lang/shs_CA.php -/vendor/nesbot/carbon/src/Carbon/Lang/si.php -/vendor/nesbot/carbon/src/Carbon/Lang/si_LK.php -/vendor/nesbot/carbon/src/Carbon/Lang/sid.php -/vendor/nesbot/carbon/src/Carbon/Lang/sid_ET.php -/vendor/nesbot/carbon/src/Carbon/Lang/sk.php -/vendor/nesbot/carbon/src/Carbon/Lang/sk_SK.php -/vendor/nesbot/carbon/src/Carbon/Lang/sl.php -/vendor/nesbot/carbon/src/Carbon/Lang/sl_SI.php -/vendor/nesbot/carbon/src/Carbon/Lang/sm.php -/vendor/nesbot/carbon/src/Carbon/Lang/sm_WS.php -/vendor/nesbot/carbon/src/Carbon/Lang/smn.php -/vendor/nesbot/carbon/src/Carbon/Lang/sn.php -/vendor/nesbot/carbon/src/Carbon/Lang/so.php -/vendor/nesbot/carbon/src/Carbon/Lang/so_DJ.php -/vendor/nesbot/carbon/src/Carbon/Lang/so_ET.php -/vendor/nesbot/carbon/src/Carbon/Lang/so_KE.php -/vendor/nesbot/carbon/src/Carbon/Lang/so_SO.php -/vendor/nesbot/carbon/src/Carbon/Lang/sq.php -/vendor/nesbot/carbon/src/Carbon/Lang/sq_AL.php -/vendor/nesbot/carbon/src/Carbon/Lang/sq_MK.php -/vendor/nesbot/carbon/src/Carbon/Lang/sq_XK.php -/vendor/nesbot/carbon/src/Carbon/Lang/sr.php -/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl.php -/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl_BA.php -/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl_ME.php -/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl_XK.php -/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn.php -/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn_BA.php -/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn_ME.php -/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn_XK.php -/vendor/nesbot/carbon/src/Carbon/Lang/sr_ME.php -/vendor/nesbot/carbon/src/Carbon/Lang/sr_RS.php -/vendor/nesbot/carbon/src/Carbon/Lang/sr_RS@latin.php -/vendor/nesbot/carbon/src/Carbon/Lang/ss.php -/vendor/nesbot/carbon/src/Carbon/Lang/ss_ZA.php -/vendor/nesbot/carbon/src/Carbon/Lang/st.php -/vendor/nesbot/carbon/src/Carbon/Lang/st_ZA.php -/vendor/nesbot/carbon/src/Carbon/Lang/sv.php -/vendor/nesbot/carbon/src/Carbon/Lang/sv_AX.php -/vendor/nesbot/carbon/src/Carbon/Lang/sv_FI.php -/vendor/nesbot/carbon/src/Carbon/Lang/sv_SE.php -/vendor/nesbot/carbon/src/Carbon/Lang/sw.php -/vendor/nesbot/carbon/src/Carbon/Lang/sw_CD.php -/vendor/nesbot/carbon/src/Carbon/Lang/sw_KE.php -/vendor/nesbot/carbon/src/Carbon/Lang/sw_TZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/sw_UG.php -/vendor/nesbot/carbon/src/Carbon/Lang/szl.php -/vendor/nesbot/carbon/src/Carbon/Lang/szl_PL.php -/vendor/nesbot/carbon/src/Carbon/Lang/ta.php -/vendor/nesbot/carbon/src/Carbon/Lang/ta_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ta_LK.php -/vendor/nesbot/carbon/src/Carbon/Lang/ta_MY.php -/vendor/nesbot/carbon/src/Carbon/Lang/ta_SG.php -/vendor/nesbot/carbon/src/Carbon/Lang/tcy.php -/vendor/nesbot/carbon/src/Carbon/Lang/tcy_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/te.php -/vendor/nesbot/carbon/src/Carbon/Lang/te_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/teo.php -/vendor/nesbot/carbon/src/Carbon/Lang/teo_KE.php -/vendor/nesbot/carbon/src/Carbon/Lang/tet.php -/vendor/nesbot/carbon/src/Carbon/Lang/tg.php -/vendor/nesbot/carbon/src/Carbon/Lang/tg_TJ.php -/vendor/nesbot/carbon/src/Carbon/Lang/th.php -/vendor/nesbot/carbon/src/Carbon/Lang/th_TH.php -/vendor/nesbot/carbon/src/Carbon/Lang/the.php -/vendor/nesbot/carbon/src/Carbon/Lang/the_NP.php -/vendor/nesbot/carbon/src/Carbon/Lang/ti.php -/vendor/nesbot/carbon/src/Carbon/Lang/ti_ER.php -/vendor/nesbot/carbon/src/Carbon/Lang/ti_ET.php -/vendor/nesbot/carbon/src/Carbon/Lang/tig.php -/vendor/nesbot/carbon/src/Carbon/Lang/tig_ER.php -/vendor/nesbot/carbon/src/Carbon/Lang/tk.php -/vendor/nesbot/carbon/src/Carbon/Lang/tk_TM.php -/vendor/nesbot/carbon/src/Carbon/Lang/tl.php -/vendor/nesbot/carbon/src/Carbon/Lang/tl_PH.php -/vendor/nesbot/carbon/src/Carbon/Lang/tlh.php -/vendor/nesbot/carbon/src/Carbon/Lang/tn.php -/vendor/nesbot/carbon/src/Carbon/Lang/tn_ZA.php -/vendor/nesbot/carbon/src/Carbon/Lang/to.php -/vendor/nesbot/carbon/src/Carbon/Lang/to_TO.php -/vendor/nesbot/carbon/src/Carbon/Lang/tpi.php -/vendor/nesbot/carbon/src/Carbon/Lang/tpi_PG.php -/vendor/nesbot/carbon/src/Carbon/Lang/tr.php -/vendor/nesbot/carbon/src/Carbon/Lang/tr_CY.php -/vendor/nesbot/carbon/src/Carbon/Lang/tr_TR.php -/vendor/nesbot/carbon/src/Carbon/Lang/ts.php -/vendor/nesbot/carbon/src/Carbon/Lang/ts_ZA.php -/vendor/nesbot/carbon/src/Carbon/Lang/tt.php -/vendor/nesbot/carbon/src/Carbon/Lang/tt_RU.php -/vendor/nesbot/carbon/src/Carbon/Lang/tt_RU@iqtelif.php -/vendor/nesbot/carbon/src/Carbon/Lang/twq.php -/vendor/nesbot/carbon/src/Carbon/Lang/tzl.php -/vendor/nesbot/carbon/src/Carbon/Lang/tzm.php -/vendor/nesbot/carbon/src/Carbon/Lang/tzm_Latn.php -/vendor/nesbot/carbon/src/Carbon/Lang/ug.php -/vendor/nesbot/carbon/src/Carbon/Lang/ug_CN.php -/vendor/nesbot/carbon/src/Carbon/Lang/uk.php -/vendor/nesbot/carbon/src/Carbon/Lang/uk_UA.php -/vendor/nesbot/carbon/src/Carbon/Lang/unm.php -/vendor/nesbot/carbon/src/Carbon/Lang/unm_US.php -/vendor/nesbot/carbon/src/Carbon/Lang/ur.php -/vendor/nesbot/carbon/src/Carbon/Lang/ur_IN.php -/vendor/nesbot/carbon/src/Carbon/Lang/ur_PK.php -/vendor/nesbot/carbon/src/Carbon/Lang/uz.php -/vendor/nesbot/carbon/src/Carbon/Lang/uz_Arab.php -/vendor/nesbot/carbon/src/Carbon/Lang/uz_Cyrl.php -/vendor/nesbot/carbon/src/Carbon/Lang/uz_Latn.php -/vendor/nesbot/carbon/src/Carbon/Lang/uz_UZ.php -/vendor/nesbot/carbon/src/Carbon/Lang/uz_UZ@cyrillic.php -/vendor/nesbot/carbon/src/Carbon/Lang/vai.php -/vendor/nesbot/carbon/src/Carbon/Lang/vai_Latn.php -/vendor/nesbot/carbon/src/Carbon/Lang/vai_Vaii.php -/vendor/nesbot/carbon/src/Carbon/Lang/ve.php -/vendor/nesbot/carbon/src/Carbon/Lang/ve_ZA.php -/vendor/nesbot/carbon/src/Carbon/Lang/vi.php -/vendor/nesbot/carbon/src/Carbon/Lang/vi_VN.php -/vendor/nesbot/carbon/src/Carbon/Lang/vo.php -/vendor/nesbot/carbon/src/Carbon/Lang/vun.php -/vendor/nesbot/carbon/src/Carbon/Lang/wa.php -/vendor/nesbot/carbon/src/Carbon/Lang/wa_BE.php -/vendor/nesbot/carbon/src/Carbon/Lang/wae.php -/vendor/nesbot/carbon/src/Carbon/Lang/wae_CH.php -/vendor/nesbot/carbon/src/Carbon/Lang/wal.php -/vendor/nesbot/carbon/src/Carbon/Lang/wal_ET.php -/vendor/nesbot/carbon/src/Carbon/Lang/wo.php -/vendor/nesbot/carbon/src/Carbon/Lang/wo_SN.php -/vendor/nesbot/carbon/src/Carbon/Lang/xh.php -/vendor/nesbot/carbon/src/Carbon/Lang/xh_ZA.php -/vendor/nesbot/carbon/src/Carbon/Lang/xog.php -/vendor/nesbot/carbon/src/Carbon/Lang/yav.php -/vendor/nesbot/carbon/src/Carbon/Lang/yi.php -/vendor/nesbot/carbon/src/Carbon/Lang/yi_US.php -/vendor/nesbot/carbon/src/Carbon/Lang/yo.php -/vendor/nesbot/carbon/src/Carbon/Lang/yo_BJ.php -/vendor/nesbot/carbon/src/Carbon/Lang/yo_NG.php -/vendor/nesbot/carbon/src/Carbon/Lang/yue.php -/vendor/nesbot/carbon/src/Carbon/Lang/yue_Hans.php -/vendor/nesbot/carbon/src/Carbon/Lang/yue_Hant.php -/vendor/nesbot/carbon/src/Carbon/Lang/yue_HK.php -/vendor/nesbot/carbon/src/Carbon/Lang/yuw.php -/vendor/nesbot/carbon/src/Carbon/Lang/yuw_PG.php -/vendor/nesbot/carbon/src/Carbon/Lang/zgh.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_CN.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_HK.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_MO.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_SG.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_HK.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_MO.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_TW.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_HK.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_MO.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_SG.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_TW.php -/vendor/nesbot/carbon/src/Carbon/Lang/zh_YUE.php -/vendor/nesbot/carbon/src/Carbon/Lang/zu.php -/vendor/nesbot/carbon/src/Carbon/Lang/zu_ZA.php -/vendor/nesbot/carbon/src/Carbon/Laravel/ServiceProvider.php -/vendor/nesbot/carbon/src/Carbon/List/languages.php -/vendor/nesbot/carbon/src/Carbon/List/regions.php -/vendor/nesbot/carbon/src/Carbon/MessageFormatter/MessageFormatterMapper.php -/vendor/nesbot/carbon/src/Carbon/PHPStan/AbstractMacro.php -/vendor/nesbot/carbon/src/Carbon/PHPStan/Macro.php -/vendor/nesbot/carbon/src/Carbon/PHPStan/MacroExtension.php -/vendor/nesbot/carbon/src/Carbon/PHPStan/MacroScanner.php -/vendor/nesbot/carbon/src/Carbon/Traits/Boundaries.php -/vendor/nesbot/carbon/src/Carbon/Traits/Cast.php -/vendor/nesbot/carbon/src/Carbon/Traits/Comparison.php -/vendor/nesbot/carbon/src/Carbon/Traits/Converter.php -/vendor/nesbot/carbon/src/Carbon/Traits/Creator.php -/vendor/nesbot/carbon/src/Carbon/Traits/Date.php -/vendor/nesbot/carbon/src/Carbon/Traits/DeprecatedProperties.php -/vendor/nesbot/carbon/src/Carbon/Traits/Difference.php -/vendor/nesbot/carbon/src/Carbon/Traits/IntervalRounding.php -/vendor/nesbot/carbon/src/Carbon/Traits/IntervalStep.php -/vendor/nesbot/carbon/src/Carbon/Traits/Localization.php -/vendor/nesbot/carbon/src/Carbon/Traits/Macro.php -/vendor/nesbot/carbon/src/Carbon/Traits/MagicParameter.php -/vendor/nesbot/carbon/src/Carbon/Traits/Mixin.php -/vendor/nesbot/carbon/src/Carbon/Traits/Modifiers.php -/vendor/nesbot/carbon/src/Carbon/Traits/Mutability.php -/vendor/nesbot/carbon/src/Carbon/Traits/ObjectInitialisation.php -/vendor/nesbot/carbon/src/Carbon/Traits/Options.php -/vendor/nesbot/carbon/src/Carbon/Traits/Rounding.php -/vendor/nesbot/carbon/src/Carbon/Traits/Serialization.php -/vendor/nesbot/carbon/src/Carbon/Traits/Test.php -/vendor/nesbot/carbon/src/Carbon/Traits/Timestamp.php -/vendor/nesbot/carbon/src/Carbon/Traits/ToStringFormat.php -/vendor/nesbot/carbon/src/Carbon/Traits/Units.php -/vendor/nesbot/carbon/src/Carbon/Traits/Week.php -/vendor/nesbot/carbon/src/Carbon/AbstractTranslator.php -/vendor/nesbot/carbon/src/Carbon/Carbon.php -/vendor/nesbot/carbon/src/Carbon/CarbonConverterInterface.php -/vendor/nesbot/carbon/src/Carbon/CarbonImmutable.php -/vendor/nesbot/carbon/src/Carbon/CarbonInterface.php -/vendor/nesbot/carbon/src/Carbon/CarbonInterval.php -/vendor/nesbot/carbon/src/Carbon/CarbonPeriod.php -/vendor/nesbot/carbon/src/Carbon/CarbonPeriodImmutable.php -/vendor/nesbot/carbon/src/Carbon/CarbonTimeZone.php -/vendor/nesbot/carbon/src/Carbon/Factory.php -/vendor/nesbot/carbon/src/Carbon/FactoryImmutable.php -/vendor/nesbot/carbon/src/Carbon/Language.php -/vendor/nesbot/carbon/src/Carbon/Translator.php -/vendor/nesbot/carbon/src/Carbon/TranslatorImmutable.php -/vendor/nesbot/carbon/src/Carbon/TranslatorStrongTypeInterface.php -/vendor/nesbot/carbon/.phpstorm.meta.php -/vendor/nesbot/carbon/composer.json -/vendor/nesbot/carbon/extension.neon -/vendor/nesbot/carbon/LICENSE -/vendor/nesbot/carbon/readme.md -/vendor/nesbot/carbon/sponsors.php -/vendor/psr/clock/src/ClockInterface.php -/vendor/psr/clock/CHANGELOG.md -/vendor/psr/clock/composer.json -/vendor/psr/clock/LICENSE -/vendor/psr/clock/README.md -/vendor/psr/container/src/ContainerExceptionInterface.php -/vendor/psr/container/src/ContainerInterface.php -/vendor/psr/container/src/NotFoundExceptionInterface.php -/vendor/psr/container/.gitignore -/vendor/psr/container/composer.json -/vendor/psr/container/LICENSE -/vendor/psr/container/README.md -/vendor/psr/event-dispatcher/src/EventDispatcherInterface.php -/vendor/psr/event-dispatcher/src/ListenerProviderInterface.php -/vendor/psr/event-dispatcher/src/StoppableEventInterface.php -/vendor/psr/event-dispatcher/.editorconfig -/vendor/psr/event-dispatcher/.gitignore -/vendor/psr/event-dispatcher/composer.json -/vendor/psr/event-dispatcher/LICENSE -/vendor/psr/event-dispatcher/README.md -/vendor/psr/log/src/AbstractLogger.php -/vendor/psr/log/src/InvalidArgumentException.php -/vendor/psr/log/src/LoggerAwareInterface.php -/vendor/psr/log/src/LoggerAwareTrait.php -/vendor/psr/log/src/LoggerInterface.php -/vendor/psr/log/src/LoggerTrait.php -/vendor/psr/log/src/LogLevel.php -/vendor/psr/log/src/NullLogger.php -/vendor/psr/log/composer.json -/vendor/psr/log/LICENSE -/vendor/psr/log/README.md -/vendor/psr/simple-cache/src/CacheException.php -/vendor/psr/simple-cache/src/CacheInterface.php -/vendor/psr/simple-cache/src/InvalidArgumentException.php -/vendor/psr/simple-cache/.editorconfig -/vendor/psr/simple-cache/composer.json -/vendor/psr/simple-cache/LICENSE.md -/vendor/psr/simple-cache/README.md -/vendor/spatie/laravel-html/src/Elements/Attributes/Autofocus.php -/vendor/spatie/laravel-html/src/Elements/Attributes/Disabled.php -/vendor/spatie/laravel-html/src/Elements/Attributes/MinMaxLength.php -/vendor/spatie/laravel-html/src/Elements/Attributes/Name.php -/vendor/spatie/laravel-html/src/Elements/Attributes/Placeholder.php -/vendor/spatie/laravel-html/src/Elements/Attributes/ReadonlyTrait.php -/vendor/spatie/laravel-html/src/Elements/Attributes/Required.php -/vendor/spatie/laravel-html/src/Elements/Attributes/Target.php -/vendor/spatie/laravel-html/src/Elements/Attributes/Type.php -/vendor/spatie/laravel-html/src/Elements/Attributes/Value.php -/vendor/spatie/laravel-html/src/Elements/A.php -/vendor/spatie/laravel-html/src/Elements/Button.php -/vendor/spatie/laravel-html/src/Elements/Div.php -/vendor/spatie/laravel-html/src/Elements/Element.php -/vendor/spatie/laravel-html/src/Elements/Fieldset.php -/vendor/spatie/laravel-html/src/Elements/File.php -/vendor/spatie/laravel-html/src/Elements/Form.php -/vendor/spatie/laravel-html/src/Elements/I.php -/vendor/spatie/laravel-html/src/Elements/Img.php -/vendor/spatie/laravel-html/src/Elements/Input.php -/vendor/spatie/laravel-html/src/Elements/Label.php -/vendor/spatie/laravel-html/src/Elements/Legend.php -/vendor/spatie/laravel-html/src/Elements/Optgroup.php -/vendor/spatie/laravel-html/src/Elements/Option.php -/vendor/spatie/laravel-html/src/Elements/P.php -/vendor/spatie/laravel-html/src/Elements/Select.php -/vendor/spatie/laravel-html/src/Elements/Span.php -/vendor/spatie/laravel-html/src/Elements/Textarea.php -/vendor/spatie/laravel-html/src/Exceptions/InvalidChild.php -/vendor/spatie/laravel-html/src/Exceptions/InvalidHtml.php -/vendor/spatie/laravel-html/src/Exceptions/MissingTag.php -/vendor/spatie/laravel-html/src/Facades/Html.php -/vendor/spatie/laravel-html/src/Helpers/Arr.php -/vendor/spatie/laravel-html/src/Attributes.php -/vendor/spatie/laravel-html/src/BaseElement.php -/vendor/spatie/laravel-html/src/helpers.php -/vendor/spatie/laravel-html/src/Html.php -/vendor/spatie/laravel-html/src/HtmlElement.php -/vendor/spatie/laravel-html/src/HtmlServiceProvider.php -/vendor/spatie/laravel-html/src/Selectable.php -/vendor/spatie/laravel-html/CHANGELOG.md -/vendor/spatie/laravel-html/composer.json -/vendor/spatie/laravel-html/LICENSE.md -/vendor/spatie/laravel-html/README.md -/vendor/symfony/deprecation-contracts/CHANGELOG.md -/vendor/symfony/deprecation-contracts/composer.json -/vendor/symfony/deprecation-contracts/function.php -/vendor/symfony/deprecation-contracts/LICENSE -/vendor/symfony/deprecation-contracts/README.md -/vendor/symfony/error-handler/Error/ClassNotFoundError.php -/vendor/symfony/error-handler/Error/FatalError.php -/vendor/symfony/error-handler/Error/OutOfMemoryError.php -/vendor/symfony/error-handler/Error/UndefinedFunctionError.php -/vendor/symfony/error-handler/Error/UndefinedMethodError.php -/vendor/symfony/error-handler/ErrorEnhancer/ClassNotFoundErrorEnhancer.php -/vendor/symfony/error-handler/ErrorEnhancer/ErrorEnhancerInterface.php -/vendor/symfony/error-handler/ErrorEnhancer/UndefinedFunctionErrorEnhancer.php -/vendor/symfony/error-handler/ErrorEnhancer/UndefinedMethodErrorEnhancer.php -/vendor/symfony/error-handler/ErrorRenderer/CliErrorRenderer.php -/vendor/symfony/error-handler/ErrorRenderer/ErrorRendererInterface.php -/vendor/symfony/error-handler/ErrorRenderer/FileLinkFormatter.php -/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php -/vendor/symfony/error-handler/ErrorRenderer/SerializerErrorRenderer.php -/vendor/symfony/error-handler/Exception/FlattenException.php -/vendor/symfony/error-handler/Exception/SilencedErrorContext.php -/vendor/symfony/error-handler/Internal/TentativeTypes.php -/vendor/symfony/error-handler/Resources/assets/css/error.css -/vendor/symfony/error-handler/Resources/assets/css/exception.css -/vendor/symfony/error-handler/Resources/assets/css/exception_full.css -/vendor/symfony/error-handler/Resources/assets/images/chevron-right.svg -/vendor/symfony/error-handler/Resources/assets/images/favicon.png.base64 -/vendor/symfony/error-handler/Resources/assets/images/icon-book.svg -/vendor/symfony/error-handler/Resources/assets/images/icon-copy.svg -/vendor/symfony/error-handler/Resources/assets/images/icon-minus-square.svg -/vendor/symfony/error-handler/Resources/assets/images/icon-minus-square-o.svg -/vendor/symfony/error-handler/Resources/assets/images/icon-plus-square.svg -/vendor/symfony/error-handler/Resources/assets/images/icon-plus-square-o.svg -/vendor/symfony/error-handler/Resources/assets/images/icon-support.svg -/vendor/symfony/error-handler/Resources/assets/images/symfony-ghost.svg.php -/vendor/symfony/error-handler/Resources/assets/images/symfony-logo.svg -/vendor/symfony/error-handler/Resources/assets/js/exception.js -/vendor/symfony/error-handler/Resources/bin/extract-tentative-return-types.php -/vendor/symfony/error-handler/Resources/bin/patch-type-declarations -/vendor/symfony/error-handler/Resources/views/error.html.php -/vendor/symfony/error-handler/Resources/views/exception.html.php -/vendor/symfony/error-handler/Resources/views/exception_full.html.php -/vendor/symfony/error-handler/Resources/views/logs.html.php -/vendor/symfony/error-handler/Resources/views/trace.html.php -/vendor/symfony/error-handler/Resources/views/traces.html.php -/vendor/symfony/error-handler/Resources/views/traces_text.html.php -/vendor/symfony/error-handler/BufferingLogger.php -/vendor/symfony/error-handler/CHANGELOG.md -/vendor/symfony/error-handler/composer.json -/vendor/symfony/error-handler/Debug.php -/vendor/symfony/error-handler/DebugClassLoader.php -/vendor/symfony/error-handler/ErrorHandler.php -/vendor/symfony/error-handler/LICENSE -/vendor/symfony/error-handler/README.md -/vendor/symfony/error-handler/ThrowableUtils.php -/vendor/symfony/event-dispatcher/Attribute/AsEventListener.php -/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php -/vendor/symfony/event-dispatcher/Debug/WrappedListener.php -/vendor/symfony/event-dispatcher/DependencyInjection/AddEventAliasesPass.php -/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php -/vendor/symfony/event-dispatcher/CHANGELOG.md -/vendor/symfony/event-dispatcher/composer.json -/vendor/symfony/event-dispatcher/EventDispatcher.php -/vendor/symfony/event-dispatcher/EventDispatcherInterface.php -/vendor/symfony/event-dispatcher/EventSubscriberInterface.php -/vendor/symfony/event-dispatcher/GenericEvent.php -/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php -/vendor/symfony/event-dispatcher/LICENSE -/vendor/symfony/event-dispatcher/README.md -/vendor/symfony/event-dispatcher-contracts/CHANGELOG.md -/vendor/symfony/event-dispatcher-contracts/composer.json -/vendor/symfony/event-dispatcher-contracts/Event.php -/vendor/symfony/event-dispatcher-contracts/EventDispatcherInterface.php -/vendor/symfony/event-dispatcher-contracts/LICENSE -/vendor/symfony/event-dispatcher-contracts/README.md -/vendor/symfony/finder/Comparator/Comparator.php -/vendor/symfony/finder/Comparator/DateComparator.php -/vendor/symfony/finder/Comparator/NumberComparator.php -/vendor/symfony/finder/Exception/AccessDeniedException.php -/vendor/symfony/finder/Exception/DirectoryNotFoundException.php -/vendor/symfony/finder/Iterator/CustomFilterIterator.php -/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php -/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php -/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php -/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php -/vendor/symfony/finder/Iterator/FilenameFilterIterator.php -/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php -/vendor/symfony/finder/Iterator/LazyIterator.php -/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php -/vendor/symfony/finder/Iterator/PathFilterIterator.php -/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php -/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php -/vendor/symfony/finder/Iterator/SortableIterator.php -/vendor/symfony/finder/Iterator/VcsIgnoredFilterIterator.php -/vendor/symfony/finder/CHANGELOG.md -/vendor/symfony/finder/composer.json -/vendor/symfony/finder/Finder.php -/vendor/symfony/finder/Gitignore.php -/vendor/symfony/finder/Glob.php -/vendor/symfony/finder/LICENSE -/vendor/symfony/finder/README.md -/vendor/symfony/finder/SplFileInfo.php -/vendor/symfony/http-foundation/Exception/BadRequestException.php -/vendor/symfony/http-foundation/Exception/ConflictingHeadersException.php -/vendor/symfony/http-foundation/Exception/JsonException.php -/vendor/symfony/http-foundation/Exception/RequestExceptionInterface.php -/vendor/symfony/http-foundation/Exception/SessionNotFoundException.php -/vendor/symfony/http-foundation/Exception/SuspiciousOperationException.php -/vendor/symfony/http-foundation/Exception/UnexpectedValueException.php -/vendor/symfony/http-foundation/File/Exception/AccessDeniedException.php -/vendor/symfony/http-foundation/File/Exception/CannotWriteFileException.php -/vendor/symfony/http-foundation/File/Exception/ExtensionFileException.php -/vendor/symfony/http-foundation/File/Exception/FileException.php -/vendor/symfony/http-foundation/File/Exception/FileNotFoundException.php -/vendor/symfony/http-foundation/File/Exception/FormSizeFileException.php -/vendor/symfony/http-foundation/File/Exception/IniSizeFileException.php -/vendor/symfony/http-foundation/File/Exception/NoFileException.php -/vendor/symfony/http-foundation/File/Exception/NoTmpDirFileException.php -/vendor/symfony/http-foundation/File/Exception/PartialFileException.php -/vendor/symfony/http-foundation/File/Exception/UnexpectedTypeException.php -/vendor/symfony/http-foundation/File/Exception/UploadException.php -/vendor/symfony/http-foundation/File/File.php -/vendor/symfony/http-foundation/File/Stream.php -/vendor/symfony/http-foundation/File/UploadedFile.php -/vendor/symfony/http-foundation/RateLimiter/AbstractRequestRateLimiter.php -/vendor/symfony/http-foundation/RateLimiter/PeekableRequestRateLimiterInterface.php -/vendor/symfony/http-foundation/RateLimiter/RequestRateLimiterInterface.php -/vendor/symfony/http-foundation/RequestMatcher/AttributesRequestMatcher.php -/vendor/symfony/http-foundation/RequestMatcher/ExpressionRequestMatcher.php -/vendor/symfony/http-foundation/RequestMatcher/HostRequestMatcher.php -/vendor/symfony/http-foundation/RequestMatcher/IpsRequestMatcher.php -/vendor/symfony/http-foundation/RequestMatcher/IsJsonRequestMatcher.php -/vendor/symfony/http-foundation/RequestMatcher/MethodRequestMatcher.php -/vendor/symfony/http-foundation/RequestMatcher/PathRequestMatcher.php -/vendor/symfony/http-foundation/RequestMatcher/PortRequestMatcher.php -/vendor/symfony/http-foundation/RequestMatcher/SchemeRequestMatcher.php -/vendor/symfony/http-foundation/Session/Attribute/AttributeBag.php -/vendor/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php -/vendor/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php -/vendor/symfony/http-foundation/Session/Flash/FlashBag.php -/vendor/symfony/http-foundation/Session/Flash/FlashBagInterface.php -/vendor/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php -/vendor/symfony/http-foundation/Session/Storage/Handler/IdentityMarshaller.php -/vendor/symfony/http-foundation/Session/Storage/Handler/MarshallingSessionHandler.php -/vendor/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php -/vendor/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php -/vendor/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php -/vendor/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php -/vendor/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php -/vendor/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php -/vendor/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php -/vendor/symfony/http-foundation/Session/Storage/Handler/SessionHandlerFactory.php -/vendor/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php -/vendor/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php -/vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php -/vendor/symfony/http-foundation/Session/Storage/MetadataBag.php -/vendor/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php -/vendor/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php -/vendor/symfony/http-foundation/Session/Storage/MockFileSessionStorageFactory.php -/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php -/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorageFactory.php -/vendor/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php -/vendor/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorageFactory.php -/vendor/symfony/http-foundation/Session/Storage/SessionStorageFactoryInterface.php -/vendor/symfony/http-foundation/Session/Storage/SessionStorageInterface.php -/vendor/symfony/http-foundation/Session/FlashBagAwareSessionInterface.php -/vendor/symfony/http-foundation/Session/Session.php -/vendor/symfony/http-foundation/Session/SessionBagInterface.php -/vendor/symfony/http-foundation/Session/SessionBagProxy.php -/vendor/symfony/http-foundation/Session/SessionFactory.php -/vendor/symfony/http-foundation/Session/SessionFactoryInterface.php -/vendor/symfony/http-foundation/Session/SessionInterface.php -/vendor/symfony/http-foundation/Session/SessionUtils.php -/vendor/symfony/http-foundation/Test/Constraint/RequestAttributeValueSame.php -/vendor/symfony/http-foundation/Test/Constraint/ResponseCookieValueSame.php -/vendor/symfony/http-foundation/Test/Constraint/ResponseFormatSame.php -/vendor/symfony/http-foundation/Test/Constraint/ResponseHasCookie.php -/vendor/symfony/http-foundation/Test/Constraint/ResponseHasHeader.php -/vendor/symfony/http-foundation/Test/Constraint/ResponseHeaderLocationSame.php -/vendor/symfony/http-foundation/Test/Constraint/ResponseHeaderSame.php -/vendor/symfony/http-foundation/Test/Constraint/ResponseIsRedirected.php -/vendor/symfony/http-foundation/Test/Constraint/ResponseIsSuccessful.php -/vendor/symfony/http-foundation/Test/Constraint/ResponseIsUnprocessable.php -/vendor/symfony/http-foundation/Test/Constraint/ResponseStatusCodeSame.php -/vendor/symfony/http-foundation/AcceptHeader.php -/vendor/symfony/http-foundation/AcceptHeaderItem.php -/vendor/symfony/http-foundation/BinaryFileResponse.php -/vendor/symfony/http-foundation/ChainRequestMatcher.php -/vendor/symfony/http-foundation/CHANGELOG.md -/vendor/symfony/http-foundation/composer.json -/vendor/symfony/http-foundation/Cookie.php -/vendor/symfony/http-foundation/ExpressionRequestMatcher.php -/vendor/symfony/http-foundation/FileBag.php -/vendor/symfony/http-foundation/HeaderBag.php -/vendor/symfony/http-foundation/HeaderUtils.php -/vendor/symfony/http-foundation/InputBag.php -/vendor/symfony/http-foundation/IpUtils.php -/vendor/symfony/http-foundation/JsonResponse.php -/vendor/symfony/http-foundation/LICENSE -/vendor/symfony/http-foundation/ParameterBag.php -/vendor/symfony/http-foundation/README.md -/vendor/symfony/http-foundation/RedirectResponse.php -/vendor/symfony/http-foundation/Request.php -/vendor/symfony/http-foundation/RequestMatcher.php -/vendor/symfony/http-foundation/RequestMatcherInterface.php -/vendor/symfony/http-foundation/RequestStack.php -/vendor/symfony/http-foundation/Response.php -/vendor/symfony/http-foundation/ResponseHeaderBag.php -/vendor/symfony/http-foundation/ServerBag.php -/vendor/symfony/http-foundation/StreamedJsonResponse.php -/vendor/symfony/http-foundation/StreamedResponse.php -/vendor/symfony/http-foundation/UriSigner.php -/vendor/symfony/http-foundation/UrlHelper.php -/vendor/symfony/http-kernel/Attribute/AsController.php -/vendor/symfony/http-kernel/Attribute/AsTargetedValueResolver.php -/vendor/symfony/http-kernel/Attribute/Cache.php -/vendor/symfony/http-kernel/Attribute/MapDateTime.php -/vendor/symfony/http-kernel/Attribute/MapQueryParameter.php -/vendor/symfony/http-kernel/Attribute/MapQueryString.php -/vendor/symfony/http-kernel/Attribute/MapRequestPayload.php -/vendor/symfony/http-kernel/Attribute/ValueResolver.php -/vendor/symfony/http-kernel/Attribute/WithHttpStatus.php -/vendor/symfony/http-kernel/Attribute/WithLogLevel.php -/vendor/symfony/http-kernel/Bundle/AbstractBundle.php -/vendor/symfony/http-kernel/Bundle/Bundle.php -/vendor/symfony/http-kernel/Bundle/BundleExtension.php -/vendor/symfony/http-kernel/Bundle/BundleInterface.php -/vendor/symfony/http-kernel/CacheClearer/CacheClearerInterface.php -/vendor/symfony/http-kernel/CacheClearer/ChainCacheClearer.php -/vendor/symfony/http-kernel/CacheClearer/Psr6CacheClearer.php -/vendor/symfony/http-kernel/CacheWarmer/CacheWarmer.php -/vendor/symfony/http-kernel/CacheWarmer/CacheWarmerAggregate.php -/vendor/symfony/http-kernel/CacheWarmer/CacheWarmerInterface.php -/vendor/symfony/http-kernel/CacheWarmer/WarmableInterface.php -/vendor/symfony/http-kernel/Config/FileLocator.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/BackedEnumValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/DateTimeValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/DefaultValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/NotTaggedControllerValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/QueryParameterValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/RequestAttributeValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/RequestPayloadValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/RequestValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/ServiceValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/SessionValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/TraceableValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/UidValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver/VariadicValueResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolver.php -/vendor/symfony/http-kernel/Controller/ArgumentResolverInterface.php -/vendor/symfony/http-kernel/Controller/ArgumentValueResolverInterface.php -/vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php -/vendor/symfony/http-kernel/Controller/ControllerReference.php -/vendor/symfony/http-kernel/Controller/ControllerResolver.php -/vendor/symfony/http-kernel/Controller/ControllerResolverInterface.php -/vendor/symfony/http-kernel/Controller/ErrorController.php -/vendor/symfony/http-kernel/Controller/TraceableArgumentResolver.php -/vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php -/vendor/symfony/http-kernel/Controller/ValueResolverInterface.php -/vendor/symfony/http-kernel/ControllerMetadata/ArgumentMetadata.php -/vendor/symfony/http-kernel/ControllerMetadata/ArgumentMetadataFactory.php -/vendor/symfony/http-kernel/ControllerMetadata/ArgumentMetadataFactoryInterface.php -/vendor/symfony/http-kernel/DataCollector/AjaxDataCollector.php -/vendor/symfony/http-kernel/DataCollector/ConfigDataCollector.php -/vendor/symfony/http-kernel/DataCollector/DataCollector.php -/vendor/symfony/http-kernel/DataCollector/DataCollectorInterface.php -/vendor/symfony/http-kernel/DataCollector/DumpDataCollector.php -/vendor/symfony/http-kernel/DataCollector/EventDataCollector.php -/vendor/symfony/http-kernel/DataCollector/ExceptionDataCollector.php -/vendor/symfony/http-kernel/DataCollector/LateDataCollectorInterface.php -/vendor/symfony/http-kernel/DataCollector/LoggerDataCollector.php -/vendor/symfony/http-kernel/DataCollector/MemoryDataCollector.php -/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php -/vendor/symfony/http-kernel/DataCollector/RouterDataCollector.php -/vendor/symfony/http-kernel/DataCollector/TimeDataCollector.php -/vendor/symfony/http-kernel/Debug/ErrorHandlerConfigurator.php -/vendor/symfony/http-kernel/Debug/FileLinkFormatter.php -/vendor/symfony/http-kernel/Debug/TraceableEventDispatcher.php -/vendor/symfony/http-kernel/Debug/VirtualRequestStack.php -/vendor/symfony/http-kernel/DependencyInjection/AddAnnotatedClassesToCachePass.php -/vendor/symfony/http-kernel/DependencyInjection/ConfigurableExtension.php -/vendor/symfony/http-kernel/DependencyInjection/ControllerArgumentValueResolverPass.php -/vendor/symfony/http-kernel/DependencyInjection/Extension.php -/vendor/symfony/http-kernel/DependencyInjection/FragmentRendererPass.php -/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php -/vendor/symfony/http-kernel/DependencyInjection/LoggerPass.php -/vendor/symfony/http-kernel/DependencyInjection/MergeExtensionConfigurationPass.php -/vendor/symfony/http-kernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php -/vendor/symfony/http-kernel/DependencyInjection/RegisterLocaleAwareServicesPass.php -/vendor/symfony/http-kernel/DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php -/vendor/symfony/http-kernel/DependencyInjection/ResettableServicePass.php -/vendor/symfony/http-kernel/DependencyInjection/ServicesResetter.php -/vendor/symfony/http-kernel/Event/ControllerArgumentsEvent.php -/vendor/symfony/http-kernel/Event/ControllerEvent.php -/vendor/symfony/http-kernel/Event/ExceptionEvent.php -/vendor/symfony/http-kernel/Event/FinishRequestEvent.php -/vendor/symfony/http-kernel/Event/KernelEvent.php -/vendor/symfony/http-kernel/Event/RequestEvent.php -/vendor/symfony/http-kernel/Event/ResponseEvent.php -/vendor/symfony/http-kernel/Event/TerminateEvent.php -/vendor/symfony/http-kernel/Event/ViewEvent.php -/vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php -/vendor/symfony/http-kernel/EventListener/AddRequestFormatsListener.php -/vendor/symfony/http-kernel/EventListener/CacheAttributeListener.php -/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php -/vendor/symfony/http-kernel/EventListener/DisallowRobotsIndexingListener.php -/vendor/symfony/http-kernel/EventListener/DumpListener.php -/vendor/symfony/http-kernel/EventListener/ErrorListener.php -/vendor/symfony/http-kernel/EventListener/FragmentListener.php -/vendor/symfony/http-kernel/EventListener/LocaleAwareListener.php -/vendor/symfony/http-kernel/EventListener/LocaleListener.php -/vendor/symfony/http-kernel/EventListener/ProfilerListener.php -/vendor/symfony/http-kernel/EventListener/ResponseListener.php -/vendor/symfony/http-kernel/EventListener/RouterListener.php -/vendor/symfony/http-kernel/EventListener/SessionListener.php -/vendor/symfony/http-kernel/EventListener/StreamedResponseListener.php -/vendor/symfony/http-kernel/EventListener/SurrogateListener.php -/vendor/symfony/http-kernel/EventListener/ValidateRequestListener.php -/vendor/symfony/http-kernel/Exception/AccessDeniedHttpException.php -/vendor/symfony/http-kernel/Exception/BadRequestHttpException.php -/vendor/symfony/http-kernel/Exception/ConflictHttpException.php -/vendor/symfony/http-kernel/Exception/ControllerDoesNotReturnResponseException.php -/vendor/symfony/http-kernel/Exception/GoneHttpException.php -/vendor/symfony/http-kernel/Exception/HttpException.php -/vendor/symfony/http-kernel/Exception/HttpExceptionInterface.php -/vendor/symfony/http-kernel/Exception/InvalidMetadataException.php -/vendor/symfony/http-kernel/Exception/LengthRequiredHttpException.php -/vendor/symfony/http-kernel/Exception/LockedHttpException.php -/vendor/symfony/http-kernel/Exception/MethodNotAllowedHttpException.php -/vendor/symfony/http-kernel/Exception/NotAcceptableHttpException.php -/vendor/symfony/http-kernel/Exception/NotFoundHttpException.php -/vendor/symfony/http-kernel/Exception/PreconditionFailedHttpException.php -/vendor/symfony/http-kernel/Exception/PreconditionRequiredHttpException.php -/vendor/symfony/http-kernel/Exception/ResolverNotFoundException.php -/vendor/symfony/http-kernel/Exception/ServiceUnavailableHttpException.php -/vendor/symfony/http-kernel/Exception/TooManyRequestsHttpException.php -/vendor/symfony/http-kernel/Exception/UnauthorizedHttpException.php -/vendor/symfony/http-kernel/Exception/UnexpectedSessionUsageException.php -/vendor/symfony/http-kernel/Exception/UnprocessableEntityHttpException.php -/vendor/symfony/http-kernel/Exception/UnsupportedMediaTypeHttpException.php -/vendor/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php -/vendor/symfony/http-kernel/Fragment/EsiFragmentRenderer.php -/vendor/symfony/http-kernel/Fragment/FragmentHandler.php -/vendor/symfony/http-kernel/Fragment/FragmentRendererInterface.php -/vendor/symfony/http-kernel/Fragment/FragmentUriGenerator.php -/vendor/symfony/http-kernel/Fragment/FragmentUriGeneratorInterface.php -/vendor/symfony/http-kernel/Fragment/HIncludeFragmentRenderer.php -/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php -/vendor/symfony/http-kernel/Fragment/RoutableFragmentRenderer.php -/vendor/symfony/http-kernel/Fragment/SsiFragmentRenderer.php -/vendor/symfony/http-kernel/HttpCache/AbstractSurrogate.php -/vendor/symfony/http-kernel/HttpCache/Esi.php -/vendor/symfony/http-kernel/HttpCache/HttpCache.php -/vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategy.php -/vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategyInterface.php -/vendor/symfony/http-kernel/HttpCache/Ssi.php -/vendor/symfony/http-kernel/HttpCache/Store.php -/vendor/symfony/http-kernel/HttpCache/StoreInterface.php -/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php -/vendor/symfony/http-kernel/HttpCache/SurrogateInterface.php -/vendor/symfony/http-kernel/Log/DebugLoggerConfigurator.php -/vendor/symfony/http-kernel/Log/DebugLoggerInterface.php -/vendor/symfony/http-kernel/Log/Logger.php -/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php -/vendor/symfony/http-kernel/Profiler/Profile.php -/vendor/symfony/http-kernel/Profiler/Profiler.php -/vendor/symfony/http-kernel/Profiler/ProfilerStorageInterface.php -/vendor/symfony/http-kernel/Resources/welcome.html.php -/vendor/symfony/http-kernel/CHANGELOG.md -/vendor/symfony/http-kernel/composer.json -/vendor/symfony/http-kernel/HttpClientKernel.php -/vendor/symfony/http-kernel/HttpKernel.php -/vendor/symfony/http-kernel/HttpKernelBrowser.php -/vendor/symfony/http-kernel/HttpKernelInterface.php -/vendor/symfony/http-kernel/Kernel.php -/vendor/symfony/http-kernel/KernelEvents.php -/vendor/symfony/http-kernel/KernelInterface.php -/vendor/symfony/http-kernel/LICENSE -/vendor/symfony/http-kernel/README.md -/vendor/symfony/http-kernel/RebootableInterface.php -/vendor/symfony/http-kernel/TerminableInterface.php -/vendor/symfony/http-kernel/UriSigner.php -/vendor/symfony/mime/Crypto/DkimOptions.php -/vendor/symfony/mime/Crypto/DkimSigner.php -/vendor/symfony/mime/Crypto/SMime.php -/vendor/symfony/mime/Crypto/SMimeEncrypter.php -/vendor/symfony/mime/Crypto/SMimeSigner.php -/vendor/symfony/mime/DependencyInjection/AddMimeTypeGuesserPass.php -/vendor/symfony/mime/Encoder/AddressEncoderInterface.php -/vendor/symfony/mime/Encoder/Base64ContentEncoder.php -/vendor/symfony/mime/Encoder/Base64Encoder.php -/vendor/symfony/mime/Encoder/Base64MimeHeaderEncoder.php -/vendor/symfony/mime/Encoder/ContentEncoderInterface.php -/vendor/symfony/mime/Encoder/EightBitContentEncoder.php -/vendor/symfony/mime/Encoder/EncoderInterface.php -/vendor/symfony/mime/Encoder/IdnAddressEncoder.php -/vendor/symfony/mime/Encoder/MimeHeaderEncoderInterface.php -/vendor/symfony/mime/Encoder/QpContentEncoder.php -/vendor/symfony/mime/Encoder/QpEncoder.php -/vendor/symfony/mime/Encoder/QpMimeHeaderEncoder.php -/vendor/symfony/mime/Encoder/Rfc2231Encoder.php -/vendor/symfony/mime/Exception/AddressEncoderException.php -/vendor/symfony/mime/Exception/ExceptionInterface.php -/vendor/symfony/mime/Exception/InvalidArgumentException.php -/vendor/symfony/mime/Exception/LogicException.php -/vendor/symfony/mime/Exception/RfcComplianceException.php -/vendor/symfony/mime/Exception/RuntimeException.php -/vendor/symfony/mime/Header/AbstractHeader.php -/vendor/symfony/mime/Header/DateHeader.php -/vendor/symfony/mime/Header/HeaderInterface.php -/vendor/symfony/mime/Header/Headers.php -/vendor/symfony/mime/Header/IdentificationHeader.php -/vendor/symfony/mime/Header/MailboxHeader.php -/vendor/symfony/mime/Header/MailboxListHeader.php -/vendor/symfony/mime/Header/ParameterizedHeader.php -/vendor/symfony/mime/Header/PathHeader.php -/vendor/symfony/mime/Header/UnstructuredHeader.php -/vendor/symfony/mime/HtmlToTextConverter/DefaultHtmlToTextConverter.php -/vendor/symfony/mime/HtmlToTextConverter/HtmlToTextConverterInterface.php -/vendor/symfony/mime/HtmlToTextConverter/LeagueHtmlToMarkdownConverter.php -/vendor/symfony/mime/Part/Multipart/AlternativePart.php -/vendor/symfony/mime/Part/Multipart/DigestPart.php -/vendor/symfony/mime/Part/Multipart/FormDataPart.php -/vendor/symfony/mime/Part/Multipart/MixedPart.php -/vendor/symfony/mime/Part/Multipart/RelatedPart.php -/vendor/symfony/mime/Part/AbstractMultipartPart.php -/vendor/symfony/mime/Part/AbstractPart.php -/vendor/symfony/mime/Part/DataPart.php -/vendor/symfony/mime/Part/File.php -/vendor/symfony/mime/Part/MessagePart.php -/vendor/symfony/mime/Part/SMimePart.php -/vendor/symfony/mime/Part/TextPart.php -/vendor/symfony/mime/Resources/bin/update_mime_types.php -/vendor/symfony/mime/Test/Constraint/EmailAddressContains.php -/vendor/symfony/mime/Test/Constraint/EmailAttachmentCount.php -/vendor/symfony/mime/Test/Constraint/EmailHasHeader.php -/vendor/symfony/mime/Test/Constraint/EmailHeaderSame.php -/vendor/symfony/mime/Test/Constraint/EmailHtmlBodyContains.php -/vendor/symfony/mime/Test/Constraint/EmailSubjectContains.php -/vendor/symfony/mime/Test/Constraint/EmailTextBodyContains.php -/vendor/symfony/mime/Address.php -/vendor/symfony/mime/BodyRendererInterface.php -/vendor/symfony/mime/CHANGELOG.md -/vendor/symfony/mime/CharacterStream.php -/vendor/symfony/mime/composer.json -/vendor/symfony/mime/DraftEmail.php -/vendor/symfony/mime/Email.php -/vendor/symfony/mime/FileBinaryMimeTypeGuesser.php -/vendor/symfony/mime/FileinfoMimeTypeGuesser.php -/vendor/symfony/mime/LICENSE -/vendor/symfony/mime/Message.php -/vendor/symfony/mime/MessageConverter.php -/vendor/symfony/mime/MimeTypeGuesserInterface.php -/vendor/symfony/mime/MimeTypes.php -/vendor/symfony/mime/MimeTypesInterface.php -/vendor/symfony/mime/RawMessage.php -/vendor/symfony/mime/README.md -/vendor/symfony/polyfill-ctype/bootstrap.php -/vendor/symfony/polyfill-ctype/bootstrap80.php -/vendor/symfony/polyfill-ctype/composer.json -/vendor/symfony/polyfill-ctype/Ctype.php -/vendor/symfony/polyfill-ctype/LICENSE -/vendor/symfony/polyfill-ctype/README.md -/vendor/symfony/polyfill-intl-idn/Resources/unidata/deviation.php -/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php -/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php -/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php -/vendor/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php -/vendor/symfony/polyfill-intl-idn/Resources/unidata/ignored.php -/vendor/symfony/polyfill-intl-idn/Resources/unidata/mapped.php -/vendor/symfony/polyfill-intl-idn/Resources/unidata/Regex.php -/vendor/symfony/polyfill-intl-idn/Resources/unidata/virama.php -/vendor/symfony/polyfill-intl-idn/bootstrap.php -/vendor/symfony/polyfill-intl-idn/bootstrap80.php -/vendor/symfony/polyfill-intl-idn/composer.json -/vendor/symfony/polyfill-intl-idn/Idn.php -/vendor/symfony/polyfill-intl-idn/Info.php -/vendor/symfony/polyfill-intl-idn/LICENSE -/vendor/symfony/polyfill-intl-idn/README.md -/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php -/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php -/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php -/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php -/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php -/vendor/symfony/polyfill-intl-normalizer/bootstrap.php -/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php -/vendor/symfony/polyfill-intl-normalizer/composer.json -/vendor/symfony/polyfill-intl-normalizer/LICENSE -/vendor/symfony/polyfill-intl-normalizer/Normalizer.php -/vendor/symfony/polyfill-intl-normalizer/README.md -/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php -/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php -/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php -/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php -/vendor/symfony/polyfill-mbstring/bootstrap.php -/vendor/symfony/polyfill-mbstring/bootstrap80.php -/vendor/symfony/polyfill-mbstring/composer.json -/vendor/symfony/polyfill-mbstring/LICENSE -/vendor/symfony/polyfill-mbstring/Mbstring.php -/vendor/symfony/polyfill-mbstring/README.md -/vendor/symfony/polyfill-php72/bootstrap.php -/vendor/symfony/polyfill-php72/composer.json -/vendor/symfony/polyfill-php72/LICENSE -/vendor/symfony/polyfill-php72/Php72.php -/vendor/symfony/polyfill-php72/README.md -/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php -/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php -/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php -/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php -/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php -/vendor/symfony/polyfill-php80/bootstrap.php -/vendor/symfony/polyfill-php80/composer.json -/vendor/symfony/polyfill-php80/LICENSE -/vendor/symfony/polyfill-php80/Php80.php -/vendor/symfony/polyfill-php80/PhpToken.php -/vendor/symfony/polyfill-php80/README.md -/vendor/symfony/polyfill-php83/Resources/stubs/DateError.php -/vendor/symfony/polyfill-php83/Resources/stubs/DateException.php -/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php -/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php -/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php -/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php -/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php -/vendor/symfony/polyfill-php83/Resources/stubs/DateObjectError.php -/vendor/symfony/polyfill-php83/Resources/stubs/DateRangeError.php -/vendor/symfony/polyfill-php83/Resources/stubs/Override.php -/vendor/symfony/polyfill-php83/bootstrap.php -/vendor/symfony/polyfill-php83/bootstrap81.php -/vendor/symfony/polyfill-php83/composer.json -/vendor/symfony/polyfill-php83/LICENSE -/vendor/symfony/polyfill-php83/Php83.php -/vendor/symfony/polyfill-php83/README.md -/vendor/symfony/translation/Catalogue/AbstractOperation.php -/vendor/symfony/translation/Catalogue/MergeOperation.php -/vendor/symfony/translation/Catalogue/OperationInterface.php -/vendor/symfony/translation/Catalogue/TargetOperation.php -/vendor/symfony/translation/Command/TranslationPullCommand.php -/vendor/symfony/translation/Command/TranslationPushCommand.php -/vendor/symfony/translation/Command/TranslationTrait.php -/vendor/symfony/translation/Command/XliffLintCommand.php -/vendor/symfony/translation/DataCollector/TranslationDataCollector.php -/vendor/symfony/translation/DependencyInjection/DataCollectorTranslatorPass.php -/vendor/symfony/translation/DependencyInjection/LoggingTranslatorPass.php -/vendor/symfony/translation/DependencyInjection/TranslationDumperPass.php -/vendor/symfony/translation/DependencyInjection/TranslationExtractorPass.php -/vendor/symfony/translation/DependencyInjection/TranslatorPass.php -/vendor/symfony/translation/DependencyInjection/TranslatorPathsPass.php -/vendor/symfony/translation/Dumper/CsvFileDumper.php -/vendor/symfony/translation/Dumper/DumperInterface.php -/vendor/symfony/translation/Dumper/FileDumper.php -/vendor/symfony/translation/Dumper/IcuResFileDumper.php -/vendor/symfony/translation/Dumper/IniFileDumper.php -/vendor/symfony/translation/Dumper/JsonFileDumper.php -/vendor/symfony/translation/Dumper/MoFileDumper.php -/vendor/symfony/translation/Dumper/PhpFileDumper.php -/vendor/symfony/translation/Dumper/PoFileDumper.php -/vendor/symfony/translation/Dumper/QtFileDumper.php -/vendor/symfony/translation/Dumper/XliffFileDumper.php -/vendor/symfony/translation/Dumper/YamlFileDumper.php -/vendor/symfony/translation/Exception/ExceptionInterface.php -/vendor/symfony/translation/Exception/IncompleteDsnException.php -/vendor/symfony/translation/Exception/InvalidArgumentException.php -/vendor/symfony/translation/Exception/InvalidResourceException.php -/vendor/symfony/translation/Exception/LogicException.php -/vendor/symfony/translation/Exception/MissingRequiredOptionException.php -/vendor/symfony/translation/Exception/NotFoundResourceException.php -/vendor/symfony/translation/Exception/ProviderException.php -/vendor/symfony/translation/Exception/ProviderExceptionInterface.php -/vendor/symfony/translation/Exception/RuntimeException.php -/vendor/symfony/translation/Exception/UnsupportedSchemeException.php -/vendor/symfony/translation/Extractor/Visitor/AbstractVisitor.php -/vendor/symfony/translation/Extractor/Visitor/ConstraintVisitor.php -/vendor/symfony/translation/Extractor/Visitor/TranslatableMessageVisitor.php -/vendor/symfony/translation/Extractor/Visitor/TransMethodVisitor.php -/vendor/symfony/translation/Extractor/AbstractFileExtractor.php -/vendor/symfony/translation/Extractor/ChainExtractor.php -/vendor/symfony/translation/Extractor/ExtractorInterface.php -/vendor/symfony/translation/Extractor/PhpAstExtractor.php -/vendor/symfony/translation/Extractor/PhpExtractor.php -/vendor/symfony/translation/Extractor/PhpStringTokenParser.php -/vendor/symfony/translation/Formatter/IntlFormatter.php -/vendor/symfony/translation/Formatter/IntlFormatterInterface.php -/vendor/symfony/translation/Formatter/MessageFormatter.php -/vendor/symfony/translation/Formatter/MessageFormatterInterface.php -/vendor/symfony/translation/Loader/ArrayLoader.php -/vendor/symfony/translation/Loader/CsvFileLoader.php -/vendor/symfony/translation/Loader/FileLoader.php -/vendor/symfony/translation/Loader/IcuDatFileLoader.php -/vendor/symfony/translation/Loader/IcuResFileLoader.php -/vendor/symfony/translation/Loader/IniFileLoader.php -/vendor/symfony/translation/Loader/JsonFileLoader.php -/vendor/symfony/translation/Loader/LoaderInterface.php -/vendor/symfony/translation/Loader/MoFileLoader.php -/vendor/symfony/translation/Loader/PhpFileLoader.php -/vendor/symfony/translation/Loader/PoFileLoader.php -/vendor/symfony/translation/Loader/QtFileLoader.php -/vendor/symfony/translation/Loader/XliffFileLoader.php -/vendor/symfony/translation/Loader/YamlFileLoader.php -/vendor/symfony/translation/Provider/AbstractProviderFactory.php -/vendor/symfony/translation/Provider/Dsn.php -/vendor/symfony/translation/Provider/FilteringProvider.php -/vendor/symfony/translation/Provider/NullProvider.php -/vendor/symfony/translation/Provider/NullProviderFactory.php -/vendor/symfony/translation/Provider/ProviderFactoryInterface.php -/vendor/symfony/translation/Provider/ProviderInterface.php -/vendor/symfony/translation/Provider/TranslationProviderCollection.php -/vendor/symfony/translation/Provider/TranslationProviderCollectionFactory.php -/vendor/symfony/translation/Reader/TranslationReader.php -/vendor/symfony/translation/Reader/TranslationReaderInterface.php -/vendor/symfony/translation/Resources/bin/translation-status.php -/vendor/symfony/translation/Resources/data/parents.json -/vendor/symfony/translation/Resources/schemas/xliff-core-1.2-transitional.xsd -/vendor/symfony/translation/Resources/schemas/xliff-core-2.0.xsd -/vendor/symfony/translation/Resources/schemas/xml.xsd -/vendor/symfony/translation/Resources/functions.php -/vendor/symfony/translation/Test/ProviderFactoryTestCase.php -/vendor/symfony/translation/Test/ProviderTestCase.php -/vendor/symfony/translation/Util/ArrayConverter.php -/vendor/symfony/translation/Util/XliffUtils.php -/vendor/symfony/translation/Writer/TranslationWriter.php -/vendor/symfony/translation/Writer/TranslationWriterInterface.php -/vendor/symfony/translation/CatalogueMetadataAwareInterface.php -/vendor/symfony/translation/CHANGELOG.md -/vendor/symfony/translation/composer.json -/vendor/symfony/translation/DataCollectorTranslator.php -/vendor/symfony/translation/IdentityTranslator.php -/vendor/symfony/translation/LICENSE -/vendor/symfony/translation/LocaleSwitcher.php -/vendor/symfony/translation/LoggingTranslator.php -/vendor/symfony/translation/MessageCatalogue.php -/vendor/symfony/translation/MessageCatalogueInterface.php -/vendor/symfony/translation/MetadataAwareInterface.php -/vendor/symfony/translation/PseudoLocalizationTranslator.php -/vendor/symfony/translation/README.md -/vendor/symfony/translation/TranslatableMessage.php -/vendor/symfony/translation/Translator.php -/vendor/symfony/translation/TranslatorBag.php -/vendor/symfony/translation/TranslatorBagInterface.php -/vendor/symfony/translation-contracts/Test/TranslatorTest.php -/vendor/symfony/translation-contracts/CHANGELOG.md -/vendor/symfony/translation-contracts/composer.json -/vendor/symfony/translation-contracts/LICENSE -/vendor/symfony/translation-contracts/LocaleAwareInterface.php -/vendor/symfony/translation-contracts/README.md -/vendor/symfony/translation-contracts/TranslatableInterface.php -/vendor/symfony/translation-contracts/TranslatorInterface.php -/vendor/symfony/translation-contracts/TranslatorTrait.php -/vendor/symfony/var-dumper/Caster/AmqpCaster.php -/vendor/symfony/var-dumper/Caster/ArgsStub.php -/vendor/symfony/var-dumper/Caster/Caster.php -/vendor/symfony/var-dumper/Caster/ClassStub.php -/vendor/symfony/var-dumper/Caster/ConstStub.php -/vendor/symfony/var-dumper/Caster/CutArrayStub.php -/vendor/symfony/var-dumper/Caster/CutStub.php -/vendor/symfony/var-dumper/Caster/DateCaster.php -/vendor/symfony/var-dumper/Caster/DoctrineCaster.php -/vendor/symfony/var-dumper/Caster/DOMCaster.php -/vendor/symfony/var-dumper/Caster/DsCaster.php -/vendor/symfony/var-dumper/Caster/DsPairStub.php -/vendor/symfony/var-dumper/Caster/EnumStub.php -/vendor/symfony/var-dumper/Caster/ExceptionCaster.php -/vendor/symfony/var-dumper/Caster/FFICaster.php -/vendor/symfony/var-dumper/Caster/FiberCaster.php -/vendor/symfony/var-dumper/Caster/FrameStub.php -/vendor/symfony/var-dumper/Caster/GmpCaster.php -/vendor/symfony/var-dumper/Caster/ImagineCaster.php -/vendor/symfony/var-dumper/Caster/ImgStub.php -/vendor/symfony/var-dumper/Caster/IntlCaster.php -/vendor/symfony/var-dumper/Caster/LinkStub.php -/vendor/symfony/var-dumper/Caster/MemcachedCaster.php -/vendor/symfony/var-dumper/Caster/MysqliCaster.php -/vendor/symfony/var-dumper/Caster/PdoCaster.php -/vendor/symfony/var-dumper/Caster/PgSqlCaster.php -/vendor/symfony/var-dumper/Caster/ProxyManagerCaster.php -/vendor/symfony/var-dumper/Caster/RdKafkaCaster.php -/vendor/symfony/var-dumper/Caster/RedisCaster.php -/vendor/symfony/var-dumper/Caster/ReflectionCaster.php -/vendor/symfony/var-dumper/Caster/ResourceCaster.php -/vendor/symfony/var-dumper/Caster/ScalarStub.php -/vendor/symfony/var-dumper/Caster/SplCaster.php -/vendor/symfony/var-dumper/Caster/StubCaster.php -/vendor/symfony/var-dumper/Caster/SymfonyCaster.php -/vendor/symfony/var-dumper/Caster/TraceStub.php -/vendor/symfony/var-dumper/Caster/UninitializedStub.php -/vendor/symfony/var-dumper/Caster/UuidCaster.php -/vendor/symfony/var-dumper/Caster/XmlReaderCaster.php -/vendor/symfony/var-dumper/Caster/XmlResourceCaster.php -/vendor/symfony/var-dumper/Cloner/AbstractCloner.php -/vendor/symfony/var-dumper/Cloner/ClonerInterface.php -/vendor/symfony/var-dumper/Cloner/Cursor.php -/vendor/symfony/var-dumper/Cloner/Data.php -/vendor/symfony/var-dumper/Cloner/DumperInterface.php -/vendor/symfony/var-dumper/Cloner/Stub.php -/vendor/symfony/var-dumper/Cloner/VarCloner.php -/vendor/symfony/var-dumper/Command/Descriptor/CliDescriptor.php -/vendor/symfony/var-dumper/Command/Descriptor/DumpDescriptorInterface.php -/vendor/symfony/var-dumper/Command/Descriptor/HtmlDescriptor.php -/vendor/symfony/var-dumper/Command/ServerDumpCommand.php -/vendor/symfony/var-dumper/Dumper/ContextProvider/CliContextProvider.php -/vendor/symfony/var-dumper/Dumper/ContextProvider/ContextProviderInterface.php -/vendor/symfony/var-dumper/Dumper/ContextProvider/RequestContextProvider.php -/vendor/symfony/var-dumper/Dumper/ContextProvider/SourceContextProvider.php -/vendor/symfony/var-dumper/Dumper/AbstractDumper.php -/vendor/symfony/var-dumper/Dumper/CliDumper.php -/vendor/symfony/var-dumper/Dumper/ContextualizedDumper.php -/vendor/symfony/var-dumper/Dumper/DataDumperInterface.php -/vendor/symfony/var-dumper/Dumper/HtmlDumper.php -/vendor/symfony/var-dumper/Dumper/ServerDumper.php -/vendor/symfony/var-dumper/Exception/ThrowingCasterException.php -/vendor/symfony/var-dumper/Resources/bin/var-dump-server -/vendor/symfony/var-dumper/Resources/css/htmlDescriptor.css -/vendor/symfony/var-dumper/Resources/functions/dump.php -/vendor/symfony/var-dumper/Resources/js/htmlDescriptor.js -/vendor/symfony/var-dumper/Server/Connection.php -/vendor/symfony/var-dumper/Server/DumpServer.php -/vendor/symfony/var-dumper/Test/VarDumperTestTrait.php -/vendor/symfony/var-dumper/CHANGELOG.md -/vendor/symfony/var-dumper/composer.json -/vendor/symfony/var-dumper/LICENSE -/vendor/symfony/var-dumper/README.md -/vendor/symfony/var-dumper/VarDumper.php -/vendor/voku/portable-ascii/src/voku/helper/data/ascii_by_languages.php -/vendor/voku/portable-ascii/src/voku/helper/data/ascii_extras_by_languages.php -/vendor/voku/portable-ascii/src/voku/helper/data/ascii_language_max_key.php -/vendor/voku/portable-ascii/src/voku/helper/data/ascii_ord.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0a0.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0a1.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0a2.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0a3.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0a4.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0ac.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0ad.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0ae.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0af.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0b0.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0b1.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0b2.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0b3.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0b4.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0b5.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0b6.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0b7.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0b8.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0b9.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0ba.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0bb.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0bc.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0bd.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0be.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0bf.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0c0.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0c1.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0c2.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0c3.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0c4.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0c5.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0c6.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0c7.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0c8.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0c9.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0ca.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0cb.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0cc.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0cd.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0ce.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0cf.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0d0.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0d1.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0d2.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0d3.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0d4.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0d5.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0d6.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0d7.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0f9.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0fa.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0fb.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0fc.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0fd.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0fe.php -/vendor/voku/portable-ascii/src/voku/helper/data/x0ff.php -/vendor/voku/portable-ascii/src/voku/helper/data/x00a.php -/vendor/voku/portable-ascii/src/voku/helper/data/x00b.php -/vendor/voku/portable-ascii/src/voku/helper/data/x00c.php -/vendor/voku/portable-ascii/src/voku/helper/data/x00d.php -/vendor/voku/portable-ascii/src/voku/helper/data/x00e.php -/vendor/voku/portable-ascii/src/voku/helper/data/x00f.php -/vendor/voku/portable-ascii/src/voku/helper/data/x000.php -/vendor/voku/portable-ascii/src/voku/helper/data/x1d4.php -/vendor/voku/portable-ascii/src/voku/helper/data/x1d5.php -/vendor/voku/portable-ascii/src/voku/helper/data/x1d6.php -/vendor/voku/portable-ascii/src/voku/helper/data/x1d7.php -/vendor/voku/portable-ascii/src/voku/helper/data/x1f1.php -/vendor/voku/portable-ascii/src/voku/helper/data/x01d.php -/vendor/voku/portable-ascii/src/voku/helper/data/x01e.php -/vendor/voku/portable-ascii/src/voku/helper/data/x01f.php -/vendor/voku/portable-ascii/src/voku/helper/data/x001.php -/vendor/voku/portable-ascii/src/voku/helper/data/x02a.php -/vendor/voku/portable-ascii/src/voku/helper/data/x02c.php -/vendor/voku/portable-ascii/src/voku/helper/data/x02e.php -/vendor/voku/portable-ascii/src/voku/helper/data/x02f.php -/vendor/voku/portable-ascii/src/voku/helper/data/x002.php -/vendor/voku/portable-ascii/src/voku/helper/data/x003.php -/vendor/voku/portable-ascii/src/voku/helper/data/x04d.php -/vendor/voku/portable-ascii/src/voku/helper/data/x04e.php -/vendor/voku/portable-ascii/src/voku/helper/data/x04f.php -/vendor/voku/portable-ascii/src/voku/helper/data/x004.php -/vendor/voku/portable-ascii/src/voku/helper/data/x05a.php -/vendor/voku/portable-ascii/src/voku/helper/data/x05b.php -/vendor/voku/portable-ascii/src/voku/helper/data/x05c.php -/vendor/voku/portable-ascii/src/voku/helper/data/x05d.php -/vendor/voku/portable-ascii/src/voku/helper/data/x05e.php -/vendor/voku/portable-ascii/src/voku/helper/data/x05f.php -/vendor/voku/portable-ascii/src/voku/helper/data/x005.php -/vendor/voku/portable-ascii/src/voku/helper/data/x06a.php -/vendor/voku/portable-ascii/src/voku/helper/data/x06b.php -/vendor/voku/portable-ascii/src/voku/helper/data/x06c.php -/vendor/voku/portable-ascii/src/voku/helper/data/x06d.php -/vendor/voku/portable-ascii/src/voku/helper/data/x06e.php -/vendor/voku/portable-ascii/src/voku/helper/data/x06f.php -/vendor/voku/portable-ascii/src/voku/helper/data/x006.php -/vendor/voku/portable-ascii/src/voku/helper/data/x07a.php -/vendor/voku/portable-ascii/src/voku/helper/data/x07b.php -/vendor/voku/portable-ascii/src/voku/helper/data/x07c.php -/vendor/voku/portable-ascii/src/voku/helper/data/x07d.php -/vendor/voku/portable-ascii/src/voku/helper/data/x07e.php -/vendor/voku/portable-ascii/src/voku/helper/data/x07f.php -/vendor/voku/portable-ascii/src/voku/helper/data/x007.php -/vendor/voku/portable-ascii/src/voku/helper/data/x08a.php -/vendor/voku/portable-ascii/src/voku/helper/data/x08b.php -/vendor/voku/portable-ascii/src/voku/helper/data/x08c.php -/vendor/voku/portable-ascii/src/voku/helper/data/x08d.php -/vendor/voku/portable-ascii/src/voku/helper/data/x08e.php -/vendor/voku/portable-ascii/src/voku/helper/data/x08f.php -/vendor/voku/portable-ascii/src/voku/helper/data/x09a.php -/vendor/voku/portable-ascii/src/voku/helper/data/x09b.php -/vendor/voku/portable-ascii/src/voku/helper/data/x09c.php -/vendor/voku/portable-ascii/src/voku/helper/data/x09d.php -/vendor/voku/portable-ascii/src/voku/helper/data/x09e.php -/vendor/voku/portable-ascii/src/voku/helper/data/x09f.php -/vendor/voku/portable-ascii/src/voku/helper/data/x009.php -/vendor/voku/portable-ascii/src/voku/helper/data/x010.php -/vendor/voku/portable-ascii/src/voku/helper/data/x011.php -/vendor/voku/portable-ascii/src/voku/helper/data/x012.php -/vendor/voku/portable-ascii/src/voku/helper/data/x013.php -/vendor/voku/portable-ascii/src/voku/helper/data/x014.php -/vendor/voku/portable-ascii/src/voku/helper/data/x015.php -/vendor/voku/portable-ascii/src/voku/helper/data/x016.php -/vendor/voku/portable-ascii/src/voku/helper/data/x017.php -/vendor/voku/portable-ascii/src/voku/helper/data/x018.php -/vendor/voku/portable-ascii/src/voku/helper/data/x020.php -/vendor/voku/portable-ascii/src/voku/helper/data/x021.php -/vendor/voku/portable-ascii/src/voku/helper/data/x022.php -/vendor/voku/portable-ascii/src/voku/helper/data/x023.php -/vendor/voku/portable-ascii/src/voku/helper/data/x024.php -/vendor/voku/portable-ascii/src/voku/helper/data/x025.php -/vendor/voku/portable-ascii/src/voku/helper/data/x026.php -/vendor/voku/portable-ascii/src/voku/helper/data/x027.php -/vendor/voku/portable-ascii/src/voku/helper/data/x028.php -/vendor/voku/portable-ascii/src/voku/helper/data/x029.php -/vendor/voku/portable-ascii/src/voku/helper/data/x030.php -/vendor/voku/portable-ascii/src/voku/helper/data/x031.php -/vendor/voku/portable-ascii/src/voku/helper/data/x032.php -/vendor/voku/portable-ascii/src/voku/helper/data/x033.php -/vendor/voku/portable-ascii/src/voku/helper/data/x050.php -/vendor/voku/portable-ascii/src/voku/helper/data/x051.php -/vendor/voku/portable-ascii/src/voku/helper/data/x052.php -/vendor/voku/portable-ascii/src/voku/helper/data/x053.php -/vendor/voku/portable-ascii/src/voku/helper/data/x054.php -/vendor/voku/portable-ascii/src/voku/helper/data/x055.php -/vendor/voku/portable-ascii/src/voku/helper/data/x056.php -/vendor/voku/portable-ascii/src/voku/helper/data/x057.php -/vendor/voku/portable-ascii/src/voku/helper/data/x058.php -/vendor/voku/portable-ascii/src/voku/helper/data/x059.php -/vendor/voku/portable-ascii/src/voku/helper/data/x060.php -/vendor/voku/portable-ascii/src/voku/helper/data/x061.php -/vendor/voku/portable-ascii/src/voku/helper/data/x062.php -/vendor/voku/portable-ascii/src/voku/helper/data/x063.php -/vendor/voku/portable-ascii/src/voku/helper/data/x064.php -/vendor/voku/portable-ascii/src/voku/helper/data/x065.php -/vendor/voku/portable-ascii/src/voku/helper/data/x066.php -/vendor/voku/portable-ascii/src/voku/helper/data/x067.php -/vendor/voku/portable-ascii/src/voku/helper/data/x068.php -/vendor/voku/portable-ascii/src/voku/helper/data/x069.php -/vendor/voku/portable-ascii/src/voku/helper/data/x070.php -/vendor/voku/portable-ascii/src/voku/helper/data/x071.php -/vendor/voku/portable-ascii/src/voku/helper/data/x072.php -/vendor/voku/portable-ascii/src/voku/helper/data/x073.php -/vendor/voku/portable-ascii/src/voku/helper/data/x074.php -/vendor/voku/portable-ascii/src/voku/helper/data/x075.php -/vendor/voku/portable-ascii/src/voku/helper/data/x076.php -/vendor/voku/portable-ascii/src/voku/helper/data/x077.php -/vendor/voku/portable-ascii/src/voku/helper/data/x078.php -/vendor/voku/portable-ascii/src/voku/helper/data/x079.php -/vendor/voku/portable-ascii/src/voku/helper/data/x080.php -/vendor/voku/portable-ascii/src/voku/helper/data/x081.php -/vendor/voku/portable-ascii/src/voku/helper/data/x082.php -/vendor/voku/portable-ascii/src/voku/helper/data/x083.php -/vendor/voku/portable-ascii/src/voku/helper/data/x084.php -/vendor/voku/portable-ascii/src/voku/helper/data/x085.php -/vendor/voku/portable-ascii/src/voku/helper/data/x086.php -/vendor/voku/portable-ascii/src/voku/helper/data/x087.php -/vendor/voku/portable-ascii/src/voku/helper/data/x088.php -/vendor/voku/portable-ascii/src/voku/helper/data/x089.php -/vendor/voku/portable-ascii/src/voku/helper/data/x090.php -/vendor/voku/portable-ascii/src/voku/helper/data/x091.php -/vendor/voku/portable-ascii/src/voku/helper/data/x092.php -/vendor/voku/portable-ascii/src/voku/helper/data/x093.php -/vendor/voku/portable-ascii/src/voku/helper/data/x094.php -/vendor/voku/portable-ascii/src/voku/helper/data/x095.php -/vendor/voku/portable-ascii/src/voku/helper/data/x096.php -/vendor/voku/portable-ascii/src/voku/helper/data/x097.php -/vendor/voku/portable-ascii/src/voku/helper/data/x098.php -/vendor/voku/portable-ascii/src/voku/helper/data/x099.php -/vendor/voku/portable-ascii/src/voku/helper/ASCII.php -/vendor/voku/portable-ascii/CHANGELOG.md -/vendor/voku/portable-ascii/composer.json -/vendor/voku/portable-ascii/LICENSE.txt -/vendor/voku/portable-ascii/README.md -/vendor/autoload.php +/vendor/ +/.idea/ diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 700e66c..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,11 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml -/codeception.xml -/phpspec.xml -/phpunit.xml diff --git a/.idea/crud-generator-laravel.iml b/.idea/crud-generator-laravel.iml deleted file mode 100644 index e90ac14..0000000 --- a/.idea/crud-generator-laravel.iml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 511e214..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml deleted file mode 100644 index 84f3a59..0000000 --- a/.idea/php.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file From a2ed0e0cb62ba887b9af30cab8d6c8b65b2f405c Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 12:33:28 -0500 Subject: [PATCH 16/18] Updating gitignore --- .gitignore | 1 + composer.lock | 2766 ------------------------------------------------- 2 files changed, 1 insertion(+), 2766 deletions(-) delete mode 100644 composer.lock diff --git a/.gitignore b/.gitignore index cac762f..d851bdb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /vendor/ /.idea/ +composer.lock \ No newline at end of file diff --git a/composer.lock b/composer.lock deleted file mode 100644 index 659806e..0000000 --- a/composer.lock +++ /dev/null @@ -1,2766 +0,0 @@ -{ - "_readme": [ - "This file locks the dependencies of your project to a known state", - "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", - "This file is @generated automatically" - ], - "content-hash": "91fd08d0231bb1228ca799b7e6743b6c", - "packages": [ - { - "name": "carbonphp/carbon-doctrine-types", - "version": "3.1.0", - "source": { - "type": "git", - "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git", - "reference": "a31d3358a2a5d6ae947df1691d1f321418a5f3d5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/a31d3358a2a5d6ae947df1691d1f321418a5f3d5", - "reference": "a31d3358a2a5d6ae947df1691d1f321418a5f3d5", - "shasum": "" - }, - "require": { - "php": "^8.1" - }, - "conflict": { - "doctrine/dbal": "<4.0.0 || >=5.0.0" - }, - "require-dev": { - "doctrine/dbal": "^4.0.0", - "nesbot/carbon": "^2.71.0 || ^3.0.0", - "phpunit/phpunit": "^10.3" - }, - "type": "library", - "autoload": { - "psr-4": { - "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "KyleKatarn", - "email": "kylekatarnls@gmail.com" - } - ], - "description": "Types to use Carbon in Doctrine", - "keywords": [ - "carbon", - "date", - "datetime", - "doctrine", - "time" - ], - "support": { - "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", - "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.1.0" - }, - "funding": [ - { - "url": "https://github.com/kylekatarnls", - "type": "github" - }, - { - "url": "https://opencollective.com/Carbon", - "type": "open_collective" - }, - { - "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", - "type": "tidelift" - } - ], - "time": "2023-12-10T15:33:53+00:00" - }, - { - "name": "doctrine/inflector", - "version": "2.0.9", - "source": { - "type": "git", - "url": "https://github.com/doctrine/inflector.git", - "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/2930cd5ef353871c821d5c43ed030d39ac8cfe65", - "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65", - "shasum": "" - }, - "require": { - "php": "^7.2 || ^8.0" - }, - "require-dev": { - "doctrine/coding-standard": "^11.0", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-phpunit": "^1.1", - "phpstan/phpstan-strict-rules": "^1.3", - "phpunit/phpunit": "^8.5 || ^9.5", - "vimeo/psalm": "^4.25 || ^5.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", - "homepage": "https://www.doctrine-project.org/projects/inflector.html", - "keywords": [ - "inflection", - "inflector", - "lowercase", - "manipulation", - "php", - "plural", - "singular", - "strings", - "uppercase", - "words" - ], - "support": { - "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.9" - }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", - "type": "tidelift" - } - ], - "time": "2024-01-15T18:05:13+00:00" - }, - { - "name": "fruitcake/php-cors", - "version": "v1.3.0", - "source": { - "type": "git", - "url": "https://github.com/fruitcake/php-cors.git", - "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b", - "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b", - "shasum": "" - }, - "require": { - "php": "^7.4|^8.0", - "symfony/http-foundation": "^4.4|^5.4|^6|^7" - }, - "require-dev": { - "phpstan/phpstan": "^1.4", - "phpunit/phpunit": "^9", - "squizlabs/php_codesniffer": "^3.5" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.2-dev" - } - }, - "autoload": { - "psr-4": { - "Fruitcake\\Cors\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fruitcake", - "homepage": "https://fruitcake.nl" - }, - { - "name": "Barryvdh", - "email": "barryvdh@gmail.com" - } - ], - "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", - "homepage": "https://github.com/fruitcake/php-cors", - "keywords": [ - "cors", - "laravel", - "symfony" - ], - "support": { - "issues": "https://github.com/fruitcake/php-cors/issues", - "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0" - }, - "funding": [ - { - "url": "https://fruitcake.nl", - "type": "custom" - }, - { - "url": "https://github.com/barryvdh", - "type": "github" - } - ], - "time": "2023-10-12T05:21:21+00:00" - }, - { - "name": "guzzlehttp/uri-template", - "version": "v1.0.3", - "source": { - "type": "git", - "url": "https://github.com/guzzle/uri-template.git", - "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c", - "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c", - "shasum": "" - }, - "require": { - "php": "^7.2.5 || ^8.0", - "symfony/polyfill-php80": "^1.24" - }, - "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.36 || ^9.6.15", - "uri-template/tests": "1.0.0" - }, - "type": "library", - "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": false - } - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\UriTemplate\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - }, - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "name": "George Mponos", - "email": "gmponos@gmail.com", - "homepage": "https://github.com/gmponos" - }, - { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" - } - ], - "description": "A polyfill class for uri_template of PHP", - "keywords": [ - "guzzlehttp", - "uri-template" - ], - "support": { - "issues": "https://github.com/guzzle/uri-template/issues", - "source": "https://github.com/guzzle/uri-template/tree/v1.0.3" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://github.com/Nyholm", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", - "type": "tidelift" - } - ], - "time": "2023-12-03T19:50:20+00:00" - }, - { - "name": "illuminate/collections", - "version": "v10.41.0", - "source": { - "type": "git", - "url": "https://github.com/illuminate/collections.git", - "reference": "82025fd7ac761cc50d5dbd9f9532ebf066821858" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/collections/zipball/82025fd7ac761cc50d5dbd9f9532ebf066821858", - "reference": "82025fd7ac761cc50d5dbd9f9532ebf066821858", - "shasum": "" - }, - "require": { - "illuminate/conditionable": "^10.0", - "illuminate/contracts": "^10.0", - "illuminate/macroable": "^10.0", - "php": "^8.1" - }, - "suggest": { - "symfony/var-dumper": "Required to use the dump method (^6.2)." - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "10.x-dev" - } - }, - "autoload": { - "files": [ - "helpers.php" - ], - "psr-4": { - "Illuminate\\Support\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Collections package.", - "homepage": "https://laravel.com", - "support": { - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" - }, - "time": "2024-01-01T15:17:18+00:00" - }, - { - "name": "illuminate/conditionable", - "version": "v10.41.0", - "source": { - "type": "git", - "url": "https://github.com/illuminate/conditionable.git", - "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/conditionable/zipball/d0958e4741fc9d6f516a552060fd1b829a85e009", - "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009", - "shasum": "" - }, - "require": { - "php": "^8.0.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "10.x-dev" - } - }, - "autoload": { - "psr-4": { - "Illuminate\\Support\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Conditionable package.", - "homepage": "https://laravel.com", - "support": { - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" - }, - "time": "2023-02-03T08:06:17+00:00" - }, - { - "name": "illuminate/contracts", - "version": "v10.41.0", - "source": { - "type": "git", - "url": "https://github.com/illuminate/contracts.git", - "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/contracts/zipball/8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac", - "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac", - "shasum": "" - }, - "require": { - "php": "^8.1", - "psr/container": "^1.1.1|^2.0.1", - "psr/simple-cache": "^1.0|^2.0|^3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "10.x-dev" - } - }, - "autoload": { - "psr-4": { - "Illuminate\\Contracts\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Contracts package.", - "homepage": "https://laravel.com", - "support": { - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" - }, - "time": "2024-01-15T18:52:32+00:00" - }, - { - "name": "illuminate/filesystem", - "version": "v10.41.0", - "source": { - "type": "git", - "url": "https://github.com/illuminate/filesystem.git", - "reference": "c765c61cf1308d4f5f3dc3c03ed5f920953b795c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/filesystem/zipball/c765c61cf1308d4f5f3dc3c03ed5f920953b795c", - "reference": "c765c61cf1308d4f5f3dc3c03ed5f920953b795c", - "shasum": "" - }, - "require": { - "illuminate/collections": "^10.0", - "illuminate/contracts": "^10.0", - "illuminate/macroable": "^10.0", - "illuminate/support": "^10.0", - "php": "^8.1", - "symfony/finder": "^6.2" - }, - "suggest": { - "ext-fileinfo": "Required to use the Filesystem class.", - "ext-ftp": "Required to use the Flysystem FTP driver.", - "ext-hash": "Required to use the Filesystem class.", - "illuminate/http": "Required for handling uploaded files (^7.0).", - "league/flysystem": "Required to use the Flysystem local driver (^3.0.16).", - "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", - "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", - "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", - "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", - "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).", - "symfony/mime": "Required to enable support for guessing extensions (^6.2)." - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "10.x-dev" - } - }, - "autoload": { - "files": [ - "functions.php" - ], - "psr-4": { - "Illuminate\\Filesystem\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Filesystem package.", - "homepage": "https://laravel.com", - "support": { - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" - }, - "time": "2023-12-21T15:30:21+00:00" - }, - { - "name": "illuminate/http", - "version": "v10.41.0", - "source": { - "type": "git", - "url": "https://github.com/illuminate/http.git", - "reference": "2e07f30f8ad387a9714446355ecc91dd9a1a95cf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/http/zipball/2e07f30f8ad387a9714446355ecc91dd9a1a95cf", - "reference": "2e07f30f8ad387a9714446355ecc91dd9a1a95cf", - "shasum": "" - }, - "require": { - "ext-filter": "*", - "fruitcake/php-cors": "^1.2", - "guzzlehttp/uri-template": "^1.0", - "illuminate/collections": "^10.0", - "illuminate/macroable": "^10.0", - "illuminate/session": "^10.0", - "illuminate/support": "^10.0", - "php": "^8.1", - "symfony/http-foundation": "^6.4", - "symfony/http-kernel": "^6.2", - "symfony/mime": "^6.2" - }, - "suggest": { - "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", - "guzzlehttp/guzzle": "Required to use the HTTP Client (^7.5)." - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "10.x-dev" - } - }, - "autoload": { - "psr-4": { - "Illuminate\\Http\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Http package.", - "homepage": "https://laravel.com", - "support": { - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" - }, - "time": "2024-01-01T15:24:30+00:00" - }, - { - "name": "illuminate/macroable", - "version": "v10.41.0", - "source": { - "type": "git", - "url": "https://github.com/illuminate/macroable.git", - "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27", - "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27", - "shasum": "" - }, - "require": { - "php": "^8.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "10.x-dev" - } - }, - "autoload": { - "psr-4": { - "Illuminate\\Support\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Macroable package.", - "homepage": "https://laravel.com", - "support": { - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" - }, - "time": "2023-06-05T12:46:42+00:00" - }, - { - "name": "illuminate/session", - "version": "v10.41.0", - "source": { - "type": "git", - "url": "https://github.com/illuminate/session.git", - "reference": "a095707b83327e27ba292c9c4d2413888b1f517c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/session/zipball/a095707b83327e27ba292c9c4d2413888b1f517c", - "reference": "a095707b83327e27ba292c9c4d2413888b1f517c", - "shasum": "" - }, - "require": { - "ext-ctype": "*", - "ext-session": "*", - "illuminate/collections": "^10.0", - "illuminate/contracts": "^10.0", - "illuminate/filesystem": "^10.0", - "illuminate/support": "^10.0", - "php": "^8.1", - "symfony/finder": "^6.2", - "symfony/http-foundation": "^6.4" - }, - "suggest": { - "illuminate/console": "Required to use the session:table command (^10.0)." - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "10.x-dev" - } - }, - "autoload": { - "psr-4": { - "Illuminate\\Session\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Session package.", - "homepage": "https://laravel.com", - "support": { - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" - }, - "time": "2023-12-29T21:53:12+00:00" - }, - { - "name": "illuminate/support", - "version": "v10.41.0", - "source": { - "type": "git", - "url": "https://github.com/illuminate/support.git", - "reference": "1355b7d28ebb802e95bffcb27417862961382c52" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/support/zipball/1355b7d28ebb802e95bffcb27417862961382c52", - "reference": "1355b7d28ebb802e95bffcb27417862961382c52", - "shasum": "" - }, - "require": { - "doctrine/inflector": "^2.0", - "ext-ctype": "*", - "ext-filter": "*", - "ext-mbstring": "*", - "illuminate/collections": "^10.0", - "illuminate/conditionable": "^10.0", - "illuminate/contracts": "^10.0", - "illuminate/macroable": "^10.0", - "nesbot/carbon": "^2.67", - "php": "^8.1", - "voku/portable-ascii": "^2.0" - }, - "conflict": { - "tightenco/collect": "<5.5.33" - }, - "suggest": { - "illuminate/filesystem": "Required to use the composer class (^10.0).", - "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).", - "ramsey/uuid": "Required to use Str::uuid() (^4.7).", - "symfony/process": "Required to use the composer class (^6.2).", - "symfony/uid": "Required to use Str::ulid() (^6.2).", - "symfony/var-dumper": "Required to use the dd function (^6.2).", - "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)." - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "10.x-dev" - } - }, - "autoload": { - "files": [ - "helpers.php" - ], - "psr-4": { - "Illuminate\\Support\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Support package.", - "homepage": "https://laravel.com", - "support": { - "issues": "https://github.com/laravel/framework/issues", - "source": "https://github.com/laravel/framework" - }, - "time": "2024-01-15T18:53:10+00:00" - }, - { - "name": "nesbot/carbon", - "version": "2.72.1", - "source": { - "type": "git", - "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78", - "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78", - "shasum": "" - }, - "require": { - "carbonphp/carbon-doctrine-types": "*", - "ext-json": "*", - "php": "^7.1.8 || ^8.0", - "psr/clock": "^1.0", - "symfony/polyfill-mbstring": "^1.0", - "symfony/polyfill-php80": "^1.16", - "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" - }, - "provide": { - "psr/clock-implementation": "1.0" - }, - "require-dev": { - "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0", - "doctrine/orm": "^2.7 || ^3.0", - "friendsofphp/php-cs-fixer": "^3.0", - "kylekatarnls/multi-tester": "^2.0", - "ondrejmirtes/better-reflection": "*", - "phpmd/phpmd": "^2.9", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12.99 || ^1.7.14", - "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", - "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", - "squizlabs/php_codesniffer": "^3.4" - }, - "bin": [ - "bin/carbon" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-3.x": "3.x-dev", - "dev-master": "2.x-dev" - }, - "laravel": { - "providers": [ - "Carbon\\Laravel\\ServiceProvider" - ] - }, - "phpstan": { - "includes": [ - "extension.neon" - ] - } - }, - "autoload": { - "psr-4": { - "Carbon\\": "src/Carbon/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Brian Nesbitt", - "email": "brian@nesbot.com", - "homepage": "https://markido.com" - }, - { - "name": "kylekatarnls", - "homepage": "https://github.com/kylekatarnls" - } - ], - "description": "An API extension for DateTime that supports 281 different languages.", - "homepage": "https://carbon.nesbot.com", - "keywords": [ - "date", - "datetime", - "time" - ], - "support": { - "docs": "https://carbon.nesbot.com/docs", - "issues": "https://github.com/briannesbitt/Carbon/issues", - "source": "https://github.com/briannesbitt/Carbon" - }, - "funding": [ - { - "url": "https://github.com/sponsors/kylekatarnls", - "type": "github" - }, - { - "url": "https://opencollective.com/Carbon#sponsor", - "type": "opencollective" - }, - { - "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", - "type": "tidelift" - } - ], - "time": "2023-12-08T23:47:49+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", - "version": "2.0.2", - "source": { - "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", - "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", - "shasum": "" - }, - "require": { - "php": ">=7.4.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Container\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" - } - ], - "description": "Common Container Interface (PHP FIG PSR-11)", - "homepage": "https://github.com/php-fig/container", - "keywords": [ - "PSR-11", - "container", - "container-interface", - "container-interop", - "psr" - ], - "support": { - "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/2.0.2" - }, - "time": "2021-11-05T16:47:00+00:00" - }, - { - "name": "psr/event-dispatcher", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/event-dispatcher.git", - "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", - "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", - "shasum": "" - }, - "require": { - "php": ">=7.2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\EventDispatcher\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Standard interfaces for event handling.", - "keywords": [ - "events", - "psr", - "psr-14" - ], - "support": { - "issues": "https://github.com/php-fig/event-dispatcher/issues", - "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" - }, - "time": "2019-01-08T18:20:26+00:00" - }, - { - "name": "psr/log", - "version": "3.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", - "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", - "shasum": "" - }, - "require": { - "php": ">=8.0.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Log\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" - } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ], - "support": { - "source": "https://github.com/php-fig/log/tree/3.0.0" - }, - "time": "2021-07-14T16:46:02+00:00" - }, - { - "name": "psr/simple-cache", - "version": "3.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/simple-cache.git", - "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", - "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", - "shasum": "" - }, - "require": { - "php": ">=8.0.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\SimpleCache\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" - } - ], - "description": "Common interfaces for simple caching", - "keywords": [ - "cache", - "caching", - "psr", - "psr-16", - "simple-cache" - ], - "support": { - "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" - }, - "time": "2021-10-29T13:26:27+00:00" - }, - { - "name": "spatie/laravel-html", - "version": "3.4.0", - "source": { - "type": "git", - "url": "https://github.com/spatie/laravel-html.git", - "reference": "20bd3185ae085b2eced952bc5191cb8eb922250e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-html/zipball/20bd3185ae085b2eced952bc5191cb8eb922250e", - "reference": "20bd3185ae085b2eced952bc5191cb8eb922250e", - "shasum": "" - }, - "require": { - "illuminate/http": "^9.0|^8.0|^10.0", - "illuminate/support": "^9.0|^8.0|^10.0", - "php": "^8.0" - }, - "require-dev": { - "mockery/mockery": "^1.3", - "orchestra/testbench": "^7.0|^6.23|^8.0", - "pestphp/pest": "^1.22" - }, - "type": "library", - "extra": { - "laravel": { - "providers": [ - "Spatie\\Html\\HtmlServiceProvider" - ], - "aliases": { - "Html": "Spatie\\Html\\Facades\\Html" - } - } - }, - "autoload": { - "files": [ - "src/helpers.php" - ], - "psr-4": { - "Spatie\\Html\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Sebastian De Deyne", - "email": "sebastian@spatie.be", - "homepage": "https://spatie.be", - "role": "Developer" - }, - { - "name": "Freek Van der Herten", - "email": "freek@spatie.be", - "homepage": "https://spatie.be", - "role": "Developer" - } - ], - "description": "A fluent html builder", - "homepage": "https://github.com/spatie/laravel-html", - "keywords": [ - "html", - "spatie" - ], - "support": { - "source": "https://github.com/spatie/laravel-html/tree/3.4.0" - }, - "funding": [ - { - "url": "https://spatie.be/open-source/support-us", - "type": "custom" - } - ], - "time": "2024-01-05T16:35:10+00:00" - }, - { - "name": "symfony/deprecation-contracts", - "version": "v3.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", - "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", - "shasum": "" - }, - "require": { - "php": ">=8.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "3.4-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" - } - }, - "autoload": { - "files": [ - "function.php" - ] - }, - "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": "A generic function and convention to trigger deprecation notices", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2023-05-23T14:45:45+00:00" - }, - { - "name": "symfony/error-handler", - "version": "v7.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/error-handler.git", - "reference": "80b1258be1b84c12a345d0ec3881bbf2e5270cc2" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/80b1258be1b84c12a345d0ec3881bbf2e5270cc2", - "reference": "80b1258be1b84c12a345d0ec3881bbf2e5270cc2", - "shasum": "" - }, - "require": { - "php": ">=8.2", - "psr/log": "^1|^2|^3", - "symfony/var-dumper": "^6.4|^7.0" - }, - "conflict": { - "symfony/deprecation-contracts": "<2.5", - "symfony/http-kernel": "<6.4" - }, - "require-dev": { - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/http-kernel": "^6.4|^7.0", - "symfony/serializer": "^6.4|^7.0" - }, - "bin": [ - "Resources/bin/patch-type-declarations" - ], - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\ErrorHandler\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides tools to manage errors and ease debugging PHP code", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/error-handler/tree/v7.0.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": "2023-10-20T16:35:23+00:00" - }, - { - "name": "symfony/event-dispatcher", - "version": "v7.0.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "098b62ae81fdd6cbf941f355059f617db28f4f9a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/098b62ae81fdd6cbf941f355059f617db28f4f9a", - "reference": "098b62ae81fdd6cbf941f355059f617db28f4f9a", - "shasum": "" - }, - "require": { - "php": ">=8.2", - "symfony/event-dispatcher-contracts": "^2.5|^3" - }, - "conflict": { - "symfony/dependency-injection": "<6.4", - "symfony/service-contracts": "<2.5" - }, - "provide": { - "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "2.0|3.0" - }, - "require-dev": { - "psr/log": "^1|^2|^3", - "symfony/config": "^6.4|^7.0", - "symfony/dependency-injection": "^6.4|^7.0", - "symfony/error-handler": "^6.4|^7.0", - "symfony/expression-language": "^6.4|^7.0", - "symfony/http-foundation": "^6.4|^7.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/stopwatch": "^6.4|^7.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.2" - }, - "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": "2023-12-27T22:24:19+00:00" - }, - { - "name": "symfony/event-dispatcher-contracts", - "version": "v3.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "psr/event-dispatcher": "^1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "3.4-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\EventDispatcher\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Generic abstractions related to dispatching event", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2023-05-23T14:45:45+00:00" - }, - { - "name": "symfony/finder", - "version": "v6.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce", - "shasum": "" - }, - "require": { - "php": ">=8.1" - }, - "require-dev": { - "symfony/filesystem": "^6.0|^7.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Finder\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Finds files and directories via an intuitive fluent interface", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/finder/tree/v6.4.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2023-10-31T17:30:12+00:00" - }, - { - "name": "symfony/http-foundation", - "version": "v6.4.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/http-foundation.git", - "reference": "172d807f9ef3fc3fbed8377cc57c20d389269271" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/172d807f9ef3fc3fbed8377cc57c20d389269271", - "reference": "172d807f9ef3fc3fbed8377cc57c20d389269271", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php83": "^1.27" - }, - "conflict": { - "symfony/cache": "<6.3" - }, - "require-dev": { - "doctrine/dbal": "^2.13.1|^3|^4", - "predis/predis": "^1.1|^2.0", - "symfony/cache": "^6.3|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0", - "symfony/mime": "^5.4|^6.0|^7.0", - "symfony/rate-limiter": "^5.4|^6.0|^7.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\HttpFoundation\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Defines an object-oriented layer for the HTTP specification", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.4.2" - }, - "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": "2023-12-27T22:16:42+00:00" - }, - { - "name": "symfony/http-kernel", - "version": "v6.4.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/http-kernel.git", - "reference": "13e8387320b5942d0dc408440c888e2d526efef4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/13e8387320b5942d0dc408440c888e2d526efef4", - "reference": "13e8387320b5942d0dc408440c888e2d526efef4", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "psr/log": "^1|^2|^3", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/error-handler": "^6.4|^7.0", - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^6.4|^7.0", - "symfony/polyfill-ctype": "^1.8" - }, - "conflict": { - "symfony/browser-kit": "<5.4", - "symfony/cache": "<5.4", - "symfony/config": "<6.1", - "symfony/console": "<5.4", - "symfony/dependency-injection": "<6.4", - "symfony/doctrine-bridge": "<5.4", - "symfony/form": "<5.4", - "symfony/http-client": "<5.4", - "symfony/http-client-contracts": "<2.5", - "symfony/mailer": "<5.4", - "symfony/messenger": "<5.4", - "symfony/translation": "<5.4", - "symfony/translation-contracts": "<2.5", - "symfony/twig-bridge": "<5.4", - "symfony/validator": "<6.4", - "symfony/var-dumper": "<6.3", - "twig/twig": "<2.13" - }, - "provide": { - "psr/log-implementation": "1.0|2.0|3.0" - }, - "require-dev": { - "psr/cache": "^1.0|^2.0|^3.0", - "symfony/browser-kit": "^5.4|^6.0|^7.0", - "symfony/clock": "^6.2|^7.0", - "symfony/config": "^6.1|^7.0", - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/css-selector": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^6.4|^7.0", - "symfony/dom-crawler": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/finder": "^5.4|^6.0|^7.0", - "symfony/http-client-contracts": "^2.5|^3", - "symfony/process": "^5.4|^6.0|^7.0", - "symfony/property-access": "^5.4.5|^6.0.5|^7.0", - "symfony/routing": "^5.4|^6.0|^7.0", - "symfony/serializer": "^6.3|^7.0", - "symfony/stopwatch": "^5.4|^6.0|^7.0", - "symfony/translation": "^5.4|^6.0|^7.0", - "symfony/translation-contracts": "^2.5|^3", - "symfony/uid": "^5.4|^6.0|^7.0", - "symfony/validator": "^6.4|^7.0", - "symfony/var-exporter": "^6.2|^7.0", - "twig/twig": "^2.13|^3.0.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\HttpKernel\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides a structured process for converting a Request into a Response", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.4.2" - }, - "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": "2023-12-30T15:31:44+00:00" - }, - { - "name": "symfony/mime", - "version": "v6.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/mime.git", - "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/ca4f58b2ef4baa8f6cecbeca2573f88cd577d205", - "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-intl-idn": "^1.10", - "symfony/polyfill-mbstring": "^1.0" - }, - "conflict": { - "egulias/email-validator": "~3.0.0", - "phpdocumentor/reflection-docblock": "<3.2.2", - "phpdocumentor/type-resolver": "<1.4.0", - "symfony/mailer": "<5.4", - "symfony/serializer": "<6.3.2" - }, - "require-dev": { - "egulias/email-validator": "^2.1.10|^3.1|^4", - "league/html-to-markdown": "^5.0", - "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/property-access": "^5.4|^6.0|^7.0", - "symfony/property-info": "^5.4|^6.0|^7.0", - "symfony/serializer": "^6.3.2|^7.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Mime\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Allows manipulating MIME messages", - "homepage": "https://symfony.com", - "keywords": [ - "mime", - "mime-type" - ], - "support": { - "source": "https://github.com/symfony/mime/tree/v6.4.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2023-10-17T11:49:05+00:00" - }, - { - "name": "symfony/polyfill-ctype", - "version": "v1.28.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", - "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "provide": { - "ext-ctype": "*" - }, - "suggest": { - "ext-ctype": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for ctype functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "ctype", - "polyfill", - "portable" - ], - "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.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": "2023-01-26T09:26:14+00:00" - }, - { - "name": "symfony/polyfill-intl-idn", - "version": "v1.28.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "ecaafce9f77234a6a449d29e49267ba10499116d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", - "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", - "shasum": "" - }, - "require": { - "php": ">=7.1", - "symfony/polyfill-intl-normalizer": "^1.10", - "symfony/polyfill-php72": "^1.10" - }, - "suggest": { - "ext-intl": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Intl\\Idn\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Laurent Bassin", - "email": "laurent@bassin.info" - }, - { - "name": "Trevor Rowbotham", - "email": "trevor.rowbotham@pm.me" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "idn", - "intl", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.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": "2023-01-26T09:30:37+00:00" - }, - { - "name": "symfony/polyfill-intl-normalizer", - "version": "v1.28.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "suggest": { - "ext-intl": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Intl\\Normalizer\\": "" - }, - "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 for intl's Normalizer class and related functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "intl", - "normalizer", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.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": "2023-01-26T09:26:14+00:00" - }, - { - "name": "symfony/polyfill-mbstring", - "version": "v1.28.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "42292d99c55abe617799667f454222c54c60e229" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", - "reference": "42292d99c55abe617799667f454222c54c60e229", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "provide": { - "ext-mbstring": "*" - }, - "suggest": { - "ext-mbstring": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - } - }, - "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 for the Mbstring extension", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "mbstring", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.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": "2023-07-28T09:04:16+00:00" - }, - { - "name": "symfony/polyfill-php72", - "version": "v1.28.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179", - "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php72\\": "" - } - }, - "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 7.2+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.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": "2023-01-26T09:26:14+00:00" - }, - { - "name": "symfony/polyfill-php80", - "version": "v1.28.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", - "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ion Bazan", - "email": "ion.bazan@gmail.com" - }, - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.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": "2023-01-26T09:26:14+00:00" - }, - { - "name": "symfony/polyfill-php83", - "version": "v1.28.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", - "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", - "shasum": "" - }, - "require": { - "php": ">=7.1", - "symfony/polyfill-php80": "^1.14" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php83\\": "" - }, - "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.3+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.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": "2023-08-16T06:22:46+00:00" - }, - { - "name": "symfony/translation", - "version": "v6.4.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "a2ab2ec1a462e53016de8e8d5e8912bfd62ea681" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/a2ab2ec1a462e53016de8e8d5e8912bfd62ea681", - "reference": "a2ab2ec1a462e53016de8e8d5e8912bfd62ea681", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/translation-contracts": "^2.5|^3.0" - }, - "conflict": { - "symfony/config": "<5.4", - "symfony/console": "<5.4", - "symfony/dependency-injection": "<5.4", - "symfony/http-client-contracts": "<2.5", - "symfony/http-kernel": "<5.4", - "symfony/service-contracts": "<2.5", - "symfony/twig-bundle": "<5.4", - "symfony/yaml": "<5.4" - }, - "provide": { - "symfony/translation-implementation": "2.3|3.0" - }, - "require-dev": { - "nikic/php-parser": "^4.13", - "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/finder": "^5.4|^6.0|^7.0", - "symfony/http-client-contracts": "^2.5|^3.0", - "symfony/http-kernel": "^5.4|^6.0|^7.0", - "symfony/intl": "^5.4|^6.0|^7.0", - "symfony/polyfill-intl-icu": "^1.21", - "symfony/routing": "^5.4|^6.0|^7.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/yaml": "^5.4|^6.0|^7.0" - }, - "type": "library", - "autoload": { - "files": [ - "Resources/functions.php" - ], - "psr-4": { - "Symfony\\Component\\Translation\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides tools to internationalize your application", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/translation/tree/v6.4.2" - }, - "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": "2023-12-18T09:25:29+00:00" - }, - { - "name": "symfony/translation-contracts", - "version": "v3.4.1", - "source": { - "type": "git", - "url": "https://github.com/symfony/translation-contracts.git", - "reference": "06450585bf65e978026bda220cdebca3f867fde7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7", - "reference": "06450585bf65e978026bda220cdebca3f867fde7", - "shasum": "" - }, - "require": { - "php": ">=8.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "3.4-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\Translation\\": "" - }, - "exclude-from-classmap": [ - "/Test/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Generic abstractions related to translation", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1" - }, - "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": "2023-12-26T14:02:43+00:00" - }, - { - "name": "symfony/var-dumper", - "version": "v7.0.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/var-dumper.git", - "reference": "5f6f1a527002068f6d40fda068399220eabebf71" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/5f6f1a527002068f6d40fda068399220eabebf71", - "reference": "5f6f1a527002068f6d40fda068399220eabebf71", - "shasum": "" - }, - "require": { - "php": ">=8.2", - "symfony/polyfill-mbstring": "~1.0" - }, - "conflict": { - "symfony/console": "<6.4" - }, - "require-dev": { - "ext-iconv": "*", - "symfony/console": "^6.4|^7.0", - "symfony/http-kernel": "^6.4|^7.0", - "symfony/process": "^6.4|^7.0", - "symfony/uid": "^6.4|^7.0", - "twig/twig": "^3.0.4" - }, - "bin": [ - "Resources/bin/var-dump-server" - ], - "type": "library", - "autoload": { - "files": [ - "Resources/functions/dump.php" - ], - "psr-4": { - "Symfony\\Component\\VarDumper\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "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": "Provides mechanisms for walking through any arbitrary PHP variable", - "homepage": "https://symfony.com", - "keywords": [ - "debug", - "dump" - ], - "support": { - "source": "https://github.com/symfony/var-dumper/tree/v7.0.2" - }, - "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": "2023-12-28T19:18:20+00:00" - }, - { - "name": "voku/portable-ascii", - "version": "2.0.1", - "source": { - "type": "git", - "url": "https://github.com/voku/portable-ascii.git", - "reference": "b56450eed252f6801410d810c8e1727224ae0743" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", - "reference": "b56450eed252f6801410d810c8e1727224ae0743", - "shasum": "" - }, - "require": { - "php": ">=7.0.0" - }, - "require-dev": { - "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" - }, - "suggest": { - "ext-intl": "Use Intl for transliterator_transliterate() support" - }, - "type": "library", - "autoload": { - "psr-4": { - "voku\\": "src/voku/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Lars Moelleken", - "homepage": "http://www.moelleken.org/" - } - ], - "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", - "homepage": "https://github.com/voku/portable-ascii", - "keywords": [ - "ascii", - "clean", - "php" - ], - "support": { - "issues": "https://github.com/voku/portable-ascii/issues", - "source": "https://github.com/voku/portable-ascii/tree/2.0.1" - }, - "funding": [ - { - "url": "https://www.paypal.me/moelleken", - "type": "custom" - }, - { - "url": "https://github.com/voku", - "type": "github" - }, - { - "url": "https://opencollective.com/portable-ascii", - "type": "open_collective" - }, - { - "url": "https://www.patreon.com/voku", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", - "type": "tidelift" - } - ], - "time": "2022-03-08T17:03:00+00:00" - } - ], - "packages-dev": [], - "aliases": [], - "minimum-stability": "stable", - "stability-flags": [], - "prefer-stable": false, - "prefer-lowest": false, - "platform": { - "php": ">=8.0.0" - }, - "platform-dev": [], - "plugin-api-version": "2.2.0" -} From ead0f56336bc96e40d0a844baeac7809c08a9311 Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 12:37:55 -0500 Subject: [PATCH 17/18] Update readme to use spatie/laravel-html over laravelcollective's --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b66cb47..c6fb3c5 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,9 @@ If you find this project useful, please consider giving it a star⭐. It helps m ``` composer require mrdebug/crudgen --dev ``` -2\. If you don't use Laravel Collective Form package in your project, install it: +2\. If you don't use Spatie's HTML package in your project, install it: -``` composer require laravelcollective/html ``` +``` composer require spatie/laravel-html ``` (Note: This step is not required if you don't need views.) From 06d462ff097e33bc582265a60bdae89869547cf9 Mon Sep 17 00:00:00 2001 From: Dugan Dobbs Date: Thu, 18 Jan 2024 12:41:51 -0500 Subject: [PATCH 18/18] Re-adding bootstrap theming to commentable stub --- src/stubs/commentable/views/comment-block.stub | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stubs/commentable/views/comment-block.stub b/src/stubs/commentable/views/comment-block.stub index d1fdf63..0123a42 100644 --- a/src/stubs/commentable/views/comment-block.stub +++ b/src/stubs/commentable/views/comment-block.stub @@ -1,7 +1,7 @@ {!! html()->form(route('{{route_comment}}.store', {parent_variable}}->id))->open() !!}
- {{ html()->label('Comment', 'comment') }} - {{ html()->textarea()('comment') }} + {{ html()->label('Comment', 'comment')->class('form-label)' }} + {{ html()->textarea()('comment')->class('form-control) }}
{{ html()->submit('Create')->class('btn btn-primary') }} {{ html()->form()->close() }}