Commit 03e95a0b5986c97f8282b50eae01806e3e5ab3a6

Authored by Сергей П
1 parent 8cbda1e869
Exists in master

Изменения для админ панели

Showing 7 changed files with 427 additions and 45 deletions Inline Diff

app/Http/Controllers/Admin/EmployersController.php
1 <?php 1 <?php
2 2
3 namespace App\Http\Controllers\Admin; 3 namespace App\Http\Controllers\Admin;
4 4
5 use App\Http\Controllers\Controller; 5 use App\Http\Controllers\Controller;
6 use App\Http\Requests\FlotRequest; 6 use App\Http\Requests\FlotRequest;
7 use App\Models\Ad_employer; 7 use App\Models\Ad_employer;
8 use App\Models\Answer; 8 use App\Models\Answer;
9 use App\Models\CategoryEmp; 9 use App\Models\CategoryEmp;
10 use App\Models\Employer; 10 use App\Models\Employer;
11 use App\Models\Flot; 11 use App\Models\Flot;
12 use App\Models\Static_ad; 12 use App\Models\Static_ad;
13 use App\Models\User; 13 use App\Models\User;
14 use Illuminate\Http\Request; 14 use Illuminate\Http\Request;
15 use Illuminate\Support\Facades\DB; 15 use Illuminate\Support\Facades\DB;
16 use Illuminate\Support\Facades\Storage; 16 use Illuminate\Support\Facades\Storage;
17 use Illuminate\Support\Facades\Validator; 17 use Illuminate\Support\Facades\Validator;
18 18
19 class EmployersController extends Controller 19 class EmployersController extends Controller
20 { 20 {
21 public function index(Request $request) { 21 public function index(Request $request) {
22 //$all_employer = User::where('is_worker', '0')->count(); 22 //$all_employer = User::where('is_worker', '0')->count();
23 $all_public = -1; 23 $all_public = -1;
24 $all_status = -1; 24 $all_status = -1;
25 if ($request->ajax()) { 25 if ($request->ajax()) {
26 $user = User::find($request->id); 26 $user = User::find($request->id);
27 $request->offsetUnset('id'); 27 $request->offsetUnset('id');
28 $user->update($request->all()); 28 $user->update($request->all());
29 } 29 }
30 30
31 $users = User::with('employers')->select(['users.*','users.id as usr_id', 'emp.id as emp_id', 'emp.code as code_id', 'emp.logo as emp_logo', 'emp.name_company as name_company', 'emp.*']) 31 $users = User::with('employers')->select(['users.*','users.id as usr_id', 'emp.id as emp_id',
32 'emp.code as code_id', 'emp.logo as emp_logo', 'emp.name_company as name_company', 'emp.*'
33 ])
32 ->join('employers as emp','emp.user_id','users.id') 34 ->join('employers as emp','emp.user_id','users.id')
33 ->where('users.is_worker', '0')->Realuser(); //->Notadmin(); 35 ->where('users.is_worker', '0')
36 ->orderByDesc('emp.id')
37 ->Realuser();
34 $all_employer = $users->count(); 38 $all_employer = $users->count();
35 39
36 $all_public = Employer::where('status_hidden', '=', '0')-> 40 $all_public = Employer::where('status_hidden', '=', '0')->
37 count(); 41 count();
38 42
39 $all_status = Employer::where(function($query) { 43 $all_status = Employer::where(function($query) {
40 $query->Where('category', '=', 'Не оплачен') 44 $query->Where('category', '=', 'Не оплачен')
41 ->orWhere('category', '=', 'Не определен') 45 ->orWhere('category', '=', 'Не определен')
42 ->orWhere('category', '=', 'Согласование'); 46 ->orWhere('category', '=', 'Согласование');
43 })->count(); 47 })->count();
44 48
45 $find_cat = ""; 49 $find_cat = "";
46 if (isset($request->category)) { 50 if (isset($request->category)) {
47 if ($request->category != 'Все категории') { 51 if ($request->category != 'Все категории') {
48 $users = $users->where('category', '=', $request->category); 52 $users = $users->where('category', '=', $request->category);
49 $find_cat = $request->category; 53 $find_cat = $request->category;
50 } 54 }
51 } 55 }
52 $find_key = ""; 56 $find_key = "";
53 57
54 if (isset($request->find)) { 58 if (isset($request->find)) {
55 $find_key = $request->find; 59 $find_key = $request->find;
56 $users = $users->where(function($query) use($find_key) { 60 $users = $users->where(function($query) use($find_key) {
57 $query->Where('users.name', 'LIKE', "%$find_key%") 61 $query->Where('users.name', 'LIKE', "%$find_key%")
58 ->orWhere('emp.email', 'LIKE', "%$find_key%") 62 ->orWhere('emp.email', 'LIKE', "%$find_key%")
59 ->orWhere('emp.telephone', 'LIKE', "%$find_key%"); 63 ->orWhere('emp.telephone', 'LIKE', "%$find_key%");
60 }); 64 });
61 } 65 }
62 66
63 //DB::enableQueryLog(); 67 //DB::enableQueryLog();
64 $all_current = $users->count(); 68 $all_current = $users->count();
65 $users = $users->paginate(15); 69 $users = $users->paginate(15);
66 //dd(DB::getQueryLog()); 70 //dd(DB::getQueryLog());
67 71
68 $select_category = CategoryEmp::query()->active()->get(); 72 $select_category = CategoryEmp::query()->active()->get();
69 73
70 if ($request->ajax()) { 74 if ($request->ajax()) {
71 return view('admin.employer.index_ajax', compact('users')); 75 return view('admin.employer.index_ajax', compact('users'));
72 } else { 76 } else {
73 return view('admin.employer.index', compact('users', 77 return view('admin.employer.index', compact('users',
74 'find_key', 78 'find_key',
75 'find_cat', 79 'find_cat',
76 'all_employer', 80 'all_employer',
77 'all_public', 81 'all_public',
78 'all_status', 82 'all_status',
79 'all_current', 83 'all_current',
80 'select_category')); 84 'select_category'));
81 } 85 }
82 } 86 }
83 87
84 public function comment_read(Employer $employer) { 88 public function comment_read(Employer $employer) {
85 return view('admin.employer.comment', compact('employer')); 89 return view('admin.employer.comment', compact('employer'));
86 } 90 }
87 91
88 // Форма обновления 92 // Форма обновления
89 public function form_update_employer(Employer $employer) { 93 public function form_update_employer(Employer $employer) {
90 // данные 94 // данные
91 $select_category = CategoryEmp::query()->active()->get(); 95 $select_category = CategoryEmp::query()->active()->get();
92 $flots = Flot::query()->where('employer_id', '=', $employer->id)->get(); 96 $flots = Flot::query()->where('employer_id', '=', $employer->id)->get();
93 return view('admin.employer.edit', compact('employer', 'select_category', 'flots')); 97 return view('admin.employer.edit', compact('employer', 'select_category', 'flots'));
94 } 98 }
95 99
96 public function edit_flot(Flot $flot, Employer $employer) { 100 public function edit_flot(Flot $flot, Employer $employer) {
97 return view('admin.flot.edit', compact('flot', 'employer')); 101 return view('admin.flot.edit', compact('flot', 'employer'));
98 } 102 }
99 103
100 public function add_flot(Employer $employer) { 104 public function add_flot(Employer $employer) {
101 return view('admin.flot.add', compact('employer')); 105 return view('admin.flot.add', compact('employer'));
102 } 106 }
103 107
104 public function save_add_flot(FlotRequest $request) { 108 public function save_add_flot(FlotRequest $request) {
105 $params = $request->all(); 109 $params = $request->all();
106 $params['image'] = $request->file('image')->store("flot", 'public'); 110 $params['image'] = $request->file('image')->store("flot", 'public');
107 Flot::create($params); 111 Flot::create($params);
108 return redirect()->route('admin.employer-profile', ['employer' => $params['employer_id']]) 112 return redirect()->route('admin.employer-profile', ['employer' => $params['employer_id']])
109 ->with('success', 'Данные были успешно сохранены'); 113 ->with('success', 'Данные были успешно сохранены');
110 } 114 }
111 115
112 public function delete_flot(Flot $flot, $employer_id) { 116 public function delete_flot(Flot $flot, $employer_id) {
113 $flot->delete(); 117 $flot->delete();
114 return redirect()->route('admin.employer-profile', ['employer' => $employer_id]) 118 return redirect()->route('admin.employer-profile', ['employer' => $employer_id])
115 ->with('success', 'Данные были успешно сохранены'); 119 ->with('success', 'Данные были успешно сохранены');
116 } 120 }
117 121
118 122
119 public function edit_save_flot(Flot $flot, FlotRequest $request) { 123 public function edit_save_flot(Flot $flot, FlotRequest $request) {
120 $params = $request->all(); 124 $params = $request->all();
121 125
122 if ($request->has('image')) { 126 if ($request->has('image')) {
123 if (!empty($flot->image)) { 127 if (!empty($flot->image)) {
124 Storage::delete($flot->image); 128 Storage::delete($flot->image);
125 } 129 }
126 $params['image'] = $request->file('image')->store("flot", 'public'); 130 $params['image'] = $request->file('image')->store("flot", 'public');
127 } else { 131 } else {
128 if (!empty($flot->image)) $params['image'] = $flot->image; 132 if (!empty($flot->image)) $params['image'] = $flot->image;
129 } 133 }
130 134
131 $flot->update($params); 135 $flot->update($params);
132 136
133 return redirect()->route('admin.employer-profile', ['employer' => $params['employer_id']]) 137 return redirect()->route('admin.employer-profile', ['employer' => $params['employer_id']])
134 ->with('success', 'Данные были успешно сохранены'); 138 ->with('success', 'Данные были успешно сохранены');
135 139
136 } 140 }
137 141
138 public function update_employer(Employer $employer, Request $request) 142 public function update_employer(Employer $employer, Request $request)
139 { 143 {
140 $params = $request->all(); 144 $params = $request->all();
141 unset($params['logo']); 145 unset($params['logo']);
142 unset($params['telephone']); 146 unset($params['telephone']);
143 unset($params['email']); 147 unset($params['email']);
144 unset($params['address']); 148 unset($params['address']);
145 unset($params['site']); 149 unset($params['site']);
146 unset($params['status_hidden']); 150 unset($params['status_hidden']);
147 unset($params['oficial_status']); 151 unset($params['oficial_status']);
148 unset($params['social_is']); 152 unset($params['social_is']);
149 unset($params['sending_is']); 153 unset($params['sending_is']);
150 unset($params['category']); 154 unset($params['category']);
151 unset($params['comment_admin']); 155 unset($params['comment_admin']);
152 156
153 $rules = [ 157 $rules = [
154 'name' => 'required|string|max:255', 158 'name' => 'required|string|max:255',
155 ]; 159 ];
156 160
157 $messages = [ 161 $messages = [
158 'required' => 'Укажите обязательное поле «:attribute»', 162 'required' => 'Укажите обязательное поле «:attribute»',
159 'confirmed' => 'Пароли не совпадают', 163 'confirmed' => 'Пароли не совпадают',
160 'email' => 'Введите корректный email', 164 'email' => 'Введите корректный email',
161 'min' => [ 165 'min' => [
162 'string' => 'Поле «:attribute» должно быть не меньше :min символов', 166 'string' => 'Поле «:attribute» должно быть не меньше :min символов',
163 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт' 167 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт'
164 ], 168 ],
165 'max' => [ 169 'max' => [
166 'string' => 'Поле «:attribute» должно быть не больше :max символов', 170 'string' => 'Поле «:attribute» должно быть не больше :max символов',
167 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт' 171 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт'
168 ], 172 ],
169 ]; 173 ];
170 174
171 $validator = Validator::make($params, $rules, $messages); 175 $validator = Validator::make($params, $rules, $messages);
172 176
173 if ($validator->fails()) { 177 if ($validator->fails()) {
174 return back()->withErrors($validator)->withInput(); //->route('admin.register') 178 return back()->withErrors($validator)->withInput(); //->route('admin.register')
175 179
176 } else { 180 } else {
177 181
178 //$user = User::find($employer->user_id); 182 //$user = User::find($employer->user_id);
179 $user_id = $employer->user_id; 183 $user_id = $employer->user_id;
180 $employer->telephone = $request->telephone; 184 $employer->telephone = $request->telephone;
181 $employer->email = $request->email; 185 $employer->email = $request->email;
182 $employer->address = $request->address; 186 $employer->address = $request->address;
183 $employer->site = $request->site; 187 $employer->site = $request->site;
184 $employer->text = $request->text; 188 $employer->text = $request->text;
185 $employer->status_hidden = $request->status_hidden; 189 $employer->status_hidden = $request->status_hidden;
186 $employer->oficial_status = $request->oficial_status; 190 $employer->oficial_status = $request->oficial_status;
187 $employer->social_is = $request->social_is; 191 $employer->social_is = $request->social_is;
188 $employer->sending_is = $request->sending_is; 192 $employer->sending_is = $request->sending_is;
189 $employer->category = $request->category; 193 $employer->category = $request->category;
190 $employer->comment_admin = $request->comment_admin; 194 $employer->comment_admin = $request->comment_admin;
191 195
192 if ($request->has('logo')) { 196 if ($request->has('logo')) {
193 if (!empty($employer->logo)) { 197 if (!empty($employer->logo)) {
194 Storage::delete($employer->logo); 198 Storage::delete($employer->logo);
195 } 199 }
196 $employer->logo = $request->file('logo')->store("employer/$user_id", 'public'); 200 $employer->logo = $request->file('logo')->store("employer/$user_id", 'public');
197 } 201 }
198 $employer->save(); 202 $employer->save();
199 203
200 $user = User::find($user_id); 204 $user = User::find($user_id);
201 $user->update($params); 205 $user->update($params);
202 206
203 return redirect()->route('admin.employer-profile', ['employer' => $employer->id]) 207 return redirect()->route('admin.employer-profile', ['employer' => $employer->id])
204 ->with('success', 'Данные были успешно сохранены'); 208 ->with('success', 'Данные были успешно сохранены');
205 } 209 }
206 } 210 }
207 211
208 // Удаление работодателя, вакансий и профиля юзера 212 // Удаление работодателя, вакансий и профиля юзера
209 public function delete_employer(Employer $employer, User $user) { 213 public function delete_employer(Employer $employer, User $user) {
210 try { 214 try {
211 if (!empty($employer)) { 215 if (!empty($employer)) {
212 if (!empty($employer->logo)) { 216 if (!empty($employer->logo)) {
213 Storage::delete($employer->logo); 217 Storage::delete($employer->logo);
214 } 218 }
215 219
216 foreach($employer->ads as $ad) { 220 foreach($employer->ads as $ad) {
217 $ads = Ad_employer::find($ad->id); 221 $ads = Ad_employer::find($ad->id);
218 $ads->employer_id = 2; 222 $ads->employer_id = 2;
219 $ads->is_remove = 1; 223 $ads->is_remove = 1;
220 $ads->save(); 224 $ads->save();
221 } 225 }
222 226
223 $employer->delete(); 227 $employer->delete();
224 } 228 }
225 } finally { 229 } finally {
226 $user->delete(); 230 $user->delete();
227 } 231 }
228 232
229 return redirect()->route('admin.employers')->with('success', 'Данные были удалены о работодателе'); 233 return redirect()->route('admin.employers')->with('success', 'Данные были удалены о работодателе');
230 } 234 }
231 235
232 // кабинет - отзывы о работодателе для модерации 236 // кабинет - отзывы о работодателе для модерации
233 public function answers(Request $request) { 237 public function answers(Request $request) {
234 if ($request->ajax()) { 238 if ($request->ajax()) {
235 $user = Answer::find($request->id); 239 $user = Answer::find($request->id);
236 $request->offsetUnset('id'); 240 $request->offsetUnset('id');
237 $user->update($request->all()); 241 $user->update($request->all());
238 } 242 }
239 243
240 $answers = Answer::query()->orderByDesc('id')->paginate(15); 244 $answers = Answer::query()->orderByDesc('id')->paginate(15);
241 245
242 if ($request->ajax()) { 246 if ($request->ajax()) {
243 return view('admin.answers.index_ajax', compact('answers')); 247 return view('admin.answers.index_ajax', compact('answers'));
244 } else { 248 } else {
245 return view('admin.answers.index', compact('answers')); 249 return view('admin.answers.index', compact('answers'));
246 } 250 }
247 } 251 }
248 252
249 // кабинет - статистика вакансий работодателя 253 // кабинет - статистика вакансий работодателя
250 public function static_ads(Request $request) { 254 public function static_ads(Request $request) {
251 $stat = Static_ad::with('ads'); 255 $stat = Static_ad::with('ads');
252 $ads = Ad_employer::query()->active()->OrderBy('id')->get(); 256 $ads = Ad_employer::query()->active()->OrderBy('id')->get();
253 $periods = Static_ad::query()->distinct('year_month')->select('year_month')->get(); 257 $periods = Static_ad::query()->distinct('year_month')->select('year_month')->get();
254 if ($request->ajax()) { 258 if ($request->ajax()) {
255 if (isset($request->ad_employer_id)) 259 if (isset($request->ad_employer_id))
256 if (!$request->ad_employer_id == "0") 260 if (!$request->ad_employer_id == "0")
257 $stat = $stat->Where('ad_employer_id', '=', $request->ad_employer_id); 261 $stat = $stat->Where('ad_employer_id', '=', $request->ad_employer_id);
258 if (isset($request->year_month)) { 262 if (isset($request->year_month)) {
259 if (!$request->year_month == "0") 263 if (!$request->year_month == "0")
260 $stat = $stat->Where('year_month', '=', $request->year_month); 264 $stat = $stat->Where('year_month', '=', $request->year_month);
261 } 265 }
262 } 266 }
263 267
264 $stat = $stat->OrderByDesc('year_month'); 268 $stat = $stat->OrderByDesc('year_month');
265 $stat = $stat->paginate(15); 269 $stat = $stat->paginate(15);
266 270
267 if ($request->ajax()) 271 if ($request->ajax())
268 return view('admin.static.index_ads_ajax', compact('stat')); 272 return view('admin.static.index_ads_ajax', compact('stat'));
269 else 273 else
270 return view('admin.static.index_ads', compact('stat', 'ads', 'periods')); 274 return view('admin.static.index_ads', compact('stat', 'ads', 'periods'));
271 } 275 }
272 } 276 }
273 277
app/Http/Controllers/EmployerController.php
1 <?php 1 <?php
2 2
3 namespace App\Http\Controllers; 3 namespace App\Http\Controllers;
4 4
5 use App\Classes\RusDate; 5 use App\Classes\RusDate;
6 use App\Classes\Tools; 6 use App\Classes\Tools;
7 use App\Http\Requests\BaseUser_min_Request; 7 use App\Http\Requests\BaseUser_min_Request;
8 use App\Http\Requests\FlotRequest; 8 use App\Http\Requests\FlotRequest;
9 use App\Http\Requests\MessagesRequiest; 9 use App\Http\Requests\MessagesRequiest;
10 use App\Http\Requests\VacancyRequestEdit; 10 use App\Http\Requests\VacancyRequestEdit;
11 use App\Mail\MailCreateEmployer; 11 use App\Mail\MailCreateEmployer;
12 use App\Mail\MailSotrudnichestvo; 12 use App\Mail\MailSotrudnichestvo;
13 use App\Mail\SendAllMessages; 13 use App\Mail\SendAllMessages;
14 use App\Models\Ad_employer; 14 use App\Models\Ad_employer;
15 use App\Models\ad_response; 15 use App\Models\ad_response;
16 use App\Models\Category; 16 use App\Models\Category;
17 use App\Models\Employer; 17 use App\Models\Employer;
18 use App\Models\Flot; 18 use App\Models\Flot;
19 use App\Models\Job_title; 19 use App\Models\Job_title;
20 use App\Models\Like_worker; 20 use App\Models\Like_worker;
21 use App\Models\Message; 21 use App\Models\Message;
22 use App\Models\Worker; 22 use App\Models\Worker;
23 use Carbon\Carbon; 23 use Carbon\Carbon;
24 use Illuminate\Auth\Events\Registered; 24 use Illuminate\Auth\Events\Registered;
25 use Illuminate\Database\Eloquent\Builder; 25 use Illuminate\Database\Eloquent\Builder;
26 use Illuminate\Http\Request; 26 use Illuminate\Http\Request;
27 use Illuminate\Support\Facades\Auth; 27 use Illuminate\Support\Facades\Auth;
28 use Illuminate\Support\Facades\Hash; 28 use Illuminate\Support\Facades\Hash;
29 use Illuminate\Support\Facades\Mail; 29 use Illuminate\Support\Facades\Mail;
30 use Illuminate\Support\Facades\Storage; 30 use Illuminate\Support\Facades\Storage;
31 use App\Models\User as User_Model; 31 use App\Models\User as User_Model;
32 use Illuminate\Support\Facades\Validator; 32 use Illuminate\Support\Facades\Validator;
33 use App\Enums\DbExportColumns; 33 use App\Enums\DbExportColumns;
34 34
35 class EmployerController extends Controller 35 class EmployerController extends Controller
36 { 36 {
37 public function vacancie($vacancy, Request $request) { 37 public function vacancie($vacancy, Request $request) {
38 $title = 'Заголовок вакансии'; 38 $title = 'Заголовок вакансии';
39 $Query = Ad_employer::with('jobs')-> 39 $Query = Ad_employer::with('jobs')->
40 with('cat')-> 40 with('cat')->
41 with('employer')-> 41 with('employer')->
42 with('jobs_code')-> 42 with('jobs_code')->
43 select('ad_employers.*')-> 43 select('ad_employers.*')->
44 where('id', '=', $vacancy)->get(); 44 where('id', '=', $vacancy)->get();
45 45
46 if (isset(Auth()->user()->id)) 46 if (isset(Auth()->user()->id))
47 $uid = Auth()->user()->id; 47 $uid = Auth()->user()->id;
48 else 48 else
49 $uid = 0; 49 $uid = 0;
50 $title = $Query[0]->name; 50 $title = $Query[0]->name;
51 if ($request->ajax()) { 51 if ($request->ajax()) {
52 return view('ajax.vacance-item', compact('Query','uid')); 52 return view('ajax.vacance-item', compact('Query','uid'));
53 } else { 53 } else {
54 return view('vacance-item', compact('title', 'Query', 'uid')); 54 return view('vacance-item', compact('title', 'Query', 'uid'));
55 } 55 }
56 } 56 }
57 57
58 public function logout() { 58 public function logout() {
59 Auth::logout(); 59 Auth::logout();
60 return redirect()->route('index') 60 return redirect()->route('index')
61 ->with('success', 'Вы вышли из личного кабинета'); 61 ->with('success', 'Вы вышли из личного кабинета');
62 } 62 }
63 63
64 public function employer_info() { 64 public function employer_info() {
65 // код юзера 65 // код юзера
66 $user_info = Auth()->user(); 66 $user_info = Auth()->user();
67 // вьюшка для вывода данных 67 // вьюшка для вывода данных
68 return view('employers.info', compact('user_info')); 68 return view('employers.info', compact('user_info'));
69 } 69 }
70 70
71 public function employer_info_save(User_Model $user, BaseUser_min_Request $request) { 71 public function employer_info_save(User_Model $user, BaseUser_min_Request $request) {
72 // Все данные через реквест 72 // Все данные через реквест
73 $all = $request->all(); 73 $all = $request->all();
74 unset($all['_token']); 74 unset($all['_token']);
75 // обновление 75 // обновление
76 $user->update($all); 76 $user->update($all);
77 return redirect()->route('employer.employer_info'); 77 return redirect()->route('employer.employer_info');
78 } 78 }
79 79
80 public function cabinet() { 80 public function cabinet() {
81 $id = Auth()->user()->id; 81 $id = Auth()->user()->id;
82 $Employer = Employer::query()->with('users')->with('ads')->with('flots')-> 82 $Employer = Employer::query()->with('users')->with('ads')->with('flots')->
83 WhereHas('users', 83 WhereHas('users',
84 function (Builder $query) use ($id) {$query->Where('id', $id); 84 function (Builder $query) use ($id) {$query->Where('id', $id);
85 })->get(); 85 })->get();
86 return view('employers.cabinet45', compact('Employer')); 86 return view('employers.cabinet45', compact('Employer'));
87 } 87 }
88 88
89 public function slider_flot() { 89 public function slider_flot() {
90 $id = Auth()->user()->id; 90 $id = Auth()->user()->id;
91 $Employer = Employer::query()->with('users')->with('ads')->with('flots')-> 91 $Employer = Employer::query()->with('users')->with('ads')->with('flots')->
92 WhereHas('users', 92 WhereHas('users',
93 function (Builder $query) use ($id) {$query->Where('id', $id); 93 function (Builder $query) use ($id) {$query->Where('id', $id);
94 })->get(); 94 })->get();
95 return view('employers.fly-flot', compact('Employer')); 95 return view('employers.fly-flot', compact('Employer'));
96 } 96 }
97 97
98 public function cabinet_save(Employer $Employer, Request $request) { 98 public function cabinet_save(Employer $Employer, Request $request) {
99 $params = $request->all(); 99 $params = $request->all();
100 $params['user_id'] = Auth()->user()->id; 100 $params['user_id'] = Auth()->user()->id;
101 $id = $Employer->id; 101 $id = $Employer->id;
102 102
103 if ($request->has('logo')) { 103 if ($request->has('logo')) {
104 if (!empty($Employer->logo)) { 104 if (!empty($Employer->logo)) {
105 Storage::delete($Employer->logo); 105 Storage::delete($Employer->logo);
106 } 106 }
107 $params['logo'] = $request->file('logo')->store("employer/$id", 'public'); 107 $params['logo'] = $request->file('logo')->store("employer/$id", 'public');
108 } 108 }
109 109
110 $Employer->update($params); 110 $Employer->update($params);
111 111
112 return redirect()->route('employer.cabinet')->with('success', 'Данные были успешно сохранены'); 112 return redirect()->route('employer.cabinet')->with('success', 'Данные были успешно сохранены');
113 } 113 }
114 114
115 public function save_add_flot(FlotRequest $request) { 115 public function save_add_flot(FlotRequest $request) {
116 // отмена 116 // отмена
117 $params = $request->all(); 117 $params = $request->all();
118 118
119 if ($request->has('image')) { 119 if ($request->has('image')) {
120 $params['image'] = $request->file('image')->store("flot", 'public'); 120 $params['image'] = $request->file('image')->store("flot", 'public');
121 } 121 }
122 Flot::create($params); 122 Flot::create($params);
123 $data_flots = Flot::query()->where('employer_id', $request->get('employer_if'))->get(); 123 $data_flots = Flot::query()->where('employer_id', $request->get('employer_if'))->get();
124 return redirect()->route('employer.slider_flot')->with('success', 'Новый корабль был добавлен'); 124 return redirect()->route('employer.slider_flot')->with('success', 'Новый корабль был добавлен');
125 } 125 }
126 126
127 public function edit_flot(Flot $Flot, Employer $Employer) { 127 public function edit_flot(Flot $Flot, Employer $Employer) {
128 return view('employers.edit-flot', compact('Flot', 'Employer')); 128 return view('employers.edit-flot', compact('Flot', 'Employer'));
129 } 129 }
130 130
131 public function update_flot(FlotRequest $request, Flot $Flot) { 131 public function update_flot(FlotRequest $request, Flot $Flot) {
132 $params = $request->all(); 132 $params = $request->all();
133 133
134 if ($request->has('image')) { 134 if ($request->has('image')) {
135 if (!empty($flot->image)) { 135 if (!empty($flot->image)) {
136 Storage::delete($flot->image); 136 Storage::delete($flot->image);
137 } 137 }
138 $params['image'] = $request->file('image')->store("flot", 'public'); 138 $params['image'] = $request->file('image')->store("flot", 'public');
139 } else { 139 } else {
140 if (!empty($flot->image)) $params['image'] = $flot->image; 140 if (!empty($flot->image)) $params['image'] = $flot->image;
141 } 141 }
142 142
143 $Flot->update($params); 143 $Flot->update($params);
144 return redirect()->route('employer.slider_flot')->with('success', 'Новый корабль был добавлен'); 144 return redirect()->route('employer.slider_flot')->with('success', 'Новый корабль был добавлен');
145 } 145 }
146 146
147 public function delete_flot(Flot $Flot) { 147 public function delete_flot(Flot $Flot) {
148 $data_flots = Flot::query()->where('employer_id', $Flot->employer_id)->get(); 148 $data_flots = Flot::query()->where('employer_id', $Flot->employer_id)->get();
149 149
150 if (isset($Flot->id)) $Flot->delete(); 150 if (isset($Flot->id)) $Flot->delete();
151 return redirect()->route('employer.slider_flot')->with('success', 'Корабль был удален'); 151 return redirect()->route('employer.slider_flot')->with('success', 'Корабль был удален');
152 } 152 }
153 153
154 // Форма добавления вакансий 154 // Форма добавления вакансий
155 public function cabinet_vacancie() { 155 public function cabinet_vacancie() {
156 $id = Auth()->user()->id; 156 $id = Auth()->user()->id;
157 157
158 if (Auth()->user()->is_public) { 158 if (Auth()->user()->is_public) {
159 $categories = Category::query()->active()->get(); 159 $categories = Category::query()->active()->get();
160 $jobs = Job_title::query()->orderByDesc('sort')->OrderBy('name')-> 160 $jobs = Job_title::query()->orderByDesc('sort')->OrderBy('name')->
161 where('is_remove', '=', '0')-> 161 where('is_remove', '=', '0')->
162 where('is_bd', '=', '0')-> 162 where('is_bd', '=', '0')->
163 get(); 163 get();
164 $Employer = Employer::query()->with('users')->with('ads')->with('flots')-> 164 $Employer = Employer::query()->with('users')->with('ads')->with('flots')->
165 WhereHas('users', 165 WhereHas('users',
166 function (Builder $query) use ($id) { 166 function (Builder $query) use ($id) {
167 $query->Where('id', $id); 167 $query->Where('id', $id);
168 })->get(); 168 })->get();
169 return view('employers.add_vacancy', compact('Employer', 'jobs', 'categories')); 169 return view('employers.add_vacancy', compact('Employer', 'jobs', 'categories'));
170 } else { 170 } else {
171 return redirect()->route('employer.cabinet_vacancie_danger'); 171 return redirect()->route('employer.cabinet_vacancie_danger');
172 } 172 }
173 } 173 }
174 174
175 // Форма предупреждения об оплате 175 // Форма предупреждения об оплате
176 public function cabinet_vacancie_danger() { 176 public function cabinet_vacancie_danger() {
177 return view('employers.add_vacancy_danger'); 177 return view('employers.add_vacancy_danger');
178 } 178 }
179 179
180 // Сохранение вакансии 180 // Сохранение вакансии
181 public function cabinet_vacancy_save1(VacancyRequestEdit $request) { 181 public function cabinet_vacancy_save1(VacancyRequestEdit $request) {
182 $params_emp = $request->all(); 182 $params_emp = $request->all();
183 183
184 $params_job["job_title_id"] = $params_emp['job_title_id']; 184 $params_job["job_title_id"] = $params_emp['job_title_id'];
185 //$params_job["min_salary"] = $params_emp['min_salary']; 185 //$params_job["min_salary"] = $params_emp['min_salary'];
186 //$params_job["max_salary"] = $params_emp['max_salary']; 186 //$params_job["max_salary"] = $params_emp['max_salary'];
187 //$params_job["region"] = $params_emp['region']; 187 //$params_job["region"] = $params_emp['region'];
188 //$params_job["power"] = $params_emp['power']; 188 //$params_job["power"] = $params_emp['power'];
189 //$params_job["sytki"] = $params_emp['sytki']; 189 //$params_job["sytki"] = $params_emp['sytki'];
190 //$params_job["start"] = $params_emp['start']; 190 //$params_job["start"] = $params_emp['start'];
191 //$params_job["flot"] = $params_emp['flot']; 191 //$params_job["flot"] = $params_emp['flot'];
192 //$params_job["description"] = $params_emp['description']; 192 //$params_job["description"] = $params_emp['description'];
193 193
194 $ad_jobs = Ad_employer::create($params_emp); 194 $ad_jobs = Ad_employer::create($params_emp);
195 //$params_job['ad_employer_id'] = $ad_jobs->id; 195 //$params_job['ad_employer_id'] = $ad_jobs->id;
196 //Ad_jobs::create($params_job); 196 //Ad_jobs::create($params_job);
197 $ad_jobs->jobs()->sync($request->get('job_title_id')); 197 $ad_jobs->jobs()->sync($request->get('job_title_id'));
198 198
199 return redirect()->route('employer.vacancy_list'); 199 return redirect()->route('employer.vacancy_list');
200 } 200 }
201 201
202 // Список вакансий 202 // Список вакансий
203 public function vacancy_list(Request $request) { 203 public function vacancy_list(Request $request) {
204 $id = Auth()->user()->id; 204 $id = Auth()->user()->id;
205 205
206 //dd($request->all()); 206 //dd($request->all());
207 $Employer = Employer::query()->where('user_id', $id)->first(); 207 $Employer = Employer::query()->where('user_id', $id)->first();
208 $vacancy_list = Ad_employer::query()->with('jobs')-> 208 $vacancy_list = Ad_employer::query()->with('jobs')->
209 with('jobs_code')-> 209 with('jobs_code')->
210 where('employer_id', $Employer->id); 210 where('employer_id', $Employer->id);
211 211
212 if (($request->has('search')) && (!empty($request->get('search')))) { 212 if (($request->has('search')) && (!empty($request->get('search')))) {
213 $search = $request->get('search'); 213 $search = $request->get('search');
214 $vacancy_list = $vacancy_list->where('name', 'LIKE', "%$search%"); 214 $vacancy_list = $vacancy_list->where('name', 'LIKE', "%$search%");
215 } 215 }
216 216
217 if ($request->get('sort')) { 217 if ($request->get('sort')) {
218 $sort = $request->get('sort'); 218 $sort = $request->get('sort');
219 switch ($sort) { 219 switch ($sort) {
220 case 'name_up': $vacancy_list = $vacancy_list->orderBy('name')->orderBy('id'); break; 220 case 'name_up': $vacancy_list = $vacancy_list->orderBy('name')->orderBy('id'); break;
221 case 'name_down': $vacancy_list = $vacancy_list->orderByDesc('name')->orderby('id'); break; 221 case 'name_down': $vacancy_list = $vacancy_list->orderByDesc('name')->orderby('id'); break;
222 case 'nopublic': $vacancy_list = $vacancy_list->OrderBy('active_is')->orderBy('id'); break; 222 case 'nopublic': $vacancy_list = $vacancy_list->OrderBy('active_is')->orderBy('id'); break;
223 case 'public': $vacancy_list = $vacancy_list->OrderByDesc('active_is')->orderBy('id'); break; 223 case 'public': $vacancy_list = $vacancy_list->OrderByDesc('active_is')->orderBy('id'); break;
224 case 'created_at_up': $vacancy_list = $vacancy_list->OrderBy('created_at')->orderBy('id'); break; 224 case 'created_at_up': $vacancy_list = $vacancy_list->OrderBy('created_at')->orderBy('id'); break;
225 case 'created_at_down': $vacancy_list = $vacancy_list->orderByDesc('created_at')->orderBy('id'); break; 225 case 'created_at_down': $vacancy_list = $vacancy_list->orderByDesc('created_at')->orderBy('id'); break;
226 case 'default': $vacancy_list = $vacancy_list->orderbyDesc('updated_at')->orderBy('name'); break; 226 case 'default': $vacancy_list = $vacancy_list->orderbyDesc('updated_at')->orderBy('name'); break;
227 default: $vacancy_list = $vacancy_list->orderByDesc('id')->orderbyDesc('updated_at'); break; 227 default: $vacancy_list = $vacancy_list->orderByDesc('id')->orderbyDesc('updated_at'); break;
228 } 228 }
229 } else { 229 } else {
230 $vacancy_list = $vacancy_list->orderByDesc('created_at')->orderBy('id'); 230 $vacancy_list = $vacancy_list->orderByDesc('created_at')->orderBy('id');
231 } 231 }
232 232
233 $vacancy_list = $vacancy_list->paginate(10); 233 $vacancy_list = $vacancy_list->paginate(10);
234 234
235 //ajax 235 //ajax
236 if ($request->ajax()) { 236 if ($request->ajax()) {
237 return view('employers.ajax.list_vacancy', compact('vacancy_list', 'Employer')); 237 return view('employers.ajax.list_vacancy', compact('vacancy_list', 'Employer'));
238 } else { 238 } else {
239 return view('employers.list_vacancy', compact('vacancy_list', 'Employer')); 239 return view('employers.list_vacancy', compact('vacancy_list', 'Employer'));
240 } 240 }
241 } 241 }
242 242
243 // Карточка вакансии 243 // Карточка вакансии
244 public function vacancy_edit(Ad_employer $ad_employer) { 244 public function vacancy_edit(Ad_employer $ad_employer) {
245 $id = Auth()->user()->id; 245 $id = Auth()->user()->id;
246 $Positions = Category::query()->where('is_remove', '=', '0')->get(); 246 $Positions = Category::query()->where('is_remove', '=', '0')->get();
247 $jobs = Job_title::query()->orderByDesc('sort')->OrderBy('name')-> 247 $jobs = Job_title::query()->orderByDesc('sort')->OrderBy('name')->
248 where('is_remove', '=', '0')-> 248 where('is_remove', '=', '0')->
249 where('is_bd', '=', '0')->get(); 249 where('is_bd', '=', '0')->get();
250 250
251 $Employer = Employer::query()->with('users')->with('ads')-> 251 $Employer = Employer::query()->with('users')->with('ads')->
252 with('flots')->where('user_id', $id)->first(); 252 with('flots')->where('user_id', $id)->first();
253 return view('employers.edit_vacancy', compact('ad_employer', 'Positions','Employer', 'jobs')); 253 return view('employers.edit_vacancy', compact('ad_employer', 'Positions','Employer', 'jobs'));
254 } 254 }
255 255
256 // Сохранение-редактирование записи 256 // Сохранение-редактирование записи
257 public function vacancy_save_me(VacancyRequestEdit $request, Ad_employer $ad_employer) { 257 public function vacancy_save_me(VacancyRequestEdit $request, Ad_employer $ad_employer) {
258 $params = $request->all(); 258 $params = $request->all();
259 $params_job["job_title_id"] = $params['job_title_id']; 259 $params_job["job_title_id"] = $params['job_title_id'];
260 260
261 //$jobs['flot'] = $params['flot']; 261 //$jobs['flot'] = $params['flot'];
262 //$jobs['job_title_id'] = $params['job_title_id']; 262 //$jobs['job_title_id'] = $params['job_title_id'];
263 //$titles['position_id'] = $params['position_id']; 263 //$titles['position_id'] = $params['position_id'];
264 //unset($params['job_title_id']); 264 //unset($params['job_title_id']);
265 //dd($params); 265 //dd($params);
266 $ad_employer->update($params); 266 $ad_employer->update($params);
267 $ad_employer->jobs()->sync($request->get('job_title_id')); 267 $ad_employer->jobs()->sync($request->get('job_title_id'));
268 268
269 //$job_ = Ad_jobs::query()->where('job_title_id', $jobs['job_title_id'])-> 269 //$job_ = Ad_jobs::query()->where('job_title_id', $jobs['job_title_id'])->
270 // where('ad_employer_id', $ad_employer->id)->first(); 270 // where('ad_employer_id', $ad_employer->id)->first();
271 //$data = Ad_jobs::find($job_->id); 271 //$data = Ad_jobs::find($job_->id);
272 //$ad_jobs = $data->update($jobs); 272 //$ad_jobs = $data->update($jobs);
273 273
274 return redirect()->route('employer.vacancy_list'); 274 return redirect()->route('employer.vacancy_list');
275 } 275 }
276 276
277 // Сохранение карточки вакансии 277 // Сохранение карточки вакансии
278 public function vacancy_save(Request $request, Ad_employer $ad_employer) { 278 public function vacancy_save(Request $request, Ad_employer $ad_employer) {
279 $all = $request->all(); 279 $all = $request->all();
280 $ad_employer->update($all); 280 $ad_employer->update($all);
281 return redirect()->route('employer.cabinet_vacancie'); 281 return redirect()->route('employer.cabinet_vacancie');
282 } 282 }
283 283
284 // Удаление карточки вакансии 284 // Удаление карточки вакансии
285 public function vacancy_delete(Ad_employer $ad_employer) { 285 public function vacancy_delete(Ad_employer $ad_employer) {
286 $ad_employer->delete(); 286 $ad_employer->delete();
287 287
288 return redirect()->route('employer.vacancy_list') 288 return redirect()->route('employer.vacancy_list')
289 ->with('success', 'Данные были успешно сохранены'); 289 ->with('success', 'Данные были успешно сохранены');
290 } 290 }
291 291
292 // Обновление даты 292 // Обновление даты
293 public function vacancy_up(Ad_employer $ad_employer) { 293 public function vacancy_up(Ad_employer $ad_employer) {
294 $up = date('m/d/Y h:i:s', time());; 294 $up = date('m/d/Y h:i:s', time());;
295 $vac_emp = Ad_employer::findOrFail($ad_employer->id); 295 $vac_emp = Ad_employer::findOrFail($ad_employer->id);
296 $vac_emp->updated_at = $up; 296 $vac_emp->updated_at = $up;
297 $vac_emp->save(); 297 $vac_emp->save();
298 298
299 return redirect()->back(); //route('employer.vacancy_list'); 299 return redirect()->back(); //route('employer.vacancy_list');
300 // начало конца 300 // начало конца
301 } 301 }
302 302
303 //Видимость вакансии 303 //Видимость вакансии
304 public function vacancy_eye(Ad_employer $ad_employer, $status) { 304 public function vacancy_eye(Ad_employer $ad_employer, $status) {
305 $vac_emp = Ad_employer::findOrFail($ad_employer->id); 305 $vac_emp = Ad_employer::findOrFail($ad_employer->id);
306 $vac_emp->active_is = $status; 306 $vac_emp->active_is = $status;
307 $vac_emp->save(); 307 $vac_emp->save();
308 308
309 return redirect()->route('employer.vacancy_list'); 309 return redirect()->route('employer.vacancy_list');
310 } 310 }
311 311
312 //Вакансия редактирования (шаблон) 312 //Вакансия редактирования (шаблон)
313 public function vacancy_update(Ad_employer $id) { 313 public function vacancy_update(Ad_employer $id) {
314 314
315 } 315 }
316 316
317 //Отклики на вакансию - лист 317 //Отклики на вакансию - лист
318 public function answers(Employer $employer, Request $request) { 318 public function answers(Employer $employer, Request $request) {
319 $user_id = Auth()->user()->id; 319 $user_id = Auth()->user()->id;
320 $answer = Ad_employer::query()->where('employer_id', $employer->id); 320 $answer = Ad_employer::query()->where('employer_id', $employer->id);
321 if ($request->has('search')) { 321 if ($request->has('search')) {
322 $search = trim($request->get('search')); 322 $search = trim($request->get('search'));
323 if (!empty($search)) $answer = $answer->where('name', 'LIKE', "%$search%"); 323 if (!empty($search)) $answer = $answer->where('name', 'LIKE', "%$search%");
324 } 324 }
325 325
326 $answer = $answer->with('response')->OrderByDESC('id')->get(); 326 $answer = $answer->with('response')->OrderByDESC('id')->get();
327 327
328 return view('employers.list_answer', compact('answer', 'user_id', 'employer')); 328 return view('employers.list_answer', compact('answer', 'user_id', 'employer'));
329 } 329 }
330 330
331 //Обновление статуса 331 //Обновление статуса
332 public function supple_status(employer $employer, ad_response $ad_response, $flag) { 332 public function supple_status(employer $employer, ad_response $ad_response, $flag) {
333 $ad_response->update(Array('flag' => $flag)); 333 $ad_response->update(Array('flag' => $flag));
334 return redirect()->route('employer.answers', ['employer' => $employer->id]); 334 return redirect()->route('employer.answers', ['employer' => $employer->id]);
335 } 335 }
336 336
337 //Страницы сообщений список 337 //Страницы сообщений список
338 public function messages($type_message) { 338 public function messages($type_message) {
339 $user_id = Auth()->user()->id; 339 $user_id = Auth()->user()->id;
340 340
341 $messages_input = Message::query()->with('vacancies')->with('user_from')-> 341 $messages_input = Message::query()->with('vacancies')->with('user_from')->
342 Where('to_user_id', $user_id)->OrderByDesc('created_at'); 342 Where('to_user_id', $user_id)->OrderByDesc('created_at');
343 343
344 $messages_output = Message::query()->with('vacancies')-> 344 $messages_output = Message::query()->with('vacancies')->
345 with('user_to')->where('user_id', $user_id)-> 345 with('user_to')->where('user_id', $user_id)->
346 OrderByDesc('created_at'); 346 OrderByDesc('created_at');
347 347
348 $count_input = $messages_input->count(); 348 $count_input = $messages_input->count();
349 $count_output = $messages_output->count(); 349 $count_output = $messages_output->count();
350 350
351 if ($type_message == 'input') { 351 if ($type_message == 'input') {
352 $messages = $messages_input->paginate(5); 352 $messages = $messages_input->paginate(5);
353 } 353 }
354 354
355 if ($type_message == 'output') { 355 if ($type_message == 'output') {
356 $messages = $messages_output->paginate(5); 356 $messages = $messages_output->paginate(5);
357 } 357 }
358 358
359 //dd($user_id, $messages[2]->vacancies); 359 //dd($user_id, $messages[2]->vacancies);
360 //jobs); 360 //jobs);
361 361
362 return view('employers.messages', compact('messages', 'count_input', 'count_output', 'type_message', 'user_id')); 362 return view('employers.messages', compact('messages', 'count_input', 'count_output', 'type_message', 'user_id'));
363 } 363 }
364 364
365 // Диалог между пользователями 365 // Диалог между пользователями
366 public function dialog(Request $request, User_Model $user1, User_Model $user2) { 366 public function dialog(Request $request, User_Model $user1, User_Model $user2) {
367 // Получение параметров. 367 // Получение параметров.
368 if ($request->has('ad_employer')){ 368 if ($request->has('ad_employer')){
369 $ad_employer = $request->get('ad_employer'); 369 $ad_employer = $request->get('ad_employer');
370 } else { 370 } else {
371 $ad_employer = 0; 371 $ad_employer = 0;
372 } 372 }
373 373
374 if (isset($user2->id)) { 374 if (isset($user2->id)) {
375 $companion = User_Model::query()->with('workers')-> 375 $companion = User_Model::query()->with('workers')->
376 with('employers')-> 376 with('employers')->
377 where('id', $user2->id)->first(); 377 where('id', $user2->id)->first();
378 } 378 }
379 379
380 $Messages = Message::query()-> 380 $Messages = Message::query()->
381 where('ad_employer_id', '=', $ad_employer)-> 381 where('ad_employer_id', '=', $ad_employer)->
382 where(function($query) use ($user1, $user2) { 382 where(function($query) use ($user1, $user2) {
383 $query->where('user_id', $user1->id)->where('to_user_id', $user2->id); 383 $query->where('user_id', $user1->id)->where('to_user_id', $user2->id);
384 })->orWhere(function($query) use ($user1, $user2) { 384 })->orWhere(function($query) use ($user1, $user2) {
385 $query->where('user_id', $user2->id)->where('to_user_id', $user1->id); 385 $query->where('user_id', $user2->id)->where('to_user_id', $user1->id);
386 })->where('ad_employer_id', '=', $ad_employer)->OrderBy('created_at')->get(); 386 })->where('ad_employer_id', '=', $ad_employer)->OrderBy('created_at')->get();
387 387
388 $id_vac = $Messages[$Messages->count() - 1]->ad_employer_id; 388 $id_vac = $Messages[$Messages->count() - 1]->ad_employer_id;
389 389
390 //$ad_employer = null; 390 //$ad_employer = null;
391 //if (!is_null($id_vac)) $ad_employer = Ad_employer::query()->where('id', $id_vac)->first(); 391 //if (!is_null($id_vac)) $ad_employer = Ad_employer::query()->where('id', $id_vac)->first();
392 $sender = $user1; 392 $sender = $user1;
393 393
394 return view('employers.dialog', compact('companion', 'sender', 'ad_employer', 'Messages')); 394 return view('employers.dialog', compact('companion', 'sender', 'ad_employer', 'Messages'));
395 } 395 }
396 396
397 // Регистрация работодателя 397 // Регистрация работодателя
398 public function register_employer(Request $request) { 398 public function register_employer(Request $request) {
399 $params = $request->all(); 399 $params = $request->all();
400 400
401 $rules = [ 401 $rules = [
402 //'surname' => ['required', 'string', 'max:255'], 402 //'surname' => ['required', 'string', 'max:255'],
403 //'name_man' => ['required', 'string', 'max:255'], 403 //'name_man' => ['required', 'string', 'max:255'],
404 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'], 404 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
405 'name_company' => ['required', 'string', 'max:255'], 405 'name_company' => ['required', 'string', 'max:255'],
406 'password' => ['required', 'string', 'min:6'], 406 'password' => ['required', 'string', 'min:6'],
407 ]; 407 ];
408 408
409 409
410 $messages = [ 410 $messages = [
411 'required' => 'Укажите обязательное поле', 411 'required' => 'Укажите обязательное поле',
412 'min' => [ 412 'min' => [
413 'string' => 'Поле «:attribute» должно быть не меньше :min символов', 413 'string' => 'Поле «:attribute» должно быть не меньше :min символов',
414 'integer' => 'Поле «:attribute» должно быть :min или больше', 414 'integer' => 'Поле «:attribute» должно быть :min или больше',
415 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт' 415 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт'
416 ], 416 ],
417 'max' => [ 417 'max' => [
418 'string' => 'Поле «:attribute» должно быть не больше :max символов', 418 'string' => 'Поле «:attribute» должно быть не больше :max символов',
419 'integer' => 'Поле «:attribute» должно быть :max или меньше', 419 'integer' => 'Поле «:attribute» должно быть :max или меньше',
420 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт' 420 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт'
421 ] 421 ]
422 ]; 422 ];
423 423
424 $email = $request->get('email'); 424 $email = $request->get('email');
425 if (!preg_match("/^[a-zA-Z0-9_\-.]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-.]+$/", $email)) { 425 if (!preg_match("/^[a-zA-Z0-9_\-.]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-.]+$/", $email)) {
426 return json_encode(Array("ERROR" => "Error: Отсутствует емайл или некорректный емайл")); 426 return json_encode(Array("ERROR" => "Error: Отсутствует емайл или некорректный емайл"));
427 } 427 }
428 428
429 if ($request->get('password') !== $request->get('confirmed')){ 429 if ($request->get('password') !== $request->get('confirmed')){
430 return json_encode(Array("ERROR" => "Error: Не совпадают пароль и подтверждение пароля")); 430 return json_encode(Array("ERROR" => "Error: Не совпадают пароль и подтверждение пароля"));
431 } 431 }
432 432
433 if (strlen($request->get('password')) < 6) { 433 if (strlen($request->get('password')) < 6) {
434 return json_encode(Array("ERROR" => "Error: Недостаточная длина пароля! Увеличьте себе длину пароля!")); 434 return json_encode(Array("ERROR" => "Error: Недостаточная длина пароля! Увеличьте себе длину пароля!"));
435 } 435 }
436 /*
437 $specsumbol = Array('!','~', '#', '$', '%', '^', '&', '*', '(', ')', '-', '=', ';', ':', '<', '>', '?');
438 $alpha = Array('Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', 'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', 'L', 'Z',
439 'X', 'C', 'V', 'B', 'N', 'M');
440 $spec_bool = false;
441 $alpha_bool = false;
442
443 $haystack = $request->get('password');
444
445 foreach ($specsumbol as $it) {
446 if (strpos($haystack, $it) !== false) {
447 $spec_bool = true;
448 }
449 }
450
451 foreach ($alpha as $it) {
452 if (strpos($haystack, $it) !== false) {
453 $alpha_bool = true;
454 }
455 }
456
457 if ((!$spec_bool) || (!$alpha_bool)) {
458 return json_encode(Array("ERROR" => "Error: Нет спецсимволов в пароле, латинские буквы заглавные, а также один из символов: !~#$%^&*()-=;,:<>?"));
459 }*/
460 436
461 if (empty($request->get('surname'))) { 437 if (empty($request->get('surname'))) {
462 $params['surname'] = 'Неизвестно'; 438 $params['surname'] = 'Неизвестно';
463 } 439 }
464 if (empty($request->get('name_man'))) { 440 if (empty($request->get('name_man'))) {
465 $params['name_man'] = 'Неизвестно'; 441 $params['name_man'] = 'Неизвестно';
466 } 442 }
467 $validator = Validator::make($params, $rules, $messages); 443 $validator = Validator::make($params, $rules, $messages);
468 444
469 if ($validator->fails()) { 445 if ($validator->fails()) {
470 return json_encode(Array("ERROR" => "Error1: Регистрация оборвалась ошибкой! Не все обязательные поля заполнены. Либо вы уже были зарегистрированы в системе.")); 446 return json_encode(Array("ERROR" => "Error1: Регистрация оборвалась ошибкой! Не все обязательные поля заполнены. Либо вы уже были зарегистрированы в системе."));
471 } else { 447 } else {
472 $user = $this->create($params); 448 $user = $this->create($params);
473 event(new Registered($user)); 449 event(new Registered($user));
474 450
475 Mail::to(env('EMAIL_ADMIN'))->send(new MailCreateEmployer($params)); 451 Mail::to(env('EMAIL_ADMIN'))->send(new MailCreateEmployer($params));
476 452
477 Auth::guard()->login($user); 453 Auth::guard()->login($user);
478 } 454 }
479 455
480 if ($user) { 456 if ($user) {
481 return json_encode(Array("REDIRECT" => redirect()->route('employer.cabinet')->getTargetUrl()));; 457 return json_encode(Array("REDIRECT" => redirect()->route('employer.cabinet')->getTargetUrl()));;
482 } else { 458 } else {
483 return json_encode(Array("ERROR" => "Error2: Данные были утеряны!")); 459 return json_encode(Array("ERROR" => "Error2: Данные были утеряны!"));
484 } 460 }
485 } 461 }
486 462
487 // Создание пользователя 463 // Создание пользователя
488 protected function create(array $data) 464 protected function create(array $data)
489 { 465 {
490 $Use = new User_Model(); 466 $Use = new User_Model();
491 $Code_user = $Use->create([ 467 $Code_user = $Use->create([
492 'name' => $data['surname']." ".$data['name_man'], 468 'name' => $data['surname']." ".$data['name_man'],
493 'name_man' => $data['name_man'], 469 'name_man' => $data['name_man'],
494 'surname' => $data['surname'], 470 'surname' => $data['surname'],
495 'surname2' => $data['surname2'], 471 'surname2' => $data['surname2'],
496 'subscribe_email' => $data['email'], 472 'subscribe_email' => $data['email'],
497 'email' => $data['email'], 473 'email' => $data['email'],
498 'telephone' => $data['telephone'], 474 'telephone' => $data['telephone'],
499 'is_worker' => 0, 475 'is_worker' => 0,
500 'password' => Hash::make($data['password']), 476 'password' => Hash::make($data['password']),
501 'pubpassword' => base64_encode($data['password']), 477 'pubpassword' => base64_encode($data['password']),
502 'email_verified_at' => Carbon::now() 478 'email_verified_at' => Carbon::now()
503 ]); 479 ]);
504 480
505 if ($Code_user->id > 0) { 481 if ($Code_user->id > 0) {
506 $Employer = new Employer(); 482 $Employer = new Employer();
507 $Employer->user_id = $Code_user->id; 483 $Employer->user_id = $Code_user->id;
508 $Employer->name_company = $data['name_company']; 484 $Employer->name_company = $data['name_company'];
509 $Employer->email = $data['email']; 485 $Employer->email = $data['email'];
510 $Employer->telephone = $data['telephone']; 486 $Employer->telephone = $data['telephone'];
511 $Employer->code = Tools::generator_id(10); 487 $Employer->code = Tools::generator_id(10);
512 $Employer->save(); 488 $Employer->save();
513 489
514 return $Code_user; 490 return $Code_user;
515 } 491 }
516 } 492 }
517 493
518 // Отправка сообщения от работодателя 494 // Отправка сообщения от работодателя
519 public function send_message(MessagesRequiest $request) { 495 public function send_message(MessagesRequiest $request) {
520 $params = $request->all(); 496 $params = $request->all();
521 dd($params); 497 dd($params);
522 $user1 = $params['user_id']; 498 $user1 = $params['user_id'];
523 $user2 = $params['to_user_id']; 499 $user2 = $params['to_user_id'];
524 500
525 if ($request->has('file')) { 501 if ($request->has('file')) {
526 $params['file'] = $request->file('file')->store("messages", 'public'); 502 $params['file'] = $request->file('file')->store("messages", 'public');
527 } 503 }
528 Message::create($params); 504 Message::create($params);
529 return redirect()->route('employer.dialog', ['user1' => $user1, 'user2' => $user2]); 505 return redirect()->route('employer.dialog', ['user1' => $user1, 'user2' => $user2]);
530 } 506 }
531 507
532 public function test123(Request $request) { 508 public function test123(Request $request) {
533 $params = $request->all(); 509 $params = $request->all();
534 $user1 = $params['user_id']; 510 $user1 = $params['user_id'];
535 $user2 = $params['to_user_id']; 511 $user2 = $params['to_user_id'];
536 $id_vacancy = $params['ad_employer_id']; 512 $id_vacancy = $params['ad_employer_id'];
537 $ad_name = $params['ad_name']; 513 $ad_name = $params['ad_name'];
538 514
539 $rules = [ 515 $rules = [
540 'text' => 'required|min:1|max:150000', 516 'text' => 'required|min:1|max:150000',
541 'file' => 'file|mimes:doc,docx,xlsx,csv,txt,xlx,xls,pdf|max:150000' 517 'file' => 'file|mimes:doc,docx,xlsx,csv,txt,xlx,xls,pdf|max:150000'
542 ]; 518 ];
543 $messages = [ 519 $messages = [
544 'required' => 'Укажите обязательное поле', 520 'required' => 'Укажите обязательное поле',
545 'min' => [ 521 'min' => [
546 'string' => 'Поле «:attribute» должно быть не меньше :min символов', 522 'string' => 'Поле «:attribute» должно быть не меньше :min символов',
547 'integer' => 'Поле «:attribute» должно быть :min или больше', 523 'integer' => 'Поле «:attribute» должно быть :min или больше',
548 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт' 524 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт'
549 ], 525 ],
550 'max' => [ 526 'max' => [
551 'string' => 'Поле «:attribute» должно быть не больше :max символов', 527 'string' => 'Поле «:attribute» должно быть не больше :max символов',
552 'integer' => 'Поле «:attribute» должно быть :max или меньше', 528 'integer' => 'Поле «:attribute» должно быть :max или меньше',
553 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт' 529 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт'
554 ] 530 ]
555 ]; 531 ];
556 532
557 $validator = Validator::make($request->all(), $rules, $messages); 533 $validator = Validator::make($request->all(), $rules, $messages);
558 534
559 if ($validator->fails()) { 535 if ($validator->fails()) {
560 return redirect()->route('employer.dialog', ['user1' => $user1, 'user2' => $user2]) 536 return redirect()->route('employer.dialog', ['user1' => $user1, 'user2' => $user2])
561 ->withErrors($validator); 537 ->withErrors($validator);
562 } else { 538 } else {
563 if ($request->has('file')) { 539 if ($request->has('file')) {
564 $params['file'] = $request->file('file')->store("messages", 'public'); 540 $params['file'] = $request->file('file')->store("messages", 'public');
565 } 541 }
566 Message::create($params); 542 Message::create($params);
567 //return redirect()->route('employer.dialog', ['user1' => $user1, 'user2' => $user2]); 543 //return redirect()->route('employer.dialog', ['user1' => $user1, 'user2' => $user2]);
568 return redirect()->route('employer.dialog', 544 return redirect()->route('employer.dialog',
569 ['user1' => $user1, 'user2' => $user2, 'ad_employer' => $id_vacancy, 'ad_name' => $ad_name]); 545 ['user1' => $user1, 'user2' => $user2, 'ad_employer' => $id_vacancy, 'ad_name' => $ad_name]);
570 546
571 } 547 }
572 } 548 }
573 549
574 //Избранные люди 550 //Избранные люди
575 public function favorites(Request $request) { 551 public function favorites(Request $request) {
576 $IP_address = RusDate::ip_addr_client(); 552 $IP_address = RusDate::ip_addr_client();
577 $Arr = Like_worker::Query()->select('code_record')->where('ip_address', '=', $IP_address)->get(); 553 $Arr = Like_worker::Query()->select('code_record')->where('ip_address', '=', $IP_address)->get();
578 554
579 if ($Arr->count()) { 555 if ($Arr->count()) {
580 $A = Array(); 556 $A = Array();
581 foreach ($Arr as $it) { 557 foreach ($Arr as $it) {
582 $A[] = $it->code_record; 558 $A[] = $it->code_record;
583 } 559 }
584 560
585 $Workers = Worker::query()->whereIn('id', $A); 561 $Workers = Worker::query()->whereIn('id', $A);
586 } else { 562 } else {
587 $Workers = Worker::query()->where('id', '=', '0'); 563 $Workers = Worker::query()->where('id', '=', '0');
588 } 564 }
589 565
590 if (($request->has('search')) && (!empty($request->get('search')))) { 566 if (($request->has('search')) && (!empty($request->get('search')))) {
591 $search = $request->get('search'); 567 $search = $request->get('search');
592 568
593 $Workers = $Workers->WhereHas('users', 569 $Workers = $Workers->WhereHas('users',
594 function (Builder $query) use ($search) { 570 function (Builder $query) use ($search) {
595 $query->Where('surname', 'LIKE', "%$search%") 571 $query->Where('surname', 'LIKE', "%$search%")
596 ->orWhere('name_man', 'LIKE', "%$search%") 572 ->orWhere('name_man', 'LIKE', "%$search%")
597 ->orWhere('surname2', 'LIKE', "%$search%"); 573 ->orWhere('surname2', 'LIKE', "%$search%");
598 }); 574 });
599 } else { 575 } else {
600 $Workers = $Workers->with('users'); 576 $Workers = $Workers->with('users');
601 } 577 }
602 578
603 $Workers = $Workers->get(); 579 $Workers = $Workers->get();
604 580
605 581
606 return view('employers.favorite', compact('Workers')); 582 return view('employers.favorite', compact('Workers'));
607 } 583 }
608 584
609 // База данных 585 // База данных
610 public function bd(Request $request) { 586 public function bd(Request $request) {
611 $users = User_Model::query()->with('workers'); 587 $users = User_Model::query()->with('workers');
612 588
613 if ($request->has('search')) { 589 if ($request->has('search')) {
614 $find_key = $request->get('search'); 590 $find_key = $request->get('search');
615 $users = $users->where('name', 'LIKE', "%$find_key%") 591 $users = $users->where('name', 'LIKE', "%$find_key%")
616 ->orWhere('surname', 'LIKE', "%$find_key%") 592 ->orWhere('surname', 'LIKE', "%$find_key%")
617 ->orWhere('name_man', 'LIKE', "%$find_key%") 593 ->orWhere('name_man', 'LIKE', "%$find_key%")
618 ->orWhere('email', 'LIKE', "%$find_key%") 594 ->orWhere('email', 'LIKE', "%$find_key%")
619 ->orWhere('telephone', 'LIKE', "%$find_key%"); 595 ->orWhere('telephone', 'LIKE', "%$find_key%");
620 } 596 }
621 597
622 // Данные 598 // Данные
623 $users = $users->Baseuser()-> 599 $users = $users->Baseuser()->
624 orderBy(Worker::select('position_work')->whereColumn('workers.user_id', 'users.id')); 600 orderBy(Worker::select('position_work')->whereColumn('workers.user_id', 'users.id'));
625 $count_users = $users; 601 $count_users = $users;
626 $users = $users->paginate(5); 602 $users = $users->paginate(5);
627 603
628 $export_options = DbExportColumns::toArray(); 604 $export_options = DbExportColumns::toArray();
629 605
630 $jobs_titles = Job_title::select('id', 'name')->orderBy('name', 'asc')->get()->toArray(); 606 $jobs_titles = Job_title::select('id', 'name')->orderBy('name', 'asc')->get()->toArray();
631 607
632 return view('employers.bd', compact('users', 'count_users', 'export_options', 'jobs_titles')); 608 return view('employers.bd', compact('users', 'count_users', 'export_options', 'jobs_titles'));
633 } 609 }
634 610
635 //Настройка уведомлений 611 //Настройка уведомлений
636 public function subscribe() { 612 public function subscribe() {
637 return view('employers.subcribe'); 613 return view('employers.subcribe');
638 } 614 }
639 615
640 //Установка уведомлений сохранение 616 //Установка уведомлений сохранение
641 public function save_subscribe(Request $request) { 617 public function save_subscribe(Request $request) {
642 dd($request->all()); 618 dd($request->all());
643 $msg = $request->validate([ 619 $msg = $request->validate([
644 'subscribe_email' => 'required|email|min:5|max:255', 620 'subscribe_email' => 'required|email|min:5|max:255',
645 ]); 621 ]);
646 return redirect()->route('employer.subscribe')->with('Вы успешно подписались на рассылку'); 622 return redirect()->route('employer.subscribe')->with('Вы успешно подписались на рассылку');
647 } 623 }
648 624
649 //Сбросить форму с паролем 625 //Сбросить форму с паролем
650 public function password_reset() { 626 public function password_reset() {
651 $email = Auth()->user()->email; 627 $email = Auth()->user()->email;
652 return view('employers.password-reset', compact('email')); 628 return view('employers.password-reset', compact('email'));
653 } 629 }
654 630
655 //Обновление пароля 631 //Обновление пароля
656 public function new_password(Request $request) { 632 public function new_password(Request $request) {
657 $use = Auth()->user(); 633 $use = Auth()->user();
658 $request->validate([ 634 $request->validate([
659 'password' => 'required|string', 635 'password' => 'required|string',
660 'new_password' => 'required|string', 636 'new_password' => 'required|string',
661 'new_password2' => 'required|string' 637 'new_password2' => 'required|string'
662 ]); 638 ]);
663 639
664 if ($request->get('new_password') == $request->get('new_password2')) 640 if ($request->get('new_password') == $request->get('new_password2'))
665 if ($request->get('password') !== $request->get('new_password')) { 641 if ($request->get('password') !== $request->get('new_password')) {
666 $credentials = $request->only('email', 'password'); 642 $credentials = $request->only('email', 'password');
667 if (Auth::attempt($credentials)) { 643 if (Auth::attempt($credentials)) {
668 644
669 if (!is_null($use->email_verified_at)){ 645 if (!is_null($use->email_verified_at)){
670 646
671 $user_data = User_Model::find($use->id); 647 $user_data = User_Model::find($use->id);
672 $user_data->update([ 648 $user_data->update([
673 'password' => Hash::make($request->get('new_password')), 649 'password' => Hash::make($request->get('new_password')),
674 'pubpassword' => base64_encode($request->get('new_password')), 650 'pubpassword' => base64_encode($request->get('new_password')),
675 ]); 651 ]);
676 return redirect() 652 return redirect()
677 ->route('employer.password_reset') 653 ->route('employer.password_reset')
678 ->with('success', 'Поздравляю! Вы обновили свой пароль!'); 654 ->with('success', 'Поздравляю! Вы обновили свой пароль!');
679 } 655 }
680 656
681 return redirect() 657 return redirect()
682 ->route('employer.password_reset') 658 ->route('employer.password_reset')
683 ->withError('Данная учетная запись не было верифицированна!'); 659 ->withError('Данная учетная запись не было верифицированна!');
684 } 660 }
685 } 661 }
686 662
687 return redirect() 663 return redirect()
688 ->route('employer.password_reset') 664 ->route('employer.password_reset')
689 ->withErrors('Не совпадение данных, обновите пароли!'); 665 ->withErrors('Не совпадение данных, обновите пароли!');
690 } 666 }
691 667
692 668
693 669
694 // Форма Удаление пипла 670 // Форма Удаление пипла
695 public function delete_people() { 671 public function delete_people() {
696 $login = Auth()->user()->email; 672 $login = Auth()->user()->email;
697 return view('employers.delete_people', compact('login')); 673 return view('employers.delete_people', compact('login'));
698 } 674 }
699 675
700 // Удаление аккаунта 676 // Удаление аккаунта
701 public function action_delete_user(Request $request) { 677 public function action_delete_user(Request $request) {
702 $Answer = $request->all(); 678 $Answer = $request->all();
703 $user_id = Auth()->user()->id; 679 $user_id = Auth()->user()->id;
704 $request->validate([ 680 $request->validate([
705 'password' => 'required|string', 681 'password' => 'required|string',
706 ]); 682 ]);
707 683
708 $credentials = $request->only('email', 'password'); 684 $credentials = $request->only('email', 'password');
709 if (Auth::attempt($credentials)) { 685 if (Auth::attempt($credentials)) {
710 Auth::logout(); 686 Auth::logout();
711 $it = User_Model::find($user_id); 687 $it = User_Model::find($user_id);
712 $it->delete(); 688 $it->delete();
713 return redirect()->route('index')->with('success', 'Вы успешно удалили свой аккаунт'); 689 return redirect()->route('index')->with('success', 'Вы успешно удалили свой аккаунт');
714 } else { 690 } else {
715 return redirect()->route('employer.delete_people') 691 return redirect()->route('employer.delete_people')
716 ->withErrors( 'Неверный пароль! Нужен корректный пароль'); 692 ->withErrors( 'Неверный пароль! Нужен корректный пароль');
717 } 693 }
718 } 694 }
719 695
720 public function ajax_delete_user(Request $request) { 696 public function ajax_delete_user(Request $request) {
721 $Answer = $request->all(); 697 $Answer = $request->all();
722 $user_id = Auth()->user()->id; 698 $user_id = Auth()->user()->id;
723 $request->validate([ 699 $request->validate([
724 'password' => 'required|string', 700 'password' => 'required|string',
725 ]); 701 ]);
726 $credentials = $request->only('email', 'password'); 702 $credentials = $request->only('email', 'password');
727 if (Auth::attempt($credentials)) { 703 if (Auth::attempt($credentials)) {
728 704
729 return json_encode(Array('SUCCESS' => 'Вы успешно удалили свой аккаунт', 705 return json_encode(Array('SUCCESS' => 'Вы успешно удалили свой аккаунт',
730 'email' => $request->get('email'), 706 'email' => $request->get('email'),
731 'password' => $request->get('password'))); 707 'password' => $request->get('password')));
732 } else { 708 } else {
733 return json_encode(Array('ERROR' => 'Неверный пароль! Нужен корректный пароль')); 709 return json_encode(Array('ERROR' => 'Неверный пароль! Нужен корректный пароль'));
734 } 710 }
735 } 711 }
736 712
737 // FAQ - Вопросы/ответы для работодателей и соискателей 713 // FAQ - Вопросы/ответы для работодателей и соискателей
738 public function faq() { 714 public function faq() {
739 return view('employers.faq'); 715 return view('employers.faq');
740 } 716 }
741 717
742 // Рассылка сообщений 718 // Рассылка сообщений
743 public function send_all_messages() { 719 public function send_all_messages() {
744 $id = Auth()->user()->id; 720 $id = Auth()->user()->id;
745 $sending = Employer::query()->where('user_id', '=', "$id")->first(); 721 $sending = Employer::query()->where('user_id', '=', "$id")->first();
746 if ($sending->sending_is) 722 if ($sending->sending_is)
747 return view('employers.send_all'); 723 return view('employers.send_all');
748 else 724 else
749 return view('employers.send_all_danger'); 725 return view('employers.send_all_danger');
750 } 726 }
751 727
752 // Отправка сообщений для информации 728 // Отправка сообщений для информации
753 public function send_all_post(Request $request) { 729 public function send_all_post(Request $request) {
754 $data = $request->all(); 730 $data = $request->all();
755 731
756 $emails = User_Model::query()->where('is_worker', '1')->get(); 732 $emails = User_Model::query()->where('is_worker', '1')->get();
757 733
758 foreach ($emails as $e) { 734 foreach ($emails as $e) {
759 Mail::to($e->email)->send(new SendAllMessages($data)); 735 Mail::to($e->email)->send(new SendAllMessages($data));
760 } 736 }
761 737
762 return redirect()->route('employer.send_all_messages')->with('success', 'Письма были отправлены'); 738 return redirect()->route('employer.send_all_messages')->with('success', 'Письма были отправлены');
763 } 739 }
764 740
765 // База резюме 741 // База резюме
766 public function bd_tupe(Request $request) { 742 public function bd_tupe(Request $request) {
767 $Resume = User_Model::query()->with('workers')->where('is_bd', '=', '1')->get(); 743 $Resume = User_Model::query()->with('workers')->where('is_bd', '=', '1')->get();
768 744
769 return view('employers.bd_tupe', compact('Resume')); 745 return view('employers.bd_tupe', compact('Resume'));
770 } 746 }
771 747
772 ////////////////////////////////////////////////////////////////// 748 //////////////////////////////////////////////////////////////////
773 // Отправил сообщение 749 // Отправил сообщение
774 ////////////////////////////////////////////////////////////////// 750 //////////////////////////////////////////////////////////////////
775 public function new_message(Request $request) { 751 public function new_message(Request $request) {
776 $params = $request->all(); 752 $params = $request->all();
777 $id = $params['_user_id']; 753 $id = $params['_user_id'];
778 $message = new Message(); 754 $message = new Message();
779 $message->user_id = $params['_user_id']; 755 $message->user_id = $params['_user_id'];
780 $message->to_user_id = $params['_to_user_id']; 756 $message->to_user_id = $params['_to_user_id'];
781 $message->title = $params['title']; 757 $message->title = $params['title'];
782 $message->text = $params['text']; 758 $message->text = $params['text'];
783 if ($request->has('_file')) { 759 if ($request->has('_file')) {
784 $message->file = $request->file('_file')->store("worker/$id", 'public'); 760 $message->file = $request->file('_file')->store("worker/$id", 'public');
785 } 761 }
786 $message->ad_employer_id = $params['_vacancy']; 762 $message->ad_employer_id = $params['_vacancy'];
787 $message->flag_new = 1; 763 $message->flag_new = 1;
788 $id_message = $message->save(); 764 $id_message = $message->save();
789 765
790 //$data['message_id'] = $id_message; 766 //$data['message_id'] = $id_message;
791 //$data['ad_employer_id'] = $params['_vacancy']; 767 //$data['ad_employer_id'] = $params['_vacancy'];
792 //$data['job_title_id'] = 0; 768 //$data['job_title_id'] = 0;
793 769
794 $data['flag'] = 1; 770 $data['flag'] = 1;
795 //$ad_responce = ad_response::create($data); 771 //$ad_responce = ad_response::create($data);
796 return redirect()->route('employer.messages', ['type_message' => 'output']); 772 return redirect()->route('employer.messages', ['type_message' => 'output']);
797 } 773 }
798 774
799 // Восстановление пароля 775 // Восстановление пароля
800 public function repair_password(Request $request) { 776 public function repair_password(Request $request) {
801 $params = $request->get('email'); 777 $params = $request->get('email');
802 } 778 }
803 779
804 // Избранные люди на корабль 780 // Избранные люди на корабль
805 public function selected_people(Request $request) { 781 public function selected_people(Request $request) {
806 $id = $request->get('id'); 782 $id = $request->get('id');
807 $favorite_people = Job_title::query()->orderByDesc('sort')->OrderBy('name')-> 783 $favorite_people = Job_title::query()->orderByDesc('sort')->OrderBy('name')->
808 where('is_remove', '=', '0')-> 784 where('is_remove', '=', '0')->
809 where('is_bd', '=', '0')-> 785 where('is_bd', '=', '0')->
810 where('position_id', $id)-> 786 where('position_id', $id)->
811 get(); 787 get();
812 return view('favorite_people', compact('favorite_people')); 788 return view('favorite_people', compact('favorite_people'));
813 } 789 }
814 } 790 }
815 791
1 { 1 {
2 "name": "laravel/laravel", 2 "name": "laravel/laravel",
3 "type": "project", 3 "type": "project",
4 "description": "The Laravel Framework.", 4 "description": "The Laravel Framework.",
5 "keywords": ["framework", "laravel"], 5 "keywords": ["framework", "laravel"],
6 "license": "MIT", 6 "license": "MIT",
7 "require": { 7 "require": {
8 "php": "^8.0.2", 8 "php": "^8.0.2",
9 "barryvdh/laravel-dompdf": "^2.1", 9 "barryvdh/laravel-dompdf": "^2.1",
10 "doctrine/dbal": "3.0",
10 "filament/forms": "^2.17", 11 "filament/forms": "^2.17",
11 "filament/notifications": "^2.17", 12 "filament/notifications": "^2.17",
12 "filament/tables": "^2.17", 13 "filament/tables": "^2.17",
13 "guzzlehttp/guzzle": "^7.2", 14 "guzzlehttp/guzzle": "^7.2",
14 "laravel-lang/lang": "^12.17", 15 "laravel-lang/lang": "^12.17",
15 "laravel/framework": "^9.19", 16 "laravel/framework": "^9.19",
16 "laravel/sanctum": "^3.0", 17 "laravel/sanctum": "^3.0",
17 "laravel/tinker": "^2.7", 18 "laravel/tinker": "^2.7",
18 "laravel/ui": "^4.2", 19 "laravel/ui": "^4.2",
19 "phpoffice/phpspreadsheet": "^1.29" 20 "phpoffice/phpspreadsheet": "^1.29"
20 }, 21 },
21 "require-dev": { 22 "require-dev": {
22 "barryvdh/laravel-debugbar": "^3.9", 23 "barryvdh/laravel-debugbar": "^3.9",
23 "fakerphp/faker": "^1.9.1", 24 "fakerphp/faker": "^1.9.1",
24 "laravel/pint": "^1.0", 25 "laravel/pint": "^1.0",
25 "laravel/sail": "^1.0.1", 26 "laravel/sail": "^1.0.1",
26 "mockery/mockery": "^1.4.4", 27 "mockery/mockery": "^1.4.4",
27 "nunomaduro/collision": "^6.1", 28 "nunomaduro/collision": "^6.1",
28 "phpunit/phpunit": "^9.5.10", 29 "phpunit/phpunit": "^9.5.10",
29 "spatie/laravel-ignition": "^1.0" 30 "spatie/laravel-ignition": "^1.0"
30 }, 31 },
31 "autoload": { 32 "autoload": {
32 "psr-4": { 33 "psr-4": {
33 "App\\": "app/", 34 "App\\": "app/",
34 "Database\\Factories\\": "database/factories/", 35 "Database\\Factories\\": "database/factories/",
35 "Database\\Seeders\\": "database/seeders/" 36 "Database\\Seeders\\": "database/seeders/"
36 } 37 }
37 }, 38 },
38 "autoload-dev": { 39 "autoload-dev": {
39 "psr-4": { 40 "psr-4": {
40 "Tests\\": "tests/" 41 "Tests\\": "tests/"
41 } 42 }
42 }, 43 },
43 "scripts": { 44 "scripts": {
44 "post-autoload-dump": [ 45 "post-autoload-dump": [
45 "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", 46 "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
46 "@php artisan package:discover --ansi" 47 "@php artisan package:discover --ansi"
47 ], 48 ],
48 "post-update-cmd": [ 49 "post-update-cmd": [
49 "@php artisan vendor:publish --tag=laravel-assets --ansi --force" 50 "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
50 ], 51 ],
51 "post-root-package-install": [ 52 "post-root-package-install": [
52 "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" 53 "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
53 ], 54 ],
54 "post-create-project-cmd": [ 55 "post-create-project-cmd": [
55 "@php artisan key:generate --ansi" 56 "@php artisan key:generate --ansi"
56 ] 57 ]
57 }, 58 },
58 "extra": { 59 "extra": {
59 "laravel": { 60 "laravel": {
60 "dont-discover": [] 61 "dont-discover": []
61 } 62 }
62 }, 63 },
63 "config": { 64 "config": {
64 "optimize-autoloader": true, 65 "optimize-autoloader": true,
65 "preferred-install": "dist", 66 "preferred-install": "dist",
66 "sort-packages": true, 67 "sort-packages": true,
67 "allow-plugins": { 68 "allow-plugins": {
68 "pestphp/pest-plugin": true 69 "pestphp/pest-plugin": true
69 } 70 }
70 }, 71 },
71 "minimum-stability": "stable", 72 "minimum-stability": "stable",
72 "prefer-stable": true 73 "prefer-stable": true
73 } 74 }
74 75
1 { 1 {
2 "_readme": [ 2 "_readme": [
3 "This file locks the dependencies of your project to a known state", 3 "This file locks the dependencies of your project to a known state",
4 "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 4 "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5 "This file is @generated automatically" 5 "This file is @generated automatically"
6 ], 6 ],
7 "content-hash": "ea4c6722676b55da722cc36aa677c35f", 7 "content-hash": "4b776d8fe63faa11f5e875dbed55d528",
8 "packages": [ 8 "packages": [
9 { 9 {
10 "name": "akaunting/laravel-money", 10 "name": "akaunting/laravel-money",
11 "version": "4.0.1", 11 "version": "4.0.1",
12 "source": { 12 "source": {
13 "type": "git", 13 "type": "git",
14 "url": "https://github.com/akaunting/laravel-money.git", 14 "url": "https://github.com/akaunting/laravel-money.git",
15 "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903" 15 "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903"
16 }, 16 },
17 "dist": { 17 "dist": {
18 "type": "zip", 18 "type": "zip",
19 "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/df99d0f5d415490ef7e79362c3b694e8cc8af903", 19 "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/df99d0f5d415490ef7e79362c3b694e8cc8af903",
20 "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903", 20 "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903",
21 "shasum": "" 21 "shasum": ""
22 }, 22 },
23 "require": { 23 "require": {
24 "illuminate/contracts": "^9.0|^10.0", 24 "illuminate/contracts": "^9.0|^10.0",
25 "illuminate/support": "^9.0|^10.0", 25 "illuminate/support": "^9.0|^10.0",
26 "illuminate/validation": "^9.0|^10.0", 26 "illuminate/validation": "^9.0|^10.0",
27 "illuminate/view": "^9.0|^10.0", 27 "illuminate/view": "^9.0|^10.0",
28 "php": "^8.0", 28 "php": "^8.0",
29 "vlucas/phpdotenv": "^5.4.1" 29 "vlucas/phpdotenv": "^5.4.1"
30 }, 30 },
31 "require-dev": { 31 "require-dev": {
32 "orchestra/testbench": "^7.4|^8.0", 32 "orchestra/testbench": "^7.4|^8.0",
33 "phpunit/phpunit": "^9.5|^10.0", 33 "phpunit/phpunit": "^9.5|^10.0",
34 "vimeo/psalm": "^4.23" 34 "vimeo/psalm": "^4.23"
35 }, 35 },
36 "type": "library", 36 "type": "library",
37 "extra": { 37 "extra": {
38 "laravel": { 38 "laravel": {
39 "providers": [ 39 "providers": [
40 "Akaunting\\Money\\Provider" 40 "Akaunting\\Money\\Provider"
41 ] 41 ]
42 } 42 }
43 }, 43 },
44 "autoload": { 44 "autoload": {
45 "files": [ 45 "files": [
46 "src/helpers.php" 46 "src/helpers.php"
47 ], 47 ],
48 "psr-4": { 48 "psr-4": {
49 "Akaunting\\Money\\": "src" 49 "Akaunting\\Money\\": "src"
50 } 50 }
51 }, 51 },
52 "notification-url": "https://packagist.org/downloads/", 52 "notification-url": "https://packagist.org/downloads/",
53 "license": [ 53 "license": [
54 "MIT" 54 "MIT"
55 ], 55 ],
56 "authors": [ 56 "authors": [
57 { 57 {
58 "name": "Denis Duliçi", 58 "name": "Denis Duliçi",
59 "email": "info@akaunting.com", 59 "email": "info@akaunting.com",
60 "homepage": "https://akaunting.com", 60 "homepage": "https://akaunting.com",
61 "role": "Developer" 61 "role": "Developer"
62 } 62 }
63 ], 63 ],
64 "description": "Currency formatting and conversion package for Laravel", 64 "description": "Currency formatting and conversion package for Laravel",
65 "keywords": [ 65 "keywords": [
66 "convert", 66 "convert",
67 "currency", 67 "currency",
68 "format", 68 "format",
69 "laravel", 69 "laravel",
70 "money" 70 "money"
71 ], 71 ],
72 "support": { 72 "support": {
73 "issues": "https://github.com/akaunting/laravel-money/issues", 73 "issues": "https://github.com/akaunting/laravel-money/issues",
74 "source": "https://github.com/akaunting/laravel-money/tree/4.0.1" 74 "source": "https://github.com/akaunting/laravel-money/tree/4.0.1"
75 }, 75 },
76 "time": "2023-03-16T14:39:27+00:00" 76 "time": "2023-03-16T14:39:27+00:00"
77 }, 77 },
78 { 78 {
79 "name": "barryvdh/laravel-dompdf", 79 "name": "barryvdh/laravel-dompdf",
80 "version": "v2.1.0", 80 "version": "v2.1.0",
81 "source": { 81 "source": {
82 "type": "git", 82 "type": "git",
83 "url": "https://github.com/barryvdh/laravel-dompdf.git", 83 "url": "https://github.com/barryvdh/laravel-dompdf.git",
84 "reference": "c8b8a8490e5f7348cf99054821fb248f103e7d24" 84 "reference": "c8b8a8490e5f7348cf99054821fb248f103e7d24"
85 }, 85 },
86 "dist": { 86 "dist": {
87 "type": "zip", 87 "type": "zip",
88 "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/c8b8a8490e5f7348cf99054821fb248f103e7d24", 88 "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/c8b8a8490e5f7348cf99054821fb248f103e7d24",
89 "reference": "c8b8a8490e5f7348cf99054821fb248f103e7d24", 89 "reference": "c8b8a8490e5f7348cf99054821fb248f103e7d24",
90 "shasum": "" 90 "shasum": ""
91 }, 91 },
92 "require": { 92 "require": {
93 "dompdf/dompdf": "^2.0.3", 93 "dompdf/dompdf": "^2.0.3",
94 "illuminate/support": "^6|^7|^8|^9|^10|^11", 94 "illuminate/support": "^6|^7|^8|^9|^10|^11",
95 "php": "^7.2 || ^8.0" 95 "php": "^7.2 || ^8.0"
96 }, 96 },
97 "require-dev": { 97 "require-dev": {
98 "larastan/larastan": "^1.0|^2.7.0", 98 "larastan/larastan": "^1.0|^2.7.0",
99 "orchestra/testbench": "^4|^5|^6|^7|^8|^9", 99 "orchestra/testbench": "^4|^5|^6|^7|^8|^9",
100 "phpro/grumphp": "^1 || ^2.5", 100 "phpro/grumphp": "^1 || ^2.5",
101 "squizlabs/php_codesniffer": "^3.5" 101 "squizlabs/php_codesniffer": "^3.5"
102 }, 102 },
103 "type": "library", 103 "type": "library",
104 "extra": { 104 "extra": {
105 "branch-alias": { 105 "branch-alias": {
106 "dev-master": "2.0-dev" 106 "dev-master": "2.0-dev"
107 }, 107 },
108 "laravel": { 108 "laravel": {
109 "providers": [ 109 "providers": [
110 "Barryvdh\\DomPDF\\ServiceProvider" 110 "Barryvdh\\DomPDF\\ServiceProvider"
111 ], 111 ],
112 "aliases": { 112 "aliases": {
113 "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf", 113 "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf",
114 "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf" 114 "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf"
115 } 115 }
116 } 116 }
117 }, 117 },
118 "autoload": { 118 "autoload": {
119 "psr-4": { 119 "psr-4": {
120 "Barryvdh\\DomPDF\\": "src" 120 "Barryvdh\\DomPDF\\": "src"
121 } 121 }
122 }, 122 },
123 "notification-url": "https://packagist.org/downloads/", 123 "notification-url": "https://packagist.org/downloads/",
124 "license": [ 124 "license": [
125 "MIT" 125 "MIT"
126 ], 126 ],
127 "authors": [ 127 "authors": [
128 { 128 {
129 "name": "Barry vd. Heuvel", 129 "name": "Barry vd. Heuvel",
130 "email": "barryvdh@gmail.com" 130 "email": "barryvdh@gmail.com"
131 } 131 }
132 ], 132 ],
133 "description": "A DOMPDF Wrapper for Laravel", 133 "description": "A DOMPDF Wrapper for Laravel",
134 "keywords": [ 134 "keywords": [
135 "dompdf", 135 "dompdf",
136 "laravel", 136 "laravel",
137 "pdf" 137 "pdf"
138 ], 138 ],
139 "support": { 139 "support": {
140 "issues": "https://github.com/barryvdh/laravel-dompdf/issues", 140 "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
141 "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.1.0" 141 "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.1.0"
142 }, 142 },
143 "funding": [ 143 "funding": [
144 { 144 {
145 "url": "https://fruitcake.nl", 145 "url": "https://fruitcake.nl",
146 "type": "custom" 146 "type": "custom"
147 }, 147 },
148 { 148 {
149 "url": "https://github.com/barryvdh", 149 "url": "https://github.com/barryvdh",
150 "type": "github" 150 "type": "github"
151 } 151 }
152 ], 152 ],
153 "time": "2024-03-04T08:18:20+00:00" 153 "time": "2024-03-04T08:18:20+00:00"
154 }, 154 },
155 { 155 {
156 "name": "blade-ui-kit/blade-heroicons", 156 "name": "blade-ui-kit/blade-heroicons",
157 "version": "1.4.0", 157 "version": "1.4.0",
158 "source": { 158 "source": {
159 "type": "git", 159 "type": "git",
160 "url": "https://github.com/blade-ui-kit/blade-heroicons.git", 160 "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
161 "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b" 161 "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b"
162 }, 162 },
163 "dist": { 163 "dist": {
164 "type": "zip", 164 "type": "zip",
165 "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/dea08e8308d9bad9ebff1bc482d5985dbaacc91b", 165 "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/dea08e8308d9bad9ebff1bc482d5985dbaacc91b",
166 "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b", 166 "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b",
167 "shasum": "" 167 "shasum": ""
168 }, 168 },
169 "require": { 169 "require": {
170 "blade-ui-kit/blade-icons": "^1.1", 170 "blade-ui-kit/blade-icons": "^1.1",
171 "illuminate/support": "^8.0|^9.0|^10.0", 171 "illuminate/support": "^8.0|^9.0|^10.0",
172 "php": "^7.4|^8.0" 172 "php": "^7.4|^8.0"
173 }, 173 },
174 "require-dev": { 174 "require-dev": {
175 "orchestra/testbench": "^6.0|^7.0|^8.0", 175 "orchestra/testbench": "^6.0|^7.0|^8.0",
176 "phpunit/phpunit": "^9.0" 176 "phpunit/phpunit": "^9.0"
177 }, 177 },
178 "type": "library", 178 "type": "library",
179 "extra": { 179 "extra": {
180 "laravel": { 180 "laravel": {
181 "providers": [ 181 "providers": [
182 "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider" 182 "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
183 ] 183 ]
184 } 184 }
185 }, 185 },
186 "autoload": { 186 "autoload": {
187 "psr-4": { 187 "psr-4": {
188 "BladeUI\\Heroicons\\": "src" 188 "BladeUI\\Heroicons\\": "src"
189 } 189 }
190 }, 190 },
191 "notification-url": "https://packagist.org/downloads/", 191 "notification-url": "https://packagist.org/downloads/",
192 "license": [ 192 "license": [
193 "MIT" 193 "MIT"
194 ], 194 ],
195 "authors": [ 195 "authors": [
196 { 196 {
197 "name": "Dries Vints", 197 "name": "Dries Vints",
198 "homepage": "https://driesvints.com" 198 "homepage": "https://driesvints.com"
199 } 199 }
200 ], 200 ],
201 "description": "A package to easily make use of Heroicons in your Laravel Blade views.", 201 "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
202 "homepage": "https://github.com/blade-ui-kit/blade-heroicons", 202 "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
203 "keywords": [ 203 "keywords": [
204 "Heroicons", 204 "Heroicons",
205 "blade", 205 "blade",
206 "laravel" 206 "laravel"
207 ], 207 ],
208 "support": { 208 "support": {
209 "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues", 209 "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
210 "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/1.4.0" 210 "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/1.4.0"
211 }, 211 },
212 "funding": [ 212 "funding": [
213 { 213 {
214 "url": "https://github.com/caneco", 214 "url": "https://github.com/caneco",
215 "type": "github" 215 "type": "github"
216 }, 216 },
217 { 217 {
218 "url": "https://github.com/driesvints", 218 "url": "https://github.com/driesvints",
219 "type": "github" 219 "type": "github"
220 } 220 }
221 ], 221 ],
222 "time": "2023-01-25T17:57:58+00:00" 222 "time": "2023-01-25T17:57:58+00:00"
223 }, 223 },
224 { 224 {
225 "name": "blade-ui-kit/blade-icons", 225 "name": "blade-ui-kit/blade-icons",
226 "version": "1.5.1", 226 "version": "1.5.1",
227 "source": { 227 "source": {
228 "type": "git", 228 "type": "git",
229 "url": "https://github.com/blade-ui-kit/blade-icons.git", 229 "url": "https://github.com/blade-ui-kit/blade-icons.git",
230 "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228" 230 "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228"
231 }, 231 },
232 "dist": { 232 "dist": {
233 "type": "zip", 233 "type": "zip",
234 "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/b2a80ff2a26641f64bfee48ad0d2a922ce781228", 234 "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/b2a80ff2a26641f64bfee48ad0d2a922ce781228",
235 "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228", 235 "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228",
236 "shasum": "" 236 "shasum": ""
237 }, 237 },
238 "require": { 238 "require": {
239 "illuminate/contracts": "^8.0|^9.0|^10.0", 239 "illuminate/contracts": "^8.0|^9.0|^10.0",
240 "illuminate/filesystem": "^8.0|^9.0|^10.0", 240 "illuminate/filesystem": "^8.0|^9.0|^10.0",
241 "illuminate/support": "^8.0|^9.0|^10.0", 241 "illuminate/support": "^8.0|^9.0|^10.0",
242 "illuminate/view": "^8.0|^9.0|^10.0", 242 "illuminate/view": "^8.0|^9.0|^10.0",
243 "php": "^7.4|^8.0", 243 "php": "^7.4|^8.0",
244 "symfony/console": "^5.3|^6.0", 244 "symfony/console": "^5.3|^6.0",
245 "symfony/finder": "^5.3|^6.0" 245 "symfony/finder": "^5.3|^6.0"
246 }, 246 },
247 "require-dev": { 247 "require-dev": {
248 "mockery/mockery": "^1.3", 248 "mockery/mockery": "^1.3",
249 "orchestra/testbench": "^6.0|^7.0|^8.0", 249 "orchestra/testbench": "^6.0|^7.0|^8.0",
250 "phpunit/phpunit": "^9.0" 250 "phpunit/phpunit": "^9.0"
251 }, 251 },
252 "bin": [ 252 "bin": [
253 "bin/blade-icons-generate" 253 "bin/blade-icons-generate"
254 ], 254 ],
255 "type": "library", 255 "type": "library",
256 "extra": { 256 "extra": {
257 "laravel": { 257 "laravel": {
258 "providers": [ 258 "providers": [
259 "BladeUI\\Icons\\BladeIconsServiceProvider" 259 "BladeUI\\Icons\\BladeIconsServiceProvider"
260 ] 260 ]
261 } 261 }
262 }, 262 },
263 "autoload": { 263 "autoload": {
264 "files": [ 264 "files": [
265 "src/helpers.php" 265 "src/helpers.php"
266 ], 266 ],
267 "psr-4": { 267 "psr-4": {
268 "BladeUI\\Icons\\": "src" 268 "BladeUI\\Icons\\": "src"
269 } 269 }
270 }, 270 },
271 "notification-url": "https://packagist.org/downloads/", 271 "notification-url": "https://packagist.org/downloads/",
272 "license": [ 272 "license": [
273 "MIT" 273 "MIT"
274 ], 274 ],
275 "authors": [ 275 "authors": [
276 { 276 {
277 "name": "Dries Vints", 277 "name": "Dries Vints",
278 "homepage": "https://driesvints.com" 278 "homepage": "https://driesvints.com"
279 } 279 }
280 ], 280 ],
281 "description": "A package to easily make use of icons in your Laravel Blade views.", 281 "description": "A package to easily make use of icons in your Laravel Blade views.",
282 "homepage": "https://github.com/blade-ui-kit/blade-icons", 282 "homepage": "https://github.com/blade-ui-kit/blade-icons",
283 "keywords": [ 283 "keywords": [
284 "blade", 284 "blade",
285 "icons", 285 "icons",
286 "laravel", 286 "laravel",
287 "svg" 287 "svg"
288 ], 288 ],
289 "support": { 289 "support": {
290 "issues": "https://github.com/blade-ui-kit/blade-icons/issues", 290 "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
291 "source": "https://github.com/blade-ui-kit/blade-icons" 291 "source": "https://github.com/blade-ui-kit/blade-icons"
292 }, 292 },
293 "funding": [ 293 "funding": [
294 { 294 {
295 "url": "https://github.com/caneco", 295 "url": "https://github.com/caneco",
296 "type": "github" 296 "type": "github"
297 }, 297 },
298 { 298 {
299 "url": "https://github.com/driesvints", 299 "url": "https://github.com/driesvints",
300 "type": "github" 300 "type": "github"
301 } 301 }
302 ], 302 ],
303 "time": "2023-02-15T16:30:12+00:00" 303 "time": "2023-02-15T16:30:12+00:00"
304 }, 304 },
305 { 305 {
306 "name": "brick/math", 306 "name": "brick/math",
307 "version": "0.11.0", 307 "version": "0.11.0",
308 "source": { 308 "source": {
309 "type": "git", 309 "type": "git",
310 "url": "https://github.com/brick/math.git", 310 "url": "https://github.com/brick/math.git",
311 "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478" 311 "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
312 }, 312 },
313 "dist": { 313 "dist": {
314 "type": "zip", 314 "type": "zip",
315 "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", 315 "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
316 "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", 316 "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
317 "shasum": "" 317 "shasum": ""
318 }, 318 },
319 "require": { 319 "require": {
320 "php": "^8.0" 320 "php": "^8.0"
321 }, 321 },
322 "require-dev": { 322 "require-dev": {
323 "php-coveralls/php-coveralls": "^2.2", 323 "php-coveralls/php-coveralls": "^2.2",
324 "phpunit/phpunit": "^9.0", 324 "phpunit/phpunit": "^9.0",
325 "vimeo/psalm": "5.0.0" 325 "vimeo/psalm": "5.0.0"
326 }, 326 },
327 "type": "library", 327 "type": "library",
328 "autoload": { 328 "autoload": {
329 "psr-4": { 329 "psr-4": {
330 "Brick\\Math\\": "src/" 330 "Brick\\Math\\": "src/"
331 } 331 }
332 }, 332 },
333 "notification-url": "https://packagist.org/downloads/", 333 "notification-url": "https://packagist.org/downloads/",
334 "license": [ 334 "license": [
335 "MIT" 335 "MIT"
336 ], 336 ],
337 "description": "Arbitrary-precision arithmetic library", 337 "description": "Arbitrary-precision arithmetic library",
338 "keywords": [ 338 "keywords": [
339 "Arbitrary-precision", 339 "Arbitrary-precision",
340 "BigInteger", 340 "BigInteger",
341 "BigRational", 341 "BigRational",
342 "arithmetic", 342 "arithmetic",
343 "bigdecimal", 343 "bigdecimal",
344 "bignum", 344 "bignum",
345 "brick", 345 "brick",
346 "math" 346 "math"
347 ], 347 ],
348 "support": { 348 "support": {
349 "issues": "https://github.com/brick/math/issues", 349 "issues": "https://github.com/brick/math/issues",
350 "source": "https://github.com/brick/math/tree/0.11.0" 350 "source": "https://github.com/brick/math/tree/0.11.0"
351 }, 351 },
352 "funding": [ 352 "funding": [
353 { 353 {
354 "url": "https://github.com/BenMorel", 354 "url": "https://github.com/BenMorel",
355 "type": "github" 355 "type": "github"
356 } 356 }
357 ], 357 ],
358 "time": "2023-01-15T23:15:59+00:00" 358 "time": "2023-01-15T23:15:59+00:00"
359 }, 359 },
360 { 360 {
361 "name": "composer/package-versions-deprecated",
362 "version": "1.11.99.5",
363 "source": {
364 "type": "git",
365 "url": "https://github.com/composer/package-versions-deprecated.git",
366 "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
367 },
368 "dist": {
369 "type": "zip",
370 "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
371 "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
372 "shasum": ""
373 },
374 "require": {
375 "composer-plugin-api": "^1.1.0 || ^2.0",
376 "php": "^7 || ^8"
377 },
378 "replace": {
379 "ocramius/package-versions": "1.11.99"
380 },
381 "require-dev": {
382 "composer/composer": "^1.9.3 || ^2.0@dev",
383 "ext-zip": "^1.13",
384 "phpunit/phpunit": "^6.5 || ^7"
385 },
386 "type": "composer-plugin",
387 "extra": {
388 "class": "PackageVersions\\Installer",
389 "branch-alias": {
390 "dev-master": "1.x-dev"
391 }
392 },
393 "autoload": {
394 "psr-4": {
395 "PackageVersions\\": "src/PackageVersions"
396 }
397 },
398 "notification-url": "https://packagist.org/downloads/",
399 "license": [
400 "MIT"
401 ],
402 "authors": [
403 {
404 "name": "Marco Pivetta",
405 "email": "ocramius@gmail.com"
406 },
407 {
408 "name": "Jordi Boggiano",
409 "email": "j.boggiano@seld.be"
410 }
411 ],
412 "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
413 "support": {
414 "issues": "https://github.com/composer/package-versions-deprecated/issues",
415 "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
416 },
417 "funding": [
418 {
419 "url": "https://packagist.com",
420 "type": "custom"
421 },
422 {
423 "url": "https://github.com/composer",
424 "type": "github"
425 },
426 {
427 "url": "https://tidelift.com/funding/github/packagist/composer/composer",
428 "type": "tidelift"
429 }
430 ],
431 "time": "2022-01-17T14:14:24+00:00"
432 },
433 {
361 "name": "danharrin/date-format-converter", 434 "name": "danharrin/date-format-converter",
362 "version": "v0.3.0", 435 "version": "v0.3.0",
363 "source": { 436 "source": {
364 "type": "git", 437 "type": "git",
365 "url": "https://github.com/danharrin/date-format-converter.git", 438 "url": "https://github.com/danharrin/date-format-converter.git",
366 "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2" 439 "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2"
367 }, 440 },
368 "dist": { 441 "dist": {
369 "type": "zip", 442 "type": "zip",
370 "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2", 443 "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
371 "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2", 444 "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
372 "shasum": "" 445 "shasum": ""
373 }, 446 },
374 "require": { 447 "require": {
375 "php": "^7.2|^8.0" 448 "php": "^7.2|^8.0"
376 }, 449 },
377 "type": "library", 450 "type": "library",
378 "autoload": { 451 "autoload": {
379 "files": [ 452 "files": [
380 "src/helpers.php", 453 "src/helpers.php",
381 "src/standards.php" 454 "src/standards.php"
382 ], 455 ],
383 "psr-4": { 456 "psr-4": {
384 "DanHarrin\\DateFormatConverter\\": "src/" 457 "DanHarrin\\DateFormatConverter\\": "src/"
385 } 458 }
386 }, 459 },
387 "notification-url": "https://packagist.org/downloads/", 460 "notification-url": "https://packagist.org/downloads/",
388 "license": [ 461 "license": [
389 "MIT" 462 "MIT"
390 ], 463 ],
391 "authors": [ 464 "authors": [
392 { 465 {
393 "name": "Dan Harrin", 466 "name": "Dan Harrin",
394 "email": "dan@danharrin.com" 467 "email": "dan@danharrin.com"
395 } 468 }
396 ], 469 ],
397 "description": "Convert token-based date formats between standards.", 470 "description": "Convert token-based date formats between standards.",
398 "homepage": "https://github.com/danharrin/date-format-converter", 471 "homepage": "https://github.com/danharrin/date-format-converter",
399 "support": { 472 "support": {
400 "issues": "https://github.com/danharrin/date-format-converter/issues", 473 "issues": "https://github.com/danharrin/date-format-converter/issues",
401 "source": "https://github.com/danharrin/date-format-converter" 474 "source": "https://github.com/danharrin/date-format-converter"
402 }, 475 },
403 "funding": [ 476 "funding": [
404 { 477 {
405 "url": "https://github.com/danharrin", 478 "url": "https://github.com/danharrin",
406 "type": "github" 479 "type": "github"
407 } 480 }
408 ], 481 ],
409 "time": "2022-09-29T07:48:20+00:00" 482 "time": "2022-09-29T07:48:20+00:00"
410 }, 483 },
411 { 484 {
412 "name": "dflydev/dot-access-data", 485 "name": "dflydev/dot-access-data",
413 "version": "v3.0.2", 486 "version": "v3.0.2",
414 "source": { 487 "source": {
415 "type": "git", 488 "type": "git",
416 "url": "https://github.com/dflydev/dflydev-dot-access-data.git", 489 "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
417 "reference": "f41715465d65213d644d3141a6a93081be5d3549" 490 "reference": "f41715465d65213d644d3141a6a93081be5d3549"
418 }, 491 },
419 "dist": { 492 "dist": {
420 "type": "zip", 493 "type": "zip",
421 "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", 494 "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
422 "reference": "f41715465d65213d644d3141a6a93081be5d3549", 495 "reference": "f41715465d65213d644d3141a6a93081be5d3549",
423 "shasum": "" 496 "shasum": ""
424 }, 497 },
425 "require": { 498 "require": {
426 "php": "^7.1 || ^8.0" 499 "php": "^7.1 || ^8.0"
427 }, 500 },
428 "require-dev": { 501 "require-dev": {
429 "phpstan/phpstan": "^0.12.42", 502 "phpstan/phpstan": "^0.12.42",
430 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", 503 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
431 "scrutinizer/ocular": "1.6.0", 504 "scrutinizer/ocular": "1.6.0",
432 "squizlabs/php_codesniffer": "^3.5", 505 "squizlabs/php_codesniffer": "^3.5",
433 "vimeo/psalm": "^4.0.0" 506 "vimeo/psalm": "^4.0.0"
434 }, 507 },
435 "type": "library", 508 "type": "library",
436 "extra": { 509 "extra": {
437 "branch-alias": { 510 "branch-alias": {
438 "dev-main": "3.x-dev" 511 "dev-main": "3.x-dev"
439 } 512 }
440 }, 513 },
441 "autoload": { 514 "autoload": {
442 "psr-4": { 515 "psr-4": {
443 "Dflydev\\DotAccessData\\": "src/" 516 "Dflydev\\DotAccessData\\": "src/"
444 } 517 }
445 }, 518 },
446 "notification-url": "https://packagist.org/downloads/", 519 "notification-url": "https://packagist.org/downloads/",
447 "license": [ 520 "license": [
448 "MIT" 521 "MIT"
449 ], 522 ],
450 "authors": [ 523 "authors": [
451 { 524 {
452 "name": "Dragonfly Development Inc.", 525 "name": "Dragonfly Development Inc.",
453 "email": "info@dflydev.com", 526 "email": "info@dflydev.com",
454 "homepage": "http://dflydev.com" 527 "homepage": "http://dflydev.com"
455 }, 528 },
456 { 529 {
457 "name": "Beau Simensen", 530 "name": "Beau Simensen",
458 "email": "beau@dflydev.com", 531 "email": "beau@dflydev.com",
459 "homepage": "http://beausimensen.com" 532 "homepage": "http://beausimensen.com"
460 }, 533 },
461 { 534 {
462 "name": "Carlos Frutos", 535 "name": "Carlos Frutos",
463 "email": "carlos@kiwing.it", 536 "email": "carlos@kiwing.it",
464 "homepage": "https://github.com/cfrutos" 537 "homepage": "https://github.com/cfrutos"
465 }, 538 },
466 { 539 {
467 "name": "Colin O'Dell", 540 "name": "Colin O'Dell",
468 "email": "colinodell@gmail.com", 541 "email": "colinodell@gmail.com",
469 "homepage": "https://www.colinodell.com" 542 "homepage": "https://www.colinodell.com"
470 } 543 }
471 ], 544 ],
472 "description": "Given a deep data structure, access data by dot notation.", 545 "description": "Given a deep data structure, access data by dot notation.",
473 "homepage": "https://github.com/dflydev/dflydev-dot-access-data", 546 "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
474 "keywords": [ 547 "keywords": [
475 "access", 548 "access",
476 "data", 549 "data",
477 "dot", 550 "dot",
478 "notation" 551 "notation"
479 ], 552 ],
480 "support": { 553 "support": {
481 "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", 554 "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
482 "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" 555 "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
483 }, 556 },
484 "time": "2022-10-27T11:44:00+00:00" 557 "time": "2022-10-27T11:44:00+00:00"
485 }, 558 },
486 { 559 {
560 "name": "doctrine/cache",
561 "version": "1.13.0",
562 "source": {
563 "type": "git",
564 "url": "https://github.com/doctrine/cache.git",
565 "reference": "56cd022adb5514472cb144c087393c1821911d09"
566 },
567 "dist": {
568 "type": "zip",
569 "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09",
570 "reference": "56cd022adb5514472cb144c087393c1821911d09",
571 "shasum": ""
572 },
573 "require": {
574 "php": "~7.1 || ^8.0"
575 },
576 "conflict": {
577 "doctrine/common": ">2.2,<2.4"
578 },
579 "require-dev": {
580 "alcaeus/mongo-php-adapter": "^1.1",
581 "cache/integration-tests": "dev-master",
582 "doctrine/coding-standard": "^9",
583 "mongodb/mongodb": "^1.1",
584 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
585 "predis/predis": "~1.0",
586 "psr/cache": "^1.0 || ^2.0 || ^3.0",
587 "symfony/cache": "^4.4 || ^5.4 || ^6",
588 "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
589 },
590 "suggest": {
591 "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
592 },
593 "type": "library",
594 "autoload": {
595 "psr-4": {
596 "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
597 }
598 },
599 "notification-url": "https://packagist.org/downloads/",
600 "license": [
601 "MIT"
602 ],
603 "authors": [
604 {
605 "name": "Guilherme Blanco",
606 "email": "guilhermeblanco@gmail.com"
607 },
608 {
609 "name": "Roman Borschel",
610 "email": "roman@code-factory.org"
611 },
612 {
613 "name": "Benjamin Eberlei",
614 "email": "kontakt@beberlei.de"
615 },
616 {
617 "name": "Jonathan Wage",
618 "email": "jonwage@gmail.com"
619 },
620 {
621 "name": "Johannes Schmitt",
622 "email": "schmittjoh@gmail.com"
623 }
624 ],
625 "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
626 "homepage": "https://www.doctrine-project.org/projects/cache.html",
627 "keywords": [
628 "abstraction",
629 "apcu",
630 "cache",
631 "caching",
632 "couchdb",
633 "memcached",
634 "php",
635 "redis",
636 "xcache"
637 ],
638 "support": {
639 "issues": "https://github.com/doctrine/cache/issues",
640 "source": "https://github.com/doctrine/cache/tree/1.13.0"
641 },
642 "funding": [
643 {
644 "url": "https://www.doctrine-project.org/sponsorship.html",
645 "type": "custom"
646 },
647 {
648 "url": "https://www.patreon.com/phpdoctrine",
649 "type": "patreon"
650 },
651 {
652 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
653 "type": "tidelift"
654 }
655 ],
656 "time": "2022-05-20T20:06:54+00:00"
657 },
658 {
659 "name": "doctrine/dbal",
660 "version": "3.0.0",
661 "source": {
662 "type": "git",
663 "url": "https://github.com/doctrine/dbal.git",
664 "reference": "ee6d1260d5cc20ec506455a585945d7bdb98662c"
665 },
666 "dist": {
667 "type": "zip",
668 "url": "https://api.github.com/repos/doctrine/dbal/zipball/ee6d1260d5cc20ec506455a585945d7bdb98662c",
669 "reference": "ee6d1260d5cc20ec506455a585945d7bdb98662c",
670 "shasum": ""
671 },
672 "require": {
673 "composer/package-versions-deprecated": "^1.11.99",
674 "doctrine/cache": "^1.0",
675 "doctrine/event-manager": "^1.0",
676 "php": "^7.3 || ^8.0"
677 },
678 "require-dev": {
679 "doctrine/coding-standard": "^8.1",
680 "jetbrains/phpstorm-stubs": "^2019.1",
681 "phpstan/phpstan": "^0.12.40",
682 "phpstan/phpstan-strict-rules": "^0.12.2",
683 "phpunit/phpunit": "^9.4",
684 "psalm/plugin-phpunit": "^0.10.0",
685 "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
686 "vimeo/psalm": "^3.17.2"
687 },
688 "suggest": {
689 "symfony/console": "For helpful console commands such as SQL execution and import of files."
690 },
691 "bin": [
692 "bin/doctrine-dbal"
693 ],
694 "type": "library",
695 "extra": {
696 "branch-alias": {
697 "dev-master": "4.0.x-dev"
698 }
699 },
700 "autoload": {
701 "psr-4": {
702 "Doctrine\\DBAL\\": "src"
703 }
704 },
705 "notification-url": "https://packagist.org/downloads/",
706 "license": [
707 "MIT"
708 ],
709 "authors": [
710 {
711 "name": "Guilherme Blanco",
712 "email": "guilhermeblanco@gmail.com"
713 },
714 {
715 "name": "Roman Borschel",
716 "email": "roman@code-factory.org"
717 },
718 {
719 "name": "Benjamin Eberlei",
720 "email": "kontakt@beberlei.de"
721 },
722 {
723 "name": "Jonathan Wage",
724 "email": "jonwage@gmail.com"
725 }
726 ],
727 "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
728 "homepage": "https://www.doctrine-project.org/projects/dbal.html",
729 "keywords": [
730 "abstraction",
731 "database",
732 "db2",
733 "dbal",
734 "mariadb",
735 "mssql",
736 "mysql",
737 "oci8",
738 "oracle",
739 "pdo",
740 "pgsql",
741 "postgresql",
742 "queryobject",
743 "sasql",
744 "sql",
745 "sqlite",
746 "sqlserver",
747 "sqlsrv"
748 ],
749 "support": {
750 "issues": "https://github.com/doctrine/dbal/issues",
751 "source": "https://github.com/doctrine/dbal/tree/3.0.0"
752 },
753 "funding": [
754 {
755 "url": "https://www.doctrine-project.org/sponsorship.html",
756 "type": "custom"
757 },
758 {
759 "url": "https://www.patreon.com/phpdoctrine",
760 "type": "patreon"
761 },
762 {
763 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
764 "type": "tidelift"
765 }
766 ],
767 "time": "2020-11-15T18:20:41+00:00"
768 },
769 {
487 "name": "doctrine/deprecations", 770 "name": "doctrine/deprecations",
488 "version": "v1.0.0", 771 "version": "v1.0.0",
489 "source": { 772 "source": {
490 "type": "git", 773 "type": "git",
491 "url": "https://github.com/doctrine/deprecations.git", 774 "url": "https://github.com/doctrine/deprecations.git",
492 "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" 775 "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
493 }, 776 },
494 "dist": { 777 "dist": {
495 "type": "zip", 778 "type": "zip",
496 "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", 779 "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
497 "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", 780 "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
498 "shasum": "" 781 "shasum": ""
499 }, 782 },
500 "require": { 783 "require": {
501 "php": "^7.1|^8.0" 784 "php": "^7.1|^8.0"
502 }, 785 },
503 "require-dev": { 786 "require-dev": {
504 "doctrine/coding-standard": "^9", 787 "doctrine/coding-standard": "^9",
505 "phpunit/phpunit": "^7.5|^8.5|^9.5", 788 "phpunit/phpunit": "^7.5|^8.5|^9.5",
506 "psr/log": "^1|^2|^3" 789 "psr/log": "^1|^2|^3"
507 }, 790 },
508 "suggest": { 791 "suggest": {
509 "psr/log": "Allows logging deprecations via PSR-3 logger implementation" 792 "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
510 }, 793 },
511 "type": "library", 794 "type": "library",
512 "autoload": { 795 "autoload": {
513 "psr-4": { 796 "psr-4": {
514 "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" 797 "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
515 } 798 }
516 }, 799 },
517 "notification-url": "https://packagist.org/downloads/", 800 "notification-url": "https://packagist.org/downloads/",
518 "license": [ 801 "license": [
519 "MIT" 802 "MIT"
520 ], 803 ],
521 "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", 804 "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
522 "homepage": "https://www.doctrine-project.org/", 805 "homepage": "https://www.doctrine-project.org/",
523 "support": { 806 "support": {
524 "issues": "https://github.com/doctrine/deprecations/issues", 807 "issues": "https://github.com/doctrine/deprecations/issues",
525 "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" 808 "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
526 }, 809 },
527 "time": "2022-05-02T15:47:09+00:00" 810 "time": "2022-05-02T15:47:09+00:00"
528 }, 811 },
529 { 812 {
813 "name": "doctrine/event-manager",
814 "version": "1.2.0",
815 "source": {
816 "type": "git",
817 "url": "https://github.com/doctrine/event-manager.git",
818 "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520"
819 },
820 "dist": {
821 "type": "zip",
822 "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520",
823 "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520",
824 "shasum": ""
825 },
826 "require": {
827 "doctrine/deprecations": "^0.5.3 || ^1",
828 "php": "^7.1 || ^8.0"
829 },
830 "conflict": {
831 "doctrine/common": "<2.9"
832 },
833 "require-dev": {
834 "doctrine/coding-standard": "^9 || ^10",
835 "phpstan/phpstan": "~1.4.10 || ^1.8.8",
836 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
837 "vimeo/psalm": "^4.24"
838 },
839 "type": "library",
840 "autoload": {
841 "psr-4": {
842 "Doctrine\\Common\\": "src"
843 }
844 },
845 "notification-url": "https://packagist.org/downloads/",
846 "license": [
847 "MIT"
848 ],
849 "authors": [
850 {
851 "name": "Guilherme Blanco",
852 "email": "guilhermeblanco@gmail.com"
853 },
854 {
855 "name": "Roman Borschel",
856 "email": "roman@code-factory.org"
857 },
858 {
859 "name": "Benjamin Eberlei",
860 "email": "kontakt@beberlei.de"
861 },
862 {
863 "name": "Jonathan Wage",
864 "email": "jonwage@gmail.com"
865 },
866 {
867 "name": "Johannes Schmitt",
868 "email": "schmittjoh@gmail.com"
869 },
870 {
871 "name": "Marco Pivetta",
872 "email": "ocramius@gmail.com"
873 }
874 ],
875 "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
876 "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
877 "keywords": [
878 "event",
879 "event dispatcher",
880 "event manager",
881 "event system",
882 "events"
883 ],
884 "support": {
885 "issues": "https://github.com/doctrine/event-manager/issues",
886 "source": "https://github.com/doctrine/event-manager/tree/1.2.0"
887 },
888 "funding": [
889 {
890 "url": "https://www.doctrine-project.org/sponsorship.html",
891 "type": "custom"
892 },
893 {
894 "url": "https://www.patreon.com/phpdoctrine",
895 "type": "patreon"
896 },
897 {
898 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
899 "type": "tidelift"
900 }
901 ],
902 "time": "2022-10-12T20:51:15+00:00"
903 },
904 {
530 "name": "doctrine/inflector", 905 "name": "doctrine/inflector",
531 "version": "2.0.6", 906 "version": "2.0.6",
532 "source": { 907 "source": {
533 "type": "git", 908 "type": "git",
534 "url": "https://github.com/doctrine/inflector.git", 909 "url": "https://github.com/doctrine/inflector.git",
535 "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024" 910 "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
536 }, 911 },
537 "dist": { 912 "dist": {
538 "type": "zip", 913 "type": "zip",
539 "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", 914 "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
540 "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", 915 "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
541 "shasum": "" 916 "shasum": ""
542 }, 917 },
543 "require": { 918 "require": {
544 "php": "^7.2 || ^8.0" 919 "php": "^7.2 || ^8.0"
545 }, 920 },
546 "require-dev": { 921 "require-dev": {
547 "doctrine/coding-standard": "^10", 922 "doctrine/coding-standard": "^10",
548 "phpstan/phpstan": "^1.8", 923 "phpstan/phpstan": "^1.8",
549 "phpstan/phpstan-phpunit": "^1.1", 924 "phpstan/phpstan-phpunit": "^1.1",
550 "phpstan/phpstan-strict-rules": "^1.3", 925 "phpstan/phpstan-strict-rules": "^1.3",
551 "phpunit/phpunit": "^8.5 || ^9.5", 926 "phpunit/phpunit": "^8.5 || ^9.5",
552 "vimeo/psalm": "^4.25" 927 "vimeo/psalm": "^4.25"
553 }, 928 },
554 "type": "library", 929 "type": "library",
555 "autoload": { 930 "autoload": {
556 "psr-4": { 931 "psr-4": {
557 "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" 932 "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
558 } 933 }
559 }, 934 },
560 "notification-url": "https://packagist.org/downloads/", 935 "notification-url": "https://packagist.org/downloads/",
561 "license": [ 936 "license": [
562 "MIT" 937 "MIT"
563 ], 938 ],
564 "authors": [ 939 "authors": [
565 { 940 {
566 "name": "Guilherme Blanco", 941 "name": "Guilherme Blanco",
567 "email": "guilhermeblanco@gmail.com" 942 "email": "guilhermeblanco@gmail.com"
568 }, 943 },
569 { 944 {
570 "name": "Roman Borschel", 945 "name": "Roman Borschel",
571 "email": "roman@code-factory.org" 946 "email": "roman@code-factory.org"
572 }, 947 },
573 { 948 {
574 "name": "Benjamin Eberlei", 949 "name": "Benjamin Eberlei",
575 "email": "kontakt@beberlei.de" 950 "email": "kontakt@beberlei.de"
576 }, 951 },
577 { 952 {
578 "name": "Jonathan Wage", 953 "name": "Jonathan Wage",
579 "email": "jonwage@gmail.com" 954 "email": "jonwage@gmail.com"
580 }, 955 },
581 { 956 {
582 "name": "Johannes Schmitt", 957 "name": "Johannes Schmitt",
583 "email": "schmittjoh@gmail.com" 958 "email": "schmittjoh@gmail.com"
584 } 959 }
585 ], 960 ],
586 "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", 961 "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
587 "homepage": "https://www.doctrine-project.org/projects/inflector.html", 962 "homepage": "https://www.doctrine-project.org/projects/inflector.html",
588 "keywords": [ 963 "keywords": [
589 "inflection", 964 "inflection",
590 "inflector", 965 "inflector",
591 "lowercase", 966 "lowercase",
592 "manipulation", 967 "manipulation",
593 "php", 968 "php",
594 "plural", 969 "plural",
595 "singular", 970 "singular",
596 "strings", 971 "strings",
597 "uppercase", 972 "uppercase",
598 "words" 973 "words"
599 ], 974 ],
600 "support": { 975 "support": {
601 "issues": "https://github.com/doctrine/inflector/issues", 976 "issues": "https://github.com/doctrine/inflector/issues",
602 "source": "https://github.com/doctrine/inflector/tree/2.0.6" 977 "source": "https://github.com/doctrine/inflector/tree/2.0.6"
603 }, 978 },
604 "funding": [ 979 "funding": [
605 { 980 {
606 "url": "https://www.doctrine-project.org/sponsorship.html", 981 "url": "https://www.doctrine-project.org/sponsorship.html",
607 "type": "custom" 982 "type": "custom"
608 }, 983 },
609 { 984 {
610 "url": "https://www.patreon.com/phpdoctrine", 985 "url": "https://www.patreon.com/phpdoctrine",
611 "type": "patreon" 986 "type": "patreon"
612 }, 987 },
613 { 988 {
614 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", 989 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
615 "type": "tidelift" 990 "type": "tidelift"
616 } 991 }
617 ], 992 ],
618 "time": "2022-10-20T09:10:12+00:00" 993 "time": "2022-10-20T09:10:12+00:00"
619 }, 994 },
620 { 995 {
621 "name": "doctrine/lexer", 996 "name": "doctrine/lexer",
622 "version": "2.1.0", 997 "version": "2.1.0",
623 "source": { 998 "source": {
624 "type": "git", 999 "type": "git",
625 "url": "https://github.com/doctrine/lexer.git", 1000 "url": "https://github.com/doctrine/lexer.git",
626 "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124" 1001 "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
627 }, 1002 },
628 "dist": { 1003 "dist": {
629 "type": "zip", 1004 "type": "zip",
630 "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", 1005 "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
631 "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", 1006 "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
632 "shasum": "" 1007 "shasum": ""
633 }, 1008 },
634 "require": { 1009 "require": {
635 "doctrine/deprecations": "^1.0", 1010 "doctrine/deprecations": "^1.0",
636 "php": "^7.1 || ^8.0" 1011 "php": "^7.1 || ^8.0"
637 }, 1012 },
638 "require-dev": { 1013 "require-dev": {
639 "doctrine/coding-standard": "^9 || ^10", 1014 "doctrine/coding-standard": "^9 || ^10",
640 "phpstan/phpstan": "^1.3", 1015 "phpstan/phpstan": "^1.3",
641 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", 1016 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
642 "psalm/plugin-phpunit": "^0.18.3", 1017 "psalm/plugin-phpunit": "^0.18.3",
643 "vimeo/psalm": "^4.11 || ^5.0" 1018 "vimeo/psalm": "^4.11 || ^5.0"
644 }, 1019 },
645 "type": "library", 1020 "type": "library",
646 "autoload": { 1021 "autoload": {
647 "psr-4": { 1022 "psr-4": {
648 "Doctrine\\Common\\Lexer\\": "src" 1023 "Doctrine\\Common\\Lexer\\": "src"
649 } 1024 }
650 }, 1025 },
651 "notification-url": "https://packagist.org/downloads/", 1026 "notification-url": "https://packagist.org/downloads/",
652 "license": [ 1027 "license": [
653 "MIT" 1028 "MIT"
654 ], 1029 ],
655 "authors": [ 1030 "authors": [
656 { 1031 {
657 "name": "Guilherme Blanco", 1032 "name": "Guilherme Blanco",
658 "email": "guilhermeblanco@gmail.com" 1033 "email": "guilhermeblanco@gmail.com"
659 }, 1034 },
660 { 1035 {
661 "name": "Roman Borschel", 1036 "name": "Roman Borschel",
662 "email": "roman@code-factory.org" 1037 "email": "roman@code-factory.org"
663 }, 1038 },
664 { 1039 {
665 "name": "Johannes Schmitt", 1040 "name": "Johannes Schmitt",
666 "email": "schmittjoh@gmail.com" 1041 "email": "schmittjoh@gmail.com"
667 } 1042 }
668 ], 1043 ],
669 "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", 1044 "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
670 "homepage": "https://www.doctrine-project.org/projects/lexer.html", 1045 "homepage": "https://www.doctrine-project.org/projects/lexer.html",
671 "keywords": [ 1046 "keywords": [
672 "annotations", 1047 "annotations",
673 "docblock", 1048 "docblock",
674 "lexer", 1049 "lexer",
675 "parser", 1050 "parser",
676 "php" 1051 "php"
677 ], 1052 ],
678 "support": { 1053 "support": {
679 "issues": "https://github.com/doctrine/lexer/issues", 1054 "issues": "https://github.com/doctrine/lexer/issues",
680 "source": "https://github.com/doctrine/lexer/tree/2.1.0" 1055 "source": "https://github.com/doctrine/lexer/tree/2.1.0"
681 }, 1056 },
682 "funding": [ 1057 "funding": [
683 { 1058 {
684 "url": "https://www.doctrine-project.org/sponsorship.html", 1059 "url": "https://www.doctrine-project.org/sponsorship.html",
685 "type": "custom" 1060 "type": "custom"
686 }, 1061 },
687 { 1062 {
688 "url": "https://www.patreon.com/phpdoctrine", 1063 "url": "https://www.patreon.com/phpdoctrine",
689 "type": "patreon" 1064 "type": "patreon"
690 }, 1065 },
691 { 1066 {
692 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", 1067 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
693 "type": "tidelift" 1068 "type": "tidelift"
694 } 1069 }
695 ], 1070 ],
696 "time": "2022-12-14T08:49:07+00:00" 1071 "time": "2022-12-14T08:49:07+00:00"
697 }, 1072 },
698 { 1073 {
699 "name": "dompdf/dompdf", 1074 "name": "dompdf/dompdf",
700 "version": "v2.0.4", 1075 "version": "v2.0.4",
701 "source": { 1076 "source": {
702 "type": "git", 1077 "type": "git",
703 "url": "https://github.com/dompdf/dompdf.git", 1078 "url": "https://github.com/dompdf/dompdf.git",
704 "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f" 1079 "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f"
705 }, 1080 },
706 "dist": { 1081 "dist": {
707 "type": "zip", 1082 "type": "zip",
708 "url": "https://api.github.com/repos/dompdf/dompdf/zipball/093f2d9739cec57428e39ddadedfd4f3ae862c0f", 1083 "url": "https://api.github.com/repos/dompdf/dompdf/zipball/093f2d9739cec57428e39ddadedfd4f3ae862c0f",
709 "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f", 1084 "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f",
710 "shasum": "" 1085 "shasum": ""
711 }, 1086 },
712 "require": { 1087 "require": {
713 "ext-dom": "*", 1088 "ext-dom": "*",
714 "ext-mbstring": "*", 1089 "ext-mbstring": "*",
715 "masterminds/html5": "^2.0", 1090 "masterminds/html5": "^2.0",
716 "phenx/php-font-lib": ">=0.5.4 <1.0.0", 1091 "phenx/php-font-lib": ">=0.5.4 <1.0.0",
717 "phenx/php-svg-lib": ">=0.3.3 <1.0.0", 1092 "phenx/php-svg-lib": ">=0.3.3 <1.0.0",
718 "php": "^7.1 || ^8.0" 1093 "php": "^7.1 || ^8.0"
719 }, 1094 },
720 "require-dev": { 1095 "require-dev": {
721 "ext-json": "*", 1096 "ext-json": "*",
722 "ext-zip": "*", 1097 "ext-zip": "*",
723 "mockery/mockery": "^1.3", 1098 "mockery/mockery": "^1.3",
724 "phpunit/phpunit": "^7.5 || ^8 || ^9", 1099 "phpunit/phpunit": "^7.5 || ^8 || ^9",
725 "squizlabs/php_codesniffer": "^3.5" 1100 "squizlabs/php_codesniffer": "^3.5"
726 }, 1101 },
727 "suggest": { 1102 "suggest": {
728 "ext-gd": "Needed to process images", 1103 "ext-gd": "Needed to process images",
729 "ext-gmagick": "Improves image processing performance", 1104 "ext-gmagick": "Improves image processing performance",
730 "ext-imagick": "Improves image processing performance", 1105 "ext-imagick": "Improves image processing performance",
731 "ext-zlib": "Needed for pdf stream compression" 1106 "ext-zlib": "Needed for pdf stream compression"
732 }, 1107 },
733 "type": "library", 1108 "type": "library",
734 "autoload": { 1109 "autoload": {
735 "psr-4": { 1110 "psr-4": {
736 "Dompdf\\": "src/" 1111 "Dompdf\\": "src/"
737 }, 1112 },
738 "classmap": [ 1113 "classmap": [
739 "lib/" 1114 "lib/"
740 ] 1115 ]
741 }, 1116 },
742 "notification-url": "https://packagist.org/downloads/", 1117 "notification-url": "https://packagist.org/downloads/",
743 "license": [ 1118 "license": [
744 "LGPL-2.1" 1119 "LGPL-2.1"
745 ], 1120 ],
746 "authors": [ 1121 "authors": [
747 { 1122 {
748 "name": "The Dompdf Community", 1123 "name": "The Dompdf Community",
749 "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md" 1124 "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
750 } 1125 }
751 ], 1126 ],
752 "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter", 1127 "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
753 "homepage": "https://github.com/dompdf/dompdf", 1128 "homepage": "https://github.com/dompdf/dompdf",
754 "support": { 1129 "support": {
755 "issues": "https://github.com/dompdf/dompdf/issues", 1130 "issues": "https://github.com/dompdf/dompdf/issues",
756 "source": "https://github.com/dompdf/dompdf/tree/v2.0.4" 1131 "source": "https://github.com/dompdf/dompdf/tree/v2.0.4"
757 }, 1132 },
758 "time": "2023-12-12T20:19:39+00:00" 1133 "time": "2023-12-12T20:19:39+00:00"
759 }, 1134 },
760 { 1135 {
761 "name": "dragonmantank/cron-expression", 1136 "name": "dragonmantank/cron-expression",
762 "version": "v3.3.2", 1137 "version": "v3.3.2",
763 "source": { 1138 "source": {
764 "type": "git", 1139 "type": "git",
765 "url": "https://github.com/dragonmantank/cron-expression.git", 1140 "url": "https://github.com/dragonmantank/cron-expression.git",
766 "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8" 1141 "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
767 }, 1142 },
768 "dist": { 1143 "dist": {
769 "type": "zip", 1144 "type": "zip",
770 "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8", 1145 "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
771 "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8", 1146 "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
772 "shasum": "" 1147 "shasum": ""
773 }, 1148 },
774 "require": { 1149 "require": {
775 "php": "^7.2|^8.0", 1150 "php": "^7.2|^8.0",
776 "webmozart/assert": "^1.0" 1151 "webmozart/assert": "^1.0"
777 }, 1152 },
778 "replace": { 1153 "replace": {
779 "mtdowling/cron-expression": "^1.0" 1154 "mtdowling/cron-expression": "^1.0"
780 }, 1155 },
781 "require-dev": { 1156 "require-dev": {
782 "phpstan/extension-installer": "^1.0", 1157 "phpstan/extension-installer": "^1.0",
783 "phpstan/phpstan": "^1.0", 1158 "phpstan/phpstan": "^1.0",
784 "phpstan/phpstan-webmozart-assert": "^1.0", 1159 "phpstan/phpstan-webmozart-assert": "^1.0",
785 "phpunit/phpunit": "^7.0|^8.0|^9.0" 1160 "phpunit/phpunit": "^7.0|^8.0|^9.0"
786 }, 1161 },
787 "type": "library", 1162 "type": "library",
788 "autoload": { 1163 "autoload": {
789 "psr-4": { 1164 "psr-4": {
790 "Cron\\": "src/Cron/" 1165 "Cron\\": "src/Cron/"
791 } 1166 }
792 }, 1167 },
793 "notification-url": "https://packagist.org/downloads/", 1168 "notification-url": "https://packagist.org/downloads/",
794 "license": [ 1169 "license": [
795 "MIT" 1170 "MIT"
796 ], 1171 ],
797 "authors": [ 1172 "authors": [
798 { 1173 {
799 "name": "Chris Tankersley", 1174 "name": "Chris Tankersley",
800 "email": "chris@ctankersley.com", 1175 "email": "chris@ctankersley.com",
801 "homepage": "https://github.com/dragonmantank" 1176 "homepage": "https://github.com/dragonmantank"
802 } 1177 }
803 ], 1178 ],
804 "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", 1179 "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
805 "keywords": [ 1180 "keywords": [
806 "cron", 1181 "cron",
807 "schedule" 1182 "schedule"
808 ], 1183 ],
809 "support": { 1184 "support": {
810 "issues": "https://github.com/dragonmantank/cron-expression/issues", 1185 "issues": "https://github.com/dragonmantank/cron-expression/issues",
811 "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2" 1186 "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
812 }, 1187 },
813 "funding": [ 1188 "funding": [
814 { 1189 {
815 "url": "https://github.com/dragonmantank", 1190 "url": "https://github.com/dragonmantank",
816 "type": "github" 1191 "type": "github"
817 } 1192 }
818 ], 1193 ],
819 "time": "2022-09-10T18:51:20+00:00" 1194 "time": "2022-09-10T18:51:20+00:00"
820 }, 1195 },
821 { 1196 {
822 "name": "egulias/email-validator", 1197 "name": "egulias/email-validator",
823 "version": "3.2.5", 1198 "version": "3.2.5",
824 "source": { 1199 "source": {
825 "type": "git", 1200 "type": "git",
826 "url": "https://github.com/egulias/EmailValidator.git", 1201 "url": "https://github.com/egulias/EmailValidator.git",
827 "reference": "b531a2311709443320c786feb4519cfaf94af796" 1202 "reference": "b531a2311709443320c786feb4519cfaf94af796"
828 }, 1203 },
829 "dist": { 1204 "dist": {
830 "type": "zip", 1205 "type": "zip",
831 "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b531a2311709443320c786feb4519cfaf94af796", 1206 "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b531a2311709443320c786feb4519cfaf94af796",
832 "reference": "b531a2311709443320c786feb4519cfaf94af796", 1207 "reference": "b531a2311709443320c786feb4519cfaf94af796",
833 "shasum": "" 1208 "shasum": ""
834 }, 1209 },
835 "require": { 1210 "require": {
836 "doctrine/lexer": "^1.2|^2", 1211 "doctrine/lexer": "^1.2|^2",
837 "php": ">=7.2", 1212 "php": ">=7.2",
838 "symfony/polyfill-intl-idn": "^1.15" 1213 "symfony/polyfill-intl-idn": "^1.15"
839 }, 1214 },
840 "require-dev": { 1215 "require-dev": {
841 "phpunit/phpunit": "^8.5.8|^9.3.3", 1216 "phpunit/phpunit": "^8.5.8|^9.3.3",
842 "vimeo/psalm": "^4" 1217 "vimeo/psalm": "^4"
843 }, 1218 },
844 "suggest": { 1219 "suggest": {
845 "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" 1220 "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
846 }, 1221 },
847 "type": "library", 1222 "type": "library",
848 "extra": { 1223 "extra": {
849 "branch-alias": { 1224 "branch-alias": {
850 "dev-master": "3.0.x-dev" 1225 "dev-master": "3.0.x-dev"
851 } 1226 }
852 }, 1227 },
853 "autoload": { 1228 "autoload": {
854 "psr-4": { 1229 "psr-4": {
855 "Egulias\\EmailValidator\\": "src" 1230 "Egulias\\EmailValidator\\": "src"
856 } 1231 }
857 }, 1232 },
858 "notification-url": "https://packagist.org/downloads/", 1233 "notification-url": "https://packagist.org/downloads/",
859 "license": [ 1234 "license": [
860 "MIT" 1235 "MIT"
861 ], 1236 ],
862 "authors": [ 1237 "authors": [
863 { 1238 {
864 "name": "Eduardo Gulias Davis" 1239 "name": "Eduardo Gulias Davis"
865 } 1240 }
866 ], 1241 ],
867 "description": "A library for validating emails against several RFCs", 1242 "description": "A library for validating emails against several RFCs",
868 "homepage": "https://github.com/egulias/EmailValidator", 1243 "homepage": "https://github.com/egulias/EmailValidator",
869 "keywords": [ 1244 "keywords": [
870 "email", 1245 "email",
871 "emailvalidation", 1246 "emailvalidation",
872 "emailvalidator", 1247 "emailvalidator",
873 "validation", 1248 "validation",
874 "validator" 1249 "validator"
875 ], 1250 ],
876 "support": { 1251 "support": {
877 "issues": "https://github.com/egulias/EmailValidator/issues", 1252 "issues": "https://github.com/egulias/EmailValidator/issues",
878 "source": "https://github.com/egulias/EmailValidator/tree/3.2.5" 1253 "source": "https://github.com/egulias/EmailValidator/tree/3.2.5"
879 }, 1254 },
880 "funding": [ 1255 "funding": [
881 { 1256 {
882 "url": "https://github.com/egulias", 1257 "url": "https://github.com/egulias",
883 "type": "github" 1258 "type": "github"
884 } 1259 }
885 ], 1260 ],
886 "time": "2023-01-02T17:26:14+00:00" 1261 "time": "2023-01-02T17:26:14+00:00"
887 }, 1262 },
888 { 1263 {
889 "name": "ezyang/htmlpurifier", 1264 "name": "ezyang/htmlpurifier",
890 "version": "v4.16.0", 1265 "version": "v4.16.0",
891 "source": { 1266 "source": {
892 "type": "git", 1267 "type": "git",
893 "url": "https://github.com/ezyang/htmlpurifier.git", 1268 "url": "https://github.com/ezyang/htmlpurifier.git",
894 "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8" 1269 "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
895 }, 1270 },
896 "dist": { 1271 "dist": {
897 "type": "zip", 1272 "type": "zip",
898 "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8", 1273 "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
899 "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8", 1274 "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
900 "shasum": "" 1275 "shasum": ""
901 }, 1276 },
902 "require": { 1277 "require": {
903 "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0" 1278 "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
904 }, 1279 },
905 "require-dev": { 1280 "require-dev": {
906 "cerdic/css-tidy": "^1.7 || ^2.0", 1281 "cerdic/css-tidy": "^1.7 || ^2.0",
907 "simpletest/simpletest": "dev-master" 1282 "simpletest/simpletest": "dev-master"
908 }, 1283 },
909 "suggest": { 1284 "suggest": {
910 "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", 1285 "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
911 "ext-bcmath": "Used for unit conversion and imagecrash protection", 1286 "ext-bcmath": "Used for unit conversion and imagecrash protection",
912 "ext-iconv": "Converts text to and from non-UTF-8 encodings", 1287 "ext-iconv": "Converts text to and from non-UTF-8 encodings",
913 "ext-tidy": "Used for pretty-printing HTML" 1288 "ext-tidy": "Used for pretty-printing HTML"
914 }, 1289 },
915 "type": "library", 1290 "type": "library",
916 "autoload": { 1291 "autoload": {
917 "files": [ 1292 "files": [
918 "library/HTMLPurifier.composer.php" 1293 "library/HTMLPurifier.composer.php"
919 ], 1294 ],
920 "psr-0": { 1295 "psr-0": {
921 "HTMLPurifier": "library/" 1296 "HTMLPurifier": "library/"
922 }, 1297 },
923 "exclude-from-classmap": [ 1298 "exclude-from-classmap": [
924 "/library/HTMLPurifier/Language/" 1299 "/library/HTMLPurifier/Language/"
925 ] 1300 ]
926 }, 1301 },
927 "notification-url": "https://packagist.org/downloads/", 1302 "notification-url": "https://packagist.org/downloads/",
928 "license": [ 1303 "license": [
929 "LGPL-2.1-or-later" 1304 "LGPL-2.1-or-later"
930 ], 1305 ],
931 "authors": [ 1306 "authors": [
932 { 1307 {
933 "name": "Edward Z. Yang", 1308 "name": "Edward Z. Yang",
934 "email": "admin@htmlpurifier.org", 1309 "email": "admin@htmlpurifier.org",
935 "homepage": "http://ezyang.com" 1310 "homepage": "http://ezyang.com"
936 } 1311 }
937 ], 1312 ],
938 "description": "Standards compliant HTML filter written in PHP", 1313 "description": "Standards compliant HTML filter written in PHP",
939 "homepage": "http://htmlpurifier.org/", 1314 "homepage": "http://htmlpurifier.org/",
940 "keywords": [ 1315 "keywords": [
941 "html" 1316 "html"
942 ], 1317 ],
943 "support": { 1318 "support": {
944 "issues": "https://github.com/ezyang/htmlpurifier/issues", 1319 "issues": "https://github.com/ezyang/htmlpurifier/issues",
945 "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0" 1320 "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
946 }, 1321 },
947 "time": "2022-09-18T07:06:19+00:00" 1322 "time": "2022-09-18T07:06:19+00:00"
948 }, 1323 },
949 { 1324 {
950 "name": "filament/forms", 1325 "name": "filament/forms",
951 "version": "v2.17.40", 1326 "version": "v2.17.40",
952 "source": { 1327 "source": {
953 "type": "git", 1328 "type": "git",
954 "url": "https://github.com/filamentphp/forms.git", 1329 "url": "https://github.com/filamentphp/forms.git",
955 "reference": "bac884ddd8017ff5acf1ca7d3841a7cb4150bf81" 1330 "reference": "bac884ddd8017ff5acf1ca7d3841a7cb4150bf81"
956 }, 1331 },
957 "dist": { 1332 "dist": {
958 "type": "zip", 1333 "type": "zip",
959 "url": "https://api.github.com/repos/filamentphp/forms/zipball/bac884ddd8017ff5acf1ca7d3841a7cb4150bf81", 1334 "url": "https://api.github.com/repos/filamentphp/forms/zipball/bac884ddd8017ff5acf1ca7d3841a7cb4150bf81",
960 "reference": "bac884ddd8017ff5acf1ca7d3841a7cb4150bf81", 1335 "reference": "bac884ddd8017ff5acf1ca7d3841a7cb4150bf81",
961 "shasum": "" 1336 "shasum": ""
962 }, 1337 },
963 "require": { 1338 "require": {
964 "blade-ui-kit/blade-heroicons": "^1.2", 1339 "blade-ui-kit/blade-heroicons": "^1.2",
965 "danharrin/date-format-converter": "^0.3", 1340 "danharrin/date-format-converter": "^0.3",
966 "filament/notifications": "self.version", 1341 "filament/notifications": "self.version",
967 "filament/support": "self.version", 1342 "filament/support": "self.version",
968 "illuminate/console": "^8.6|^9.0|^10.0", 1343 "illuminate/console": "^8.6|^9.0|^10.0",
969 "illuminate/contracts": "^8.6|^9.0|^10.0", 1344 "illuminate/contracts": "^8.6|^9.0|^10.0",
970 "illuminate/database": "^8.6|^9.0|^10.0", 1345 "illuminate/database": "^8.6|^9.0|^10.0",
971 "illuminate/filesystem": "^8.6|^9.0|^10.0", 1346 "illuminate/filesystem": "^8.6|^9.0|^10.0",
972 "illuminate/support": "^8.6|^9.0|^10.0", 1347 "illuminate/support": "^8.6|^9.0|^10.0",
973 "illuminate/validation": "^8.6|^9.0|^10.0", 1348 "illuminate/validation": "^8.6|^9.0|^10.0",
974 "illuminate/view": "^8.6|^9.0|^10.0", 1349 "illuminate/view": "^8.6|^9.0|^10.0",
975 "livewire/livewire": "^2.10.7", 1350 "livewire/livewire": "^2.10.7",
976 "php": "^8.0", 1351 "php": "^8.0",
977 "spatie/laravel-package-tools": "^1.9" 1352 "spatie/laravel-package-tools": "^1.9"
978 }, 1353 },
979 "type": "library", 1354 "type": "library",
980 "extra": { 1355 "extra": {
981 "laravel": { 1356 "laravel": {
982 "providers": [ 1357 "providers": [
983 "Filament\\Forms\\FormsServiceProvider" 1358 "Filament\\Forms\\FormsServiceProvider"
984 ] 1359 ]
985 } 1360 }
986 }, 1361 },
987 "autoload": { 1362 "autoload": {
988 "files": [ 1363 "files": [
989 "src/helpers.php" 1364 "src/helpers.php"
990 ], 1365 ],
991 "psr-4": { 1366 "psr-4": {
992 "Filament\\Forms\\": "src" 1367 "Filament\\Forms\\": "src"
993 } 1368 }
994 }, 1369 },
995 "notification-url": "https://packagist.org/downloads/", 1370 "notification-url": "https://packagist.org/downloads/",
996 "license": [ 1371 "license": [
997 "MIT" 1372 "MIT"
998 ], 1373 ],
999 "description": "Effortlessly build TALL-powered forms.", 1374 "description": "Effortlessly build TALL-powered forms.",
1000 "homepage": "https://github.com/filamentphp/filament", 1375 "homepage": "https://github.com/filamentphp/filament",
1001 "support": { 1376 "support": {
1002 "issues": "https://github.com/filamentphp/filament/issues", 1377 "issues": "https://github.com/filamentphp/filament/issues",
1003 "source": "https://github.com/filamentphp/filament" 1378 "source": "https://github.com/filamentphp/filament"
1004 }, 1379 },
1005 "time": "2023-05-13T18:44:56+00:00" 1380 "time": "2023-05-13T18:44:56+00:00"
1006 }, 1381 },
1007 { 1382 {
1008 "name": "filament/notifications", 1383 "name": "filament/notifications",
1009 "version": "v2.17.40", 1384 "version": "v2.17.40",
1010 "source": { 1385 "source": {
1011 "type": "git", 1386 "type": "git",
1012 "url": "https://github.com/filamentphp/notifications.git", 1387 "url": "https://github.com/filamentphp/notifications.git",
1013 "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252" 1388 "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252"
1014 }, 1389 },
1015 "dist": { 1390 "dist": {
1016 "type": "zip", 1391 "type": "zip",
1017 "url": "https://api.github.com/repos/filamentphp/notifications/zipball/0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252", 1392 "url": "https://api.github.com/repos/filamentphp/notifications/zipball/0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252",
1018 "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252", 1393 "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252",
1019 "shasum": "" 1394 "shasum": ""
1020 }, 1395 },
1021 "require": { 1396 "require": {
1022 "blade-ui-kit/blade-heroicons": "^1.2", 1397 "blade-ui-kit/blade-heroicons": "^1.2",
1023 "filament/support": "self.version", 1398 "filament/support": "self.version",
1024 "illuminate/contracts": "^8.6|^9.0|^10.0", 1399 "illuminate/contracts": "^8.6|^9.0|^10.0",
1025 "illuminate/filesystem": "^8.6|^9.0|^10.0", 1400 "illuminate/filesystem": "^8.6|^9.0|^10.0",
1026 "illuminate/notifications": "^8.6|^9.0|^10.0", 1401 "illuminate/notifications": "^8.6|^9.0|^10.0",
1027 "illuminate/support": "^8.6|^9.0|^10.0", 1402 "illuminate/support": "^8.6|^9.0|^10.0",
1028 "livewire/livewire": "^2.10.7", 1403 "livewire/livewire": "^2.10.7",
1029 "php": "^8.0", 1404 "php": "^8.0",
1030 "spatie/laravel-package-tools": "^1.9" 1405 "spatie/laravel-package-tools": "^1.9"
1031 }, 1406 },
1032 "type": "library", 1407 "type": "library",
1033 "extra": { 1408 "extra": {
1034 "laravel": { 1409 "laravel": {
1035 "providers": [ 1410 "providers": [
1036 "Filament\\Notifications\\NotificationsServiceProvider" 1411 "Filament\\Notifications\\NotificationsServiceProvider"
1037 ] 1412 ]
1038 } 1413 }
1039 }, 1414 },
1040 "autoload": { 1415 "autoload": {
1041 "files": [ 1416 "files": [
1042 "src/Testing/Autoload.php" 1417 "src/Testing/Autoload.php"
1043 ], 1418 ],
1044 "psr-4": { 1419 "psr-4": {
1045 "Filament\\Notifications\\": "src" 1420 "Filament\\Notifications\\": "src"
1046 } 1421 }
1047 }, 1422 },
1048 "notification-url": "https://packagist.org/downloads/", 1423 "notification-url": "https://packagist.org/downloads/",
1049 "license": [ 1424 "license": [
1050 "MIT" 1425 "MIT"
1051 ], 1426 ],
1052 "description": "Effortlessly build TALL-powered notifications.", 1427 "description": "Effortlessly build TALL-powered notifications.",
1053 "homepage": "https://github.com/filamentphp/filament", 1428 "homepage": "https://github.com/filamentphp/filament",
1054 "support": { 1429 "support": {
1055 "issues": "https://github.com/filamentphp/filament/issues", 1430 "issues": "https://github.com/filamentphp/filament/issues",
1056 "source": "https://github.com/filamentphp/filament" 1431 "source": "https://github.com/filamentphp/filament"
1057 }, 1432 },
1058 "time": "2023-05-04T23:08:09+00:00" 1433 "time": "2023-05-04T23:08:09+00:00"
1059 }, 1434 },
1060 { 1435 {
1061 "name": "filament/support", 1436 "name": "filament/support",
1062 "version": "v2.17.40", 1437 "version": "v2.17.40",
1063 "source": { 1438 "source": {
1064 "type": "git", 1439 "type": "git",
1065 "url": "https://github.com/filamentphp/support.git", 1440 "url": "https://github.com/filamentphp/support.git",
1066 "reference": "e75e02a76edd959304cdbea7815586b720f8d308" 1441 "reference": "e75e02a76edd959304cdbea7815586b720f8d308"
1067 }, 1442 },
1068 "dist": { 1443 "dist": {
1069 "type": "zip", 1444 "type": "zip",
1070 "url": "https://api.github.com/repos/filamentphp/support/zipball/e75e02a76edd959304cdbea7815586b720f8d308", 1445 "url": "https://api.github.com/repos/filamentphp/support/zipball/e75e02a76edd959304cdbea7815586b720f8d308",
1071 "reference": "e75e02a76edd959304cdbea7815586b720f8d308", 1446 "reference": "e75e02a76edd959304cdbea7815586b720f8d308",
1072 "shasum": "" 1447 "shasum": ""
1073 }, 1448 },
1074 "require": { 1449 "require": {
1075 "illuminate/contracts": "^8.6|^9.0|^10.0", 1450 "illuminate/contracts": "^8.6|^9.0|^10.0",
1076 "illuminate/support": "^8.6|^9.0|^10.0", 1451 "illuminate/support": "^8.6|^9.0|^10.0",
1077 "illuminate/view": "^8.6|^9.0|^10.0", 1452 "illuminate/view": "^8.6|^9.0|^10.0",
1078 "php": "^8.0", 1453 "php": "^8.0",
1079 "spatie/laravel-package-tools": "^1.9", 1454 "spatie/laravel-package-tools": "^1.9",
1080 "tgalopin/html-sanitizer": "^1.5" 1455 "tgalopin/html-sanitizer": "^1.5"
1081 }, 1456 },
1082 "type": "library", 1457 "type": "library",
1083 "extra": { 1458 "extra": {
1084 "laravel": { 1459 "laravel": {
1085 "providers": [ 1460 "providers": [
1086 "Filament\\Support\\SupportServiceProvider" 1461 "Filament\\Support\\SupportServiceProvider"
1087 ] 1462 ]
1088 } 1463 }
1089 }, 1464 },
1090 "autoload": { 1465 "autoload": {
1091 "files": [ 1466 "files": [
1092 "src/helpers.php" 1467 "src/helpers.php"
1093 ], 1468 ],
1094 "psr-4": { 1469 "psr-4": {
1095 "Filament\\Support\\": "src" 1470 "Filament\\Support\\": "src"
1096 } 1471 }
1097 }, 1472 },
1098 "notification-url": "https://packagist.org/downloads/", 1473 "notification-url": "https://packagist.org/downloads/",
1099 "license": [ 1474 "license": [
1100 "MIT" 1475 "MIT"
1101 ], 1476 ],
1102 "description": "Associated helper methods and foundation code for Filament packages.", 1477 "description": "Associated helper methods and foundation code for Filament packages.",
1103 "homepage": "https://github.com/filamentphp/filament", 1478 "homepage": "https://github.com/filamentphp/filament",
1104 "support": { 1479 "support": {
1105 "issues": "https://github.com/filamentphp/filament/issues", 1480 "issues": "https://github.com/filamentphp/filament/issues",
1106 "source": "https://github.com/filamentphp/filament" 1481 "source": "https://github.com/filamentphp/filament"
1107 }, 1482 },
1108 "time": "2023-05-13T07:21:02+00:00" 1483 "time": "2023-05-13T07:21:02+00:00"
1109 }, 1484 },
1110 { 1485 {
1111 "name": "filament/tables", 1486 "name": "filament/tables",
1112 "version": "v2.17.40", 1487 "version": "v2.17.40",
1113 "source": { 1488 "source": {
1114 "type": "git", 1489 "type": "git",
1115 "url": "https://github.com/filamentphp/tables.git", 1490 "url": "https://github.com/filamentphp/tables.git",
1116 "reference": "7389f819d057262642295a22fb7d26e92e0b2ab6" 1491 "reference": "7389f819d057262642295a22fb7d26e92e0b2ab6"
1117 }, 1492 },
1118 "dist": { 1493 "dist": {
1119 "type": "zip", 1494 "type": "zip",
1120 "url": "https://api.github.com/repos/filamentphp/tables/zipball/7389f819d057262642295a22fb7d26e92e0b2ab6", 1495 "url": "https://api.github.com/repos/filamentphp/tables/zipball/7389f819d057262642295a22fb7d26e92e0b2ab6",
1121 "reference": "7389f819d057262642295a22fb7d26e92e0b2ab6", 1496 "reference": "7389f819d057262642295a22fb7d26e92e0b2ab6",
1122 "shasum": "" 1497 "shasum": ""
1123 }, 1498 },
1124 "require": { 1499 "require": {
1125 "akaunting/laravel-money": "^1.2|^2.0|^3.0|^4.0", 1500 "akaunting/laravel-money": "^1.2|^2.0|^3.0|^4.0",
1126 "blade-ui-kit/blade-heroicons": "^1.2", 1501 "blade-ui-kit/blade-heroicons": "^1.2",
1127 "filament/forms": "self.version", 1502 "filament/forms": "self.version",
1128 "filament/notifications": "self.version", 1503 "filament/notifications": "self.version",
1129 "filament/support": "self.version", 1504 "filament/support": "self.version",
1130 "illuminate/console": "^8.6|^9.0|^10.0", 1505 "illuminate/console": "^8.6|^9.0|^10.0",
1131 "illuminate/contracts": "^8.6|^9.0|^10.0", 1506 "illuminate/contracts": "^8.6|^9.0|^10.0",
1132 "illuminate/database": "^8.6|^9.0|^10.0", 1507 "illuminate/database": "^8.6|^9.0|^10.0",
1133 "illuminate/filesystem": "^8.6|^9.0|^10.0", 1508 "illuminate/filesystem": "^8.6|^9.0|^10.0",
1134 "illuminate/support": "^8.6|^9.0|^10.0", 1509 "illuminate/support": "^8.6|^9.0|^10.0",
1135 "illuminate/view": "^8.6|^9.0|^10.0", 1510 "illuminate/view": "^8.6|^9.0|^10.0",
1136 "livewire/livewire": "^2.10.7", 1511 "livewire/livewire": "^2.10.7",
1137 "php": "^8.0", 1512 "php": "^8.0",
1138 "spatie/invade": "^1.0", 1513 "spatie/invade": "^1.0",
1139 "spatie/laravel-package-tools": "^1.9" 1514 "spatie/laravel-package-tools": "^1.9"
1140 }, 1515 },
1141 "type": "library", 1516 "type": "library",
1142 "extra": { 1517 "extra": {
1143 "laravel": { 1518 "laravel": {
1144 "providers": [ 1519 "providers": [
1145 "Filament\\Tables\\TablesServiceProvider" 1520 "Filament\\Tables\\TablesServiceProvider"
1146 ] 1521 ]
1147 } 1522 }
1148 }, 1523 },
1149 "autoload": { 1524 "autoload": {
1150 "psr-4": { 1525 "psr-4": {
1151 "Filament\\Tables\\": "src" 1526 "Filament\\Tables\\": "src"
1152 } 1527 }
1153 }, 1528 },
1154 "notification-url": "https://packagist.org/downloads/", 1529 "notification-url": "https://packagist.org/downloads/",
1155 "license": [ 1530 "license": [
1156 "MIT" 1531 "MIT"
1157 ], 1532 ],
1158 "description": "Effortlessly build TALL-powered tables.", 1533 "description": "Effortlessly build TALL-powered tables.",
1159 "homepage": "https://github.com/filamentphp/filament", 1534 "homepage": "https://github.com/filamentphp/filament",
1160 "support": { 1535 "support": {
1161 "issues": "https://github.com/filamentphp/filament/issues", 1536 "issues": "https://github.com/filamentphp/filament/issues",
1162 "source": "https://github.com/filamentphp/filament" 1537 "source": "https://github.com/filamentphp/filament"
1163 }, 1538 },
1164 "time": "2023-05-13T07:21:08+00:00" 1539 "time": "2023-05-13T07:21:08+00:00"
1165 }, 1540 },
1166 { 1541 {
1167 "name": "fruitcake/php-cors", 1542 "name": "fruitcake/php-cors",
1168 "version": "v1.2.0", 1543 "version": "v1.2.0",
1169 "source": { 1544 "source": {
1170 "type": "git", 1545 "type": "git",
1171 "url": "https://github.com/fruitcake/php-cors.git", 1546 "url": "https://github.com/fruitcake/php-cors.git",
1172 "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e" 1547 "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
1173 }, 1548 },
1174 "dist": { 1549 "dist": {
1175 "type": "zip", 1550 "type": "zip",
1176 "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e", 1551 "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
1177 "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e", 1552 "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
1178 "shasum": "" 1553 "shasum": ""
1179 }, 1554 },
1180 "require": { 1555 "require": {
1181 "php": "^7.4|^8.0", 1556 "php": "^7.4|^8.0",
1182 "symfony/http-foundation": "^4.4|^5.4|^6" 1557 "symfony/http-foundation": "^4.4|^5.4|^6"
1183 }, 1558 },
1184 "require-dev": { 1559 "require-dev": {
1185 "phpstan/phpstan": "^1.4", 1560 "phpstan/phpstan": "^1.4",
1186 "phpunit/phpunit": "^9", 1561 "phpunit/phpunit": "^9",
1187 "squizlabs/php_codesniffer": "^3.5" 1562 "squizlabs/php_codesniffer": "^3.5"
1188 }, 1563 },
1189 "type": "library", 1564 "type": "library",
1190 "extra": { 1565 "extra": {
1191 "branch-alias": { 1566 "branch-alias": {
1192 "dev-main": "1.1-dev" 1567 "dev-main": "1.1-dev"
1193 } 1568 }
1194 }, 1569 },
1195 "autoload": { 1570 "autoload": {
1196 "psr-4": { 1571 "psr-4": {
1197 "Fruitcake\\Cors\\": "src/" 1572 "Fruitcake\\Cors\\": "src/"
1198 } 1573 }
1199 }, 1574 },
1200 "notification-url": "https://packagist.org/downloads/", 1575 "notification-url": "https://packagist.org/downloads/",
1201 "license": [ 1576 "license": [
1202 "MIT" 1577 "MIT"
1203 ], 1578 ],
1204 "authors": [ 1579 "authors": [
1205 { 1580 {
1206 "name": "Fruitcake", 1581 "name": "Fruitcake",
1207 "homepage": "https://fruitcake.nl" 1582 "homepage": "https://fruitcake.nl"
1208 }, 1583 },
1209 { 1584 {
1210 "name": "Barryvdh", 1585 "name": "Barryvdh",
1211 "email": "barryvdh@gmail.com" 1586 "email": "barryvdh@gmail.com"
1212 } 1587 }
1213 ], 1588 ],
1214 "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", 1589 "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
1215 "homepage": "https://github.com/fruitcake/php-cors", 1590 "homepage": "https://github.com/fruitcake/php-cors",
1216 "keywords": [ 1591 "keywords": [
1217 "cors", 1592 "cors",
1218 "laravel", 1593 "laravel",
1219 "symfony" 1594 "symfony"
1220 ], 1595 ],
1221 "support": { 1596 "support": {
1222 "issues": "https://github.com/fruitcake/php-cors/issues", 1597 "issues": "https://github.com/fruitcake/php-cors/issues",
1223 "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0" 1598 "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
1224 }, 1599 },
1225 "funding": [ 1600 "funding": [
1226 { 1601 {
1227 "url": "https://fruitcake.nl", 1602 "url": "https://fruitcake.nl",
1228 "type": "custom" 1603 "type": "custom"
1229 }, 1604 },
1230 { 1605 {
1231 "url": "https://github.com/barryvdh", 1606 "url": "https://github.com/barryvdh",
1232 "type": "github" 1607 "type": "github"
1233 } 1608 }
1234 ], 1609 ],
1235 "time": "2022-02-20T15:07:15+00:00" 1610 "time": "2022-02-20T15:07:15+00:00"
1236 }, 1611 },
1237 { 1612 {
1238 "name": "graham-campbell/result-type", 1613 "name": "graham-campbell/result-type",
1239 "version": "v1.1.1", 1614 "version": "v1.1.1",
1240 "source": { 1615 "source": {
1241 "type": "git", 1616 "type": "git",
1242 "url": "https://github.com/GrahamCampbell/Result-Type.git", 1617 "url": "https://github.com/GrahamCampbell/Result-Type.git",
1243 "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831" 1618 "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
1244 }, 1619 },
1245 "dist": { 1620 "dist": {
1246 "type": "zip", 1621 "type": "zip",
1247 "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", 1622 "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
1248 "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", 1623 "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
1249 "shasum": "" 1624 "shasum": ""
1250 }, 1625 },
1251 "require": { 1626 "require": {
1252 "php": "^7.2.5 || ^8.0", 1627 "php": "^7.2.5 || ^8.0",
1253 "phpoption/phpoption": "^1.9.1" 1628 "phpoption/phpoption": "^1.9.1"
1254 }, 1629 },
1255 "require-dev": { 1630 "require-dev": {
1256 "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" 1631 "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
1257 }, 1632 },
1258 "type": "library", 1633 "type": "library",
1259 "autoload": { 1634 "autoload": {
1260 "psr-4": { 1635 "psr-4": {
1261 "GrahamCampbell\\ResultType\\": "src/" 1636 "GrahamCampbell\\ResultType\\": "src/"
1262 } 1637 }
1263 }, 1638 },
1264 "notification-url": "https://packagist.org/downloads/", 1639 "notification-url": "https://packagist.org/downloads/",
1265 "license": [ 1640 "license": [
1266 "MIT" 1641 "MIT"
1267 ], 1642 ],
1268 "authors": [ 1643 "authors": [
1269 { 1644 {
1270 "name": "Graham Campbell", 1645 "name": "Graham Campbell",
1271 "email": "hello@gjcampbell.co.uk", 1646 "email": "hello@gjcampbell.co.uk",
1272 "homepage": "https://github.com/GrahamCampbell" 1647 "homepage": "https://github.com/GrahamCampbell"
1273 } 1648 }
1274 ], 1649 ],
1275 "description": "An Implementation Of The Result Type", 1650 "description": "An Implementation Of The Result Type",
1276 "keywords": [ 1651 "keywords": [
1277 "Graham Campbell", 1652 "Graham Campbell",
1278 "GrahamCampbell", 1653 "GrahamCampbell",
1279 "Result Type", 1654 "Result Type",
1280 "Result-Type", 1655 "Result-Type",
1281 "result" 1656 "result"
1282 ], 1657 ],
1283 "support": { 1658 "support": {
1284 "issues": "https://github.com/GrahamCampbell/Result-Type/issues", 1659 "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
1285 "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1" 1660 "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
1286 }, 1661 },
1287 "funding": [ 1662 "funding": [
1288 { 1663 {
1289 "url": "https://github.com/GrahamCampbell", 1664 "url": "https://github.com/GrahamCampbell",
1290 "type": "github" 1665 "type": "github"
1291 }, 1666 },
1292 { 1667 {
1293 "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", 1668 "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
1294 "type": "tidelift" 1669 "type": "tidelift"
1295 } 1670 }
1296 ], 1671 ],
1297 "time": "2023-02-25T20:23:15+00:00" 1672 "time": "2023-02-25T20:23:15+00:00"
1298 }, 1673 },
1299 { 1674 {
1300 "name": "guzzlehttp/guzzle", 1675 "name": "guzzlehttp/guzzle",
1301 "version": "7.6.0", 1676 "version": "7.6.0",
1302 "source": { 1677 "source": {
1303 "type": "git", 1678 "type": "git",
1304 "url": "https://github.com/guzzle/guzzle.git", 1679 "url": "https://github.com/guzzle/guzzle.git",
1305 "reference": "733dd89533dd371a0987172727df15f500dab0ef" 1680 "reference": "733dd89533dd371a0987172727df15f500dab0ef"
1306 }, 1681 },
1307 "dist": { 1682 "dist": {
1308 "type": "zip", 1683 "type": "zip",
1309 "url": "https://api.github.com/repos/guzzle/guzzle/zipball/733dd89533dd371a0987172727df15f500dab0ef", 1684 "url": "https://api.github.com/repos/guzzle/guzzle/zipball/733dd89533dd371a0987172727df15f500dab0ef",
1310 "reference": "733dd89533dd371a0987172727df15f500dab0ef", 1685 "reference": "733dd89533dd371a0987172727df15f500dab0ef",
1311 "shasum": "" 1686 "shasum": ""
1312 }, 1687 },
1313 "require": { 1688 "require": {
1314 "ext-json": "*", 1689 "ext-json": "*",
1315 "guzzlehttp/promises": "^1.5", 1690 "guzzlehttp/promises": "^1.5",
1316 "guzzlehttp/psr7": "^1.9.1 || ^2.4.5", 1691 "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
1317 "php": "^7.2.5 || ^8.0", 1692 "php": "^7.2.5 || ^8.0",
1318 "psr/http-client": "^1.0", 1693 "psr/http-client": "^1.0",
1319 "symfony/deprecation-contracts": "^2.2 || ^3.0" 1694 "symfony/deprecation-contracts": "^2.2 || ^3.0"
1320 }, 1695 },
1321 "provide": { 1696 "provide": {
1322 "psr/http-client-implementation": "1.0" 1697 "psr/http-client-implementation": "1.0"
1323 }, 1698 },
1324 "require-dev": { 1699 "require-dev": {
1325 "bamarni/composer-bin-plugin": "^1.8.1", 1700 "bamarni/composer-bin-plugin": "^1.8.1",
1326 "ext-curl": "*", 1701 "ext-curl": "*",
1327 "php-http/client-integration-tests": "^3.0", 1702 "php-http/client-integration-tests": "^3.0",
1328 "phpunit/phpunit": "^8.5.29 || ^9.5.23", 1703 "phpunit/phpunit": "^8.5.29 || ^9.5.23",
1329 "psr/log": "^1.1 || ^2.0 || ^3.0" 1704 "psr/log": "^1.1 || ^2.0 || ^3.0"
1330 }, 1705 },
1331 "suggest": { 1706 "suggest": {
1332 "ext-curl": "Required for CURL handler support", 1707 "ext-curl": "Required for CURL handler support",
1333 "ext-intl": "Required for Internationalized Domain Name (IDN) support", 1708 "ext-intl": "Required for Internationalized Domain Name (IDN) support",
1334 "psr/log": "Required for using the Log middleware" 1709 "psr/log": "Required for using the Log middleware"
1335 }, 1710 },
1336 "type": "library", 1711 "type": "library",
1337 "extra": { 1712 "extra": {
1338 "bamarni-bin": { 1713 "bamarni-bin": {
1339 "bin-links": true, 1714 "bin-links": true,
1340 "forward-command": false 1715 "forward-command": false
1341 } 1716 }
1342 }, 1717 },
1343 "autoload": { 1718 "autoload": {
1344 "files": [ 1719 "files": [
1345 "src/functions_include.php" 1720 "src/functions_include.php"
1346 ], 1721 ],
1347 "psr-4": { 1722 "psr-4": {
1348 "GuzzleHttp\\": "src/" 1723 "GuzzleHttp\\": "src/"
1349 } 1724 }
1350 }, 1725 },
1351 "notification-url": "https://packagist.org/downloads/", 1726 "notification-url": "https://packagist.org/downloads/",
1352 "license": [ 1727 "license": [
1353 "MIT" 1728 "MIT"
1354 ], 1729 ],
1355 "authors": [ 1730 "authors": [
1356 { 1731 {
1357 "name": "Graham Campbell", 1732 "name": "Graham Campbell",
1358 "email": "hello@gjcampbell.co.uk", 1733 "email": "hello@gjcampbell.co.uk",
1359 "homepage": "https://github.com/GrahamCampbell" 1734 "homepage": "https://github.com/GrahamCampbell"
1360 }, 1735 },
1361 { 1736 {
1362 "name": "Michael Dowling", 1737 "name": "Michael Dowling",
1363 "email": "mtdowling@gmail.com", 1738 "email": "mtdowling@gmail.com",
1364 "homepage": "https://github.com/mtdowling" 1739 "homepage": "https://github.com/mtdowling"
1365 }, 1740 },
1366 { 1741 {
1367 "name": "Jeremy Lindblom", 1742 "name": "Jeremy Lindblom",
1368 "email": "jeremeamia@gmail.com", 1743 "email": "jeremeamia@gmail.com",
1369 "homepage": "https://github.com/jeremeamia" 1744 "homepage": "https://github.com/jeremeamia"
1370 }, 1745 },
1371 { 1746 {
1372 "name": "George Mponos", 1747 "name": "George Mponos",
1373 "email": "gmponos@gmail.com", 1748 "email": "gmponos@gmail.com",
1374 "homepage": "https://github.com/gmponos" 1749 "homepage": "https://github.com/gmponos"
1375 }, 1750 },
1376 { 1751 {
1377 "name": "Tobias Nyholm", 1752 "name": "Tobias Nyholm",
1378 "email": "tobias.nyholm@gmail.com", 1753 "email": "tobias.nyholm@gmail.com",
1379 "homepage": "https://github.com/Nyholm" 1754 "homepage": "https://github.com/Nyholm"
1380 }, 1755 },
1381 { 1756 {
1382 "name": "Márk Sági-Kazár", 1757 "name": "Márk Sági-Kazár",
1383 "email": "mark.sagikazar@gmail.com", 1758 "email": "mark.sagikazar@gmail.com",
1384 "homepage": "https://github.com/sagikazarmark" 1759 "homepage": "https://github.com/sagikazarmark"
1385 }, 1760 },
1386 { 1761 {
1387 "name": "Tobias Schultze", 1762 "name": "Tobias Schultze",
1388 "email": "webmaster@tubo-world.de", 1763 "email": "webmaster@tubo-world.de",
1389 "homepage": "https://github.com/Tobion" 1764 "homepage": "https://github.com/Tobion"
1390 } 1765 }
1391 ], 1766 ],
1392 "description": "Guzzle is a PHP HTTP client library", 1767 "description": "Guzzle is a PHP HTTP client library",
1393 "keywords": [ 1768 "keywords": [
1394 "client", 1769 "client",
1395 "curl", 1770 "curl",
1396 "framework", 1771 "framework",
1397 "http", 1772 "http",
1398 "http client", 1773 "http client",
1399 "psr-18", 1774 "psr-18",
1400 "psr-7", 1775 "psr-7",
1401 "rest", 1776 "rest",
1402 "web service" 1777 "web service"
1403 ], 1778 ],
1404 "support": { 1779 "support": {
1405 "issues": "https://github.com/guzzle/guzzle/issues", 1780 "issues": "https://github.com/guzzle/guzzle/issues",
1406 "source": "https://github.com/guzzle/guzzle/tree/7.6.0" 1781 "source": "https://github.com/guzzle/guzzle/tree/7.6.0"
1407 }, 1782 },
1408 "funding": [ 1783 "funding": [
1409 { 1784 {
1410 "url": "https://github.com/GrahamCampbell", 1785 "url": "https://github.com/GrahamCampbell",
1411 "type": "github" 1786 "type": "github"
1412 }, 1787 },
1413 { 1788 {
1414 "url": "https://github.com/Nyholm", 1789 "url": "https://github.com/Nyholm",
1415 "type": "github" 1790 "type": "github"
1416 }, 1791 },
1417 { 1792 {
1418 "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", 1793 "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
1419 "type": "tidelift" 1794 "type": "tidelift"
1420 } 1795 }
1421 ], 1796 ],
1422 "time": "2023-05-14T11:23:39+00:00" 1797 "time": "2023-05-14T11:23:39+00:00"
1423 }, 1798 },
1424 { 1799 {
1425 "name": "guzzlehttp/promises", 1800 "name": "guzzlehttp/promises",
1426 "version": "1.5.2", 1801 "version": "1.5.2",
1427 "source": { 1802 "source": {
1428 "type": "git", 1803 "type": "git",
1429 "url": "https://github.com/guzzle/promises.git", 1804 "url": "https://github.com/guzzle/promises.git",
1430 "reference": "b94b2807d85443f9719887892882d0329d1e2598" 1805 "reference": "b94b2807d85443f9719887892882d0329d1e2598"
1431 }, 1806 },
1432 "dist": { 1807 "dist": {
1433 "type": "zip", 1808 "type": "zip",
1434 "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598", 1809 "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
1435 "reference": "b94b2807d85443f9719887892882d0329d1e2598", 1810 "reference": "b94b2807d85443f9719887892882d0329d1e2598",
1436 "shasum": "" 1811 "shasum": ""
1437 }, 1812 },
1438 "require": { 1813 "require": {
1439 "php": ">=5.5" 1814 "php": ">=5.5"
1440 }, 1815 },
1441 "require-dev": { 1816 "require-dev": {
1442 "symfony/phpunit-bridge": "^4.4 || ^5.1" 1817 "symfony/phpunit-bridge": "^4.4 || ^5.1"
1443 }, 1818 },
1444 "type": "library", 1819 "type": "library",
1445 "extra": { 1820 "extra": {
1446 "branch-alias": { 1821 "branch-alias": {
1447 "dev-master": "1.5-dev" 1822 "dev-master": "1.5-dev"
1448 } 1823 }
1449 }, 1824 },
1450 "autoload": { 1825 "autoload": {
1451 "files": [ 1826 "files": [
1452 "src/functions_include.php" 1827 "src/functions_include.php"
1453 ], 1828 ],
1454 "psr-4": { 1829 "psr-4": {
1455 "GuzzleHttp\\Promise\\": "src/" 1830 "GuzzleHttp\\Promise\\": "src/"
1456 } 1831 }
1457 }, 1832 },
1458 "notification-url": "https://packagist.org/downloads/", 1833 "notification-url": "https://packagist.org/downloads/",
1459 "license": [ 1834 "license": [
1460 "MIT" 1835 "MIT"
1461 ], 1836 ],
1462 "authors": [ 1837 "authors": [
1463 { 1838 {
1464 "name": "Graham Campbell", 1839 "name": "Graham Campbell",
1465 "email": "hello@gjcampbell.co.uk", 1840 "email": "hello@gjcampbell.co.uk",
1466 "homepage": "https://github.com/GrahamCampbell" 1841 "homepage": "https://github.com/GrahamCampbell"
1467 }, 1842 },
1468 { 1843 {
1469 "name": "Michael Dowling", 1844 "name": "Michael Dowling",
1470 "email": "mtdowling@gmail.com", 1845 "email": "mtdowling@gmail.com",
1471 "homepage": "https://github.com/mtdowling" 1846 "homepage": "https://github.com/mtdowling"
1472 }, 1847 },
1473 { 1848 {
1474 "name": "Tobias Nyholm", 1849 "name": "Tobias Nyholm",
1475 "email": "tobias.nyholm@gmail.com", 1850 "email": "tobias.nyholm@gmail.com",
1476 "homepage": "https://github.com/Nyholm" 1851 "homepage": "https://github.com/Nyholm"
1477 }, 1852 },
1478 { 1853 {
1479 "name": "Tobias Schultze", 1854 "name": "Tobias Schultze",
1480 "email": "webmaster@tubo-world.de", 1855 "email": "webmaster@tubo-world.de",
1481 "homepage": "https://github.com/Tobion" 1856 "homepage": "https://github.com/Tobion"
1482 } 1857 }
1483 ], 1858 ],
1484 "description": "Guzzle promises library", 1859 "description": "Guzzle promises library",
1485 "keywords": [ 1860 "keywords": [
1486 "promise" 1861 "promise"
1487 ], 1862 ],
1488 "support": { 1863 "support": {
1489 "issues": "https://github.com/guzzle/promises/issues", 1864 "issues": "https://github.com/guzzle/promises/issues",
1490 "source": "https://github.com/guzzle/promises/tree/1.5.2" 1865 "source": "https://github.com/guzzle/promises/tree/1.5.2"
1491 }, 1866 },
1492 "funding": [ 1867 "funding": [
1493 { 1868 {
1494 "url": "https://github.com/GrahamCampbell", 1869 "url": "https://github.com/GrahamCampbell",
1495 "type": "github" 1870 "type": "github"
1496 }, 1871 },
1497 { 1872 {
1498 "url": "https://github.com/Nyholm", 1873 "url": "https://github.com/Nyholm",
1499 "type": "github" 1874 "type": "github"
1500 }, 1875 },
1501 { 1876 {
1502 "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", 1877 "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
1503 "type": "tidelift" 1878 "type": "tidelift"
1504 } 1879 }
1505 ], 1880 ],
1506 "time": "2022-08-28T14:55:35+00:00" 1881 "time": "2022-08-28T14:55:35+00:00"
1507 }, 1882 },
1508 { 1883 {
1509 "name": "guzzlehttp/psr7", 1884 "name": "guzzlehttp/psr7",
1510 "version": "2.5.0", 1885 "version": "2.5.0",
1511 "source": { 1886 "source": {
1512 "type": "git", 1887 "type": "git",
1513 "url": "https://github.com/guzzle/psr7.git", 1888 "url": "https://github.com/guzzle/psr7.git",
1514 "reference": "b635f279edd83fc275f822a1188157ffea568ff6" 1889 "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
1515 }, 1890 },
1516 "dist": { 1891 "dist": {
1517 "type": "zip", 1892 "type": "zip",
1518 "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6", 1893 "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
1519 "reference": "b635f279edd83fc275f822a1188157ffea568ff6", 1894 "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
1520 "shasum": "" 1895 "shasum": ""
1521 }, 1896 },
1522 "require": { 1897 "require": {
1523 "php": "^7.2.5 || ^8.0", 1898 "php": "^7.2.5 || ^8.0",
1524 "psr/http-factory": "^1.0", 1899 "psr/http-factory": "^1.0",
1525 "psr/http-message": "^1.1 || ^2.0", 1900 "psr/http-message": "^1.1 || ^2.0",
1526 "ralouphie/getallheaders": "^3.0" 1901 "ralouphie/getallheaders": "^3.0"
1527 }, 1902 },
1528 "provide": { 1903 "provide": {
1529 "psr/http-factory-implementation": "1.0", 1904 "psr/http-factory-implementation": "1.0",
1530 "psr/http-message-implementation": "1.0" 1905 "psr/http-message-implementation": "1.0"
1531 }, 1906 },
1532 "require-dev": { 1907 "require-dev": {
1533 "bamarni/composer-bin-plugin": "^1.8.1", 1908 "bamarni/composer-bin-plugin": "^1.8.1",
1534 "http-interop/http-factory-tests": "^0.9", 1909 "http-interop/http-factory-tests": "^0.9",
1535 "phpunit/phpunit": "^8.5.29 || ^9.5.23" 1910 "phpunit/phpunit": "^8.5.29 || ^9.5.23"
1536 }, 1911 },
1537 "suggest": { 1912 "suggest": {
1538 "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" 1913 "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
1539 }, 1914 },
1540 "type": "library", 1915 "type": "library",
1541 "extra": { 1916 "extra": {
1542 "bamarni-bin": { 1917 "bamarni-bin": {
1543 "bin-links": true, 1918 "bin-links": true,
1544 "forward-command": false 1919 "forward-command": false
1545 } 1920 }
1546 }, 1921 },
1547 "autoload": { 1922 "autoload": {
1548 "psr-4": { 1923 "psr-4": {
1549 "GuzzleHttp\\Psr7\\": "src/" 1924 "GuzzleHttp\\Psr7\\": "src/"
1550 } 1925 }
1551 }, 1926 },
1552 "notification-url": "https://packagist.org/downloads/", 1927 "notification-url": "https://packagist.org/downloads/",
1553 "license": [ 1928 "license": [
1554 "MIT" 1929 "MIT"
1555 ], 1930 ],
1556 "authors": [ 1931 "authors": [
1557 { 1932 {
1558 "name": "Graham Campbell", 1933 "name": "Graham Campbell",
1559 "email": "hello@gjcampbell.co.uk", 1934 "email": "hello@gjcampbell.co.uk",
1560 "homepage": "https://github.com/GrahamCampbell" 1935 "homepage": "https://github.com/GrahamCampbell"
1561 }, 1936 },
1562 { 1937 {
1563 "name": "Michael Dowling", 1938 "name": "Michael Dowling",
1564 "email": "mtdowling@gmail.com", 1939 "email": "mtdowling@gmail.com",
1565 "homepage": "https://github.com/mtdowling" 1940 "homepage": "https://github.com/mtdowling"
1566 }, 1941 },
1567 { 1942 {
1568 "name": "George Mponos", 1943 "name": "George Mponos",
1569 "email": "gmponos@gmail.com", 1944 "email": "gmponos@gmail.com",
1570 "homepage": "https://github.com/gmponos" 1945 "homepage": "https://github.com/gmponos"
1571 }, 1946 },
1572 { 1947 {
1573 "name": "Tobias Nyholm", 1948 "name": "Tobias Nyholm",
1574 "email": "tobias.nyholm@gmail.com", 1949 "email": "tobias.nyholm@gmail.com",
1575 "homepage": "https://github.com/Nyholm" 1950 "homepage": "https://github.com/Nyholm"
1576 }, 1951 },
1577 { 1952 {
1578 "name": "Márk Sági-Kazár", 1953 "name": "Márk Sági-Kazár",
1579 "email": "mark.sagikazar@gmail.com", 1954 "email": "mark.sagikazar@gmail.com",
1580 "homepage": "https://github.com/sagikazarmark" 1955 "homepage": "https://github.com/sagikazarmark"
1581 }, 1956 },
1582 { 1957 {
1583 "name": "Tobias Schultze", 1958 "name": "Tobias Schultze",
1584 "email": "webmaster@tubo-world.de", 1959 "email": "webmaster@tubo-world.de",
1585 "homepage": "https://github.com/Tobion" 1960 "homepage": "https://github.com/Tobion"
1586 }, 1961 },
1587 { 1962 {
1588 "name": "Márk Sági-Kazár", 1963 "name": "Márk Sági-Kazár",
1589 "email": "mark.sagikazar@gmail.com", 1964 "email": "mark.sagikazar@gmail.com",
1590 "homepage": "https://sagikazarmark.hu" 1965 "homepage": "https://sagikazarmark.hu"
1591 } 1966 }
1592 ], 1967 ],
1593 "description": "PSR-7 message implementation that also provides common utility methods", 1968 "description": "PSR-7 message implementation that also provides common utility methods",
1594 "keywords": [ 1969 "keywords": [
1595 "http", 1970 "http",
1596 "message", 1971 "message",
1597 "psr-7", 1972 "psr-7",
1598 "request", 1973 "request",
1599 "response", 1974 "response",
1600 "stream", 1975 "stream",
1601 "uri", 1976 "uri",
1602 "url" 1977 "url"
1603 ], 1978 ],
1604 "support": { 1979 "support": {
1605 "issues": "https://github.com/guzzle/psr7/issues", 1980 "issues": "https://github.com/guzzle/psr7/issues",
1606 "source": "https://github.com/guzzle/psr7/tree/2.5.0" 1981 "source": "https://github.com/guzzle/psr7/tree/2.5.0"
1607 }, 1982 },
1608 "funding": [ 1983 "funding": [
1609 { 1984 {
1610 "url": "https://github.com/GrahamCampbell", 1985 "url": "https://github.com/GrahamCampbell",
1611 "type": "github" 1986 "type": "github"
1612 }, 1987 },
1613 { 1988 {
1614 "url": "https://github.com/Nyholm", 1989 "url": "https://github.com/Nyholm",
1615 "type": "github" 1990 "type": "github"
1616 }, 1991 },
1617 { 1992 {
1618 "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", 1993 "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
1619 "type": "tidelift" 1994 "type": "tidelift"
1620 } 1995 }
1621 ], 1996 ],
1622 "time": "2023-04-17T16:11:26+00:00" 1997 "time": "2023-04-17T16:11:26+00:00"
1623 }, 1998 },
1624 { 1999 {
1625 "name": "guzzlehttp/uri-template", 2000 "name": "guzzlehttp/uri-template",
1626 "version": "v1.0.1", 2001 "version": "v1.0.1",
1627 "source": { 2002 "source": {
1628 "type": "git", 2003 "type": "git",
1629 "url": "https://github.com/guzzle/uri-template.git", 2004 "url": "https://github.com/guzzle/uri-template.git",
1630 "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2" 2005 "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
1631 }, 2006 },
1632 "dist": { 2007 "dist": {
1633 "type": "zip", 2008 "type": "zip",
1634 "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2", 2009 "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
1635 "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2", 2010 "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
1636 "shasum": "" 2011 "shasum": ""
1637 }, 2012 },
1638 "require": { 2013 "require": {
1639 "php": "^7.2.5 || ^8.0", 2014 "php": "^7.2.5 || ^8.0",
1640 "symfony/polyfill-php80": "^1.17" 2015 "symfony/polyfill-php80": "^1.17"
1641 }, 2016 },
1642 "require-dev": { 2017 "require-dev": {
1643 "phpunit/phpunit": "^8.5.19 || ^9.5.8", 2018 "phpunit/phpunit": "^8.5.19 || ^9.5.8",
1644 "uri-template/tests": "1.0.0" 2019 "uri-template/tests": "1.0.0"
1645 }, 2020 },
1646 "type": "library", 2021 "type": "library",
1647 "extra": { 2022 "extra": {
1648 "branch-alias": { 2023 "branch-alias": {
1649 "dev-master": "1.0-dev" 2024 "dev-master": "1.0-dev"
1650 } 2025 }
1651 }, 2026 },
1652 "autoload": { 2027 "autoload": {
1653 "psr-4": { 2028 "psr-4": {
1654 "GuzzleHttp\\UriTemplate\\": "src" 2029 "GuzzleHttp\\UriTemplate\\": "src"
1655 } 2030 }
1656 }, 2031 },
1657 "notification-url": "https://packagist.org/downloads/", 2032 "notification-url": "https://packagist.org/downloads/",
1658 "license": [ 2033 "license": [
1659 "MIT" 2034 "MIT"
1660 ], 2035 ],
1661 "authors": [ 2036 "authors": [
1662 { 2037 {
1663 "name": "Graham Campbell", 2038 "name": "Graham Campbell",
1664 "email": "hello@gjcampbell.co.uk", 2039 "email": "hello@gjcampbell.co.uk",
1665 "homepage": "https://github.com/GrahamCampbell" 2040 "homepage": "https://github.com/GrahamCampbell"
1666 }, 2041 },
1667 { 2042 {
1668 "name": "Michael Dowling", 2043 "name": "Michael Dowling",
1669 "email": "mtdowling@gmail.com", 2044 "email": "mtdowling@gmail.com",
1670 "homepage": "https://github.com/mtdowling" 2045 "homepage": "https://github.com/mtdowling"
1671 }, 2046 },
1672 { 2047 {
1673 "name": "George Mponos", 2048 "name": "George Mponos",
1674 "email": "gmponos@gmail.com", 2049 "email": "gmponos@gmail.com",
1675 "homepage": "https://github.com/gmponos" 2050 "homepage": "https://github.com/gmponos"
1676 }, 2051 },
1677 { 2052 {
1678 "name": "Tobias Nyholm", 2053 "name": "Tobias Nyholm",
1679 "email": "tobias.nyholm@gmail.com", 2054 "email": "tobias.nyholm@gmail.com",
1680 "homepage": "https://github.com/Nyholm" 2055 "homepage": "https://github.com/Nyholm"
1681 } 2056 }
1682 ], 2057 ],
1683 "description": "A polyfill class for uri_template of PHP", 2058 "description": "A polyfill class for uri_template of PHP",
1684 "keywords": [ 2059 "keywords": [
1685 "guzzlehttp", 2060 "guzzlehttp",
1686 "uri-template" 2061 "uri-template"
1687 ], 2062 ],
1688 "support": { 2063 "support": {
1689 "issues": "https://github.com/guzzle/uri-template/issues", 2064 "issues": "https://github.com/guzzle/uri-template/issues",
1690 "source": "https://github.com/guzzle/uri-template/tree/v1.0.1" 2065 "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
1691 }, 2066 },
1692 "funding": [ 2067 "funding": [
1693 { 2068 {
1694 "url": "https://github.com/GrahamCampbell", 2069 "url": "https://github.com/GrahamCampbell",
1695 "type": "github" 2070 "type": "github"
1696 }, 2071 },
1697 { 2072 {
1698 "url": "https://github.com/Nyholm", 2073 "url": "https://github.com/Nyholm",
1699 "type": "github" 2074 "type": "github"
1700 }, 2075 },
1701 { 2076 {
1702 "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", 2077 "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
1703 "type": "tidelift" 2078 "type": "tidelift"
1704 } 2079 }
1705 ], 2080 ],
1706 "time": "2021-10-07T12:57:01+00:00" 2081 "time": "2021-10-07T12:57:01+00:00"
1707 }, 2082 },
1708 { 2083 {
1709 "name": "laravel-lang/lang", 2084 "name": "laravel-lang/lang",
1710 "version": "12.17.1", 2085 "version": "12.17.1",
1711 "source": { 2086 "source": {
1712 "type": "git", 2087 "type": "git",
1713 "url": "https://github.com/Laravel-Lang/lang.git", 2088 "url": "https://github.com/Laravel-Lang/lang.git",
1714 "reference": "b07184103fb64131d514667b8fd1d74c71105409" 2089 "reference": "b07184103fb64131d514667b8fd1d74c71105409"
1715 }, 2090 },
1716 "dist": { 2091 "dist": {
1717 "type": "zip", 2092 "type": "zip",
1718 "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/b07184103fb64131d514667b8fd1d74c71105409", 2093 "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/b07184103fb64131d514667b8fd1d74c71105409",
1719 "reference": "b07184103fb64131d514667b8fd1d74c71105409", 2094 "reference": "b07184103fb64131d514667b8fd1d74c71105409",
1720 "shasum": "" 2095 "shasum": ""
1721 }, 2096 },
1722 "require": { 2097 "require": {
1723 "ext-json": "*" 2098 "ext-json": "*"
1724 }, 2099 },
1725 "conflict": { 2100 "conflict": {
1726 "laravel-lang/publisher": "<14.0" 2101 "laravel-lang/publisher": "<14.0"
1727 }, 2102 },
1728 "require-dev": { 2103 "require-dev": {
1729 "laravel-lang/publisher": "^14.0", 2104 "laravel-lang/publisher": "^14.0",
1730 "laravel-lang/status-generator": "^1.13", 2105 "laravel-lang/status-generator": "^1.13",
1731 "php": "^8.1", 2106 "php": "^8.1",
1732 "phpunit/phpunit": "^9.6", 2107 "phpunit/phpunit": "^9.6",
1733 "symfony/var-dumper": "^5.0 || ^6.0" 2108 "symfony/var-dumper": "^5.0 || ^6.0"
1734 }, 2109 },
1735 "suggest": { 2110 "suggest": {
1736 "arcanedev/laravel-lang": "Translations manager and checker for Laravel", 2111 "arcanedev/laravel-lang": "Translations manager and checker for Laravel",
1737 "laravel-lang/attributes": "Translations for field names of the forms", 2112 "laravel-lang/attributes": "Translations for field names of the forms",
1738 "laravel-lang/http-statuses": "Translations for HTTP statuses", 2113 "laravel-lang/http-statuses": "Translations for HTTP statuses",
1739 "laravel-lang/publisher": "Easy installation and update of translation files for your project" 2114 "laravel-lang/publisher": "Easy installation and update of translation files for your project"
1740 }, 2115 },
1741 "type": "library", 2116 "type": "library",
1742 "extra": { 2117 "extra": {
1743 "laravel": { 2118 "laravel": {
1744 "providers": [ 2119 "providers": [
1745 "LaravelLang\\Lang\\ServiceProvider" 2120 "LaravelLang\\Lang\\ServiceProvider"
1746 ] 2121 ]
1747 } 2122 }
1748 }, 2123 },
1749 "autoload": { 2124 "autoload": {
1750 "psr-4": { 2125 "psr-4": {
1751 "LaravelLang\\Lang\\": "src" 2126 "LaravelLang\\Lang\\": "src"
1752 } 2127 }
1753 }, 2128 },
1754 "notification-url": "https://packagist.org/downloads/", 2129 "notification-url": "https://packagist.org/downloads/",
1755 "license": [ 2130 "license": [
1756 "MIT" 2131 "MIT"
1757 ], 2132 ],
1758 "authors": [ 2133 "authors": [
1759 { 2134 {
1760 "name": "Laravel-Lang Team", 2135 "name": "Laravel-Lang Team",
1761 "homepage": "https://github.com/Laravel-Lang" 2136 "homepage": "https://github.com/Laravel-Lang"
1762 } 2137 }
1763 ], 2138 ],
1764 "description": "Languages for Laravel", 2139 "description": "Languages for Laravel",
1765 "keywords": [ 2140 "keywords": [
1766 "lang", 2141 "lang",
1767 "languages", 2142 "languages",
1768 "laravel", 2143 "laravel",
1769 "lpm" 2144 "lpm"
1770 ], 2145 ],
1771 "support": { 2146 "support": {
1772 "issues": "https://github.com/Laravel-Lang/lang/issues", 2147 "issues": "https://github.com/Laravel-Lang/lang/issues",
1773 "source": "https://github.com/Laravel-Lang/lang" 2148 "source": "https://github.com/Laravel-Lang/lang"
1774 }, 2149 },
1775 "funding": [ 2150 "funding": [
1776 { 2151 {
1777 "url": "https://opencollective.com/laravel-lang", 2152 "url": "https://opencollective.com/laravel-lang",
1778 "type": "open_collective" 2153 "type": "open_collective"
1779 } 2154 }
1780 ], 2155 ],
1781 "time": "2023-02-19T13:40:37+00:00" 2156 "time": "2023-02-19T13:40:37+00:00"
1782 }, 2157 },
1783 { 2158 {
1784 "name": "laravel/framework", 2159 "name": "laravel/framework",
1785 "version": "v9.52.7", 2160 "version": "v9.52.7",
1786 "source": { 2161 "source": {
1787 "type": "git", 2162 "type": "git",
1788 "url": "https://github.com/laravel/framework.git", 2163 "url": "https://github.com/laravel/framework.git",
1789 "reference": "675ea868fe36b18c8303e954aac540e6b1caa677" 2164 "reference": "675ea868fe36b18c8303e954aac540e6b1caa677"
1790 }, 2165 },
1791 "dist": { 2166 "dist": {
1792 "type": "zip", 2167 "type": "zip",
1793 "url": "https://api.github.com/repos/laravel/framework/zipball/675ea868fe36b18c8303e954aac540e6b1caa677", 2168 "url": "https://api.github.com/repos/laravel/framework/zipball/675ea868fe36b18c8303e954aac540e6b1caa677",
1794 "reference": "675ea868fe36b18c8303e954aac540e6b1caa677", 2169 "reference": "675ea868fe36b18c8303e954aac540e6b1caa677",
1795 "shasum": "" 2170 "shasum": ""
1796 }, 2171 },
1797 "require": { 2172 "require": {
1798 "brick/math": "^0.9.3|^0.10.2|^0.11", 2173 "brick/math": "^0.9.3|^0.10.2|^0.11",
1799 "doctrine/inflector": "^2.0.5", 2174 "doctrine/inflector": "^2.0.5",
1800 "dragonmantank/cron-expression": "^3.3.2", 2175 "dragonmantank/cron-expression": "^3.3.2",
1801 "egulias/email-validator": "^3.2.1|^4.0", 2176 "egulias/email-validator": "^3.2.1|^4.0",
1802 "ext-ctype": "*", 2177 "ext-ctype": "*",
1803 "ext-filter": "*", 2178 "ext-filter": "*",
1804 "ext-hash": "*", 2179 "ext-hash": "*",
1805 "ext-mbstring": "*", 2180 "ext-mbstring": "*",
1806 "ext-openssl": "*", 2181 "ext-openssl": "*",
1807 "ext-session": "*", 2182 "ext-session": "*",
1808 "ext-tokenizer": "*", 2183 "ext-tokenizer": "*",
1809 "fruitcake/php-cors": "^1.2", 2184 "fruitcake/php-cors": "^1.2",
1810 "guzzlehttp/uri-template": "^1.0", 2185 "guzzlehttp/uri-template": "^1.0",
1811 "laravel/serializable-closure": "^1.2.2", 2186 "laravel/serializable-closure": "^1.2.2",
1812 "league/commonmark": "^2.2.1", 2187 "league/commonmark": "^2.2.1",
1813 "league/flysystem": "^3.8.0", 2188 "league/flysystem": "^3.8.0",
1814 "monolog/monolog": "^2.0", 2189 "monolog/monolog": "^2.0",
1815 "nesbot/carbon": "^2.62.1", 2190 "nesbot/carbon": "^2.62.1",
1816 "nunomaduro/termwind": "^1.13", 2191 "nunomaduro/termwind": "^1.13",
1817 "php": "^8.0.2", 2192 "php": "^8.0.2",
1818 "psr/container": "^1.1.1|^2.0.1", 2193 "psr/container": "^1.1.1|^2.0.1",
1819 "psr/log": "^1.0|^2.0|^3.0", 2194 "psr/log": "^1.0|^2.0|^3.0",
1820 "psr/simple-cache": "^1.0|^2.0|^3.0", 2195 "psr/simple-cache": "^1.0|^2.0|^3.0",
1821 "ramsey/uuid": "^4.7", 2196 "ramsey/uuid": "^4.7",
1822 "symfony/console": "^6.0.9", 2197 "symfony/console": "^6.0.9",
1823 "symfony/error-handler": "^6.0", 2198 "symfony/error-handler": "^6.0",
1824 "symfony/finder": "^6.0", 2199 "symfony/finder": "^6.0",
1825 "symfony/http-foundation": "^6.0", 2200 "symfony/http-foundation": "^6.0",
1826 "symfony/http-kernel": "^6.0", 2201 "symfony/http-kernel": "^6.0",
1827 "symfony/mailer": "^6.0", 2202 "symfony/mailer": "^6.0",
1828 "symfony/mime": "^6.0", 2203 "symfony/mime": "^6.0",
1829 "symfony/process": "^6.0", 2204 "symfony/process": "^6.0",
1830 "symfony/routing": "^6.0", 2205 "symfony/routing": "^6.0",
1831 "symfony/uid": "^6.0", 2206 "symfony/uid": "^6.0",
1832 "symfony/var-dumper": "^6.0", 2207 "symfony/var-dumper": "^6.0",
1833 "tijsverkoyen/css-to-inline-styles": "^2.2.5", 2208 "tijsverkoyen/css-to-inline-styles": "^2.2.5",
1834 "vlucas/phpdotenv": "^5.4.1", 2209 "vlucas/phpdotenv": "^5.4.1",
1835 "voku/portable-ascii": "^2.0" 2210 "voku/portable-ascii": "^2.0"
1836 }, 2211 },
1837 "conflict": { 2212 "conflict": {
1838 "tightenco/collect": "<5.5.33" 2213 "tightenco/collect": "<5.5.33"
1839 }, 2214 },
1840 "provide": { 2215 "provide": {
1841 "psr/container-implementation": "1.1|2.0", 2216 "psr/container-implementation": "1.1|2.0",
1842 "psr/simple-cache-implementation": "1.0|2.0|3.0" 2217 "psr/simple-cache-implementation": "1.0|2.0|3.0"
1843 }, 2218 },
1844 "replace": { 2219 "replace": {
1845 "illuminate/auth": "self.version", 2220 "illuminate/auth": "self.version",
1846 "illuminate/broadcasting": "self.version", 2221 "illuminate/broadcasting": "self.version",
1847 "illuminate/bus": "self.version", 2222 "illuminate/bus": "self.version",
1848 "illuminate/cache": "self.version", 2223 "illuminate/cache": "self.version",
1849 "illuminate/collections": "self.version", 2224 "illuminate/collections": "self.version",
1850 "illuminate/conditionable": "self.version", 2225 "illuminate/conditionable": "self.version",
1851 "illuminate/config": "self.version", 2226 "illuminate/config": "self.version",
1852 "illuminate/console": "self.version", 2227 "illuminate/console": "self.version",
1853 "illuminate/container": "self.version", 2228 "illuminate/container": "self.version",
1854 "illuminate/contracts": "self.version", 2229 "illuminate/contracts": "self.version",
1855 "illuminate/cookie": "self.version", 2230 "illuminate/cookie": "self.version",
1856 "illuminate/database": "self.version", 2231 "illuminate/database": "self.version",
1857 "illuminate/encryption": "self.version", 2232 "illuminate/encryption": "self.version",
1858 "illuminate/events": "self.version", 2233 "illuminate/events": "self.version",
1859 "illuminate/filesystem": "self.version", 2234 "illuminate/filesystem": "self.version",
1860 "illuminate/hashing": "self.version", 2235 "illuminate/hashing": "self.version",
1861 "illuminate/http": "self.version", 2236 "illuminate/http": "self.version",
1862 "illuminate/log": "self.version", 2237 "illuminate/log": "self.version",
1863 "illuminate/macroable": "self.version", 2238 "illuminate/macroable": "self.version",
1864 "illuminate/mail": "self.version", 2239 "illuminate/mail": "self.version",
1865 "illuminate/notifications": "self.version", 2240 "illuminate/notifications": "self.version",
1866 "illuminate/pagination": "self.version", 2241 "illuminate/pagination": "self.version",
1867 "illuminate/pipeline": "self.version", 2242 "illuminate/pipeline": "self.version",
1868 "illuminate/queue": "self.version", 2243 "illuminate/queue": "self.version",
1869 "illuminate/redis": "self.version", 2244 "illuminate/redis": "self.version",
1870 "illuminate/routing": "self.version", 2245 "illuminate/routing": "self.version",
1871 "illuminate/session": "self.version", 2246 "illuminate/session": "self.version",
1872 "illuminate/support": "self.version", 2247 "illuminate/support": "self.version",
1873 "illuminate/testing": "self.version", 2248 "illuminate/testing": "self.version",
1874 "illuminate/translation": "self.version", 2249 "illuminate/translation": "self.version",
1875 "illuminate/validation": "self.version", 2250 "illuminate/validation": "self.version",
1876 "illuminate/view": "self.version" 2251 "illuminate/view": "self.version"
1877 }, 2252 },
1878 "require-dev": { 2253 "require-dev": {
1879 "ably/ably-php": "^1.0", 2254 "ably/ably-php": "^1.0",
1880 "aws/aws-sdk-php": "^3.235.5", 2255 "aws/aws-sdk-php": "^3.235.5",
1881 "doctrine/dbal": "^2.13.3|^3.1.4", 2256 "doctrine/dbal": "^2.13.3|^3.1.4",
1882 "ext-gmp": "*", 2257 "ext-gmp": "*",
1883 "fakerphp/faker": "^1.21", 2258 "fakerphp/faker": "^1.21",
1884 "guzzlehttp/guzzle": "^7.5", 2259 "guzzlehttp/guzzle": "^7.5",
1885 "league/flysystem-aws-s3-v3": "^3.0", 2260 "league/flysystem-aws-s3-v3": "^3.0",
1886 "league/flysystem-ftp": "^3.0", 2261 "league/flysystem-ftp": "^3.0",
1887 "league/flysystem-path-prefixing": "^3.3", 2262 "league/flysystem-path-prefixing": "^3.3",
1888 "league/flysystem-read-only": "^3.3", 2263 "league/flysystem-read-only": "^3.3",
1889 "league/flysystem-sftp-v3": "^3.0", 2264 "league/flysystem-sftp-v3": "^3.0",
1890 "mockery/mockery": "^1.5.1", 2265 "mockery/mockery": "^1.5.1",
1891 "orchestra/testbench-core": "^7.24", 2266 "orchestra/testbench-core": "^7.24",
1892 "pda/pheanstalk": "^4.0", 2267 "pda/pheanstalk": "^4.0",
1893 "phpstan/phpdoc-parser": "^1.15", 2268 "phpstan/phpdoc-parser": "^1.15",
1894 "phpstan/phpstan": "^1.4.7", 2269 "phpstan/phpstan": "^1.4.7",
1895 "phpunit/phpunit": "^9.5.8", 2270 "phpunit/phpunit": "^9.5.8",
1896 "predis/predis": "^1.1.9|^2.0.2", 2271 "predis/predis": "^1.1.9|^2.0.2",
1897 "symfony/cache": "^6.0", 2272 "symfony/cache": "^6.0",
1898 "symfony/http-client": "^6.0" 2273 "symfony/http-client": "^6.0"
1899 }, 2274 },
1900 "suggest": { 2275 "suggest": {
1901 "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", 2276 "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
1902 "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", 2277 "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
1903 "brianium/paratest": "Required to run tests in parallel (^6.0).", 2278 "brianium/paratest": "Required to run tests in parallel (^6.0).",
1904 "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).", 2279 "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
1905 "ext-apcu": "Required to use the APC cache driver.", 2280 "ext-apcu": "Required to use the APC cache driver.",
1906 "ext-fileinfo": "Required to use the Filesystem class.", 2281 "ext-fileinfo": "Required to use the Filesystem class.",
1907 "ext-ftp": "Required to use the Flysystem FTP driver.", 2282 "ext-ftp": "Required to use the Flysystem FTP driver.",
1908 "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", 2283 "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
1909 "ext-memcached": "Required to use the memcache cache driver.", 2284 "ext-memcached": "Required to use the memcache cache driver.",
1910 "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", 2285 "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
1911 "ext-pdo": "Required to use all database features.", 2286 "ext-pdo": "Required to use all database features.",
1912 "ext-posix": "Required to use all features of the queue worker.", 2287 "ext-posix": "Required to use all features of the queue worker.",
1913 "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", 2288 "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
1914 "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", 2289 "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
1915 "filp/whoops": "Required for friendly error pages in development (^2.14.3).", 2290 "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
1916 "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).", 2291 "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
1917 "laravel/tinker": "Required to use the tinker console command (^2.0).", 2292 "laravel/tinker": "Required to use the tinker console command (^2.0).",
1918 "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", 2293 "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
1919 "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", 2294 "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
1920 "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", 2295 "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
1921 "league/flysystem-read-only": "Required to use read-only disks (^3.3)", 2296 "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
1922 "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", 2297 "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
1923 "mockery/mockery": "Required to use mocking (^1.5.1).", 2298 "mockery/mockery": "Required to use mocking (^1.5.1).",
1924 "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", 2299 "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
1925 "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", 2300 "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
1926 "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).", 2301 "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
1927 "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).", 2302 "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
1928 "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", 2303 "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
1929 "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", 2304 "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
1930 "symfony/cache": "Required to PSR-6 cache bridge (^6.0).", 2305 "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
1931 "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).", 2306 "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
1932 "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).", 2307 "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
1933 "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).", 2308 "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
1934 "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).", 2309 "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
1935 "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)." 2310 "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
1936 }, 2311 },
1937 "type": "library", 2312 "type": "library",
1938 "extra": { 2313 "extra": {
1939 "branch-alias": { 2314 "branch-alias": {
1940 "dev-master": "9.x-dev" 2315 "dev-master": "9.x-dev"
1941 } 2316 }
1942 }, 2317 },
1943 "autoload": { 2318 "autoload": {
1944 "files": [ 2319 "files": [
1945 "src/Illuminate/Collections/helpers.php", 2320 "src/Illuminate/Collections/helpers.php",
1946 "src/Illuminate/Events/functions.php", 2321 "src/Illuminate/Events/functions.php",
1947 "src/Illuminate/Foundation/helpers.php", 2322 "src/Illuminate/Foundation/helpers.php",
1948 "src/Illuminate/Support/helpers.php" 2323 "src/Illuminate/Support/helpers.php"
1949 ], 2324 ],
1950 "psr-4": { 2325 "psr-4": {
1951 "Illuminate\\": "src/Illuminate/", 2326 "Illuminate\\": "src/Illuminate/",
1952 "Illuminate\\Support\\": [ 2327 "Illuminate\\Support\\": [
1953 "src/Illuminate/Macroable/", 2328 "src/Illuminate/Macroable/",
1954 "src/Illuminate/Collections/", 2329 "src/Illuminate/Collections/",
1955 "src/Illuminate/Conditionable/" 2330 "src/Illuminate/Conditionable/"
1956 ] 2331 ]
1957 } 2332 }
1958 }, 2333 },
1959 "notification-url": "https://packagist.org/downloads/", 2334 "notification-url": "https://packagist.org/downloads/",
1960 "license": [ 2335 "license": [
1961 "MIT" 2336 "MIT"
1962 ], 2337 ],
1963 "authors": [ 2338 "authors": [
1964 { 2339 {
1965 "name": "Taylor Otwell", 2340 "name": "Taylor Otwell",
1966 "email": "taylor@laravel.com" 2341 "email": "taylor@laravel.com"
1967 } 2342 }
1968 ], 2343 ],
1969 "description": "The Laravel Framework.", 2344 "description": "The Laravel Framework.",
1970 "homepage": "https://laravel.com", 2345 "homepage": "https://laravel.com",
1971 "keywords": [ 2346 "keywords": [
1972 "framework", 2347 "framework",
1973 "laravel" 2348 "laravel"
1974 ], 2349 ],
1975 "support": { 2350 "support": {
1976 "issues": "https://github.com/laravel/framework/issues", 2351 "issues": "https://github.com/laravel/framework/issues",
1977 "source": "https://github.com/laravel/framework" 2352 "source": "https://github.com/laravel/framework"
1978 }, 2353 },
1979 "time": "2023-04-25T13:44:05+00:00" 2354 "time": "2023-04-25T13:44:05+00:00"
1980 }, 2355 },
1981 { 2356 {
1982 "name": "laravel/sanctum", 2357 "name": "laravel/sanctum",
1983 "version": "v3.2.5", 2358 "version": "v3.2.5",
1984 "source": { 2359 "source": {
1985 "type": "git", 2360 "type": "git",
1986 "url": "https://github.com/laravel/sanctum.git", 2361 "url": "https://github.com/laravel/sanctum.git",
1987 "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876" 2362 "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876"
1988 }, 2363 },
1989 "dist": { 2364 "dist": {
1990 "type": "zip", 2365 "type": "zip",
1991 "url": "https://api.github.com/repos/laravel/sanctum/zipball/8ebda85d59d3c414863a7f4d816ef8302faad876", 2366 "url": "https://api.github.com/repos/laravel/sanctum/zipball/8ebda85d59d3c414863a7f4d816ef8302faad876",
1992 "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876", 2367 "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876",
1993 "shasum": "" 2368 "shasum": ""
1994 }, 2369 },
1995 "require": { 2370 "require": {
1996 "ext-json": "*", 2371 "ext-json": "*",
1997 "illuminate/console": "^9.21|^10.0", 2372 "illuminate/console": "^9.21|^10.0",
1998 "illuminate/contracts": "^9.21|^10.0", 2373 "illuminate/contracts": "^9.21|^10.0",
1999 "illuminate/database": "^9.21|^10.0", 2374 "illuminate/database": "^9.21|^10.0",
2000 "illuminate/support": "^9.21|^10.0", 2375 "illuminate/support": "^9.21|^10.0",
2001 "php": "^8.0.2" 2376 "php": "^8.0.2"
2002 }, 2377 },
2003 "require-dev": { 2378 "require-dev": {
2004 "mockery/mockery": "^1.0", 2379 "mockery/mockery": "^1.0",
2005 "orchestra/testbench": "^7.0|^8.0", 2380 "orchestra/testbench": "^7.0|^8.0",
2006 "phpstan/phpstan": "^1.10", 2381 "phpstan/phpstan": "^1.10",
2007 "phpunit/phpunit": "^9.3" 2382 "phpunit/phpunit": "^9.3"
2008 }, 2383 },
2009 "type": "library", 2384 "type": "library",
2010 "extra": { 2385 "extra": {
2011 "branch-alias": { 2386 "branch-alias": {
2012 "dev-master": "3.x-dev" 2387 "dev-master": "3.x-dev"
2013 }, 2388 },
2014 "laravel": { 2389 "laravel": {
2015 "providers": [ 2390 "providers": [
2016 "Laravel\\Sanctum\\SanctumServiceProvider" 2391 "Laravel\\Sanctum\\SanctumServiceProvider"
2017 ] 2392 ]
2018 } 2393 }
2019 }, 2394 },
2020 "autoload": { 2395 "autoload": {
2021 "psr-4": { 2396 "psr-4": {
2022 "Laravel\\Sanctum\\": "src/" 2397 "Laravel\\Sanctum\\": "src/"
2023 } 2398 }
2024 }, 2399 },
2025 "notification-url": "https://packagist.org/downloads/", 2400 "notification-url": "https://packagist.org/downloads/",
2026 "license": [ 2401 "license": [
2027 "MIT" 2402 "MIT"
2028 ], 2403 ],
2029 "authors": [ 2404 "authors": [
2030 { 2405 {
2031 "name": "Taylor Otwell", 2406 "name": "Taylor Otwell",
2032 "email": "taylor@laravel.com" 2407 "email": "taylor@laravel.com"
2033 } 2408 }
2034 ], 2409 ],
2035 "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.", 2410 "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
2036 "keywords": [ 2411 "keywords": [
2037 "auth", 2412 "auth",
2038 "laravel", 2413 "laravel",
2039 "sanctum" 2414 "sanctum"
2040 ], 2415 ],
2041 "support": { 2416 "support": {
2042 "issues": "https://github.com/laravel/sanctum/issues", 2417 "issues": "https://github.com/laravel/sanctum/issues",
2043 "source": "https://github.com/laravel/sanctum" 2418 "source": "https://github.com/laravel/sanctum"
2044 }, 2419 },
2045 "time": "2023-05-01T19:39:51+00:00" 2420 "time": "2023-05-01T19:39:51+00:00"
2046 }, 2421 },
2047 { 2422 {
2048 "name": "laravel/serializable-closure", 2423 "name": "laravel/serializable-closure",
2049 "version": "v1.3.0", 2424 "version": "v1.3.0",
2050 "source": { 2425 "source": {
2051 "type": "git", 2426 "type": "git",
2052 "url": "https://github.com/laravel/serializable-closure.git", 2427 "url": "https://github.com/laravel/serializable-closure.git",
2053 "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37" 2428 "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
2054 }, 2429 },
2055 "dist": { 2430 "dist": {
2056 "type": "zip", 2431 "type": "zip",
2057 "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", 2432 "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
2058 "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", 2433 "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
2059 "shasum": "" 2434 "shasum": ""
2060 }, 2435 },
2061 "require": { 2436 "require": {
2062 "php": "^7.3|^8.0" 2437 "php": "^7.3|^8.0"
2063 }, 2438 },
2064 "require-dev": { 2439 "require-dev": {
2065 "nesbot/carbon": "^2.61", 2440 "nesbot/carbon": "^2.61",
2066 "pestphp/pest": "^1.21.3", 2441 "pestphp/pest": "^1.21.3",
2067 "phpstan/phpstan": "^1.8.2", 2442 "phpstan/phpstan": "^1.8.2",
2068 "symfony/var-dumper": "^5.4.11" 2443 "symfony/var-dumper": "^5.4.11"
2069 }, 2444 },
2070 "type": "library", 2445 "type": "library",
2071 "extra": { 2446 "extra": {
2072 "branch-alias": { 2447 "branch-alias": {
2073 "dev-master": "1.x-dev" 2448 "dev-master": "1.x-dev"
2074 } 2449 }
2075 }, 2450 },
2076 "autoload": { 2451 "autoload": {
2077 "psr-4": { 2452 "psr-4": {
2078 "Laravel\\SerializableClosure\\": "src/" 2453 "Laravel\\SerializableClosure\\": "src/"
2079 } 2454 }
2080 }, 2455 },
2081 "notification-url": "https://packagist.org/downloads/", 2456 "notification-url": "https://packagist.org/downloads/",
2082 "license": [ 2457 "license": [
2083 "MIT" 2458 "MIT"
2084 ], 2459 ],
2085 "authors": [ 2460 "authors": [
2086 { 2461 {
2087 "name": "Taylor Otwell", 2462 "name": "Taylor Otwell",
2088 "email": "taylor@laravel.com" 2463 "email": "taylor@laravel.com"
2089 }, 2464 },
2090 { 2465 {
2091 "name": "Nuno Maduro", 2466 "name": "Nuno Maduro",
2092 "email": "nuno@laravel.com" 2467 "email": "nuno@laravel.com"
2093 } 2468 }
2094 ], 2469 ],
2095 "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", 2470 "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
2096 "keywords": [ 2471 "keywords": [
2097 "closure", 2472 "closure",
2098 "laravel", 2473 "laravel",
2099 "serializable" 2474 "serializable"
2100 ], 2475 ],
2101 "support": { 2476 "support": {
2102 "issues": "https://github.com/laravel/serializable-closure/issues", 2477 "issues": "https://github.com/laravel/serializable-closure/issues",
2103 "source": "https://github.com/laravel/serializable-closure" 2478 "source": "https://github.com/laravel/serializable-closure"
2104 }, 2479 },
2105 "time": "2023-01-30T18:31:20+00:00" 2480 "time": "2023-01-30T18:31:20+00:00"
2106 }, 2481 },
2107 { 2482 {
2108 "name": "laravel/tinker", 2483 "name": "laravel/tinker",
2109 "version": "v2.8.1", 2484 "version": "v2.8.1",
2110 "source": { 2485 "source": {
2111 "type": "git", 2486 "type": "git",
2112 "url": "https://github.com/laravel/tinker.git", 2487 "url": "https://github.com/laravel/tinker.git",
2113 "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10" 2488 "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
2114 }, 2489 },
2115 "dist": { 2490 "dist": {
2116 "type": "zip", 2491 "type": "zip",
2117 "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", 2492 "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
2118 "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", 2493 "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
2119 "shasum": "" 2494 "shasum": ""
2120 }, 2495 },
2121 "require": { 2496 "require": {
2122 "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", 2497 "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
2123 "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", 2498 "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
2124 "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", 2499 "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
2125 "php": "^7.2.5|^8.0", 2500 "php": "^7.2.5|^8.0",
2126 "psy/psysh": "^0.10.4|^0.11.1", 2501 "psy/psysh": "^0.10.4|^0.11.1",
2127 "symfony/var-dumper": "^4.3.4|^5.0|^6.0" 2502 "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
2128 }, 2503 },
2129 "require-dev": { 2504 "require-dev": {
2130 "mockery/mockery": "~1.3.3|^1.4.2", 2505 "mockery/mockery": "~1.3.3|^1.4.2",
2131 "phpunit/phpunit": "^8.5.8|^9.3.3" 2506 "phpunit/phpunit": "^8.5.8|^9.3.3"
2132 }, 2507 },
2133 "suggest": { 2508 "suggest": {
2134 "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)." 2509 "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
2135 }, 2510 },
2136 "type": "library", 2511 "type": "library",
2137 "extra": { 2512 "extra": {
2138 "branch-alias": { 2513 "branch-alias": {
2139 "dev-master": "2.x-dev" 2514 "dev-master": "2.x-dev"
2140 }, 2515 },
2141 "laravel": { 2516 "laravel": {
2142 "providers": [ 2517 "providers": [
2143 "Laravel\\Tinker\\TinkerServiceProvider" 2518 "Laravel\\Tinker\\TinkerServiceProvider"
2144 ] 2519 ]
2145 } 2520 }
2146 }, 2521 },
2147 "autoload": { 2522 "autoload": {
2148 "psr-4": { 2523 "psr-4": {
2149 "Laravel\\Tinker\\": "src/" 2524 "Laravel\\Tinker\\": "src/"
2150 } 2525 }
2151 }, 2526 },
2152 "notification-url": "https://packagist.org/downloads/", 2527 "notification-url": "https://packagist.org/downloads/",
2153 "license": [ 2528 "license": [
2154 "MIT" 2529 "MIT"
2155 ], 2530 ],
2156 "authors": [ 2531 "authors": [
2157 { 2532 {
2158 "name": "Taylor Otwell", 2533 "name": "Taylor Otwell",
2159 "email": "taylor@laravel.com" 2534 "email": "taylor@laravel.com"
2160 } 2535 }
2161 ], 2536 ],
2162 "description": "Powerful REPL for the Laravel framework.", 2537 "description": "Powerful REPL for the Laravel framework.",
2163 "keywords": [ 2538 "keywords": [
2164 "REPL", 2539 "REPL",
2165 "Tinker", 2540 "Tinker",
2166 "laravel", 2541 "laravel",
2167 "psysh" 2542 "psysh"
2168 ], 2543 ],
2169 "support": { 2544 "support": {
2170 "issues": "https://github.com/laravel/tinker/issues", 2545 "issues": "https://github.com/laravel/tinker/issues",
2171 "source": "https://github.com/laravel/tinker/tree/v2.8.1" 2546 "source": "https://github.com/laravel/tinker/tree/v2.8.1"
2172 }, 2547 },
2173 "time": "2023-02-15T16:40:09+00:00" 2548 "time": "2023-02-15T16:40:09+00:00"
2174 }, 2549 },
2175 { 2550 {
2176 "name": "laravel/ui", 2551 "name": "laravel/ui",
2177 "version": "v4.2.1", 2552 "version": "v4.2.1",
2178 "source": { 2553 "source": {
2179 "type": "git", 2554 "type": "git",
2180 "url": "https://github.com/laravel/ui.git", 2555 "url": "https://github.com/laravel/ui.git",
2181 "reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907" 2556 "reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907"
2182 }, 2557 },
2183 "dist": { 2558 "dist": {
2184 "type": "zip", 2559 "type": "zip",
2185 "url": "https://api.github.com/repos/laravel/ui/zipball/05ff7ac1eb55e2dfd10edcfb18c953684d693907", 2560 "url": "https://api.github.com/repos/laravel/ui/zipball/05ff7ac1eb55e2dfd10edcfb18c953684d693907",
2186 "reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907", 2561 "reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907",
2187 "shasum": "" 2562 "shasum": ""
2188 }, 2563 },
2189 "require": { 2564 "require": {
2190 "illuminate/console": "^9.21|^10.0", 2565 "illuminate/console": "^9.21|^10.0",
2191 "illuminate/filesystem": "^9.21|^10.0", 2566 "illuminate/filesystem": "^9.21|^10.0",
2192 "illuminate/support": "^9.21|^10.0", 2567 "illuminate/support": "^9.21|^10.0",
2193 "illuminate/validation": "^9.21|^10.0", 2568 "illuminate/validation": "^9.21|^10.0",
2194 "php": "^8.0" 2569 "php": "^8.0"
2195 }, 2570 },
2196 "require-dev": { 2571 "require-dev": {
2197 "orchestra/testbench": "^7.0|^8.0", 2572 "orchestra/testbench": "^7.0|^8.0",
2198 "phpunit/phpunit": "^9.3" 2573 "phpunit/phpunit": "^9.3"
2199 }, 2574 },
2200 "type": "library", 2575 "type": "library",
2201 "extra": { 2576 "extra": {
2202 "branch-alias": { 2577 "branch-alias": {
2203 "dev-master": "4.x-dev" 2578 "dev-master": "4.x-dev"
2204 }, 2579 },
2205 "laravel": { 2580 "laravel": {
2206 "providers": [ 2581 "providers": [
2207 "Laravel\\Ui\\UiServiceProvider" 2582 "Laravel\\Ui\\UiServiceProvider"
2208 ] 2583 ]
2209 } 2584 }
2210 }, 2585 },
2211 "autoload": { 2586 "autoload": {
2212 "psr-4": { 2587 "psr-4": {
2213 "Laravel\\Ui\\": "src/", 2588 "Laravel\\Ui\\": "src/",
2214 "Illuminate\\Foundation\\Auth\\": "auth-backend/" 2589 "Illuminate\\Foundation\\Auth\\": "auth-backend/"
2215 } 2590 }
2216 }, 2591 },
2217 "notification-url": "https://packagist.org/downloads/", 2592 "notification-url": "https://packagist.org/downloads/",
2218 "license": [ 2593 "license": [
2219 "MIT" 2594 "MIT"
2220 ], 2595 ],
2221 "authors": [ 2596 "authors": [
2222 { 2597 {
2223 "name": "Taylor Otwell", 2598 "name": "Taylor Otwell",
2224 "email": "taylor@laravel.com" 2599 "email": "taylor@laravel.com"
2225 } 2600 }
2226 ], 2601 ],
2227 "description": "Laravel UI utilities and presets.", 2602 "description": "Laravel UI utilities and presets.",
2228 "keywords": [ 2603 "keywords": [
2229 "laravel", 2604 "laravel",
2230 "ui" 2605 "ui"
2231 ], 2606 ],
2232 "support": { 2607 "support": {
2233 "source": "https://github.com/laravel/ui/tree/v4.2.1" 2608 "source": "https://github.com/laravel/ui/tree/v4.2.1"
2234 }, 2609 },
2235 "time": "2023-02-17T09:17:24+00:00" 2610 "time": "2023-02-17T09:17:24+00:00"
2236 }, 2611 },
2237 { 2612 {
2238 "name": "league/commonmark", 2613 "name": "league/commonmark",
2239 "version": "2.4.0", 2614 "version": "2.4.0",
2240 "source": { 2615 "source": {
2241 "type": "git", 2616 "type": "git",
2242 "url": "https://github.com/thephpleague/commonmark.git", 2617 "url": "https://github.com/thephpleague/commonmark.git",
2243 "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048" 2618 "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
2244 }, 2619 },
2245 "dist": { 2620 "dist": {
2246 "type": "zip", 2621 "type": "zip",
2247 "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048", 2622 "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
2248 "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048", 2623 "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
2249 "shasum": "" 2624 "shasum": ""
2250 }, 2625 },
2251 "require": { 2626 "require": {
2252 "ext-mbstring": "*", 2627 "ext-mbstring": "*",
2253 "league/config": "^1.1.1", 2628 "league/config": "^1.1.1",
2254 "php": "^7.4 || ^8.0", 2629 "php": "^7.4 || ^8.0",
2255 "psr/event-dispatcher": "^1.0", 2630 "psr/event-dispatcher": "^1.0",
2256 "symfony/deprecation-contracts": "^2.1 || ^3.0", 2631 "symfony/deprecation-contracts": "^2.1 || ^3.0",
2257 "symfony/polyfill-php80": "^1.16" 2632 "symfony/polyfill-php80": "^1.16"
2258 }, 2633 },
2259 "require-dev": { 2634 "require-dev": {
2260 "cebe/markdown": "^1.0", 2635 "cebe/markdown": "^1.0",
2261 "commonmark/cmark": "0.30.0", 2636 "commonmark/cmark": "0.30.0",
2262 "commonmark/commonmark.js": "0.30.0", 2637 "commonmark/commonmark.js": "0.30.0",
2263 "composer/package-versions-deprecated": "^1.8", 2638 "composer/package-versions-deprecated": "^1.8",
2264 "embed/embed": "^4.4", 2639 "embed/embed": "^4.4",
2265 "erusev/parsedown": "^1.0", 2640 "erusev/parsedown": "^1.0",
2266 "ext-json": "*", 2641 "ext-json": "*",
2267 "github/gfm": "0.29.0", 2642 "github/gfm": "0.29.0",
2268 "michelf/php-markdown": "^1.4 || ^2.0", 2643 "michelf/php-markdown": "^1.4 || ^2.0",
2269 "nyholm/psr7": "^1.5", 2644 "nyholm/psr7": "^1.5",
2270 "phpstan/phpstan": "^1.8.2", 2645 "phpstan/phpstan": "^1.8.2",
2271 "phpunit/phpunit": "^9.5.21", 2646 "phpunit/phpunit": "^9.5.21",
2272 "scrutinizer/ocular": "^1.8.1", 2647 "scrutinizer/ocular": "^1.8.1",
2273 "symfony/finder": "^5.3 | ^6.0", 2648 "symfony/finder": "^5.3 | ^6.0",
2274 "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", 2649 "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
2275 "unleashedtech/php-coding-standard": "^3.1.1", 2650 "unleashedtech/php-coding-standard": "^3.1.1",
2276 "vimeo/psalm": "^4.24.0 || ^5.0.0" 2651 "vimeo/psalm": "^4.24.0 || ^5.0.0"
2277 }, 2652 },
2278 "suggest": { 2653 "suggest": {
2279 "symfony/yaml": "v2.3+ required if using the Front Matter extension" 2654 "symfony/yaml": "v2.3+ required if using the Front Matter extension"
2280 }, 2655 },
2281 "type": "library", 2656 "type": "library",
2282 "extra": { 2657 "extra": {
2283 "branch-alias": { 2658 "branch-alias": {
2284 "dev-main": "2.5-dev" 2659 "dev-main": "2.5-dev"
2285 } 2660 }
2286 }, 2661 },
2287 "autoload": { 2662 "autoload": {
2288 "psr-4": { 2663 "psr-4": {
2289 "League\\CommonMark\\": "src" 2664 "League\\CommonMark\\": "src"
2290 } 2665 }
2291 }, 2666 },
2292 "notification-url": "https://packagist.org/downloads/", 2667 "notification-url": "https://packagist.org/downloads/",
2293 "license": [ 2668 "license": [
2294 "BSD-3-Clause" 2669 "BSD-3-Clause"
2295 ], 2670 ],
2296 "authors": [ 2671 "authors": [
2297 { 2672 {
2298 "name": "Colin O'Dell", 2673 "name": "Colin O'Dell",
2299 "email": "colinodell@gmail.com", 2674 "email": "colinodell@gmail.com",
2300 "homepage": "https://www.colinodell.com", 2675 "homepage": "https://www.colinodell.com",
2301 "role": "Lead Developer" 2676 "role": "Lead Developer"
2302 } 2677 }
2303 ], 2678 ],
2304 "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", 2679 "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
2305 "homepage": "https://commonmark.thephpleague.com", 2680 "homepage": "https://commonmark.thephpleague.com",
2306 "keywords": [ 2681 "keywords": [
2307 "commonmark", 2682 "commonmark",
2308 "flavored", 2683 "flavored",
2309 "gfm", 2684 "gfm",
2310 "github", 2685 "github",
2311 "github-flavored", 2686 "github-flavored",
2312 "markdown", 2687 "markdown",
2313 "md", 2688 "md",
2314 "parser" 2689 "parser"
2315 ], 2690 ],
2316 "support": { 2691 "support": {
2317 "docs": "https://commonmark.thephpleague.com/", 2692 "docs": "https://commonmark.thephpleague.com/",
2318 "forum": "https://github.com/thephpleague/commonmark/discussions", 2693 "forum": "https://github.com/thephpleague/commonmark/discussions",
2319 "issues": "https://github.com/thephpleague/commonmark/issues", 2694 "issues": "https://github.com/thephpleague/commonmark/issues",
2320 "rss": "https://github.com/thephpleague/commonmark/releases.atom", 2695 "rss": "https://github.com/thephpleague/commonmark/releases.atom",
2321 "source": "https://github.com/thephpleague/commonmark" 2696 "source": "https://github.com/thephpleague/commonmark"
2322 }, 2697 },
2323 "funding": [ 2698 "funding": [
2324 { 2699 {
2325 "url": "https://www.colinodell.com/sponsor", 2700 "url": "https://www.colinodell.com/sponsor",
2326 "type": "custom" 2701 "type": "custom"
2327 }, 2702 },
2328 { 2703 {
2329 "url": "https://www.paypal.me/colinpodell/10.00", 2704 "url": "https://www.paypal.me/colinpodell/10.00",
2330 "type": "custom" 2705 "type": "custom"
2331 }, 2706 },
2332 { 2707 {
2333 "url": "https://github.com/colinodell", 2708 "url": "https://github.com/colinodell",
2334 "type": "github" 2709 "type": "github"
2335 }, 2710 },
2336 { 2711 {
2337 "url": "https://tidelift.com/funding/github/packagist/league/commonmark", 2712 "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
2338 "type": "tidelift" 2713 "type": "tidelift"
2339 } 2714 }
2340 ], 2715 ],
2341 "time": "2023-03-24T15:16:10+00:00" 2716 "time": "2023-03-24T15:16:10+00:00"
2342 }, 2717 },
2343 { 2718 {
2344 "name": "league/config", 2719 "name": "league/config",
2345 "version": "v1.2.0", 2720 "version": "v1.2.0",
2346 "source": { 2721 "source": {
2347 "type": "git", 2722 "type": "git",
2348 "url": "https://github.com/thephpleague/config.git", 2723 "url": "https://github.com/thephpleague/config.git",
2349 "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" 2724 "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
2350 }, 2725 },
2351 "dist": { 2726 "dist": {
2352 "type": "zip", 2727 "type": "zip",
2353 "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", 2728 "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
2354 "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", 2729 "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
2355 "shasum": "" 2730 "shasum": ""
2356 }, 2731 },
2357 "require": { 2732 "require": {
2358 "dflydev/dot-access-data": "^3.0.1", 2733 "dflydev/dot-access-data": "^3.0.1",
2359 "nette/schema": "^1.2", 2734 "nette/schema": "^1.2",
2360 "php": "^7.4 || ^8.0" 2735 "php": "^7.4 || ^8.0"
2361 }, 2736 },
2362 "require-dev": { 2737 "require-dev": {
2363 "phpstan/phpstan": "^1.8.2", 2738 "phpstan/phpstan": "^1.8.2",
2364 "phpunit/phpunit": "^9.5.5", 2739 "phpunit/phpunit": "^9.5.5",
2365 "scrutinizer/ocular": "^1.8.1", 2740 "scrutinizer/ocular": "^1.8.1",
2366 "unleashedtech/php-coding-standard": "^3.1", 2741 "unleashedtech/php-coding-standard": "^3.1",
2367 "vimeo/psalm": "^4.7.3" 2742 "vimeo/psalm": "^4.7.3"
2368 }, 2743 },
2369 "type": "library", 2744 "type": "library",
2370 "extra": { 2745 "extra": {
2371 "branch-alias": { 2746 "branch-alias": {
2372 "dev-main": "1.2-dev" 2747 "dev-main": "1.2-dev"
2373 } 2748 }
2374 }, 2749 },
2375 "autoload": { 2750 "autoload": {
2376 "psr-4": { 2751 "psr-4": {
2377 "League\\Config\\": "src" 2752 "League\\Config\\": "src"
2378 } 2753 }
2379 }, 2754 },
2380 "notification-url": "https://packagist.org/downloads/", 2755 "notification-url": "https://packagist.org/downloads/",
2381 "license": [ 2756 "license": [
2382 "BSD-3-Clause" 2757 "BSD-3-Clause"
2383 ], 2758 ],
2384 "authors": [ 2759 "authors": [
2385 { 2760 {
2386 "name": "Colin O'Dell", 2761 "name": "Colin O'Dell",
2387 "email": "colinodell@gmail.com", 2762 "email": "colinodell@gmail.com",
2388 "homepage": "https://www.colinodell.com", 2763 "homepage": "https://www.colinodell.com",
2389 "role": "Lead Developer" 2764 "role": "Lead Developer"
2390 } 2765 }
2391 ], 2766 ],
2392 "description": "Define configuration arrays with strict schemas and access values with dot notation", 2767 "description": "Define configuration arrays with strict schemas and access values with dot notation",
2393 "homepage": "https://config.thephpleague.com", 2768 "homepage": "https://config.thephpleague.com",
2394 "keywords": [ 2769 "keywords": [
2395 "array", 2770 "array",
2396 "config", 2771 "config",
2397 "configuration", 2772 "configuration",
2398 "dot", 2773 "dot",
2399 "dot-access", 2774 "dot-access",
2400 "nested", 2775 "nested",
2401 "schema" 2776 "schema"
2402 ], 2777 ],
2403 "support": { 2778 "support": {
2404 "docs": "https://config.thephpleague.com/", 2779 "docs": "https://config.thephpleague.com/",
2405 "issues": "https://github.com/thephpleague/config/issues", 2780 "issues": "https://github.com/thephpleague/config/issues",
2406 "rss": "https://github.com/thephpleague/config/releases.atom", 2781 "rss": "https://github.com/thephpleague/config/releases.atom",
2407 "source": "https://github.com/thephpleague/config" 2782 "source": "https://github.com/thephpleague/config"
2408 }, 2783 },
2409 "funding": [ 2784 "funding": [
2410 { 2785 {
2411 "url": "https://www.colinodell.com/sponsor", 2786 "url": "https://www.colinodell.com/sponsor",
2412 "type": "custom" 2787 "type": "custom"
2413 }, 2788 },
2414 { 2789 {
2415 "url": "https://www.paypal.me/colinpodell/10.00", 2790 "url": "https://www.paypal.me/colinpodell/10.00",
2416 "type": "custom" 2791 "type": "custom"
2417 }, 2792 },
2418 { 2793 {
2419 "url": "https://github.com/colinodell", 2794 "url": "https://github.com/colinodell",
2420 "type": "github" 2795 "type": "github"
2421 } 2796 }
2422 ], 2797 ],
2423 "time": "2022-12-11T20:36:23+00:00" 2798 "time": "2022-12-11T20:36:23+00:00"
2424 }, 2799 },
2425 { 2800 {
2426 "name": "league/flysystem", 2801 "name": "league/flysystem",
2427 "version": "3.15.1", 2802 "version": "3.15.1",
2428 "source": { 2803 "source": {
2429 "type": "git", 2804 "type": "git",
2430 "url": "https://github.com/thephpleague/flysystem.git", 2805 "url": "https://github.com/thephpleague/flysystem.git",
2431 "reference": "a141d430414fcb8bf797a18716b09f759a385bed" 2806 "reference": "a141d430414fcb8bf797a18716b09f759a385bed"
2432 }, 2807 },
2433 "dist": { 2808 "dist": {
2434 "type": "zip", 2809 "type": "zip",
2435 "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed", 2810 "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed",
2436 "reference": "a141d430414fcb8bf797a18716b09f759a385bed", 2811 "reference": "a141d430414fcb8bf797a18716b09f759a385bed",
2437 "shasum": "" 2812 "shasum": ""
2438 }, 2813 },
2439 "require": { 2814 "require": {
2440 "league/flysystem-local": "^3.0.0", 2815 "league/flysystem-local": "^3.0.0",
2441 "league/mime-type-detection": "^1.0.0", 2816 "league/mime-type-detection": "^1.0.0",
2442 "php": "^8.0.2" 2817 "php": "^8.0.2"
2443 }, 2818 },
2444 "conflict": { 2819 "conflict": {
2445 "aws/aws-sdk-php": "3.209.31 || 3.210.0", 2820 "aws/aws-sdk-php": "3.209.31 || 3.210.0",
2446 "guzzlehttp/guzzle": "<7.0", 2821 "guzzlehttp/guzzle": "<7.0",
2447 "guzzlehttp/ringphp": "<1.1.1", 2822 "guzzlehttp/ringphp": "<1.1.1",
2448 "phpseclib/phpseclib": "3.0.15", 2823 "phpseclib/phpseclib": "3.0.15",
2449 "symfony/http-client": "<5.2" 2824 "symfony/http-client": "<5.2"
2450 }, 2825 },
2451 "require-dev": { 2826 "require-dev": {
2452 "async-aws/s3": "^1.5", 2827 "async-aws/s3": "^1.5",
2453 "async-aws/simple-s3": "^1.1", 2828 "async-aws/simple-s3": "^1.1",
2454 "aws/aws-sdk-php": "^3.220.0", 2829 "aws/aws-sdk-php": "^3.220.0",
2455 "composer/semver": "^3.0", 2830 "composer/semver": "^3.0",
2456 "ext-fileinfo": "*", 2831 "ext-fileinfo": "*",
2457 "ext-ftp": "*", 2832 "ext-ftp": "*",
2458 "ext-zip": "*", 2833 "ext-zip": "*",
2459 "friendsofphp/php-cs-fixer": "^3.5", 2834 "friendsofphp/php-cs-fixer": "^3.5",
2460 "google/cloud-storage": "^1.23", 2835 "google/cloud-storage": "^1.23",
2461 "microsoft/azure-storage-blob": "^1.1", 2836 "microsoft/azure-storage-blob": "^1.1",
2462 "phpseclib/phpseclib": "^3.0.14", 2837 "phpseclib/phpseclib": "^3.0.14",
2463 "phpstan/phpstan": "^0.12.26", 2838 "phpstan/phpstan": "^0.12.26",
2464 "phpunit/phpunit": "^9.5.11", 2839 "phpunit/phpunit": "^9.5.11",
2465 "sabre/dav": "^4.3.1" 2840 "sabre/dav": "^4.3.1"
2466 }, 2841 },
2467 "type": "library", 2842 "type": "library",
2468 "autoload": { 2843 "autoload": {
2469 "psr-4": { 2844 "psr-4": {
2470 "League\\Flysystem\\": "src" 2845 "League\\Flysystem\\": "src"
2471 } 2846 }
2472 }, 2847 },
2473 "notification-url": "https://packagist.org/downloads/", 2848 "notification-url": "https://packagist.org/downloads/",
2474 "license": [ 2849 "license": [
2475 "MIT" 2850 "MIT"
2476 ], 2851 ],
2477 "authors": [ 2852 "authors": [
2478 { 2853 {
2479 "name": "Frank de Jonge", 2854 "name": "Frank de Jonge",
2480 "email": "info@frankdejonge.nl" 2855 "email": "info@frankdejonge.nl"
2481 } 2856 }
2482 ], 2857 ],
2483 "description": "File storage abstraction for PHP", 2858 "description": "File storage abstraction for PHP",
2484 "keywords": [ 2859 "keywords": [
2485 "WebDAV", 2860 "WebDAV",
2486 "aws", 2861 "aws",
2487 "cloud", 2862 "cloud",
2488 "file", 2863 "file",
2489 "files", 2864 "files",
2490 "filesystem", 2865 "filesystem",
2491 "filesystems", 2866 "filesystems",
2492 "ftp", 2867 "ftp",
2493 "s3", 2868 "s3",
2494 "sftp", 2869 "sftp",
2495 "storage" 2870 "storage"
2496 ], 2871 ],
2497 "support": { 2872 "support": {
2498 "issues": "https://github.com/thephpleague/flysystem/issues", 2873 "issues": "https://github.com/thephpleague/flysystem/issues",
2499 "source": "https://github.com/thephpleague/flysystem/tree/3.15.1" 2874 "source": "https://github.com/thephpleague/flysystem/tree/3.15.1"
2500 }, 2875 },
2501 "funding": [ 2876 "funding": [
2502 { 2877 {
2503 "url": "https://ecologi.com/frankdejonge", 2878 "url": "https://ecologi.com/frankdejonge",
2504 "type": "custom" 2879 "type": "custom"
2505 }, 2880 },
2506 { 2881 {
2507 "url": "https://github.com/frankdejonge", 2882 "url": "https://github.com/frankdejonge",
2508 "type": "github" 2883 "type": "github"
2509 } 2884 }
2510 ], 2885 ],
2511 "time": "2023-05-04T09:04:26+00:00" 2886 "time": "2023-05-04T09:04:26+00:00"
2512 }, 2887 },
2513 { 2888 {
2514 "name": "league/flysystem-local", 2889 "name": "league/flysystem-local",
2515 "version": "3.15.0", 2890 "version": "3.15.0",
2516 "source": { 2891 "source": {
2517 "type": "git", 2892 "type": "git",
2518 "url": "https://github.com/thephpleague/flysystem-local.git", 2893 "url": "https://github.com/thephpleague/flysystem-local.git",
2519 "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3" 2894 "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3"
2520 }, 2895 },
2521 "dist": { 2896 "dist": {
2522 "type": "zip", 2897 "type": "zip",
2523 "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3", 2898 "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3",
2524 "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3", 2899 "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3",
2525 "shasum": "" 2900 "shasum": ""
2526 }, 2901 },
2527 "require": { 2902 "require": {
2528 "ext-fileinfo": "*", 2903 "ext-fileinfo": "*",
2529 "league/flysystem": "^3.0.0", 2904 "league/flysystem": "^3.0.0",
2530 "league/mime-type-detection": "^1.0.0", 2905 "league/mime-type-detection": "^1.0.0",
2531 "php": "^8.0.2" 2906 "php": "^8.0.2"
2532 }, 2907 },
2533 "type": "library", 2908 "type": "library",
2534 "autoload": { 2909 "autoload": {
2535 "psr-4": { 2910 "psr-4": {
2536 "League\\Flysystem\\Local\\": "" 2911 "League\\Flysystem\\Local\\": ""
2537 } 2912 }
2538 }, 2913 },
2539 "notification-url": "https://packagist.org/downloads/", 2914 "notification-url": "https://packagist.org/downloads/",
2540 "license": [ 2915 "license": [
2541 "MIT" 2916 "MIT"
2542 ], 2917 ],
2543 "authors": [ 2918 "authors": [
2544 { 2919 {
2545 "name": "Frank de Jonge", 2920 "name": "Frank de Jonge",
2546 "email": "info@frankdejonge.nl" 2921 "email": "info@frankdejonge.nl"
2547 } 2922 }
2548 ], 2923 ],
2549 "description": "Local filesystem adapter for Flysystem.", 2924 "description": "Local filesystem adapter for Flysystem.",
2550 "keywords": [ 2925 "keywords": [
2551 "Flysystem", 2926 "Flysystem",
2552 "file", 2927 "file",
2553 "files", 2928 "files",
2554 "filesystem", 2929 "filesystem",
2555 "local" 2930 "local"
2556 ], 2931 ],
2557 "support": { 2932 "support": {
2558 "issues": "https://github.com/thephpleague/flysystem-local/issues", 2933 "issues": "https://github.com/thephpleague/flysystem-local/issues",
2559 "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0" 2934 "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0"
2560 }, 2935 },
2561 "funding": [ 2936 "funding": [
2562 { 2937 {
2563 "url": "https://ecologi.com/frankdejonge", 2938 "url": "https://ecologi.com/frankdejonge",
2564 "type": "custom" 2939 "type": "custom"
2565 }, 2940 },
2566 { 2941 {
2567 "url": "https://github.com/frankdejonge", 2942 "url": "https://github.com/frankdejonge",
2568 "type": "github" 2943 "type": "github"
2569 } 2944 }
2570 ], 2945 ],
2571 "time": "2023-05-02T20:02:14+00:00" 2946 "time": "2023-05-02T20:02:14+00:00"
2572 }, 2947 },
2573 { 2948 {
2574 "name": "league/mime-type-detection", 2949 "name": "league/mime-type-detection",
2575 "version": "1.11.0", 2950 "version": "1.11.0",
2576 "source": { 2951 "source": {
2577 "type": "git", 2952 "type": "git",
2578 "url": "https://github.com/thephpleague/mime-type-detection.git", 2953 "url": "https://github.com/thephpleague/mime-type-detection.git",
2579 "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" 2954 "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
2580 }, 2955 },
2581 "dist": { 2956 "dist": {
2582 "type": "zip", 2957 "type": "zip",
2583 "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", 2958 "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
2584 "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", 2959 "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
2585 "shasum": "" 2960 "shasum": ""
2586 }, 2961 },
2587 "require": { 2962 "require": {
2588 "ext-fileinfo": "*", 2963 "ext-fileinfo": "*",
2589 "php": "^7.2 || ^8.0" 2964 "php": "^7.2 || ^8.0"
2590 }, 2965 },
2591 "require-dev": { 2966 "require-dev": {
2592 "friendsofphp/php-cs-fixer": "^3.2", 2967 "friendsofphp/php-cs-fixer": "^3.2",
2593 "phpstan/phpstan": "^0.12.68", 2968 "phpstan/phpstan": "^0.12.68",
2594 "phpunit/phpunit": "^8.5.8 || ^9.3" 2969 "phpunit/phpunit": "^8.5.8 || ^9.3"
2595 }, 2970 },
2596 "type": "library", 2971 "type": "library",
2597 "autoload": { 2972 "autoload": {
2598 "psr-4": { 2973 "psr-4": {
2599 "League\\MimeTypeDetection\\": "src" 2974 "League\\MimeTypeDetection\\": "src"
2600 } 2975 }
2601 }, 2976 },
2602 "notification-url": "https://packagist.org/downloads/", 2977 "notification-url": "https://packagist.org/downloads/",
2603 "license": [ 2978 "license": [
2604 "MIT" 2979 "MIT"
2605 ], 2980 ],
2606 "authors": [ 2981 "authors": [
2607 { 2982 {
2608 "name": "Frank de Jonge", 2983 "name": "Frank de Jonge",
2609 "email": "info@frankdejonge.nl" 2984 "email": "info@frankdejonge.nl"
2610 } 2985 }
2611 ], 2986 ],
2612 "description": "Mime-type detection for Flysystem", 2987 "description": "Mime-type detection for Flysystem",
2613 "support": { 2988 "support": {
2614 "issues": "https://github.com/thephpleague/mime-type-detection/issues", 2989 "issues": "https://github.com/thephpleague/mime-type-detection/issues",
2615 "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" 2990 "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
2616 }, 2991 },
2617 "funding": [ 2992 "funding": [
2618 { 2993 {
2619 "url": "https://github.com/frankdejonge", 2994 "url": "https://github.com/frankdejonge",
2620 "type": "github" 2995 "type": "github"
2621 }, 2996 },
2622 { 2997 {
2623 "url": "https://tidelift.com/funding/github/packagist/league/flysystem", 2998 "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
2624 "type": "tidelift" 2999 "type": "tidelift"
2625 } 3000 }
2626 ], 3001 ],
2627 "time": "2022-04-17T13:12:02+00:00" 3002 "time": "2022-04-17T13:12:02+00:00"
2628 }, 3003 },
2629 { 3004 {
2630 "name": "league/uri-parser", 3005 "name": "league/uri-parser",
2631 "version": "1.4.1", 3006 "version": "1.4.1",
2632 "source": { 3007 "source": {
2633 "type": "git", 3008 "type": "git",
2634 "url": "https://github.com/thephpleague/uri-parser.git", 3009 "url": "https://github.com/thephpleague/uri-parser.git",
2635 "reference": "671548427e4c932352d9b9279fdfa345bf63fa00" 3010 "reference": "671548427e4c932352d9b9279fdfa345bf63fa00"
2636 }, 3011 },
2637 "dist": { 3012 "dist": {
2638 "type": "zip", 3013 "type": "zip",
2639 "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00", 3014 "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00",
2640 "reference": "671548427e4c932352d9b9279fdfa345bf63fa00", 3015 "reference": "671548427e4c932352d9b9279fdfa345bf63fa00",
2641 "shasum": "" 3016 "shasum": ""
2642 }, 3017 },
2643 "require": { 3018 "require": {
2644 "php": ">=7.0.0" 3019 "php": ">=7.0.0"
2645 }, 3020 },
2646 "require-dev": { 3021 "require-dev": {
2647 "friendsofphp/php-cs-fixer": "^2.0", 3022 "friendsofphp/php-cs-fixer": "^2.0",
2648 "phpstan/phpstan": "^0.9.2", 3023 "phpstan/phpstan": "^0.9.2",
2649 "phpstan/phpstan-phpunit": "^0.9.4", 3024 "phpstan/phpstan-phpunit": "^0.9.4",
2650 "phpstan/phpstan-strict-rules": "^0.9.0", 3025 "phpstan/phpstan-strict-rules": "^0.9.0",
2651 "phpunit/phpunit": "^6.0" 3026 "phpunit/phpunit": "^6.0"
2652 }, 3027 },
2653 "suggest": { 3028 "suggest": {
2654 "ext-intl": "Allow parsing RFC3987 compliant hosts", 3029 "ext-intl": "Allow parsing RFC3987 compliant hosts",
2655 "league/uri-schemes": "Allow validating and normalizing URI parsing results" 3030 "league/uri-schemes": "Allow validating and normalizing URI parsing results"
2656 }, 3031 },
2657 "type": "library", 3032 "type": "library",
2658 "extra": { 3033 "extra": {
2659 "branch-alias": { 3034 "branch-alias": {
2660 "dev-master": "1.x-dev" 3035 "dev-master": "1.x-dev"
2661 } 3036 }
2662 }, 3037 },
2663 "autoload": { 3038 "autoload": {
2664 "files": [ 3039 "files": [
2665 "src/functions_include.php" 3040 "src/functions_include.php"
2666 ], 3041 ],
2667 "psr-4": { 3042 "psr-4": {
2668 "League\\Uri\\": "src" 3043 "League\\Uri\\": "src"
2669 } 3044 }
2670 }, 3045 },
2671 "notification-url": "https://packagist.org/downloads/", 3046 "notification-url": "https://packagist.org/downloads/",
2672 "license": [ 3047 "license": [
2673 "MIT" 3048 "MIT"
2674 ], 3049 ],
2675 "authors": [ 3050 "authors": [
2676 { 3051 {
2677 "name": "Ignace Nyamagana Butera", 3052 "name": "Ignace Nyamagana Butera",
2678 "email": "nyamsprod@gmail.com", 3053 "email": "nyamsprod@gmail.com",
2679 "homepage": "https://nyamsprod.com" 3054 "homepage": "https://nyamsprod.com"
2680 } 3055 }
2681 ], 3056 ],
2682 "description": "userland URI parser RFC 3986 compliant", 3057 "description": "userland URI parser RFC 3986 compliant",
2683 "homepage": "https://github.com/thephpleague/uri-parser", 3058 "homepage": "https://github.com/thephpleague/uri-parser",
2684 "keywords": [ 3059 "keywords": [
2685 "parse_url", 3060 "parse_url",
2686 "parser", 3061 "parser",
2687 "rfc3986", 3062 "rfc3986",
2688 "rfc3987", 3063 "rfc3987",
2689 "uri", 3064 "uri",
2690 "url" 3065 "url"
2691 ], 3066 ],
2692 "support": { 3067 "support": {
2693 "issues": "https://github.com/thephpleague/uri-parser/issues", 3068 "issues": "https://github.com/thephpleague/uri-parser/issues",
2694 "source": "https://github.com/thephpleague/uri-parser/tree/master" 3069 "source": "https://github.com/thephpleague/uri-parser/tree/master"
2695 }, 3070 },
2696 "abandoned": true, 3071 "abandoned": true,
2697 "time": "2018-11-22T07:55:51+00:00" 3072 "time": "2018-11-22T07:55:51+00:00"
2698 }, 3073 },
2699 { 3074 {
2700 "name": "livewire/livewire", 3075 "name": "livewire/livewire",
2701 "version": "v2.12.3", 3076 "version": "v2.12.3",
2702 "source": { 3077 "source": {
2703 "type": "git", 3078 "type": "git",
2704 "url": "https://github.com/livewire/livewire.git", 3079 "url": "https://github.com/livewire/livewire.git",
2705 "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74" 3080 "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74"
2706 }, 3081 },
2707 "dist": { 3082 "dist": {
2708 "type": "zip", 3083 "type": "zip",
2709 "url": "https://api.github.com/repos/livewire/livewire/zipball/019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74", 3084 "url": "https://api.github.com/repos/livewire/livewire/zipball/019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74",
2710 "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74", 3085 "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74",
2711 "shasum": "" 3086 "shasum": ""
2712 }, 3087 },
2713 "require": { 3088 "require": {
2714 "illuminate/database": "^7.0|^8.0|^9.0|^10.0", 3089 "illuminate/database": "^7.0|^8.0|^9.0|^10.0",
2715 "illuminate/support": "^7.0|^8.0|^9.0|^10.0", 3090 "illuminate/support": "^7.0|^8.0|^9.0|^10.0",
2716 "illuminate/validation": "^7.0|^8.0|^9.0|^10.0", 3091 "illuminate/validation": "^7.0|^8.0|^9.0|^10.0",
2717 "league/mime-type-detection": "^1.9", 3092 "league/mime-type-detection": "^1.9",
2718 "php": "^7.2.5|^8.0", 3093 "php": "^7.2.5|^8.0",
2719 "symfony/http-kernel": "^5.0|^6.0" 3094 "symfony/http-kernel": "^5.0|^6.0"
2720 }, 3095 },
2721 "require-dev": { 3096 "require-dev": {
2722 "calebporzio/sushi": "^2.1", 3097 "calebporzio/sushi": "^2.1",
2723 "laravel/framework": "^7.0|^8.0|^9.0|^10.0", 3098 "laravel/framework": "^7.0|^8.0|^9.0|^10.0",
2724 "mockery/mockery": "^1.3.1", 3099 "mockery/mockery": "^1.3.1",
2725 "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0", 3100 "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
2726 "orchestra/testbench-dusk": "^5.2|^6.0|^7.0|^8.0", 3101 "orchestra/testbench-dusk": "^5.2|^6.0|^7.0|^8.0",
2727 "phpunit/phpunit": "^8.4|^9.0", 3102 "phpunit/phpunit": "^8.4|^9.0",
2728 "psy/psysh": "@stable" 3103 "psy/psysh": "@stable"
2729 }, 3104 },
2730 "type": "library", 3105 "type": "library",
2731 "extra": { 3106 "extra": {
2732 "laravel": { 3107 "laravel": {
2733 "providers": [ 3108 "providers": [
2734 "Livewire\\LivewireServiceProvider" 3109 "Livewire\\LivewireServiceProvider"
2735 ], 3110 ],
2736 "aliases": { 3111 "aliases": {
2737 "Livewire": "Livewire\\Livewire" 3112 "Livewire": "Livewire\\Livewire"
2738 } 3113 }
2739 } 3114 }
2740 }, 3115 },
2741 "autoload": { 3116 "autoload": {
2742 "files": [ 3117 "files": [
2743 "src/helpers.php" 3118 "src/helpers.php"
2744 ], 3119 ],
2745 "psr-4": { 3120 "psr-4": {
2746 "Livewire\\": "src/" 3121 "Livewire\\": "src/"
2747 } 3122 }
2748 }, 3123 },
2749 "notification-url": "https://packagist.org/downloads/", 3124 "notification-url": "https://packagist.org/downloads/",
2750 "license": [ 3125 "license": [
2751 "MIT" 3126 "MIT"
2752 ], 3127 ],
2753 "authors": [ 3128 "authors": [
2754 { 3129 {
2755 "name": "Caleb Porzio", 3130 "name": "Caleb Porzio",
2756 "email": "calebporzio@gmail.com" 3131 "email": "calebporzio@gmail.com"
2757 } 3132 }
2758 ], 3133 ],
2759 "description": "A front-end framework for Laravel.", 3134 "description": "A front-end framework for Laravel.",
2760 "support": { 3135 "support": {
2761 "issues": "https://github.com/livewire/livewire/issues", 3136 "issues": "https://github.com/livewire/livewire/issues",
2762 "source": "https://github.com/livewire/livewire/tree/v2.12.3" 3137 "source": "https://github.com/livewire/livewire/tree/v2.12.3"
2763 }, 3138 },
2764 "funding": [ 3139 "funding": [
2765 { 3140 {
2766 "url": "https://github.com/livewire", 3141 "url": "https://github.com/livewire",
2767 "type": "github" 3142 "type": "github"
2768 } 3143 }
2769 ], 3144 ],
2770 "time": "2023-03-03T20:12:38+00:00" 3145 "time": "2023-03-03T20:12:38+00:00"
2771 }, 3146 },
2772 { 3147 {
2773 "name": "maennchen/zipstream-php", 3148 "name": "maennchen/zipstream-php",
2774 "version": "3.1.0", 3149 "version": "3.1.0",
2775 "source": { 3150 "source": {
2776 "type": "git", 3151 "type": "git",
2777 "url": "https://github.com/maennchen/ZipStream-PHP.git", 3152 "url": "https://github.com/maennchen/ZipStream-PHP.git",
2778 "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1" 3153 "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1"
2779 }, 3154 },
2780 "dist": { 3155 "dist": {
2781 "type": "zip", 3156 "type": "zip",
2782 "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b8174494eda667f7d13876b4a7bfef0f62a7c0d1", 3157 "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b8174494eda667f7d13876b4a7bfef0f62a7c0d1",
2783 "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1", 3158 "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1",
2784 "shasum": "" 3159 "shasum": ""
2785 }, 3160 },
2786 "require": { 3161 "require": {
2787 "ext-mbstring": "*", 3162 "ext-mbstring": "*",
2788 "ext-zlib": "*", 3163 "ext-zlib": "*",
2789 "php-64bit": "^8.1" 3164 "php-64bit": "^8.1"
2790 }, 3165 },
2791 "require-dev": { 3166 "require-dev": {
2792 "ext-zip": "*", 3167 "ext-zip": "*",
2793 "friendsofphp/php-cs-fixer": "^3.16", 3168 "friendsofphp/php-cs-fixer": "^3.16",
2794 "guzzlehttp/guzzle": "^7.5", 3169 "guzzlehttp/guzzle": "^7.5",
2795 "mikey179/vfsstream": "^1.6", 3170 "mikey179/vfsstream": "^1.6",
2796 "php-coveralls/php-coveralls": "^2.5", 3171 "php-coveralls/php-coveralls": "^2.5",
2797 "phpunit/phpunit": "^10.0", 3172 "phpunit/phpunit": "^10.0",
2798 "vimeo/psalm": "^5.0" 3173 "vimeo/psalm": "^5.0"
2799 }, 3174 },
2800 "suggest": { 3175 "suggest": {
2801 "guzzlehttp/psr7": "^2.4", 3176 "guzzlehttp/psr7": "^2.4",
2802 "psr/http-message": "^2.0" 3177 "psr/http-message": "^2.0"
2803 }, 3178 },
2804 "type": "library", 3179 "type": "library",
2805 "autoload": { 3180 "autoload": {
2806 "psr-4": { 3181 "psr-4": {
2807 "ZipStream\\": "src/" 3182 "ZipStream\\": "src/"
2808 } 3183 }
2809 }, 3184 },
2810 "notification-url": "https://packagist.org/downloads/", 3185 "notification-url": "https://packagist.org/downloads/",
2811 "license": [ 3186 "license": [
2812 "MIT" 3187 "MIT"
2813 ], 3188 ],
2814 "authors": [ 3189 "authors": [
2815 { 3190 {
2816 "name": "Paul Duncan", 3191 "name": "Paul Duncan",
2817 "email": "pabs@pablotron.org" 3192 "email": "pabs@pablotron.org"
2818 }, 3193 },
2819 { 3194 {
2820 "name": "Jonatan Männchen", 3195 "name": "Jonatan Männchen",
2821 "email": "jonatan@maennchen.ch" 3196 "email": "jonatan@maennchen.ch"
2822 }, 3197 },
2823 { 3198 {
2824 "name": "Jesse Donat", 3199 "name": "Jesse Donat",
2825 "email": "donatj@gmail.com" 3200 "email": "donatj@gmail.com"
2826 }, 3201 },
2827 { 3202 {
2828 "name": "András Kolesár", 3203 "name": "András Kolesár",
2829 "email": "kolesar@kolesar.hu" 3204 "email": "kolesar@kolesar.hu"
2830 } 3205 }
2831 ], 3206 ],
2832 "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.", 3207 "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
2833 "keywords": [ 3208 "keywords": [
2834 "stream", 3209 "stream",
2835 "zip" 3210 "zip"
2836 ], 3211 ],
2837 "support": { 3212 "support": {
2838 "issues": "https://github.com/maennchen/ZipStream-PHP/issues", 3213 "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
2839 "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.0" 3214 "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.0"
2840 }, 3215 },
2841 "funding": [ 3216 "funding": [
2842 { 3217 {
2843 "url": "https://github.com/maennchen", 3218 "url": "https://github.com/maennchen",
2844 "type": "github" 3219 "type": "github"
2845 }, 3220 },
2846 { 3221 {
2847 "url": "https://opencollective.com/zipstream", 3222 "url": "https://opencollective.com/zipstream",
2848 "type": "open_collective" 3223 "type": "open_collective"
2849 } 3224 }
2850 ], 3225 ],
2851 "time": "2023-06-21T14:59:35+00:00" 3226 "time": "2023-06-21T14:59:35+00:00"
2852 }, 3227 },
2853 { 3228 {
2854 "name": "markbaker/complex", 3229 "name": "markbaker/complex",
2855 "version": "3.0.2", 3230 "version": "3.0.2",
2856 "source": { 3231 "source": {
2857 "type": "git", 3232 "type": "git",
2858 "url": "https://github.com/MarkBaker/PHPComplex.git", 3233 "url": "https://github.com/MarkBaker/PHPComplex.git",
2859 "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9" 3234 "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
2860 }, 3235 },
2861 "dist": { 3236 "dist": {
2862 "type": "zip", 3237 "type": "zip",
2863 "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9", 3238 "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
2864 "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9", 3239 "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
2865 "shasum": "" 3240 "shasum": ""
2866 }, 3241 },
2867 "require": { 3242 "require": {
2868 "php": "^7.2 || ^8.0" 3243 "php": "^7.2 || ^8.0"
2869 }, 3244 },
2870 "require-dev": { 3245 "require-dev": {
2871 "dealerdirect/phpcodesniffer-composer-installer": "dev-master", 3246 "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
2872 "phpcompatibility/php-compatibility": "^9.3", 3247 "phpcompatibility/php-compatibility": "^9.3",
2873 "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", 3248 "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
2874 "squizlabs/php_codesniffer": "^3.7" 3249 "squizlabs/php_codesniffer": "^3.7"
2875 }, 3250 },
2876 "type": "library", 3251 "type": "library",
2877 "autoload": { 3252 "autoload": {
2878 "psr-4": { 3253 "psr-4": {
2879 "Complex\\": "classes/src/" 3254 "Complex\\": "classes/src/"
2880 } 3255 }
2881 }, 3256 },
2882 "notification-url": "https://packagist.org/downloads/", 3257 "notification-url": "https://packagist.org/downloads/",
2883 "license": [ 3258 "license": [
2884 "MIT" 3259 "MIT"
2885 ], 3260 ],
2886 "authors": [ 3261 "authors": [
2887 { 3262 {
2888 "name": "Mark Baker", 3263 "name": "Mark Baker",
2889 "email": "mark@lange.demon.co.uk" 3264 "email": "mark@lange.demon.co.uk"
2890 } 3265 }
2891 ], 3266 ],
2892 "description": "PHP Class for working with complex numbers", 3267 "description": "PHP Class for working with complex numbers",
2893 "homepage": "https://github.com/MarkBaker/PHPComplex", 3268 "homepage": "https://github.com/MarkBaker/PHPComplex",
2894 "keywords": [ 3269 "keywords": [
2895 "complex", 3270 "complex",
2896 "mathematics" 3271 "mathematics"
2897 ], 3272 ],
2898 "support": { 3273 "support": {
2899 "issues": "https://github.com/MarkBaker/PHPComplex/issues", 3274 "issues": "https://github.com/MarkBaker/PHPComplex/issues",
2900 "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2" 3275 "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
2901 }, 3276 },
2902 "time": "2022-12-06T16:21:08+00:00" 3277 "time": "2022-12-06T16:21:08+00:00"
2903 }, 3278 },
2904 { 3279 {
2905 "name": "markbaker/matrix", 3280 "name": "markbaker/matrix",
2906 "version": "3.0.1", 3281 "version": "3.0.1",
2907 "source": { 3282 "source": {
2908 "type": "git", 3283 "type": "git",
2909 "url": "https://github.com/MarkBaker/PHPMatrix.git", 3284 "url": "https://github.com/MarkBaker/PHPMatrix.git",
2910 "reference": "728434227fe21be27ff6d86621a1b13107a2562c" 3285 "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
2911 }, 3286 },
2912 "dist": { 3287 "dist": {
2913 "type": "zip", 3288 "type": "zip",
2914 "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c", 3289 "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
2915 "reference": "728434227fe21be27ff6d86621a1b13107a2562c", 3290 "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
2916 "shasum": "" 3291 "shasum": ""
2917 }, 3292 },
2918 "require": { 3293 "require": {
2919 "php": "^7.1 || ^8.0" 3294 "php": "^7.1 || ^8.0"
2920 }, 3295 },
2921 "require-dev": { 3296 "require-dev": {
2922 "dealerdirect/phpcodesniffer-composer-installer": "dev-master", 3297 "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
2923 "phpcompatibility/php-compatibility": "^9.3", 3298 "phpcompatibility/php-compatibility": "^9.3",
2924 "phpdocumentor/phpdocumentor": "2.*", 3299 "phpdocumentor/phpdocumentor": "2.*",
2925 "phploc/phploc": "^4.0", 3300 "phploc/phploc": "^4.0",
2926 "phpmd/phpmd": "2.*", 3301 "phpmd/phpmd": "2.*",
2927 "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", 3302 "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
2928 "sebastian/phpcpd": "^4.0", 3303 "sebastian/phpcpd": "^4.0",
2929 "squizlabs/php_codesniffer": "^3.7" 3304 "squizlabs/php_codesniffer": "^3.7"
2930 }, 3305 },
2931 "type": "library", 3306 "type": "library",
2932 "autoload": { 3307 "autoload": {
2933 "psr-4": { 3308 "psr-4": {
2934 "Matrix\\": "classes/src/" 3309 "Matrix\\": "classes/src/"
2935 } 3310 }
2936 }, 3311 },
2937 "notification-url": "https://packagist.org/downloads/", 3312 "notification-url": "https://packagist.org/downloads/",
2938 "license": [ 3313 "license": [
2939 "MIT" 3314 "MIT"
2940 ], 3315 ],
2941 "authors": [ 3316 "authors": [
2942 { 3317 {
2943 "name": "Mark Baker", 3318 "name": "Mark Baker",
2944 "email": "mark@demon-angel.eu" 3319 "email": "mark@demon-angel.eu"
2945 } 3320 }
2946 ], 3321 ],
2947 "description": "PHP Class for working with matrices", 3322 "description": "PHP Class for working with matrices",
2948 "homepage": "https://github.com/MarkBaker/PHPMatrix", 3323 "homepage": "https://github.com/MarkBaker/PHPMatrix",
2949 "keywords": [ 3324 "keywords": [
2950 "mathematics", 3325 "mathematics",
2951 "matrix", 3326 "matrix",
2952 "vector" 3327 "vector"
2953 ], 3328 ],
2954 "support": { 3329 "support": {
2955 "issues": "https://github.com/MarkBaker/PHPMatrix/issues", 3330 "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
2956 "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1" 3331 "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
2957 }, 3332 },
2958 "time": "2022-12-02T22:17:43+00:00" 3333 "time": "2022-12-02T22:17:43+00:00"
2959 }, 3334 },
2960 { 3335 {
2961 "name": "masterminds/html5", 3336 "name": "masterminds/html5",
2962 "version": "2.8.0", 3337 "version": "2.8.0",
2963 "source": { 3338 "source": {
2964 "type": "git", 3339 "type": "git",
2965 "url": "https://github.com/Masterminds/html5-php.git", 3340 "url": "https://github.com/Masterminds/html5-php.git",
2966 "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3" 3341 "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3"
2967 }, 3342 },
2968 "dist": { 3343 "dist": {
2969 "type": "zip", 3344 "type": "zip",
2970 "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", 3345 "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
2971 "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", 3346 "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
2972 "shasum": "" 3347 "shasum": ""
2973 }, 3348 },
2974 "require": { 3349 "require": {
2975 "ext-dom": "*", 3350 "ext-dom": "*",
2976 "php": ">=5.3.0" 3351 "php": ">=5.3.0"
2977 }, 3352 },
2978 "require-dev": { 3353 "require-dev": {
2979 "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8" 3354 "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
2980 }, 3355 },
2981 "type": "library", 3356 "type": "library",
2982 "extra": { 3357 "extra": {
2983 "branch-alias": { 3358 "branch-alias": {
2984 "dev-master": "2.7-dev" 3359 "dev-master": "2.7-dev"
2985 } 3360 }
2986 }, 3361 },
2987 "autoload": { 3362 "autoload": {
2988 "psr-4": { 3363 "psr-4": {
2989 "Masterminds\\": "src" 3364 "Masterminds\\": "src"
2990 } 3365 }
2991 }, 3366 },
2992 "notification-url": "https://packagist.org/downloads/", 3367 "notification-url": "https://packagist.org/downloads/",
2993 "license": [ 3368 "license": [
2994 "MIT" 3369 "MIT"
2995 ], 3370 ],
2996 "authors": [ 3371 "authors": [
2997 { 3372 {
2998 "name": "Matt Butcher", 3373 "name": "Matt Butcher",
2999 "email": "technosophos@gmail.com" 3374 "email": "technosophos@gmail.com"
3000 }, 3375 },
3001 { 3376 {
3002 "name": "Matt Farina", 3377 "name": "Matt Farina",
3003 "email": "matt@mattfarina.com" 3378 "email": "matt@mattfarina.com"
3004 }, 3379 },
3005 { 3380 {
3006 "name": "Asmir Mustafic", 3381 "name": "Asmir Mustafic",
3007 "email": "goetas@gmail.com" 3382 "email": "goetas@gmail.com"
3008 } 3383 }
3009 ], 3384 ],
3010 "description": "An HTML5 parser and serializer.", 3385 "description": "An HTML5 parser and serializer.",
3011 "homepage": "http://masterminds.github.io/html5-php", 3386 "homepage": "http://masterminds.github.io/html5-php",
3012 "keywords": [ 3387 "keywords": [
3013 "HTML5", 3388 "HTML5",
3014 "dom", 3389 "dom",
3015 "html", 3390 "html",
3016 "parser", 3391 "parser",
3017 "querypath", 3392 "querypath",
3018 "serializer", 3393 "serializer",
3019 "xml" 3394 "xml"
3020 ], 3395 ],
3021 "support": { 3396 "support": {
3022 "issues": "https://github.com/Masterminds/html5-php/issues", 3397 "issues": "https://github.com/Masterminds/html5-php/issues",
3023 "source": "https://github.com/Masterminds/html5-php/tree/2.8.0" 3398 "source": "https://github.com/Masterminds/html5-php/tree/2.8.0"
3024 }, 3399 },
3025 "time": "2023-04-26T07:27:39+00:00" 3400 "time": "2023-04-26T07:27:39+00:00"
3026 }, 3401 },
3027 { 3402 {
3028 "name": "monolog/monolog", 3403 "name": "monolog/monolog",
3029 "version": "2.9.1", 3404 "version": "2.9.1",
3030 "source": { 3405 "source": {
3031 "type": "git", 3406 "type": "git",
3032 "url": "https://github.com/Seldaek/monolog.git", 3407 "url": "https://github.com/Seldaek/monolog.git",
3033 "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1" 3408 "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
3034 }, 3409 },
3035 "dist": { 3410 "dist": {
3036 "type": "zip", 3411 "type": "zip",
3037 "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1", 3412 "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
3038 "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1", 3413 "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
3039 "shasum": "" 3414 "shasum": ""
3040 }, 3415 },
3041 "require": { 3416 "require": {
3042 "php": ">=7.2", 3417 "php": ">=7.2",
3043 "psr/log": "^1.0.1 || ^2.0 || ^3.0" 3418 "psr/log": "^1.0.1 || ^2.0 || ^3.0"
3044 }, 3419 },
3045 "provide": { 3420 "provide": {
3046 "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" 3421 "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
3047 }, 3422 },
3048 "require-dev": { 3423 "require-dev": {
3049 "aws/aws-sdk-php": "^2.4.9 || ^3.0", 3424 "aws/aws-sdk-php": "^2.4.9 || ^3.0",
3050 "doctrine/couchdb": "~1.0@dev", 3425 "doctrine/couchdb": "~1.0@dev",
3051 "elasticsearch/elasticsearch": "^7 || ^8", 3426 "elasticsearch/elasticsearch": "^7 || ^8",
3052 "ext-json": "*", 3427 "ext-json": "*",
3053 "graylog2/gelf-php": "^1.4.2 || ^2@dev", 3428 "graylog2/gelf-php": "^1.4.2 || ^2@dev",
3054 "guzzlehttp/guzzle": "^7.4", 3429 "guzzlehttp/guzzle": "^7.4",
3055 "guzzlehttp/psr7": "^2.2", 3430 "guzzlehttp/psr7": "^2.2",
3056 "mongodb/mongodb": "^1.8", 3431 "mongodb/mongodb": "^1.8",
3057 "php-amqplib/php-amqplib": "~2.4 || ^3", 3432 "php-amqplib/php-amqplib": "~2.4 || ^3",
3058 "phpspec/prophecy": "^1.15", 3433 "phpspec/prophecy": "^1.15",
3059 "phpstan/phpstan": "^0.12.91", 3434 "phpstan/phpstan": "^0.12.91",
3060 "phpunit/phpunit": "^8.5.14", 3435 "phpunit/phpunit": "^8.5.14",
3061 "predis/predis": "^1.1 || ^2.0", 3436 "predis/predis": "^1.1 || ^2.0",
3062 "rollbar/rollbar": "^1.3 || ^2 || ^3", 3437 "rollbar/rollbar": "^1.3 || ^2 || ^3",
3063 "ruflin/elastica": "^7", 3438 "ruflin/elastica": "^7",
3064 "swiftmailer/swiftmailer": "^5.3|^6.0", 3439 "swiftmailer/swiftmailer": "^5.3|^6.0",
3065 "symfony/mailer": "^5.4 || ^6", 3440 "symfony/mailer": "^5.4 || ^6",
3066 "symfony/mime": "^5.4 || ^6" 3441 "symfony/mime": "^5.4 || ^6"
3067 }, 3442 },
3068 "suggest": { 3443 "suggest": {
3069 "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", 3444 "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
3070 "doctrine/couchdb": "Allow sending log messages to a CouchDB server", 3445 "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
3071 "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", 3446 "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
3072 "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", 3447 "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
3073 "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", 3448 "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
3074 "ext-mbstring": "Allow to work properly with unicode symbols", 3449 "ext-mbstring": "Allow to work properly with unicode symbols",
3075 "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", 3450 "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
3076 "ext-openssl": "Required to send log messages using SSL", 3451 "ext-openssl": "Required to send log messages using SSL",
3077 "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", 3452 "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
3078 "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", 3453 "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
3079 "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", 3454 "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
3080 "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", 3455 "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
3081 "rollbar/rollbar": "Allow sending log messages to Rollbar", 3456 "rollbar/rollbar": "Allow sending log messages to Rollbar",
3082 "ruflin/elastica": "Allow sending log messages to an Elastic Search server" 3457 "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
3083 }, 3458 },
3084 "type": "library", 3459 "type": "library",
3085 "extra": { 3460 "extra": {
3086 "branch-alias": { 3461 "branch-alias": {
3087 "dev-main": "2.x-dev" 3462 "dev-main": "2.x-dev"
3088 } 3463 }
3089 }, 3464 },
3090 "autoload": { 3465 "autoload": {
3091 "psr-4": { 3466 "psr-4": {
3092 "Monolog\\": "src/Monolog" 3467 "Monolog\\": "src/Monolog"
3093 } 3468 }
3094 }, 3469 },
3095 "notification-url": "https://packagist.org/downloads/", 3470 "notification-url": "https://packagist.org/downloads/",
3096 "license": [ 3471 "license": [
3097 "MIT" 3472 "MIT"
3098 ], 3473 ],
3099 "authors": [ 3474 "authors": [
3100 { 3475 {
3101 "name": "Jordi Boggiano", 3476 "name": "Jordi Boggiano",
3102 "email": "j.boggiano@seld.be", 3477 "email": "j.boggiano@seld.be",
3103 "homepage": "https://seld.be" 3478 "homepage": "https://seld.be"
3104 } 3479 }
3105 ], 3480 ],
3106 "description": "Sends your logs to files, sockets, inboxes, databases and various web services", 3481 "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
3107 "homepage": "https://github.com/Seldaek/monolog", 3482 "homepage": "https://github.com/Seldaek/monolog",
3108 "keywords": [ 3483 "keywords": [
3109 "log", 3484 "log",
3110 "logging", 3485 "logging",
3111 "psr-3" 3486 "psr-3"
3112 ], 3487 ],
3113 "support": { 3488 "support": {
3114 "issues": "https://github.com/Seldaek/monolog/issues", 3489 "issues": "https://github.com/Seldaek/monolog/issues",
3115 "source": "https://github.com/Seldaek/monolog/tree/2.9.1" 3490 "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
3116 }, 3491 },
3117 "funding": [ 3492 "funding": [
3118 { 3493 {
3119 "url": "https://github.com/Seldaek", 3494 "url": "https://github.com/Seldaek",
3120 "type": "github" 3495 "type": "github"
3121 }, 3496 },
3122 { 3497 {
3123 "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", 3498 "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
3124 "type": "tidelift" 3499 "type": "tidelift"
3125 } 3500 }
3126 ], 3501 ],
3127 "time": "2023-02-06T13:44:46+00:00" 3502 "time": "2023-02-06T13:44:46+00:00"
3128 }, 3503 },
3129 { 3504 {
3130 "name": "nesbot/carbon", 3505 "name": "nesbot/carbon",
3131 "version": "2.66.0", 3506 "version": "2.66.0",
3132 "source": { 3507 "source": {
3133 "type": "git", 3508 "type": "git",
3134 "url": "https://github.com/briannesbitt/Carbon.git", 3509 "url": "https://github.com/briannesbitt/Carbon.git",
3135 "reference": "496712849902241f04902033b0441b269effe001" 3510 "reference": "496712849902241f04902033b0441b269effe001"
3136 }, 3511 },
3137 "dist": { 3512 "dist": {
3138 "type": "zip", 3513 "type": "zip",
3139 "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001", 3514 "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
3140 "reference": "496712849902241f04902033b0441b269effe001", 3515 "reference": "496712849902241f04902033b0441b269effe001",
3141 "shasum": "" 3516 "shasum": ""
3142 }, 3517 },
3143 "require": { 3518 "require": {
3144 "ext-json": "*", 3519 "ext-json": "*",
3145 "php": "^7.1.8 || ^8.0", 3520 "php": "^7.1.8 || ^8.0",
3146 "symfony/polyfill-mbstring": "^1.0", 3521 "symfony/polyfill-mbstring": "^1.0",
3147 "symfony/polyfill-php80": "^1.16", 3522 "symfony/polyfill-php80": "^1.16",
3148 "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" 3523 "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
3149 }, 3524 },
3150 "require-dev": { 3525 "require-dev": {
3151 "doctrine/dbal": "^2.0 || ^3.1.4", 3526 "doctrine/dbal": "^2.0 || ^3.1.4",
3152 "doctrine/orm": "^2.7", 3527 "doctrine/orm": "^2.7",
3153 "friendsofphp/php-cs-fixer": "^3.0", 3528 "friendsofphp/php-cs-fixer": "^3.0",
3154 "kylekatarnls/multi-tester": "^2.0", 3529 "kylekatarnls/multi-tester": "^2.0",
3155 "ondrejmirtes/better-reflection": "*", 3530 "ondrejmirtes/better-reflection": "*",
3156 "phpmd/phpmd": "^2.9", 3531 "phpmd/phpmd": "^2.9",
3157 "phpstan/extension-installer": "^1.0", 3532 "phpstan/extension-installer": "^1.0",
3158 "phpstan/phpstan": "^0.12.99 || ^1.7.14", 3533 "phpstan/phpstan": "^0.12.99 || ^1.7.14",
3159 "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", 3534 "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
3160 "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", 3535 "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
3161 "squizlabs/php_codesniffer": "^3.4" 3536 "squizlabs/php_codesniffer": "^3.4"
3162 }, 3537 },
3163 "bin": [ 3538 "bin": [
3164 "bin/carbon" 3539 "bin/carbon"
3165 ], 3540 ],
3166 "type": "library", 3541 "type": "library",
3167 "extra": { 3542 "extra": {
3168 "branch-alias": { 3543 "branch-alias": {
3169 "dev-3.x": "3.x-dev", 3544 "dev-3.x": "3.x-dev",
3170 "dev-master": "2.x-dev" 3545 "dev-master": "2.x-dev"
3171 }, 3546 },
3172 "laravel": { 3547 "laravel": {
3173 "providers": [ 3548 "providers": [
3174 "Carbon\\Laravel\\ServiceProvider" 3549 "Carbon\\Laravel\\ServiceProvider"
3175 ] 3550 ]
3176 }, 3551 },
3177 "phpstan": { 3552 "phpstan": {
3178 "includes": [ 3553 "includes": [
3179 "extension.neon" 3554 "extension.neon"
3180 ] 3555 ]
3181 } 3556 }
3182 }, 3557 },
3183 "autoload": { 3558 "autoload": {
3184 "psr-4": { 3559 "psr-4": {
3185 "Carbon\\": "src/Carbon/" 3560 "Carbon\\": "src/Carbon/"
3186 } 3561 }
3187 }, 3562 },
3188 "notification-url": "https://packagist.org/downloads/", 3563 "notification-url": "https://packagist.org/downloads/",
3189 "license": [ 3564 "license": [
3190 "MIT" 3565 "MIT"
3191 ], 3566 ],
3192 "authors": [ 3567 "authors": [
3193 { 3568 {
3194 "name": "Brian Nesbitt", 3569 "name": "Brian Nesbitt",
3195 "email": "brian@nesbot.com", 3570 "email": "brian@nesbot.com",
3196 "homepage": "https://markido.com" 3571 "homepage": "https://markido.com"
3197 }, 3572 },
3198 { 3573 {
3199 "name": "kylekatarnls", 3574 "name": "kylekatarnls",
3200 "homepage": "https://github.com/kylekatarnls" 3575 "homepage": "https://github.com/kylekatarnls"
3201 } 3576 }
3202 ], 3577 ],
3203 "description": "An API extension for DateTime that supports 281 different languages.", 3578 "description": "An API extension for DateTime that supports 281 different languages.",
3204 "homepage": "https://carbon.nesbot.com", 3579 "homepage": "https://carbon.nesbot.com",
3205 "keywords": [ 3580 "keywords": [
3206 "date", 3581 "date",
3207 "datetime", 3582 "datetime",
3208 "time" 3583 "time"
3209 ], 3584 ],
3210 "support": { 3585 "support": {
3211 "docs": "https://carbon.nesbot.com/docs", 3586 "docs": "https://carbon.nesbot.com/docs",
3212 "issues": "https://github.com/briannesbitt/Carbon/issues", 3587 "issues": "https://github.com/briannesbitt/Carbon/issues",
3213 "source": "https://github.com/briannesbitt/Carbon" 3588 "source": "https://github.com/briannesbitt/Carbon"
3214 }, 3589 },
3215 "funding": [ 3590 "funding": [
3216 { 3591 {
3217 "url": "https://github.com/sponsors/kylekatarnls", 3592 "url": "https://github.com/sponsors/kylekatarnls",
3218 "type": "github" 3593 "type": "github"
3219 }, 3594 },
3220 { 3595 {
3221 "url": "https://opencollective.com/Carbon#sponsor", 3596 "url": "https://opencollective.com/Carbon#sponsor",
3222 "type": "opencollective" 3597 "type": "opencollective"
3223 }, 3598 },
3224 { 3599 {
3225 "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", 3600 "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
3226 "type": "tidelift" 3601 "type": "tidelift"
3227 } 3602 }
3228 ], 3603 ],
3229 "time": "2023-01-29T18:53:47+00:00" 3604 "time": "2023-01-29T18:53:47+00:00"
3230 }, 3605 },
3231 { 3606 {
3232 "name": "nette/schema", 3607 "name": "nette/schema",
3233 "version": "v1.2.3", 3608 "version": "v1.2.3",
3234 "source": { 3609 "source": {
3235 "type": "git", 3610 "type": "git",
3236 "url": "https://github.com/nette/schema.git", 3611 "url": "https://github.com/nette/schema.git",
3237 "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f" 3612 "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
3238 }, 3613 },
3239 "dist": { 3614 "dist": {
3240 "type": "zip", 3615 "type": "zip",
3241 "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", 3616 "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
3242 "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", 3617 "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
3243 "shasum": "" 3618 "shasum": ""
3244 }, 3619 },
3245 "require": { 3620 "require": {
3246 "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", 3621 "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
3247 "php": ">=7.1 <8.3" 3622 "php": ">=7.1 <8.3"
3248 }, 3623 },
3249 "require-dev": { 3624 "require-dev": {
3250 "nette/tester": "^2.3 || ^2.4", 3625 "nette/tester": "^2.3 || ^2.4",
3251 "phpstan/phpstan-nette": "^1.0", 3626 "phpstan/phpstan-nette": "^1.0",
3252 "tracy/tracy": "^2.7" 3627 "tracy/tracy": "^2.7"
3253 }, 3628 },
3254 "type": "library", 3629 "type": "library",
3255 "extra": { 3630 "extra": {
3256 "branch-alias": { 3631 "branch-alias": {
3257 "dev-master": "1.2-dev" 3632 "dev-master": "1.2-dev"
3258 } 3633 }
3259 }, 3634 },
3260 "autoload": { 3635 "autoload": {
3261 "classmap": [ 3636 "classmap": [
3262 "src/" 3637 "src/"
3263 ] 3638 ]
3264 }, 3639 },
3265 "notification-url": "https://packagist.org/downloads/", 3640 "notification-url": "https://packagist.org/downloads/",
3266 "license": [ 3641 "license": [
3267 "BSD-3-Clause", 3642 "BSD-3-Clause",
3268 "GPL-2.0-only", 3643 "GPL-2.0-only",
3269 "GPL-3.0-only" 3644 "GPL-3.0-only"
3270 ], 3645 ],
3271 "authors": [ 3646 "authors": [
3272 { 3647 {
3273 "name": "David Grudl", 3648 "name": "David Grudl",
3274 "homepage": "https://davidgrudl.com" 3649 "homepage": "https://davidgrudl.com"
3275 }, 3650 },
3276 { 3651 {
3277 "name": "Nette Community", 3652 "name": "Nette Community",
3278 "homepage": "https://nette.org/contributors" 3653 "homepage": "https://nette.org/contributors"
3279 } 3654 }
3280 ], 3655 ],
3281 "description": "📐 Nette Schema: validating data structures against a given Schema.", 3656 "description": "📐 Nette Schema: validating data structures against a given Schema.",
3282 "homepage": "https://nette.org", 3657 "homepage": "https://nette.org",
3283 "keywords": [ 3658 "keywords": [
3284 "config", 3659 "config",
3285 "nette" 3660 "nette"
3286 ], 3661 ],
3287 "support": { 3662 "support": {
3288 "issues": "https://github.com/nette/schema/issues", 3663 "issues": "https://github.com/nette/schema/issues",
3289 "source": "https://github.com/nette/schema/tree/v1.2.3" 3664 "source": "https://github.com/nette/schema/tree/v1.2.3"
3290 }, 3665 },
3291 "time": "2022-10-13T01:24:26+00:00" 3666 "time": "2022-10-13T01:24:26+00:00"
3292 }, 3667 },
3293 { 3668 {
3294 "name": "nette/utils", 3669 "name": "nette/utils",
3295 "version": "v4.0.0", 3670 "version": "v4.0.0",
3296 "source": { 3671 "source": {
3297 "type": "git", 3672 "type": "git",
3298 "url": "https://github.com/nette/utils.git", 3673 "url": "https://github.com/nette/utils.git",
3299 "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e" 3674 "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
3300 }, 3675 },
3301 "dist": { 3676 "dist": {
3302 "type": "zip", 3677 "type": "zip",
3303 "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e", 3678 "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
3304 "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e", 3679 "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
3305 "shasum": "" 3680 "shasum": ""
3306 }, 3681 },
3307 "require": { 3682 "require": {
3308 "php": ">=8.0 <8.3" 3683 "php": ">=8.0 <8.3"
3309 }, 3684 },
3310 "conflict": { 3685 "conflict": {
3311 "nette/finder": "<3", 3686 "nette/finder": "<3",
3312 "nette/schema": "<1.2.2" 3687 "nette/schema": "<1.2.2"
3313 }, 3688 },
3314 "require-dev": { 3689 "require-dev": {
3315 "jetbrains/phpstorm-attributes": "dev-master", 3690 "jetbrains/phpstorm-attributes": "dev-master",
3316 "nette/tester": "^2.4", 3691 "nette/tester": "^2.4",
3317 "phpstan/phpstan": "^1.0", 3692 "phpstan/phpstan": "^1.0",
3318 "tracy/tracy": "^2.9" 3693 "tracy/tracy": "^2.9"
3319 }, 3694 },
3320 "suggest": { 3695 "suggest": {
3321 "ext-gd": "to use Image", 3696 "ext-gd": "to use Image",
3322 "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", 3697 "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
3323 "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", 3698 "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
3324 "ext-json": "to use Nette\\Utils\\Json", 3699 "ext-json": "to use Nette\\Utils\\Json",
3325 "ext-mbstring": "to use Strings::lower() etc...", 3700 "ext-mbstring": "to use Strings::lower() etc...",
3326 "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", 3701 "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
3327 "ext-xml": "to use Strings::length() etc. when mbstring is not available" 3702 "ext-xml": "to use Strings::length() etc. when mbstring is not available"
3328 }, 3703 },
3329 "type": "library", 3704 "type": "library",
3330 "extra": { 3705 "extra": {
3331 "branch-alias": { 3706 "branch-alias": {
3332 "dev-master": "4.0-dev" 3707 "dev-master": "4.0-dev"
3333 } 3708 }
3334 }, 3709 },
3335 "autoload": { 3710 "autoload": {
3336 "classmap": [ 3711 "classmap": [
3337 "src/" 3712 "src/"
3338 ] 3713 ]
3339 }, 3714 },
3340 "notification-url": "https://packagist.org/downloads/", 3715 "notification-url": "https://packagist.org/downloads/",
3341 "license": [ 3716 "license": [
3342 "BSD-3-Clause", 3717 "BSD-3-Clause",
3343 "GPL-2.0-only", 3718 "GPL-2.0-only",
3344 "GPL-3.0-only" 3719 "GPL-3.0-only"
3345 ], 3720 ],
3346 "authors": [ 3721 "authors": [
3347 { 3722 {
3348 "name": "David Grudl", 3723 "name": "David Grudl",
3349 "homepage": "https://davidgrudl.com" 3724 "homepage": "https://davidgrudl.com"
3350 }, 3725 },
3351 { 3726 {
3352 "name": "Nette Community", 3727 "name": "Nette Community",
3353 "homepage": "https://nette.org/contributors" 3728 "homepage": "https://nette.org/contributors"
3354 } 3729 }
3355 ], 3730 ],
3356 "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", 3731 "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
3357 "homepage": "https://nette.org", 3732 "homepage": "https://nette.org",
3358 "keywords": [ 3733 "keywords": [
3359 "array", 3734 "array",
3360 "core", 3735 "core",
3361 "datetime", 3736 "datetime",
3362 "images", 3737 "images",
3363 "json", 3738 "json",
3364 "nette", 3739 "nette",
3365 "paginator", 3740 "paginator",
3366 "password", 3741 "password",
3367 "slugify", 3742 "slugify",
3368 "string", 3743 "string",
3369 "unicode", 3744 "unicode",
3370 "utf-8", 3745 "utf-8",
3371 "utility", 3746 "utility",
3372 "validation" 3747 "validation"
3373 ], 3748 ],
3374 "support": { 3749 "support": {
3375 "issues": "https://github.com/nette/utils/issues", 3750 "issues": "https://github.com/nette/utils/issues",
3376 "source": "https://github.com/nette/utils/tree/v4.0.0" 3751 "source": "https://github.com/nette/utils/tree/v4.0.0"
3377 }, 3752 },
3378 "time": "2023-02-02T10:41:53+00:00" 3753 "time": "2023-02-02T10:41:53+00:00"
3379 }, 3754 },
3380 { 3755 {
3381 "name": "nikic/php-parser", 3756 "name": "nikic/php-parser",
3382 "version": "v4.15.4", 3757 "version": "v4.15.4",
3383 "source": { 3758 "source": {
3384 "type": "git", 3759 "type": "git",
3385 "url": "https://github.com/nikic/PHP-Parser.git", 3760 "url": "https://github.com/nikic/PHP-Parser.git",
3386 "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290" 3761 "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
3387 }, 3762 },
3388 "dist": { 3763 "dist": {
3389 "type": "zip", 3764 "type": "zip",
3390 "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290", 3765 "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
3391 "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290", 3766 "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
3392 "shasum": "" 3767 "shasum": ""
3393 }, 3768 },
3394 "require": { 3769 "require": {
3395 "ext-tokenizer": "*", 3770 "ext-tokenizer": "*",
3396 "php": ">=7.0" 3771 "php": ">=7.0"
3397 }, 3772 },
3398 "require-dev": { 3773 "require-dev": {
3399 "ircmaxell/php-yacc": "^0.0.7", 3774 "ircmaxell/php-yacc": "^0.0.7",
3400 "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" 3775 "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
3401 }, 3776 },
3402 "bin": [ 3777 "bin": [
3403 "bin/php-parse" 3778 "bin/php-parse"
3404 ], 3779 ],
3405 "type": "library", 3780 "type": "library",
3406 "extra": { 3781 "extra": {
3407 "branch-alias": { 3782 "branch-alias": {
3408 "dev-master": "4.9-dev" 3783 "dev-master": "4.9-dev"
3409 } 3784 }
3410 }, 3785 },
3411 "autoload": { 3786 "autoload": {
3412 "psr-4": { 3787 "psr-4": {
3413 "PhpParser\\": "lib/PhpParser" 3788 "PhpParser\\": "lib/PhpParser"
3414 } 3789 }
3415 }, 3790 },
3416 "notification-url": "https://packagist.org/downloads/", 3791 "notification-url": "https://packagist.org/downloads/",
3417 "license": [ 3792 "license": [
3418 "BSD-3-Clause" 3793 "BSD-3-Clause"
3419 ], 3794 ],
3420 "authors": [ 3795 "authors": [
3421 { 3796 {
3422 "name": "Nikita Popov" 3797 "name": "Nikita Popov"
3423 } 3798 }
3424 ], 3799 ],
3425 "description": "A PHP parser written in PHP", 3800 "description": "A PHP parser written in PHP",
3426 "keywords": [ 3801 "keywords": [
3427 "parser", 3802 "parser",
3428 "php" 3803 "php"
3429 ], 3804 ],
3430 "support": { 3805 "support": {
3431 "issues": "https://github.com/nikic/PHP-Parser/issues", 3806 "issues": "https://github.com/nikic/PHP-Parser/issues",
3432 "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4" 3807 "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
3433 }, 3808 },
3434 "time": "2023-03-05T19:49:14+00:00" 3809 "time": "2023-03-05T19:49:14+00:00"
3435 }, 3810 },
3436 { 3811 {
3437 "name": "nunomaduro/termwind", 3812 "name": "nunomaduro/termwind",
3438 "version": "v1.15.1", 3813 "version": "v1.15.1",
3439 "source": { 3814 "source": {
3440 "type": "git", 3815 "type": "git",
3441 "url": "https://github.com/nunomaduro/termwind.git", 3816 "url": "https://github.com/nunomaduro/termwind.git",
3442 "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc" 3817 "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
3443 }, 3818 },
3444 "dist": { 3819 "dist": {
3445 "type": "zip", 3820 "type": "zip",
3446 "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc", 3821 "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
3447 "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc", 3822 "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
3448 "shasum": "" 3823 "shasum": ""
3449 }, 3824 },
3450 "require": { 3825 "require": {
3451 "ext-mbstring": "*", 3826 "ext-mbstring": "*",
3452 "php": "^8.0", 3827 "php": "^8.0",
3453 "symfony/console": "^5.3.0|^6.0.0" 3828 "symfony/console": "^5.3.0|^6.0.0"
3454 }, 3829 },
3455 "require-dev": { 3830 "require-dev": {
3456 "ergebnis/phpstan-rules": "^1.0.", 3831 "ergebnis/phpstan-rules": "^1.0.",
3457 "illuminate/console": "^8.0|^9.0", 3832 "illuminate/console": "^8.0|^9.0",
3458 "illuminate/support": "^8.0|^9.0", 3833 "illuminate/support": "^8.0|^9.0",
3459 "laravel/pint": "^1.0.0", 3834 "laravel/pint": "^1.0.0",
3460 "pestphp/pest": "^1.21.0", 3835 "pestphp/pest": "^1.21.0",
3461 "pestphp/pest-plugin-mock": "^1.0", 3836 "pestphp/pest-plugin-mock": "^1.0",
3462 "phpstan/phpstan": "^1.4.6", 3837 "phpstan/phpstan": "^1.4.6",
3463 "phpstan/phpstan-strict-rules": "^1.1.0", 3838 "phpstan/phpstan-strict-rules": "^1.1.0",
3464 "symfony/var-dumper": "^5.2.7|^6.0.0", 3839 "symfony/var-dumper": "^5.2.7|^6.0.0",
3465 "thecodingmachine/phpstan-strict-rules": "^1.0.0" 3840 "thecodingmachine/phpstan-strict-rules": "^1.0.0"
3466 }, 3841 },
3467 "type": "library", 3842 "type": "library",
3468 "extra": { 3843 "extra": {
3469 "laravel": { 3844 "laravel": {
3470 "providers": [ 3845 "providers": [
3471 "Termwind\\Laravel\\TermwindServiceProvider" 3846 "Termwind\\Laravel\\TermwindServiceProvider"
3472 ] 3847 ]
3473 } 3848 }
3474 }, 3849 },
3475 "autoload": { 3850 "autoload": {
3476 "files": [ 3851 "files": [
3477 "src/Functions.php" 3852 "src/Functions.php"
3478 ], 3853 ],
3479 "psr-4": { 3854 "psr-4": {
3480 "Termwind\\": "src/" 3855 "Termwind\\": "src/"
3481 } 3856 }
3482 }, 3857 },
3483 "notification-url": "https://packagist.org/downloads/", 3858 "notification-url": "https://packagist.org/downloads/",
3484 "license": [ 3859 "license": [
3485 "MIT" 3860 "MIT"
3486 ], 3861 ],
3487 "authors": [ 3862 "authors": [
3488 { 3863 {
3489 "name": "Nuno Maduro", 3864 "name": "Nuno Maduro",
3490 "email": "enunomaduro@gmail.com" 3865 "email": "enunomaduro@gmail.com"
3491 } 3866 }
3492 ], 3867 ],
3493 "description": "Its like Tailwind CSS, but for the console.", 3868 "description": "Its like Tailwind CSS, but for the console.",
3494 "keywords": [ 3869 "keywords": [
3495 "cli", 3870 "cli",
3496 "console", 3871 "console",
3497 "css", 3872 "css",
3498 "package", 3873 "package",
3499 "php", 3874 "php",
3500 "style" 3875 "style"
3501 ], 3876 ],
3502 "support": { 3877 "support": {
3503 "issues": "https://github.com/nunomaduro/termwind/issues", 3878 "issues": "https://github.com/nunomaduro/termwind/issues",
3504 "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1" 3879 "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
3505 }, 3880 },
3506 "funding": [ 3881 "funding": [
3507 { 3882 {
3508 "url": "https://www.paypal.com/paypalme/enunomaduro", 3883 "url": "https://www.paypal.com/paypalme/enunomaduro",
3509 "type": "custom" 3884 "type": "custom"
3510 }, 3885 },
3511 { 3886 {
3512 "url": "https://github.com/nunomaduro", 3887 "url": "https://github.com/nunomaduro",
3513 "type": "github" 3888 "type": "github"
3514 }, 3889 },
3515 { 3890 {
3516 "url": "https://github.com/xiCO2k", 3891 "url": "https://github.com/xiCO2k",
3517 "type": "github" 3892 "type": "github"
3518 } 3893 }
3519 ], 3894 ],
3520 "time": "2023-02-08T01:06:31+00:00" 3895 "time": "2023-02-08T01:06:31+00:00"
3521 }, 3896 },
3522 { 3897 {
3523 "name": "phenx/php-font-lib", 3898 "name": "phenx/php-font-lib",
3524 "version": "0.5.6", 3899 "version": "0.5.6",
3525 "source": { 3900 "source": {
3526 "type": "git", 3901 "type": "git",
3527 "url": "https://github.com/dompdf/php-font-lib.git", 3902 "url": "https://github.com/dompdf/php-font-lib.git",
3528 "reference": "a1681e9793040740a405ac5b189275059e2a9863" 3903 "reference": "a1681e9793040740a405ac5b189275059e2a9863"
3529 }, 3904 },
3530 "dist": { 3905 "dist": {
3531 "type": "zip", 3906 "type": "zip",
3532 "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863", 3907 "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863",
3533 "reference": "a1681e9793040740a405ac5b189275059e2a9863", 3908 "reference": "a1681e9793040740a405ac5b189275059e2a9863",
3534 "shasum": "" 3909 "shasum": ""
3535 }, 3910 },
3536 "require": { 3911 "require": {
3537 "ext-mbstring": "*" 3912 "ext-mbstring": "*"
3538 }, 3913 },
3539 "require-dev": { 3914 "require-dev": {
3540 "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6" 3915 "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6"
3541 }, 3916 },
3542 "type": "library", 3917 "type": "library",
3543 "autoload": { 3918 "autoload": {
3544 "psr-4": { 3919 "psr-4": {
3545 "FontLib\\": "src/FontLib" 3920 "FontLib\\": "src/FontLib"
3546 } 3921 }
3547 }, 3922 },
3548 "notification-url": "https://packagist.org/downloads/", 3923 "notification-url": "https://packagist.org/downloads/",
3549 "license": [ 3924 "license": [
3550 "LGPL-2.1-or-later" 3925 "LGPL-2.1-or-later"
3551 ], 3926 ],
3552 "authors": [ 3927 "authors": [
3553 { 3928 {
3554 "name": "Fabien Ménager", 3929 "name": "Fabien Ménager",
3555 "email": "fabien.menager@gmail.com" 3930 "email": "fabien.menager@gmail.com"
3556 } 3931 }
3557 ], 3932 ],
3558 "description": "A library to read, parse, export and make subsets of different types of font files.", 3933 "description": "A library to read, parse, export and make subsets of different types of font files.",
3559 "homepage": "https://github.com/PhenX/php-font-lib", 3934 "homepage": "https://github.com/PhenX/php-font-lib",
3560 "support": { 3935 "support": {
3561 "issues": "https://github.com/dompdf/php-font-lib/issues", 3936 "issues": "https://github.com/dompdf/php-font-lib/issues",
3562 "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6" 3937 "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6"
3563 }, 3938 },
3564 "time": "2024-01-29T14:45:26+00:00" 3939 "time": "2024-01-29T14:45:26+00:00"
3565 }, 3940 },
3566 { 3941 {
3567 "name": "phenx/php-svg-lib", 3942 "name": "phenx/php-svg-lib",
3568 "version": "0.5.2", 3943 "version": "0.5.2",
3569 "source": { 3944 "source": {
3570 "type": "git", 3945 "type": "git",
3571 "url": "https://github.com/dompdf/php-svg-lib.git", 3946 "url": "https://github.com/dompdf/php-svg-lib.git",
3572 "reference": "732faa9fb4309221e2bd9b2fda5de44f947133aa" 3947 "reference": "732faa9fb4309221e2bd9b2fda5de44f947133aa"
3573 }, 3948 },
3574 "dist": { 3949 "dist": {
3575 "type": "zip", 3950 "type": "zip",
3576 "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/732faa9fb4309221e2bd9b2fda5de44f947133aa", 3951 "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/732faa9fb4309221e2bd9b2fda5de44f947133aa",
3577 "reference": "732faa9fb4309221e2bd9b2fda5de44f947133aa", 3952 "reference": "732faa9fb4309221e2bd9b2fda5de44f947133aa",
3578 "shasum": "" 3953 "shasum": ""
3579 }, 3954 },
3580 "require": { 3955 "require": {
3581 "ext-mbstring": "*", 3956 "ext-mbstring": "*",
3582 "php": "^7.1 || ^8.0", 3957 "php": "^7.1 || ^8.0",
3583 "sabberworm/php-css-parser": "^8.4" 3958 "sabberworm/php-css-parser": "^8.4"
3584 }, 3959 },
3585 "require-dev": { 3960 "require-dev": {
3586 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5" 3961 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
3587 }, 3962 },
3588 "type": "library", 3963 "type": "library",
3589 "autoload": { 3964 "autoload": {
3590 "psr-4": { 3965 "psr-4": {
3591 "Svg\\": "src/Svg" 3966 "Svg\\": "src/Svg"
3592 } 3967 }
3593 }, 3968 },
3594 "notification-url": "https://packagist.org/downloads/", 3969 "notification-url": "https://packagist.org/downloads/",
3595 "license": [ 3970 "license": [
3596 "LGPL-3.0" 3971 "LGPL-3.0"
3597 ], 3972 ],
3598 "authors": [ 3973 "authors": [
3599 { 3974 {
3600 "name": "Fabien Ménager", 3975 "name": "Fabien Ménager",
3601 "email": "fabien.menager@gmail.com" 3976 "email": "fabien.menager@gmail.com"
3602 } 3977 }
3603 ], 3978 ],
3604 "description": "A library to read, parse and export to PDF SVG files.", 3979 "description": "A library to read, parse and export to PDF SVG files.",
3605 "homepage": "https://github.com/PhenX/php-svg-lib", 3980 "homepage": "https://github.com/PhenX/php-svg-lib",
3606 "support": { 3981 "support": {
3607 "issues": "https://github.com/dompdf/php-svg-lib/issues", 3982 "issues": "https://github.com/dompdf/php-svg-lib/issues",
3608 "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.2" 3983 "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.2"
3609 }, 3984 },
3610 "time": "2024-02-07T12:49:40+00:00" 3985 "time": "2024-02-07T12:49:40+00:00"
3611 }, 3986 },
3612 { 3987 {
3613 "name": "phpoffice/phpspreadsheet", 3988 "name": "phpoffice/phpspreadsheet",
3614 "version": "1.29.0", 3989 "version": "1.29.0",
3615 "source": { 3990 "source": {
3616 "type": "git", 3991 "type": "git",
3617 "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", 3992 "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
3618 "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0" 3993 "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
3619 }, 3994 },
3620 "dist": { 3995 "dist": {
3621 "type": "zip", 3996 "type": "zip",
3622 "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0", 3997 "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
3623 "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0", 3998 "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
3624 "shasum": "" 3999 "shasum": ""
3625 }, 4000 },
3626 "require": { 4001 "require": {
3627 "ext-ctype": "*", 4002 "ext-ctype": "*",
3628 "ext-dom": "*", 4003 "ext-dom": "*",
3629 "ext-fileinfo": "*", 4004 "ext-fileinfo": "*",
3630 "ext-gd": "*", 4005 "ext-gd": "*",
3631 "ext-iconv": "*", 4006 "ext-iconv": "*",
3632 "ext-libxml": "*", 4007 "ext-libxml": "*",
3633 "ext-mbstring": "*", 4008 "ext-mbstring": "*",
3634 "ext-simplexml": "*", 4009 "ext-simplexml": "*",
3635 "ext-xml": "*", 4010 "ext-xml": "*",
3636 "ext-xmlreader": "*", 4011 "ext-xmlreader": "*",
3637 "ext-xmlwriter": "*", 4012 "ext-xmlwriter": "*",
3638 "ext-zip": "*", 4013 "ext-zip": "*",
3639 "ext-zlib": "*", 4014 "ext-zlib": "*",
3640 "ezyang/htmlpurifier": "^4.15", 4015 "ezyang/htmlpurifier": "^4.15",
3641 "maennchen/zipstream-php": "^2.1 || ^3.0", 4016 "maennchen/zipstream-php": "^2.1 || ^3.0",
3642 "markbaker/complex": "^3.0", 4017 "markbaker/complex": "^3.0",
3643 "markbaker/matrix": "^3.0", 4018 "markbaker/matrix": "^3.0",
3644 "php": "^7.4 || ^8.0", 4019 "php": "^7.4 || ^8.0",
3645 "psr/http-client": "^1.0", 4020 "psr/http-client": "^1.0",
3646 "psr/http-factory": "^1.0", 4021 "psr/http-factory": "^1.0",
3647 "psr/simple-cache": "^1.0 || ^2.0 || ^3.0" 4022 "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
3648 }, 4023 },
3649 "require-dev": { 4024 "require-dev": {
3650 "dealerdirect/phpcodesniffer-composer-installer": "dev-main", 4025 "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
3651 "dompdf/dompdf": "^1.0 || ^2.0", 4026 "dompdf/dompdf": "^1.0 || ^2.0",
3652 "friendsofphp/php-cs-fixer": "^3.2", 4027 "friendsofphp/php-cs-fixer": "^3.2",
3653 "mitoteam/jpgraph": "^10.3", 4028 "mitoteam/jpgraph": "^10.3",
3654 "mpdf/mpdf": "^8.1.1", 4029 "mpdf/mpdf": "^8.1.1",
3655 "phpcompatibility/php-compatibility": "^9.3", 4030 "phpcompatibility/php-compatibility": "^9.3",
3656 "phpstan/phpstan": "^1.1", 4031 "phpstan/phpstan": "^1.1",
3657 "phpstan/phpstan-phpunit": "^1.0", 4032 "phpstan/phpstan-phpunit": "^1.0",
3658 "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0", 4033 "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
3659 "squizlabs/php_codesniffer": "^3.7", 4034 "squizlabs/php_codesniffer": "^3.7",
3660 "tecnickcom/tcpdf": "^6.5" 4035 "tecnickcom/tcpdf": "^6.5"
3661 }, 4036 },
3662 "suggest": { 4037 "suggest": {
3663 "dompdf/dompdf": "Option for rendering PDF with PDF Writer", 4038 "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
3664 "ext-intl": "PHP Internationalization Functions", 4039 "ext-intl": "PHP Internationalization Functions",
3665 "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers", 4040 "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
3666 "mpdf/mpdf": "Option for rendering PDF with PDF Writer", 4041 "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
3667 "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer" 4042 "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
3668 }, 4043 },
3669 "type": "library", 4044 "type": "library",
3670 "autoload": { 4045 "autoload": {
3671 "psr-4": { 4046 "psr-4": {
3672 "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet" 4047 "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
3673 } 4048 }
3674 }, 4049 },
3675 "notification-url": "https://packagist.org/downloads/", 4050 "notification-url": "https://packagist.org/downloads/",
3676 "license": [ 4051 "license": [
3677 "MIT" 4052 "MIT"
3678 ], 4053 ],
3679 "authors": [ 4054 "authors": [
3680 { 4055 {
3681 "name": "Maarten Balliauw", 4056 "name": "Maarten Balliauw",
3682 "homepage": "https://blog.maartenballiauw.be" 4057 "homepage": "https://blog.maartenballiauw.be"
3683 }, 4058 },
3684 { 4059 {
3685 "name": "Mark Baker", 4060 "name": "Mark Baker",
3686 "homepage": "https://markbakeruk.net" 4061 "homepage": "https://markbakeruk.net"
3687 }, 4062 },
3688 { 4063 {
3689 "name": "Franck Lefevre", 4064 "name": "Franck Lefevre",
3690 "homepage": "https://rootslabs.net" 4065 "homepage": "https://rootslabs.net"
3691 }, 4066 },
3692 { 4067 {
3693 "name": "Erik Tilt" 4068 "name": "Erik Tilt"
3694 }, 4069 },
3695 { 4070 {
3696 "name": "Adrien Crivelli" 4071 "name": "Adrien Crivelli"
3697 } 4072 }
3698 ], 4073 ],
3699 "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", 4074 "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
3700 "homepage": "https://github.com/PHPOffice/PhpSpreadsheet", 4075 "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
3701 "keywords": [ 4076 "keywords": [
3702 "OpenXML", 4077 "OpenXML",
3703 "excel", 4078 "excel",
3704 "gnumeric", 4079 "gnumeric",
3705 "ods", 4080 "ods",
3706 "php", 4081 "php",
3707 "spreadsheet", 4082 "spreadsheet",
3708 "xls", 4083 "xls",
3709 "xlsx" 4084 "xlsx"
3710 ], 4085 ],
3711 "support": { 4086 "support": {
3712 "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", 4087 "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
3713 "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0" 4088 "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
3714 }, 4089 },
3715 "time": "2023-06-14T22:48:31+00:00" 4090 "time": "2023-06-14T22:48:31+00:00"
3716 }, 4091 },
3717 { 4092 {
3718 "name": "phpoption/phpoption", 4093 "name": "phpoption/phpoption",
3719 "version": "1.9.1", 4094 "version": "1.9.1",
3720 "source": { 4095 "source": {
3721 "type": "git", 4096 "type": "git",
3722 "url": "https://github.com/schmittjoh/php-option.git", 4097 "url": "https://github.com/schmittjoh/php-option.git",
3723 "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e" 4098 "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
3724 }, 4099 },
3725 "dist": { 4100 "dist": {
3726 "type": "zip", 4101 "type": "zip",
3727 "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e", 4102 "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
3728 "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e", 4103 "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
3729 "shasum": "" 4104 "shasum": ""
3730 }, 4105 },
3731 "require": { 4106 "require": {
3732 "php": "^7.2.5 || ^8.0" 4107 "php": "^7.2.5 || ^8.0"
3733 }, 4108 },
3734 "require-dev": { 4109 "require-dev": {
3735 "bamarni/composer-bin-plugin": "^1.8.2", 4110 "bamarni/composer-bin-plugin": "^1.8.2",
3736 "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" 4111 "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
3737 }, 4112 },
3738 "type": "library", 4113 "type": "library",
3739 "extra": { 4114 "extra": {
3740 "bamarni-bin": { 4115 "bamarni-bin": {
3741 "bin-links": true, 4116 "bin-links": true,
3742 "forward-command": true 4117 "forward-command": true
3743 }, 4118 },
3744 "branch-alias": { 4119 "branch-alias": {
3745 "dev-master": "1.9-dev" 4120 "dev-master": "1.9-dev"
3746 } 4121 }
3747 }, 4122 },
3748 "autoload": { 4123 "autoload": {
3749 "psr-4": { 4124 "psr-4": {
3750 "PhpOption\\": "src/PhpOption/" 4125 "PhpOption\\": "src/PhpOption/"
3751 } 4126 }
3752 }, 4127 },
3753 "notification-url": "https://packagist.org/downloads/", 4128 "notification-url": "https://packagist.org/downloads/",
3754 "license": [ 4129 "license": [
3755 "Apache-2.0" 4130 "Apache-2.0"
3756 ], 4131 ],
3757 "authors": [ 4132 "authors": [
3758 { 4133 {
3759 "name": "Johannes M. Schmitt", 4134 "name": "Johannes M. Schmitt",
3760 "email": "schmittjoh@gmail.com", 4135 "email": "schmittjoh@gmail.com",
3761 "homepage": "https://github.com/schmittjoh" 4136 "homepage": "https://github.com/schmittjoh"
3762 }, 4137 },
3763 { 4138 {
3764 "name": "Graham Campbell", 4139 "name": "Graham Campbell",
3765 "email": "hello@gjcampbell.co.uk", 4140 "email": "hello@gjcampbell.co.uk",
3766 "homepage": "https://github.com/GrahamCampbell" 4141 "homepage": "https://github.com/GrahamCampbell"
3767 } 4142 }
3768 ], 4143 ],
3769 "description": "Option Type for PHP", 4144 "description": "Option Type for PHP",
3770 "keywords": [ 4145 "keywords": [
3771 "language", 4146 "language",
3772 "option", 4147 "option",
3773 "php", 4148 "php",
3774 "type" 4149 "type"
3775 ], 4150 ],
3776 "support": { 4151 "support": {
3777 "issues": "https://github.com/schmittjoh/php-option/issues", 4152 "issues": "https://github.com/schmittjoh/php-option/issues",
3778 "source": "https://github.com/schmittjoh/php-option/tree/1.9.1" 4153 "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
3779 }, 4154 },
3780 "funding": [ 4155 "funding": [
3781 { 4156 {
3782 "url": "https://github.com/GrahamCampbell", 4157 "url": "https://github.com/GrahamCampbell",
3783 "type": "github" 4158 "type": "github"
3784 }, 4159 },
3785 { 4160 {
3786 "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", 4161 "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
3787 "type": "tidelift" 4162 "type": "tidelift"
3788 } 4163 }
3789 ], 4164 ],
3790 "time": "2023-02-25T19:38:58+00:00" 4165 "time": "2023-02-25T19:38:58+00:00"
3791 }, 4166 },
3792 { 4167 {
3793 "name": "psr/container", 4168 "name": "psr/container",
3794 "version": "2.0.2", 4169 "version": "2.0.2",
3795 "source": { 4170 "source": {
3796 "type": "git", 4171 "type": "git",
3797 "url": "https://github.com/php-fig/container.git", 4172 "url": "https://github.com/php-fig/container.git",
3798 "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" 4173 "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
3799 }, 4174 },
3800 "dist": { 4175 "dist": {
3801 "type": "zip", 4176 "type": "zip",
3802 "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", 4177 "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
3803 "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", 4178 "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
3804 "shasum": "" 4179 "shasum": ""
3805 }, 4180 },
3806 "require": { 4181 "require": {
3807 "php": ">=7.4.0" 4182 "php": ">=7.4.0"
3808 }, 4183 },
3809 "type": "library", 4184 "type": "library",
3810 "extra": { 4185 "extra": {
3811 "branch-alias": { 4186 "branch-alias": {
3812 "dev-master": "2.0.x-dev" 4187 "dev-master": "2.0.x-dev"
3813 } 4188 }
3814 }, 4189 },
3815 "autoload": { 4190 "autoload": {
3816 "psr-4": { 4191 "psr-4": {
3817 "Psr\\Container\\": "src/" 4192 "Psr\\Container\\": "src/"
3818 } 4193 }
3819 }, 4194 },
3820 "notification-url": "https://packagist.org/downloads/", 4195 "notification-url": "https://packagist.org/downloads/",
3821 "license": [ 4196 "license": [
3822 "MIT" 4197 "MIT"
3823 ], 4198 ],
3824 "authors": [ 4199 "authors": [
3825 { 4200 {
3826 "name": "PHP-FIG", 4201 "name": "PHP-FIG",
3827 "homepage": "https://www.php-fig.org/" 4202 "homepage": "https://www.php-fig.org/"
3828 } 4203 }
3829 ], 4204 ],
3830 "description": "Common Container Interface (PHP FIG PSR-11)", 4205 "description": "Common Container Interface (PHP FIG PSR-11)",
3831 "homepage": "https://github.com/php-fig/container", 4206 "homepage": "https://github.com/php-fig/container",
3832 "keywords": [ 4207 "keywords": [
3833 "PSR-11", 4208 "PSR-11",
3834 "container", 4209 "container",
3835 "container-interface", 4210 "container-interface",
3836 "container-interop", 4211 "container-interop",
3837 "psr" 4212 "psr"
3838 ], 4213 ],
3839 "support": { 4214 "support": {
3840 "issues": "https://github.com/php-fig/container/issues", 4215 "issues": "https://github.com/php-fig/container/issues",
3841 "source": "https://github.com/php-fig/container/tree/2.0.2" 4216 "source": "https://github.com/php-fig/container/tree/2.0.2"
3842 }, 4217 },
3843 "time": "2021-11-05T16:47:00+00:00" 4218 "time": "2021-11-05T16:47:00+00:00"
3844 }, 4219 },
3845 { 4220 {
3846 "name": "psr/event-dispatcher", 4221 "name": "psr/event-dispatcher",
3847 "version": "1.0.0", 4222 "version": "1.0.0",
3848 "source": { 4223 "source": {
3849 "type": "git", 4224 "type": "git",
3850 "url": "https://github.com/php-fig/event-dispatcher.git", 4225 "url": "https://github.com/php-fig/event-dispatcher.git",
3851 "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" 4226 "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
3852 }, 4227 },
3853 "dist": { 4228 "dist": {
3854 "type": "zip", 4229 "type": "zip",
3855 "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", 4230 "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
3856 "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", 4231 "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
3857 "shasum": "" 4232 "shasum": ""
3858 }, 4233 },
3859 "require": { 4234 "require": {
3860 "php": ">=7.2.0" 4235 "php": ">=7.2.0"
3861 }, 4236 },
3862 "type": "library", 4237 "type": "library",
3863 "extra": { 4238 "extra": {
3864 "branch-alias": { 4239 "branch-alias": {
3865 "dev-master": "1.0.x-dev" 4240 "dev-master": "1.0.x-dev"
3866 } 4241 }
3867 }, 4242 },
3868 "autoload": { 4243 "autoload": {
3869 "psr-4": { 4244 "psr-4": {
3870 "Psr\\EventDispatcher\\": "src/" 4245 "Psr\\EventDispatcher\\": "src/"
3871 } 4246 }
3872 }, 4247 },
3873 "notification-url": "https://packagist.org/downloads/", 4248 "notification-url": "https://packagist.org/downloads/",
3874 "license": [ 4249 "license": [
3875 "MIT" 4250 "MIT"
3876 ], 4251 ],
3877 "authors": [ 4252 "authors": [
3878 { 4253 {
3879 "name": "PHP-FIG", 4254 "name": "PHP-FIG",
3880 "homepage": "http://www.php-fig.org/" 4255 "homepage": "http://www.php-fig.org/"
3881 } 4256 }
3882 ], 4257 ],
3883 "description": "Standard interfaces for event handling.", 4258 "description": "Standard interfaces for event handling.",
3884 "keywords": [ 4259 "keywords": [
3885 "events", 4260 "events",
3886 "psr", 4261 "psr",
3887 "psr-14" 4262 "psr-14"
3888 ], 4263 ],
3889 "support": { 4264 "support": {
3890 "issues": "https://github.com/php-fig/event-dispatcher/issues", 4265 "issues": "https://github.com/php-fig/event-dispatcher/issues",
3891 "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" 4266 "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
3892 }, 4267 },
3893 "time": "2019-01-08T18:20:26+00:00" 4268 "time": "2019-01-08T18:20:26+00:00"
3894 }, 4269 },
3895 { 4270 {
3896 "name": "psr/http-client", 4271 "name": "psr/http-client",
3897 "version": "1.0.2", 4272 "version": "1.0.2",
3898 "source": { 4273 "source": {
3899 "type": "git", 4274 "type": "git",
3900 "url": "https://github.com/php-fig/http-client.git", 4275 "url": "https://github.com/php-fig/http-client.git",
3901 "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31" 4276 "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
3902 }, 4277 },
3903 "dist": { 4278 "dist": {
3904 "type": "zip", 4279 "type": "zip",
3905 "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31", 4280 "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
3906 "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31", 4281 "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
3907 "shasum": "" 4282 "shasum": ""
3908 }, 4283 },
3909 "require": { 4284 "require": {
3910 "php": "^7.0 || ^8.0", 4285 "php": "^7.0 || ^8.0",
3911 "psr/http-message": "^1.0 || ^2.0" 4286 "psr/http-message": "^1.0 || ^2.0"
3912 }, 4287 },
3913 "type": "library", 4288 "type": "library",
3914 "extra": { 4289 "extra": {
3915 "branch-alias": { 4290 "branch-alias": {
3916 "dev-master": "1.0.x-dev" 4291 "dev-master": "1.0.x-dev"
3917 } 4292 }
3918 }, 4293 },
3919 "autoload": { 4294 "autoload": {
3920 "psr-4": { 4295 "psr-4": {
3921 "Psr\\Http\\Client\\": "src/" 4296 "Psr\\Http\\Client\\": "src/"
3922 } 4297 }
3923 }, 4298 },
3924 "notification-url": "https://packagist.org/downloads/", 4299 "notification-url": "https://packagist.org/downloads/",
3925 "license": [ 4300 "license": [
3926 "MIT" 4301 "MIT"
3927 ], 4302 ],
3928 "authors": [ 4303 "authors": [
3929 { 4304 {
3930 "name": "PHP-FIG", 4305 "name": "PHP-FIG",
3931 "homepage": "https://www.php-fig.org/" 4306 "homepage": "https://www.php-fig.org/"
3932 } 4307 }
3933 ], 4308 ],
3934 "description": "Common interface for HTTP clients", 4309 "description": "Common interface for HTTP clients",
3935 "homepage": "https://github.com/php-fig/http-client", 4310 "homepage": "https://github.com/php-fig/http-client",
3936 "keywords": [ 4311 "keywords": [
3937 "http", 4312 "http",
3938 "http-client", 4313 "http-client",
3939 "psr", 4314 "psr",
3940 "psr-18" 4315 "psr-18"
3941 ], 4316 ],
3942 "support": { 4317 "support": {
3943 "source": "https://github.com/php-fig/http-client/tree/1.0.2" 4318 "source": "https://github.com/php-fig/http-client/tree/1.0.2"
3944 }, 4319 },
3945 "time": "2023-04-10T20:12:12+00:00" 4320 "time": "2023-04-10T20:12:12+00:00"
3946 }, 4321 },
3947 { 4322 {
3948 "name": "psr/http-factory", 4323 "name": "psr/http-factory",
3949 "version": "1.0.2", 4324 "version": "1.0.2",
3950 "source": { 4325 "source": {
3951 "type": "git", 4326 "type": "git",
3952 "url": "https://github.com/php-fig/http-factory.git", 4327 "url": "https://github.com/php-fig/http-factory.git",
3953 "reference": "e616d01114759c4c489f93b099585439f795fe35" 4328 "reference": "e616d01114759c4c489f93b099585439f795fe35"
3954 }, 4329 },
3955 "dist": { 4330 "dist": {
3956 "type": "zip", 4331 "type": "zip",
3957 "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", 4332 "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
3958 "reference": "e616d01114759c4c489f93b099585439f795fe35", 4333 "reference": "e616d01114759c4c489f93b099585439f795fe35",
3959 "shasum": "" 4334 "shasum": ""
3960 }, 4335 },
3961 "require": { 4336 "require": {
3962 "php": ">=7.0.0", 4337 "php": ">=7.0.0",
3963 "psr/http-message": "^1.0 || ^2.0" 4338 "psr/http-message": "^1.0 || ^2.0"
3964 }, 4339 },
3965 "type": "library", 4340 "type": "library",
3966 "extra": { 4341 "extra": {
3967 "branch-alias": { 4342 "branch-alias": {
3968 "dev-master": "1.0.x-dev" 4343 "dev-master": "1.0.x-dev"
3969 } 4344 }
3970 }, 4345 },
3971 "autoload": { 4346 "autoload": {
3972 "psr-4": { 4347 "psr-4": {
3973 "Psr\\Http\\Message\\": "src/" 4348 "Psr\\Http\\Message\\": "src/"
3974 } 4349 }
3975 }, 4350 },
3976 "notification-url": "https://packagist.org/downloads/", 4351 "notification-url": "https://packagist.org/downloads/",
3977 "license": [ 4352 "license": [
3978 "MIT" 4353 "MIT"
3979 ], 4354 ],
3980 "authors": [ 4355 "authors": [
3981 { 4356 {
3982 "name": "PHP-FIG", 4357 "name": "PHP-FIG",
3983 "homepage": "https://www.php-fig.org/" 4358 "homepage": "https://www.php-fig.org/"
3984 } 4359 }
3985 ], 4360 ],
3986 "description": "Common interfaces for PSR-7 HTTP message factories", 4361 "description": "Common interfaces for PSR-7 HTTP message factories",
3987 "keywords": [ 4362 "keywords": [
3988 "factory", 4363 "factory",
3989 "http", 4364 "http",
3990 "message", 4365 "message",
3991 "psr", 4366 "psr",
3992 "psr-17", 4367 "psr-17",
3993 "psr-7", 4368 "psr-7",
3994 "request", 4369 "request",
3995 "response" 4370 "response"
3996 ], 4371 ],
3997 "support": { 4372 "support": {
3998 "source": "https://github.com/php-fig/http-factory/tree/1.0.2" 4373 "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
3999 }, 4374 },
4000 "time": "2023-04-10T20:10:41+00:00" 4375 "time": "2023-04-10T20:10:41+00:00"
4001 }, 4376 },
4002 { 4377 {
4003 "name": "psr/http-message", 4378 "name": "psr/http-message",
4004 "version": "2.0", 4379 "version": "2.0",
4005 "source": { 4380 "source": {
4006 "type": "git", 4381 "type": "git",
4007 "url": "https://github.com/php-fig/http-message.git", 4382 "url": "https://github.com/php-fig/http-message.git",
4008 "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" 4383 "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
4009 }, 4384 },
4010 "dist": { 4385 "dist": {
4011 "type": "zip", 4386 "type": "zip",
4012 "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", 4387 "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
4013 "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", 4388 "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
4014 "shasum": "" 4389 "shasum": ""
4015 }, 4390 },
4016 "require": { 4391 "require": {
4017 "php": "^7.2 || ^8.0" 4392 "php": "^7.2 || ^8.0"
4018 }, 4393 },
4019 "type": "library", 4394 "type": "library",
4020 "extra": { 4395 "extra": {
4021 "branch-alias": { 4396 "branch-alias": {
4022 "dev-master": "2.0.x-dev" 4397 "dev-master": "2.0.x-dev"
4023 } 4398 }
4024 }, 4399 },
4025 "autoload": { 4400 "autoload": {
4026 "psr-4": { 4401 "psr-4": {
4027 "Psr\\Http\\Message\\": "src/" 4402 "Psr\\Http\\Message\\": "src/"
4028 } 4403 }
4029 }, 4404 },
4030 "notification-url": "https://packagist.org/downloads/", 4405 "notification-url": "https://packagist.org/downloads/",
4031 "license": [ 4406 "license": [
4032 "MIT" 4407 "MIT"
4033 ], 4408 ],
4034 "authors": [ 4409 "authors": [
4035 { 4410 {
4036 "name": "PHP-FIG", 4411 "name": "PHP-FIG",
4037 "homepage": "https://www.php-fig.org/" 4412 "homepage": "https://www.php-fig.org/"
4038 } 4413 }
4039 ], 4414 ],
4040 "description": "Common interface for HTTP messages", 4415 "description": "Common interface for HTTP messages",
4041 "homepage": "https://github.com/php-fig/http-message", 4416 "homepage": "https://github.com/php-fig/http-message",
4042 "keywords": [ 4417 "keywords": [
4043 "http", 4418 "http",
4044 "http-message", 4419 "http-message",
4045 "psr", 4420 "psr",
4046 "psr-7", 4421 "psr-7",
4047 "request", 4422 "request",
4048 "response" 4423 "response"
4049 ], 4424 ],
4050 "support": { 4425 "support": {
4051 "source": "https://github.com/php-fig/http-message/tree/2.0" 4426 "source": "https://github.com/php-fig/http-message/tree/2.0"
4052 }, 4427 },
4053 "time": "2023-04-04T09:54:51+00:00" 4428 "time": "2023-04-04T09:54:51+00:00"
4054 }, 4429 },
4055 { 4430 {
4056 "name": "psr/log", 4431 "name": "psr/log",
4057 "version": "3.0.0", 4432 "version": "3.0.0",
4058 "source": { 4433 "source": {
4059 "type": "git", 4434 "type": "git",
4060 "url": "https://github.com/php-fig/log.git", 4435 "url": "https://github.com/php-fig/log.git",
4061 "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" 4436 "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
4062 }, 4437 },
4063 "dist": { 4438 "dist": {
4064 "type": "zip", 4439 "type": "zip",
4065 "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", 4440 "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
4066 "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", 4441 "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
4067 "shasum": "" 4442 "shasum": ""
4068 }, 4443 },
4069 "require": { 4444 "require": {
4070 "php": ">=8.0.0" 4445 "php": ">=8.0.0"
4071 }, 4446 },
4072 "type": "library", 4447 "type": "library",
4073 "extra": { 4448 "extra": {
4074 "branch-alias": { 4449 "branch-alias": {
4075 "dev-master": "3.x-dev" 4450 "dev-master": "3.x-dev"
4076 } 4451 }
4077 }, 4452 },
4078 "autoload": { 4453 "autoload": {
4079 "psr-4": { 4454 "psr-4": {
4080 "Psr\\Log\\": "src" 4455 "Psr\\Log\\": "src"
4081 } 4456 }
4082 }, 4457 },
4083 "notification-url": "https://packagist.org/downloads/", 4458 "notification-url": "https://packagist.org/downloads/",
4084 "license": [ 4459 "license": [
4085 "MIT" 4460 "MIT"
4086 ], 4461 ],
4087 "authors": [ 4462 "authors": [
4088 { 4463 {
4089 "name": "PHP-FIG", 4464 "name": "PHP-FIG",
4090 "homepage": "https://www.php-fig.org/" 4465 "homepage": "https://www.php-fig.org/"
4091 } 4466 }
4092 ], 4467 ],
4093 "description": "Common interface for logging libraries", 4468 "description": "Common interface for logging libraries",
4094 "homepage": "https://github.com/php-fig/log", 4469 "homepage": "https://github.com/php-fig/log",
4095 "keywords": [ 4470 "keywords": [
4096 "log", 4471 "log",
4097 "psr", 4472 "psr",
4098 "psr-3" 4473 "psr-3"
4099 ], 4474 ],
4100 "support": { 4475 "support": {
4101 "source": "https://github.com/php-fig/log/tree/3.0.0" 4476 "source": "https://github.com/php-fig/log/tree/3.0.0"
4102 }, 4477 },
4103 "time": "2021-07-14T16:46:02+00:00" 4478 "time": "2021-07-14T16:46:02+00:00"
4104 }, 4479 },
4105 { 4480 {
4106 "name": "psr/simple-cache", 4481 "name": "psr/simple-cache",
4107 "version": "3.0.0", 4482 "version": "3.0.0",
4108 "source": { 4483 "source": {
4109 "type": "git", 4484 "type": "git",
4110 "url": "https://github.com/php-fig/simple-cache.git", 4485 "url": "https://github.com/php-fig/simple-cache.git",
4111 "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" 4486 "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
4112 }, 4487 },
4113 "dist": { 4488 "dist": {
4114 "type": "zip", 4489 "type": "zip",
4115 "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", 4490 "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
4116 "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", 4491 "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
4117 "shasum": "" 4492 "shasum": ""
4118 }, 4493 },
4119 "require": { 4494 "require": {
4120 "php": ">=8.0.0" 4495 "php": ">=8.0.0"
4121 }, 4496 },
4122 "type": "library", 4497 "type": "library",
4123 "extra": { 4498 "extra": {
4124 "branch-alias": { 4499 "branch-alias": {
4125 "dev-master": "3.0.x-dev" 4500 "dev-master": "3.0.x-dev"
4126 } 4501 }
4127 }, 4502 },
4128 "autoload": { 4503 "autoload": {
4129 "psr-4": { 4504 "psr-4": {
4130 "Psr\\SimpleCache\\": "src/" 4505 "Psr\\SimpleCache\\": "src/"
4131 } 4506 }
4132 }, 4507 },
4133 "notification-url": "https://packagist.org/downloads/", 4508 "notification-url": "https://packagist.org/downloads/",
4134 "license": [ 4509 "license": [
4135 "MIT" 4510 "MIT"
4136 ], 4511 ],
4137 "authors": [ 4512 "authors": [
4138 { 4513 {
4139 "name": "PHP-FIG", 4514 "name": "PHP-FIG",
4140 "homepage": "https://www.php-fig.org/" 4515 "homepage": "https://www.php-fig.org/"
4141 } 4516 }
4142 ], 4517 ],
4143 "description": "Common interfaces for simple caching", 4518 "description": "Common interfaces for simple caching",
4144 "keywords": [ 4519 "keywords": [
4145 "cache", 4520 "cache",
4146 "caching", 4521 "caching",
4147 "psr", 4522 "psr",
4148 "psr-16", 4523 "psr-16",
4149 "simple-cache" 4524 "simple-cache"
4150 ], 4525 ],
4151 "support": { 4526 "support": {
4152 "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" 4527 "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
4153 }, 4528 },
4154 "time": "2021-10-29T13:26:27+00:00" 4529 "time": "2021-10-29T13:26:27+00:00"
4155 }, 4530 },
4156 { 4531 {
4157 "name": "psy/psysh", 4532 "name": "psy/psysh",
4158 "version": "v0.11.17", 4533 "version": "v0.11.17",
4159 "source": { 4534 "source": {
4160 "type": "git", 4535 "type": "git",
4161 "url": "https://github.com/bobthecow/psysh.git", 4536 "url": "https://github.com/bobthecow/psysh.git",
4162 "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a" 4537 "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a"
4163 }, 4538 },
4164 "dist": { 4539 "dist": {
4165 "type": "zip", 4540 "type": "zip",
4166 "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3dc5d4018dabd80bceb8fe1e3191ba8460569f0a", 4541 "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3dc5d4018dabd80bceb8fe1e3191ba8460569f0a",
4167 "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a", 4542 "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a",
4168 "shasum": "" 4543 "shasum": ""
4169 }, 4544 },
4170 "require": { 4545 "require": {
4171 "ext-json": "*", 4546 "ext-json": "*",
4172 "ext-tokenizer": "*", 4547 "ext-tokenizer": "*",
4173 "nikic/php-parser": "^4.0 || ^3.1", 4548 "nikic/php-parser": "^4.0 || ^3.1",
4174 "php": "^8.0 || ^7.0.8", 4549 "php": "^8.0 || ^7.0.8",
4175 "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", 4550 "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
4176 "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4" 4551 "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
4177 }, 4552 },
4178 "conflict": { 4553 "conflict": {
4179 "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" 4554 "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
4180 }, 4555 },
4181 "require-dev": { 4556 "require-dev": {
4182 "bamarni/composer-bin-plugin": "^1.2" 4557 "bamarni/composer-bin-plugin": "^1.2"
4183 }, 4558 },
4184 "suggest": { 4559 "suggest": {
4185 "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", 4560 "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
4186 "ext-pdo-sqlite": "The doc command requires SQLite to work.", 4561 "ext-pdo-sqlite": "The doc command requires SQLite to work.",
4187 "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", 4562 "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
4188 "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." 4563 "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
4189 }, 4564 },
4190 "bin": [ 4565 "bin": [
4191 "bin/psysh" 4566 "bin/psysh"
4192 ], 4567 ],
4193 "type": "library", 4568 "type": "library",
4194 "extra": { 4569 "extra": {
4195 "branch-alias": { 4570 "branch-alias": {
4196 "dev-main": "0.11.x-dev" 4571 "dev-main": "0.11.x-dev"
4197 } 4572 }
4198 }, 4573 },
4199 "autoload": { 4574 "autoload": {
4200 "files": [ 4575 "files": [
4201 "src/functions.php" 4576 "src/functions.php"
4202 ], 4577 ],
4203 "psr-4": { 4578 "psr-4": {
4204 "Psy\\": "src/" 4579 "Psy\\": "src/"
4205 } 4580 }
4206 }, 4581 },
4207 "notification-url": "https://packagist.org/downloads/", 4582 "notification-url": "https://packagist.org/downloads/",
4208 "license": [ 4583 "license": [
4209 "MIT" 4584 "MIT"
4210 ], 4585 ],
4211 "authors": [ 4586 "authors": [
4212 { 4587 {
4213 "name": "Justin Hileman", 4588 "name": "Justin Hileman",
4214 "email": "justin@justinhileman.info", 4589 "email": "justin@justinhileman.info",
4215 "homepage": "http://justinhileman.com" 4590 "homepage": "http://justinhileman.com"
4216 } 4591 }
4217 ], 4592 ],
4218 "description": "An interactive shell for modern PHP.", 4593 "description": "An interactive shell for modern PHP.",
4219 "homepage": "http://psysh.org", 4594 "homepage": "http://psysh.org",
4220 "keywords": [ 4595 "keywords": [
4221 "REPL", 4596 "REPL",
4222 "console", 4597 "console",
4223 "interactive", 4598 "interactive",
4224 "shell" 4599 "shell"
4225 ], 4600 ],
4226 "support": { 4601 "support": {
4227 "issues": "https://github.com/bobthecow/psysh/issues", 4602 "issues": "https://github.com/bobthecow/psysh/issues",
4228 "source": "https://github.com/bobthecow/psysh/tree/v0.11.17" 4603 "source": "https://github.com/bobthecow/psysh/tree/v0.11.17"
4229 }, 4604 },
4230 "time": "2023-05-05T20:02:42+00:00" 4605 "time": "2023-05-05T20:02:42+00:00"
4231 }, 4606 },
4232 { 4607 {
4233 "name": "ralouphie/getallheaders", 4608 "name": "ralouphie/getallheaders",
4234 "version": "3.0.3", 4609 "version": "3.0.3",
4235 "source": { 4610 "source": {
4236 "type": "git", 4611 "type": "git",
4237 "url": "https://github.com/ralouphie/getallheaders.git", 4612 "url": "https://github.com/ralouphie/getallheaders.git",
4238 "reference": "120b605dfeb996808c31b6477290a714d356e822" 4613 "reference": "120b605dfeb996808c31b6477290a714d356e822"
4239 }, 4614 },
4240 "dist": { 4615 "dist": {
4241 "type": "zip", 4616 "type": "zip",
4242 "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", 4617 "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
4243 "reference": "120b605dfeb996808c31b6477290a714d356e822", 4618 "reference": "120b605dfeb996808c31b6477290a714d356e822",
4244 "shasum": "" 4619 "shasum": ""
4245 }, 4620 },
4246 "require": { 4621 "require": {
4247 "php": ">=5.6" 4622 "php": ">=5.6"
4248 }, 4623 },
4249 "require-dev": { 4624 "require-dev": {
4250 "php-coveralls/php-coveralls": "^2.1", 4625 "php-coveralls/php-coveralls": "^2.1",
4251 "phpunit/phpunit": "^5 || ^6.5" 4626 "phpunit/phpunit": "^5 || ^6.5"
4252 }, 4627 },
4253 "type": "library", 4628 "type": "library",
4254 "autoload": { 4629 "autoload": {
4255 "files": [ 4630 "files": [
4256 "src/getallheaders.php" 4631 "src/getallheaders.php"
4257 ] 4632 ]
4258 }, 4633 },
4259 "notification-url": "https://packagist.org/downloads/", 4634 "notification-url": "https://packagist.org/downloads/",
4260 "license": [ 4635 "license": [
4261 "MIT" 4636 "MIT"
4262 ], 4637 ],
4263 "authors": [ 4638 "authors": [
4264 { 4639 {
4265 "name": "Ralph Khattar", 4640 "name": "Ralph Khattar",
4266 "email": "ralph.khattar@gmail.com" 4641 "email": "ralph.khattar@gmail.com"
4267 } 4642 }
4268 ], 4643 ],
4269 "description": "A polyfill for getallheaders.", 4644 "description": "A polyfill for getallheaders.",
4270 "support": { 4645 "support": {
4271 "issues": "https://github.com/ralouphie/getallheaders/issues", 4646 "issues": "https://github.com/ralouphie/getallheaders/issues",
4272 "source": "https://github.com/ralouphie/getallheaders/tree/develop" 4647 "source": "https://github.com/ralouphie/getallheaders/tree/develop"
4273 }, 4648 },
4274 "time": "2019-03-08T08:55:37+00:00" 4649 "time": "2019-03-08T08:55:37+00:00"
4275 }, 4650 },
4276 { 4651 {
4277 "name": "ramsey/collection", 4652 "name": "ramsey/collection",
4278 "version": "1.3.0", 4653 "version": "1.3.0",
4279 "source": { 4654 "source": {
4280 "type": "git", 4655 "type": "git",
4281 "url": "https://github.com/ramsey/collection.git", 4656 "url": "https://github.com/ramsey/collection.git",
4282 "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4" 4657 "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
4283 }, 4658 },
4284 "dist": { 4659 "dist": {
4285 "type": "zip", 4660 "type": "zip",
4286 "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4", 4661 "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
4287 "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4", 4662 "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
4288 "shasum": "" 4663 "shasum": ""
4289 }, 4664 },
4290 "require": { 4665 "require": {
4291 "php": "^7.4 || ^8.0", 4666 "php": "^7.4 || ^8.0",
4292 "symfony/polyfill-php81": "^1.23" 4667 "symfony/polyfill-php81": "^1.23"
4293 }, 4668 },
4294 "require-dev": { 4669 "require-dev": {
4295 "captainhook/plugin-composer": "^5.3", 4670 "captainhook/plugin-composer": "^5.3",
4296 "ergebnis/composer-normalize": "^2.28.3", 4671 "ergebnis/composer-normalize": "^2.28.3",
4297 "fakerphp/faker": "^1.21", 4672 "fakerphp/faker": "^1.21",
4298 "hamcrest/hamcrest-php": "^2.0", 4673 "hamcrest/hamcrest-php": "^2.0",
4299 "jangregor/phpstan-prophecy": "^1.0", 4674 "jangregor/phpstan-prophecy": "^1.0",
4300 "mockery/mockery": "^1.5", 4675 "mockery/mockery": "^1.5",
4301 "php-parallel-lint/php-console-highlighter": "^1.0", 4676 "php-parallel-lint/php-console-highlighter": "^1.0",
4302 "php-parallel-lint/php-parallel-lint": "^1.3", 4677 "php-parallel-lint/php-parallel-lint": "^1.3",
4303 "phpcsstandards/phpcsutils": "^1.0.0-rc1", 4678 "phpcsstandards/phpcsutils": "^1.0.0-rc1",
4304 "phpspec/prophecy-phpunit": "^2.0", 4679 "phpspec/prophecy-phpunit": "^2.0",
4305 "phpstan/extension-installer": "^1.2", 4680 "phpstan/extension-installer": "^1.2",
4306 "phpstan/phpstan": "^1.9", 4681 "phpstan/phpstan": "^1.9",
4307 "phpstan/phpstan-mockery": "^1.1", 4682 "phpstan/phpstan-mockery": "^1.1",
4308 "phpstan/phpstan-phpunit": "^1.3", 4683 "phpstan/phpstan-phpunit": "^1.3",
4309 "phpunit/phpunit": "^9.5", 4684 "phpunit/phpunit": "^9.5",
4310 "psalm/plugin-mockery": "^1.1", 4685 "psalm/plugin-mockery": "^1.1",
4311 "psalm/plugin-phpunit": "^0.18.4", 4686 "psalm/plugin-phpunit": "^0.18.4",
4312 "ramsey/coding-standard": "^2.0.3", 4687 "ramsey/coding-standard": "^2.0.3",
4313 "ramsey/conventional-commits": "^1.3", 4688 "ramsey/conventional-commits": "^1.3",
4314 "vimeo/psalm": "^5.4" 4689 "vimeo/psalm": "^5.4"
4315 }, 4690 },
4316 "type": "library", 4691 "type": "library",
4317 "extra": { 4692 "extra": {
4318 "captainhook": { 4693 "captainhook": {
4319 "force-install": true 4694 "force-install": true
4320 }, 4695 },
4321 "ramsey/conventional-commits": { 4696 "ramsey/conventional-commits": {
4322 "configFile": "conventional-commits.json" 4697 "configFile": "conventional-commits.json"
4323 } 4698 }
4324 }, 4699 },
4325 "autoload": { 4700 "autoload": {
4326 "psr-4": { 4701 "psr-4": {
4327 "Ramsey\\Collection\\": "src/" 4702 "Ramsey\\Collection\\": "src/"
4328 } 4703 }
4329 }, 4704 },
4330 "notification-url": "https://packagist.org/downloads/", 4705 "notification-url": "https://packagist.org/downloads/",
4331 "license": [ 4706 "license": [
4332 "MIT" 4707 "MIT"
4333 ], 4708 ],
4334 "authors": [ 4709 "authors": [
4335 { 4710 {
4336 "name": "Ben Ramsey", 4711 "name": "Ben Ramsey",
4337 "email": "ben@benramsey.com", 4712 "email": "ben@benramsey.com",
4338 "homepage": "https://benramsey.com" 4713 "homepage": "https://benramsey.com"
4339 } 4714 }
4340 ], 4715 ],
4341 "description": "A PHP library for representing and manipulating collections.", 4716 "description": "A PHP library for representing and manipulating collections.",
4342 "keywords": [ 4717 "keywords": [
4343 "array", 4718 "array",
4344 "collection", 4719 "collection",
4345 "hash", 4720 "hash",
4346 "map", 4721 "map",
4347 "queue", 4722 "queue",
4348 "set" 4723 "set"
4349 ], 4724 ],
4350 "support": { 4725 "support": {
4351 "issues": "https://github.com/ramsey/collection/issues", 4726 "issues": "https://github.com/ramsey/collection/issues",
4352 "source": "https://github.com/ramsey/collection/tree/1.3.0" 4727 "source": "https://github.com/ramsey/collection/tree/1.3.0"
4353 }, 4728 },
4354 "funding": [ 4729 "funding": [
4355 { 4730 {
4356 "url": "https://github.com/ramsey", 4731 "url": "https://github.com/ramsey",
4357 "type": "github" 4732 "type": "github"
4358 }, 4733 },
4359 { 4734 {
4360 "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", 4735 "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
4361 "type": "tidelift" 4736 "type": "tidelift"
4362 } 4737 }
4363 ], 4738 ],
4364 "time": "2022-12-27T19:12:24+00:00" 4739 "time": "2022-12-27T19:12:24+00:00"
4365 }, 4740 },
4366 { 4741 {
4367 "name": "ramsey/uuid", 4742 "name": "ramsey/uuid",
4368 "version": "4.7.4", 4743 "version": "4.7.4",
4369 "source": { 4744 "source": {
4370 "type": "git", 4745 "type": "git",
4371 "url": "https://github.com/ramsey/uuid.git", 4746 "url": "https://github.com/ramsey/uuid.git",
4372 "reference": "60a4c63ab724854332900504274f6150ff26d286" 4747 "reference": "60a4c63ab724854332900504274f6150ff26d286"
4373 }, 4748 },
4374 "dist": { 4749 "dist": {
4375 "type": "zip", 4750 "type": "zip",
4376 "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286", 4751 "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
4377 "reference": "60a4c63ab724854332900504274f6150ff26d286", 4752 "reference": "60a4c63ab724854332900504274f6150ff26d286",
4378 "shasum": "" 4753 "shasum": ""
4379 }, 4754 },
4380 "require": { 4755 "require": {
4381 "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", 4756 "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
4382 "ext-json": "*", 4757 "ext-json": "*",
4383 "php": "^8.0", 4758 "php": "^8.0",
4384 "ramsey/collection": "^1.2 || ^2.0" 4759 "ramsey/collection": "^1.2 || ^2.0"
4385 }, 4760 },
4386 "replace": { 4761 "replace": {
4387 "rhumsaa/uuid": "self.version" 4762 "rhumsaa/uuid": "self.version"
4388 }, 4763 },
4389 "require-dev": { 4764 "require-dev": {
4390 "captainhook/captainhook": "^5.10", 4765 "captainhook/captainhook": "^5.10",
4391 "captainhook/plugin-composer": "^5.3", 4766 "captainhook/plugin-composer": "^5.3",
4392 "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", 4767 "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
4393 "doctrine/annotations": "^1.8", 4768 "doctrine/annotations": "^1.8",
4394 "ergebnis/composer-normalize": "^2.15", 4769 "ergebnis/composer-normalize": "^2.15",
4395 "mockery/mockery": "^1.3", 4770 "mockery/mockery": "^1.3",
4396 "paragonie/random-lib": "^2", 4771 "paragonie/random-lib": "^2",
4397 "php-mock/php-mock": "^2.2", 4772 "php-mock/php-mock": "^2.2",
4398 "php-mock/php-mock-mockery": "^1.3", 4773 "php-mock/php-mock-mockery": "^1.3",
4399 "php-parallel-lint/php-parallel-lint": "^1.1", 4774 "php-parallel-lint/php-parallel-lint": "^1.1",
4400 "phpbench/phpbench": "^1.0", 4775 "phpbench/phpbench": "^1.0",
4401 "phpstan/extension-installer": "^1.1", 4776 "phpstan/extension-installer": "^1.1",
4402 "phpstan/phpstan": "^1.8", 4777 "phpstan/phpstan": "^1.8",
4403 "phpstan/phpstan-mockery": "^1.1", 4778 "phpstan/phpstan-mockery": "^1.1",
4404 "phpstan/phpstan-phpunit": "^1.1", 4779 "phpstan/phpstan-phpunit": "^1.1",
4405 "phpunit/phpunit": "^8.5 || ^9", 4780 "phpunit/phpunit": "^8.5 || ^9",
4406 "ramsey/composer-repl": "^1.4", 4781 "ramsey/composer-repl": "^1.4",
4407 "slevomat/coding-standard": "^8.4", 4782 "slevomat/coding-standard": "^8.4",
4408 "squizlabs/php_codesniffer": "^3.5", 4783 "squizlabs/php_codesniffer": "^3.5",
4409 "vimeo/psalm": "^4.9" 4784 "vimeo/psalm": "^4.9"
4410 }, 4785 },
4411 "suggest": { 4786 "suggest": {
4412 "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", 4787 "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
4413 "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", 4788 "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
4414 "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", 4789 "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
4415 "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", 4790 "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
4416 "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." 4791 "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
4417 }, 4792 },
4418 "type": "library", 4793 "type": "library",
4419 "extra": { 4794 "extra": {
4420 "captainhook": { 4795 "captainhook": {
4421 "force-install": true 4796 "force-install": true
4422 } 4797 }
4423 }, 4798 },
4424 "autoload": { 4799 "autoload": {
4425 "files": [ 4800 "files": [
4426 "src/functions.php" 4801 "src/functions.php"
4427 ], 4802 ],
4428 "psr-4": { 4803 "psr-4": {
4429 "Ramsey\\Uuid\\": "src/" 4804 "Ramsey\\Uuid\\": "src/"
4430 } 4805 }
4431 }, 4806 },
4432 "notification-url": "https://packagist.org/downloads/", 4807 "notification-url": "https://packagist.org/downloads/",
4433 "license": [ 4808 "license": [
4434 "MIT" 4809 "MIT"
4435 ], 4810 ],
4436 "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", 4811 "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
4437 "keywords": [ 4812 "keywords": [
4438 "guid", 4813 "guid",
4439 "identifier", 4814 "identifier",
4440 "uuid" 4815 "uuid"
4441 ], 4816 ],
4442 "support": { 4817 "support": {
4443 "issues": "https://github.com/ramsey/uuid/issues", 4818 "issues": "https://github.com/ramsey/uuid/issues",
4444 "source": "https://github.com/ramsey/uuid/tree/4.7.4" 4819 "source": "https://github.com/ramsey/uuid/tree/4.7.4"
4445 }, 4820 },
4446 "funding": [ 4821 "funding": [
4447 { 4822 {
4448 "url": "https://github.com/ramsey", 4823 "url": "https://github.com/ramsey",
4449 "type": "github" 4824 "type": "github"
4450 }, 4825 },
4451 { 4826 {
4452 "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", 4827 "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
4453 "type": "tidelift" 4828 "type": "tidelift"
4454 } 4829 }
4455 ], 4830 ],
4456 "time": "2023-04-15T23:01:58+00:00" 4831 "time": "2023-04-15T23:01:58+00:00"
4457 }, 4832 },
4458 { 4833 {
4459 "name": "sabberworm/php-css-parser", 4834 "name": "sabberworm/php-css-parser",
4460 "version": "v8.5.1", 4835 "version": "v8.5.1",
4461 "source": { 4836 "source": {
4462 "type": "git", 4837 "type": "git",
4463 "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git", 4838 "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git",
4464 "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152" 4839 "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152"
4465 }, 4840 },
4466 "dist": { 4841 "dist": {
4467 "type": "zip", 4842 "type": "zip",
4468 "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/4a3d572b0f8b28bb6fd016ae8bbfc445facef152", 4843 "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/4a3d572b0f8b28bb6fd016ae8bbfc445facef152",
4469 "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152", 4844 "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152",
4470 "shasum": "" 4845 "shasum": ""
4471 }, 4846 },
4472 "require": { 4847 "require": {
4473 "ext-iconv": "*", 4848 "ext-iconv": "*",
4474 "php": ">=5.6.20" 4849 "php": ">=5.6.20"
4475 }, 4850 },
4476 "require-dev": { 4851 "require-dev": {
4477 "phpunit/phpunit": "^5.7.27" 4852 "phpunit/phpunit": "^5.7.27"
4478 }, 4853 },
4479 "suggest": { 4854 "suggest": {
4480 "ext-mbstring": "for parsing UTF-8 CSS" 4855 "ext-mbstring": "for parsing UTF-8 CSS"
4481 }, 4856 },
4482 "type": "library", 4857 "type": "library",
4483 "extra": { 4858 "extra": {
4484 "branch-alias": { 4859 "branch-alias": {
4485 "dev-main": "9.0.x-dev" 4860 "dev-main": "9.0.x-dev"
4486 } 4861 }
4487 }, 4862 },
4488 "autoload": { 4863 "autoload": {
4489 "psr-4": { 4864 "psr-4": {
4490 "Sabberworm\\CSS\\": "src/" 4865 "Sabberworm\\CSS\\": "src/"
4491 } 4866 }
4492 }, 4867 },
4493 "notification-url": "https://packagist.org/downloads/", 4868 "notification-url": "https://packagist.org/downloads/",
4494 "license": [ 4869 "license": [
4495 "MIT" 4870 "MIT"
4496 ], 4871 ],
4497 "authors": [ 4872 "authors": [
4498 { 4873 {
4499 "name": "Raphael Schweikert" 4874 "name": "Raphael Schweikert"
4500 }, 4875 },
4501 { 4876 {
4502 "name": "Oliver Klee", 4877 "name": "Oliver Klee",
4503 "email": "github@oliverklee.de" 4878 "email": "github@oliverklee.de"
4504 }, 4879 },
4505 { 4880 {
4506 "name": "Jake Hotson", 4881 "name": "Jake Hotson",
4507 "email": "jake.github@qzdesign.co.uk" 4882 "email": "jake.github@qzdesign.co.uk"
4508 } 4883 }
4509 ], 4884 ],
4510 "description": "Parser for CSS Files written in PHP", 4885 "description": "Parser for CSS Files written in PHP",
4511 "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser", 4886 "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
4512 "keywords": [ 4887 "keywords": [
4513 "css", 4888 "css",
4514 "parser", 4889 "parser",
4515 "stylesheet" 4890 "stylesheet"
4516 ], 4891 ],
4517 "support": { 4892 "support": {
4518 "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues", 4893 "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues",
4519 "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.5.1" 4894 "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.5.1"
4520 }, 4895 },
4521 "time": "2024-02-15T16:41:13+00:00" 4896 "time": "2024-02-15T16:41:13+00:00"
4522 }, 4897 },
4523 { 4898 {
4524 "name": "spatie/invade", 4899 "name": "spatie/invade",
4525 "version": "1.1.1", 4900 "version": "1.1.1",
4526 "source": { 4901 "source": {
4527 "type": "git", 4902 "type": "git",
4528 "url": "https://github.com/spatie/invade.git", 4903 "url": "https://github.com/spatie/invade.git",
4529 "reference": "d0a9c895a96152549d478a7e3420e19039eef038" 4904 "reference": "d0a9c895a96152549d478a7e3420e19039eef038"
4530 }, 4905 },
4531 "dist": { 4906 "dist": {
4532 "type": "zip", 4907 "type": "zip",
4533 "url": "https://api.github.com/repos/spatie/invade/zipball/d0a9c895a96152549d478a7e3420e19039eef038", 4908 "url": "https://api.github.com/repos/spatie/invade/zipball/d0a9c895a96152549d478a7e3420e19039eef038",
4534 "reference": "d0a9c895a96152549d478a7e3420e19039eef038", 4909 "reference": "d0a9c895a96152549d478a7e3420e19039eef038",
4535 "shasum": "" 4910 "shasum": ""
4536 }, 4911 },
4537 "require": { 4912 "require": {
4538 "php": "^8.0" 4913 "php": "^8.0"
4539 }, 4914 },
4540 "require-dev": { 4915 "require-dev": {
4541 "pestphp/pest": "^1.20", 4916 "pestphp/pest": "^1.20",
4542 "phpstan/phpstan": "^1.4", 4917 "phpstan/phpstan": "^1.4",
4543 "spatie/ray": "^1.28" 4918 "spatie/ray": "^1.28"
4544 }, 4919 },
4545 "type": "library", 4920 "type": "library",
4546 "extra": { 4921 "extra": {
4547 "phpstan": { 4922 "phpstan": {
4548 "includes": [ 4923 "includes": [
4549 "phpstan-extension.neon" 4924 "phpstan-extension.neon"
4550 ] 4925 ]
4551 } 4926 }
4552 }, 4927 },
4553 "autoload": { 4928 "autoload": {
4554 "files": [ 4929 "files": [
4555 "src/functions.php" 4930 "src/functions.php"
4556 ], 4931 ],
4557 "psr-4": { 4932 "psr-4": {
4558 "Spatie\\Invade\\": "src" 4933 "Spatie\\Invade\\": "src"
4559 } 4934 }
4560 }, 4935 },
4561 "notification-url": "https://packagist.org/downloads/", 4936 "notification-url": "https://packagist.org/downloads/",
4562 "license": [ 4937 "license": [
4563 "MIT" 4938 "MIT"
4564 ], 4939 ],
4565 "authors": [ 4940 "authors": [
4566 { 4941 {
4567 "name": "Freek Van der Herten", 4942 "name": "Freek Van der Herten",
4568 "email": "freek@spatie.be", 4943 "email": "freek@spatie.be",
4569 "role": "Developer" 4944 "role": "Developer"
4570 } 4945 }
4571 ], 4946 ],
4572 "description": "A PHP function to work with private properties and methods", 4947 "description": "A PHP function to work with private properties and methods",
4573 "homepage": "https://github.com/spatie/invade", 4948 "homepage": "https://github.com/spatie/invade",
4574 "keywords": [ 4949 "keywords": [
4575 "invade", 4950 "invade",
4576 "spatie" 4951 "spatie"
4577 ], 4952 ],
4578 "support": { 4953 "support": {
4579 "source": "https://github.com/spatie/invade/tree/1.1.1" 4954 "source": "https://github.com/spatie/invade/tree/1.1.1"
4580 }, 4955 },
4581 "funding": [ 4956 "funding": [
4582 { 4957 {
4583 "url": "https://github.com/spatie", 4958 "url": "https://github.com/spatie",
4584 "type": "github" 4959 "type": "github"
4585 } 4960 }
4586 ], 4961 ],
4587 "time": "2022-07-05T09:31:00+00:00" 4962 "time": "2022-07-05T09:31:00+00:00"
4588 }, 4963 },
4589 { 4964 {
4590 "name": "spatie/laravel-package-tools", 4965 "name": "spatie/laravel-package-tools",
4591 "version": "1.15.0", 4966 "version": "1.15.0",
4592 "source": { 4967 "source": {
4593 "type": "git", 4968 "type": "git",
4594 "url": "https://github.com/spatie/laravel-package-tools.git", 4969 "url": "https://github.com/spatie/laravel-package-tools.git",
4595 "reference": "efab1844b8826443135201c4443690f032c3d533" 4970 "reference": "efab1844b8826443135201c4443690f032c3d533"
4596 }, 4971 },
4597 "dist": { 4972 "dist": {
4598 "type": "zip", 4973 "type": "zip",
4599 "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/efab1844b8826443135201c4443690f032c3d533", 4974 "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/efab1844b8826443135201c4443690f032c3d533",
4600 "reference": "efab1844b8826443135201c4443690f032c3d533", 4975 "reference": "efab1844b8826443135201c4443690f032c3d533",
4601 "shasum": "" 4976 "shasum": ""
4602 }, 4977 },
4603 "require": { 4978 "require": {
4604 "illuminate/contracts": "^9.28|^10.0", 4979 "illuminate/contracts": "^9.28|^10.0",
4605 "php": "^8.0" 4980 "php": "^8.0"
4606 }, 4981 },
4607 "require-dev": { 4982 "require-dev": {
4608 "mockery/mockery": "^1.5", 4983 "mockery/mockery": "^1.5",
4609 "orchestra/testbench": "^7.7|^8.0", 4984 "orchestra/testbench": "^7.7|^8.0",
4610 "pestphp/pest": "^1.22", 4985 "pestphp/pest": "^1.22",
4611 "phpunit/phpunit": "^9.5.24", 4986 "phpunit/phpunit": "^9.5.24",
4612 "spatie/pest-plugin-test-time": "^1.1" 4987 "spatie/pest-plugin-test-time": "^1.1"
4613 }, 4988 },
4614 "type": "library", 4989 "type": "library",
4615 "autoload": { 4990 "autoload": {
4616 "psr-4": { 4991 "psr-4": {
4617 "Spatie\\LaravelPackageTools\\": "src" 4992 "Spatie\\LaravelPackageTools\\": "src"
4618 } 4993 }
4619 }, 4994 },
4620 "notification-url": "https://packagist.org/downloads/", 4995 "notification-url": "https://packagist.org/downloads/",
4621 "license": [ 4996 "license": [
4622 "MIT" 4997 "MIT"
4623 ], 4998 ],
4624 "authors": [ 4999 "authors": [
4625 { 5000 {
4626 "name": "Freek Van der Herten", 5001 "name": "Freek Van der Herten",
4627 "email": "freek@spatie.be", 5002 "email": "freek@spatie.be",
4628 "role": "Developer" 5003 "role": "Developer"
4629 } 5004 }
4630 ], 5005 ],
4631 "description": "Tools for creating Laravel packages", 5006 "description": "Tools for creating Laravel packages",
4632 "homepage": "https://github.com/spatie/laravel-package-tools", 5007 "homepage": "https://github.com/spatie/laravel-package-tools",
4633 "keywords": [ 5008 "keywords": [
4634 "laravel-package-tools", 5009 "laravel-package-tools",
4635 "spatie" 5010 "spatie"
4636 ], 5011 ],
4637 "support": { 5012 "support": {
4638 "issues": "https://github.com/spatie/laravel-package-tools/issues", 5013 "issues": "https://github.com/spatie/laravel-package-tools/issues",
4639 "source": "https://github.com/spatie/laravel-package-tools/tree/1.15.0" 5014 "source": "https://github.com/spatie/laravel-package-tools/tree/1.15.0"
4640 }, 5015 },
4641 "funding": [ 5016 "funding": [
4642 { 5017 {
4643 "url": "https://github.com/spatie", 5018 "url": "https://github.com/spatie",
4644 "type": "github" 5019 "type": "github"
4645 } 5020 }
4646 ], 5021 ],
4647 "time": "2023-04-27T08:09:01+00:00" 5022 "time": "2023-04-27T08:09:01+00:00"
4648 }, 5023 },
4649 { 5024 {
4650 "name": "symfony/console", 5025 "name": "symfony/console",
4651 "version": "v6.0.19", 5026 "version": "v6.0.19",
4652 "source": { 5027 "source": {
4653 "type": "git", 5028 "type": "git",
4654 "url": "https://github.com/symfony/console.git", 5029 "url": "https://github.com/symfony/console.git",
4655 "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed" 5030 "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed"
4656 }, 5031 },
4657 "dist": { 5032 "dist": {
4658 "type": "zip", 5033 "type": "zip",
4659 "url": "https://api.github.com/repos/symfony/console/zipball/c3ebc83d031b71c39da318ca8b7a07ecc67507ed", 5034 "url": "https://api.github.com/repos/symfony/console/zipball/c3ebc83d031b71c39da318ca8b7a07ecc67507ed",
4660 "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed", 5035 "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed",
4661 "shasum": "" 5036 "shasum": ""
4662 }, 5037 },
4663 "require": { 5038 "require": {
4664 "php": ">=8.0.2", 5039 "php": ">=8.0.2",
4665 "symfony/polyfill-mbstring": "~1.0", 5040 "symfony/polyfill-mbstring": "~1.0",
4666 "symfony/service-contracts": "^1.1|^2|^3", 5041 "symfony/service-contracts": "^1.1|^2|^3",
4667 "symfony/string": "^5.4|^6.0" 5042 "symfony/string": "^5.4|^6.0"
4668 }, 5043 },
4669 "conflict": { 5044 "conflict": {
4670 "symfony/dependency-injection": "<5.4", 5045 "symfony/dependency-injection": "<5.4",
4671 "symfony/dotenv": "<5.4", 5046 "symfony/dotenv": "<5.4",
4672 "symfony/event-dispatcher": "<5.4", 5047 "symfony/event-dispatcher": "<5.4",
4673 "symfony/lock": "<5.4", 5048 "symfony/lock": "<5.4",
4674 "symfony/process": "<5.4" 5049 "symfony/process": "<5.4"
4675 }, 5050 },
4676 "provide": { 5051 "provide": {
4677 "psr/log-implementation": "1.0|2.0|3.0" 5052 "psr/log-implementation": "1.0|2.0|3.0"
4678 }, 5053 },
4679 "require-dev": { 5054 "require-dev": {
4680 "psr/log": "^1|^2|^3", 5055 "psr/log": "^1|^2|^3",
4681 "symfony/config": "^5.4|^6.0", 5056 "symfony/config": "^5.4|^6.0",
4682 "symfony/dependency-injection": "^5.4|^6.0", 5057 "symfony/dependency-injection": "^5.4|^6.0",
4683 "symfony/event-dispatcher": "^5.4|^6.0", 5058 "symfony/event-dispatcher": "^5.4|^6.0",
4684 "symfony/lock": "^5.4|^6.0", 5059 "symfony/lock": "^5.4|^6.0",
4685 "symfony/process": "^5.4|^6.0", 5060 "symfony/process": "^5.4|^6.0",
4686 "symfony/var-dumper": "^5.4|^6.0" 5061 "symfony/var-dumper": "^5.4|^6.0"
4687 }, 5062 },
4688 "suggest": { 5063 "suggest": {
4689 "psr/log": "For using the console logger", 5064 "psr/log": "For using the console logger",
4690 "symfony/event-dispatcher": "", 5065 "symfony/event-dispatcher": "",
4691 "symfony/lock": "", 5066 "symfony/lock": "",
4692 "symfony/process": "" 5067 "symfony/process": ""
4693 }, 5068 },
4694 "type": "library", 5069 "type": "library",
4695 "autoload": { 5070 "autoload": {
4696 "psr-4": { 5071 "psr-4": {
4697 "Symfony\\Component\\Console\\": "" 5072 "Symfony\\Component\\Console\\": ""
4698 }, 5073 },
4699 "exclude-from-classmap": [ 5074 "exclude-from-classmap": [
4700 "/Tests/" 5075 "/Tests/"
4701 ] 5076 ]
4702 }, 5077 },
4703 "notification-url": "https://packagist.org/downloads/", 5078 "notification-url": "https://packagist.org/downloads/",
4704 "license": [ 5079 "license": [
4705 "MIT" 5080 "MIT"
4706 ], 5081 ],
4707 "authors": [ 5082 "authors": [
4708 { 5083 {
4709 "name": "Fabien Potencier", 5084 "name": "Fabien Potencier",
4710 "email": "fabien@symfony.com" 5085 "email": "fabien@symfony.com"
4711 }, 5086 },
4712 { 5087 {
4713 "name": "Symfony Community", 5088 "name": "Symfony Community",
4714 "homepage": "https://symfony.com/contributors" 5089 "homepage": "https://symfony.com/contributors"
4715 } 5090 }
4716 ], 5091 ],
4717 "description": "Eases the creation of beautiful and testable command line interfaces", 5092 "description": "Eases the creation of beautiful and testable command line interfaces",
4718 "homepage": "https://symfony.com", 5093 "homepage": "https://symfony.com",
4719 "keywords": [ 5094 "keywords": [
4720 "cli", 5095 "cli",
4721 "command line", 5096 "command line",
4722 "console", 5097 "console",
4723 "terminal" 5098 "terminal"
4724 ], 5099 ],
4725 "support": { 5100 "support": {
4726 "source": "https://github.com/symfony/console/tree/v6.0.19" 5101 "source": "https://github.com/symfony/console/tree/v6.0.19"
4727 }, 5102 },
4728 "funding": [ 5103 "funding": [
4729 { 5104 {
4730 "url": "https://symfony.com/sponsor", 5105 "url": "https://symfony.com/sponsor",
4731 "type": "custom" 5106 "type": "custom"
4732 }, 5107 },
4733 { 5108 {
4734 "url": "https://github.com/fabpot", 5109 "url": "https://github.com/fabpot",
4735 "type": "github" 5110 "type": "github"
4736 }, 5111 },
4737 { 5112 {
4738 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 5113 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
4739 "type": "tidelift" 5114 "type": "tidelift"
4740 } 5115 }
4741 ], 5116 ],
4742 "time": "2023-01-01T08:36:10+00:00" 5117 "time": "2023-01-01T08:36:10+00:00"
4743 }, 5118 },
4744 { 5119 {
4745 "name": "symfony/css-selector", 5120 "name": "symfony/css-selector",
4746 "version": "v6.0.19", 5121 "version": "v6.0.19",
4747 "source": { 5122 "source": {
4748 "type": "git", 5123 "type": "git",
4749 "url": "https://github.com/symfony/css-selector.git", 5124 "url": "https://github.com/symfony/css-selector.git",
4750 "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1" 5125 "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
4751 }, 5126 },
4752 "dist": { 5127 "dist": {
4753 "type": "zip", 5128 "type": "zip",
4754 "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1", 5129 "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
4755 "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1", 5130 "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
4756 "shasum": "" 5131 "shasum": ""
4757 }, 5132 },
4758 "require": { 5133 "require": {
4759 "php": ">=8.0.2" 5134 "php": ">=8.0.2"
4760 }, 5135 },
4761 "type": "library", 5136 "type": "library",
4762 "autoload": { 5137 "autoload": {
4763 "psr-4": { 5138 "psr-4": {
4764 "Symfony\\Component\\CssSelector\\": "" 5139 "Symfony\\Component\\CssSelector\\": ""
4765 }, 5140 },
4766 "exclude-from-classmap": [ 5141 "exclude-from-classmap": [
4767 "/Tests/" 5142 "/Tests/"
4768 ] 5143 ]
4769 }, 5144 },
4770 "notification-url": "https://packagist.org/downloads/", 5145 "notification-url": "https://packagist.org/downloads/",
4771 "license": [ 5146 "license": [
4772 "MIT" 5147 "MIT"
4773 ], 5148 ],
4774 "authors": [ 5149 "authors": [
4775 { 5150 {
4776 "name": "Fabien Potencier", 5151 "name": "Fabien Potencier",
4777 "email": "fabien@symfony.com" 5152 "email": "fabien@symfony.com"
4778 }, 5153 },
4779 { 5154 {
4780 "name": "Jean-François Simon", 5155 "name": "Jean-François Simon",
4781 "email": "jeanfrancois.simon@sensiolabs.com" 5156 "email": "jeanfrancois.simon@sensiolabs.com"
4782 }, 5157 },
4783 { 5158 {
4784 "name": "Symfony Community", 5159 "name": "Symfony Community",
4785 "homepage": "https://symfony.com/contributors" 5160 "homepage": "https://symfony.com/contributors"
4786 } 5161 }
4787 ], 5162 ],
4788 "description": "Converts CSS selectors to XPath expressions", 5163 "description": "Converts CSS selectors to XPath expressions",
4789 "homepage": "https://symfony.com", 5164 "homepage": "https://symfony.com",
4790 "support": { 5165 "support": {
4791 "source": "https://github.com/symfony/css-selector/tree/v6.0.19" 5166 "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
4792 }, 5167 },
4793 "funding": [ 5168 "funding": [
4794 { 5169 {
4795 "url": "https://symfony.com/sponsor", 5170 "url": "https://symfony.com/sponsor",
4796 "type": "custom" 5171 "type": "custom"
4797 }, 5172 },
4798 { 5173 {
4799 "url": "https://github.com/fabpot", 5174 "url": "https://github.com/fabpot",
4800 "type": "github" 5175 "type": "github"
4801 }, 5176 },
4802 { 5177 {
4803 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 5178 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
4804 "type": "tidelift" 5179 "type": "tidelift"
4805 } 5180 }
4806 ], 5181 ],
4807 "time": "2023-01-01T08:36:10+00:00" 5182 "time": "2023-01-01T08:36:10+00:00"
4808 }, 5183 },
4809 { 5184 {
4810 "name": "symfony/deprecation-contracts", 5185 "name": "symfony/deprecation-contracts",
4811 "version": "v3.0.2", 5186 "version": "v3.0.2",
4812 "source": { 5187 "source": {
4813 "type": "git", 5188 "type": "git",
4814 "url": "https://github.com/symfony/deprecation-contracts.git", 5189 "url": "https://github.com/symfony/deprecation-contracts.git",
4815 "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c" 5190 "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
4816 }, 5191 },
4817 "dist": { 5192 "dist": {
4818 "type": "zip", 5193 "type": "zip",
4819 "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c", 5194 "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
4820 "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c", 5195 "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
4821 "shasum": "" 5196 "shasum": ""
4822 }, 5197 },
4823 "require": { 5198 "require": {
4824 "php": ">=8.0.2" 5199 "php": ">=8.0.2"
4825 }, 5200 },
4826 "type": "library", 5201 "type": "library",
4827 "extra": { 5202 "extra": {
4828 "branch-alias": { 5203 "branch-alias": {
4829 "dev-main": "3.0-dev" 5204 "dev-main": "3.0-dev"
4830 }, 5205 },
4831 "thanks": { 5206 "thanks": {
4832 "name": "symfony/contracts", 5207 "name": "symfony/contracts",
4833 "url": "https://github.com/symfony/contracts" 5208 "url": "https://github.com/symfony/contracts"
4834 } 5209 }
4835 }, 5210 },
4836 "autoload": { 5211 "autoload": {
4837 "files": [ 5212 "files": [
4838 "function.php" 5213 "function.php"
4839 ] 5214 ]
4840 }, 5215 },
4841 "notification-url": "https://packagist.org/downloads/", 5216 "notification-url": "https://packagist.org/downloads/",
4842 "license": [ 5217 "license": [
4843 "MIT" 5218 "MIT"
4844 ], 5219 ],
4845 "authors": [ 5220 "authors": [
4846 { 5221 {
4847 "name": "Nicolas Grekas", 5222 "name": "Nicolas Grekas",
4848 "email": "p@tchwork.com" 5223 "email": "p@tchwork.com"
4849 }, 5224 },
4850 { 5225 {
4851 "name": "Symfony Community", 5226 "name": "Symfony Community",
4852 "homepage": "https://symfony.com/contributors" 5227 "homepage": "https://symfony.com/contributors"
4853 } 5228 }
4854 ], 5229 ],
4855 "description": "A generic function and convention to trigger deprecation notices", 5230 "description": "A generic function and convention to trigger deprecation notices",
4856 "homepage": "https://symfony.com", 5231 "homepage": "https://symfony.com",
4857 "support": { 5232 "support": {
4858 "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2" 5233 "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
4859 }, 5234 },
4860 "funding": [ 5235 "funding": [
4861 { 5236 {
4862 "url": "https://symfony.com/sponsor", 5237 "url": "https://symfony.com/sponsor",
4863 "type": "custom" 5238 "type": "custom"
4864 }, 5239 },
4865 { 5240 {
4866 "url": "https://github.com/fabpot", 5241 "url": "https://github.com/fabpot",
4867 "type": "github" 5242 "type": "github"
4868 }, 5243 },
4869 { 5244 {
4870 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 5245 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
4871 "type": "tidelift" 5246 "type": "tidelift"
4872 } 5247 }
4873 ], 5248 ],
4874 "time": "2022-01-02T09:55:41+00:00" 5249 "time": "2022-01-02T09:55:41+00:00"
4875 }, 5250 },
4876 { 5251 {
4877 "name": "symfony/error-handler", 5252 "name": "symfony/error-handler",
4878 "version": "v6.0.19", 5253 "version": "v6.0.19",
4879 "source": { 5254 "source": {
4880 "type": "git", 5255 "type": "git",
4881 "url": "https://github.com/symfony/error-handler.git", 5256 "url": "https://github.com/symfony/error-handler.git",
4882 "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67" 5257 "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67"
4883 }, 5258 },
4884 "dist": { 5259 "dist": {
4885 "type": "zip", 5260 "type": "zip",
4886 "url": "https://api.github.com/repos/symfony/error-handler/zipball/c7df52182f43a68522756ac31a532dd5b1e6db67", 5261 "url": "https://api.github.com/repos/symfony/error-handler/zipball/c7df52182f43a68522756ac31a532dd5b1e6db67",
4887 "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67", 5262 "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67",
4888 "shasum": "" 5263 "shasum": ""
4889 }, 5264 },
4890 "require": { 5265 "require": {
4891 "php": ">=8.0.2", 5266 "php": ">=8.0.2",
4892 "psr/log": "^1|^2|^3", 5267 "psr/log": "^1|^2|^3",
4893 "symfony/var-dumper": "^5.4|^6.0" 5268 "symfony/var-dumper": "^5.4|^6.0"
4894 }, 5269 },
4895 "require-dev": { 5270 "require-dev": {
4896 "symfony/deprecation-contracts": "^2.1|^3", 5271 "symfony/deprecation-contracts": "^2.1|^3",
4897 "symfony/http-kernel": "^5.4|^6.0", 5272 "symfony/http-kernel": "^5.4|^6.0",
4898 "symfony/serializer": "^5.4|^6.0" 5273 "symfony/serializer": "^5.4|^6.0"
4899 }, 5274 },
4900 "bin": [ 5275 "bin": [
4901 "Resources/bin/patch-type-declarations" 5276 "Resources/bin/patch-type-declarations"
4902 ], 5277 ],
4903 "type": "library", 5278 "type": "library",
4904 "autoload": { 5279 "autoload": {
4905 "psr-4": { 5280 "psr-4": {
4906 "Symfony\\Component\\ErrorHandler\\": "" 5281 "Symfony\\Component\\ErrorHandler\\": ""
4907 }, 5282 },
4908 "exclude-from-classmap": [ 5283 "exclude-from-classmap": [
4909 "/Tests/" 5284 "/Tests/"
4910 ] 5285 ]
4911 }, 5286 },
4912 "notification-url": "https://packagist.org/downloads/", 5287 "notification-url": "https://packagist.org/downloads/",
4913 "license": [ 5288 "license": [
4914 "MIT" 5289 "MIT"
4915 ], 5290 ],
4916 "authors": [ 5291 "authors": [
4917 { 5292 {
4918 "name": "Fabien Potencier", 5293 "name": "Fabien Potencier",
4919 "email": "fabien@symfony.com" 5294 "email": "fabien@symfony.com"
4920 }, 5295 },
4921 { 5296 {
4922 "name": "Symfony Community", 5297 "name": "Symfony Community",
4923 "homepage": "https://symfony.com/contributors" 5298 "homepage": "https://symfony.com/contributors"
4924 } 5299 }
4925 ], 5300 ],
4926 "description": "Provides tools to manage errors and ease debugging PHP code", 5301 "description": "Provides tools to manage errors and ease debugging PHP code",
4927 "homepage": "https://symfony.com", 5302 "homepage": "https://symfony.com",
4928 "support": { 5303 "support": {
4929 "source": "https://github.com/symfony/error-handler/tree/v6.0.19" 5304 "source": "https://github.com/symfony/error-handler/tree/v6.0.19"
4930 }, 5305 },
4931 "funding": [ 5306 "funding": [
4932 { 5307 {
4933 "url": "https://symfony.com/sponsor", 5308 "url": "https://symfony.com/sponsor",
4934 "type": "custom" 5309 "type": "custom"
4935 }, 5310 },
4936 { 5311 {
4937 "url": "https://github.com/fabpot", 5312 "url": "https://github.com/fabpot",
4938 "type": "github" 5313 "type": "github"
4939 }, 5314 },
4940 { 5315 {
4941 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 5316 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
4942 "type": "tidelift" 5317 "type": "tidelift"
4943 } 5318 }
4944 ], 5319 ],
4945 "time": "2023-01-01T08:36:10+00:00" 5320 "time": "2023-01-01T08:36:10+00:00"
4946 }, 5321 },
4947 { 5322 {
4948 "name": "symfony/event-dispatcher", 5323 "name": "symfony/event-dispatcher",
4949 "version": "v6.0.19", 5324 "version": "v6.0.19",
4950 "source": { 5325 "source": {
4951 "type": "git", 5326 "type": "git",
4952 "url": "https://github.com/symfony/event-dispatcher.git", 5327 "url": "https://github.com/symfony/event-dispatcher.git",
4953 "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a" 5328 "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
4954 }, 5329 },
4955 "dist": { 5330 "dist": {
4956 "type": "zip", 5331 "type": "zip",
4957 "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a", 5332 "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
4958 "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a", 5333 "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
4959 "shasum": "" 5334 "shasum": ""
4960 }, 5335 },
4961 "require": { 5336 "require": {
4962 "php": ">=8.0.2", 5337 "php": ">=8.0.2",
4963 "symfony/event-dispatcher-contracts": "^2|^3" 5338 "symfony/event-dispatcher-contracts": "^2|^3"
4964 }, 5339 },
4965 "conflict": { 5340 "conflict": {
4966 "symfony/dependency-injection": "<5.4" 5341 "symfony/dependency-injection": "<5.4"
4967 }, 5342 },
4968 "provide": { 5343 "provide": {
4969 "psr/event-dispatcher-implementation": "1.0", 5344 "psr/event-dispatcher-implementation": "1.0",
4970 "symfony/event-dispatcher-implementation": "2.0|3.0" 5345 "symfony/event-dispatcher-implementation": "2.0|3.0"
4971 }, 5346 },
4972 "require-dev": { 5347 "require-dev": {
4973 "psr/log": "^1|^2|^3", 5348 "psr/log": "^1|^2|^3",
4974 "symfony/config": "^5.4|^6.0", 5349 "symfony/config": "^5.4|^6.0",
4975 "symfony/dependency-injection": "^5.4|^6.0", 5350 "symfony/dependency-injection": "^5.4|^6.0",
4976 "symfony/error-handler": "^5.4|^6.0", 5351 "symfony/error-handler": "^5.4|^6.0",
4977 "symfony/expression-language": "^5.4|^6.0", 5352 "symfony/expression-language": "^5.4|^6.0",
4978 "symfony/http-foundation": "^5.4|^6.0", 5353 "symfony/http-foundation": "^5.4|^6.0",
4979 "symfony/service-contracts": "^1.1|^2|^3", 5354 "symfony/service-contracts": "^1.1|^2|^3",
4980 "symfony/stopwatch": "^5.4|^6.0" 5355 "symfony/stopwatch": "^5.4|^6.0"
4981 }, 5356 },
4982 "suggest": { 5357 "suggest": {
4983 "symfony/dependency-injection": "", 5358 "symfony/dependency-injection": "",
4984 "symfony/http-kernel": "" 5359 "symfony/http-kernel": ""
4985 }, 5360 },
4986 "type": "library", 5361 "type": "library",
4987 "autoload": { 5362 "autoload": {
4988 "psr-4": { 5363 "psr-4": {
4989 "Symfony\\Component\\EventDispatcher\\": "" 5364 "Symfony\\Component\\EventDispatcher\\": ""
4990 }, 5365 },
4991 "exclude-from-classmap": [ 5366 "exclude-from-classmap": [
4992 "/Tests/" 5367 "/Tests/"
4993 ] 5368 ]
4994 }, 5369 },
4995 "notification-url": "https://packagist.org/downloads/", 5370 "notification-url": "https://packagist.org/downloads/",
4996 "license": [ 5371 "license": [
4997 "MIT" 5372 "MIT"
4998 ], 5373 ],
4999 "authors": [ 5374 "authors": [
5000 { 5375 {
5001 "name": "Fabien Potencier", 5376 "name": "Fabien Potencier",
5002 "email": "fabien@symfony.com" 5377 "email": "fabien@symfony.com"
5003 }, 5378 },
5004 { 5379 {
5005 "name": "Symfony Community", 5380 "name": "Symfony Community",
5006 "homepage": "https://symfony.com/contributors" 5381 "homepage": "https://symfony.com/contributors"
5007 } 5382 }
5008 ], 5383 ],
5009 "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", 5384 "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
5010 "homepage": "https://symfony.com", 5385 "homepage": "https://symfony.com",
5011 "support": { 5386 "support": {
5012 "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19" 5387 "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
5013 }, 5388 },
5014 "funding": [ 5389 "funding": [
5015 { 5390 {
5016 "url": "https://symfony.com/sponsor", 5391 "url": "https://symfony.com/sponsor",
5017 "type": "custom" 5392 "type": "custom"
5018 }, 5393 },
5019 { 5394 {
5020 "url": "https://github.com/fabpot", 5395 "url": "https://github.com/fabpot",
5021 "type": "github" 5396 "type": "github"
5022 }, 5397 },
5023 { 5398 {
5024 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 5399 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5025 "type": "tidelift" 5400 "type": "tidelift"
5026 } 5401 }
5027 ], 5402 ],
5028 "time": "2023-01-01T08:36:10+00:00" 5403 "time": "2023-01-01T08:36:10+00:00"
5029 }, 5404 },
5030 { 5405 {
5031 "name": "symfony/event-dispatcher-contracts", 5406 "name": "symfony/event-dispatcher-contracts",
5032 "version": "v3.0.2", 5407 "version": "v3.0.2",
5033 "source": { 5408 "source": {
5034 "type": "git", 5409 "type": "git",
5035 "url": "https://github.com/symfony/event-dispatcher-contracts.git", 5410 "url": "https://github.com/symfony/event-dispatcher-contracts.git",
5036 "reference": "7bc61cc2db649b4637d331240c5346dcc7708051" 5411 "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
5037 }, 5412 },
5038 "dist": { 5413 "dist": {
5039 "type": "zip", 5414 "type": "zip",
5040 "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051", 5415 "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
5041 "reference": "7bc61cc2db649b4637d331240c5346dcc7708051", 5416 "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
5042 "shasum": "" 5417 "shasum": ""
5043 }, 5418 },
5044 "require": { 5419 "require": {
5045 "php": ">=8.0.2", 5420 "php": ">=8.0.2",
5046 "psr/event-dispatcher": "^1" 5421 "psr/event-dispatcher": "^1"
5047 }, 5422 },
5048 "suggest": { 5423 "suggest": {
5049 "symfony/event-dispatcher-implementation": "" 5424 "symfony/event-dispatcher-implementation": ""
5050 }, 5425 },
5051 "type": "library", 5426 "type": "library",
5052 "extra": { 5427 "extra": {
5053 "branch-alias": { 5428 "branch-alias": {
5054 "dev-main": "3.0-dev" 5429 "dev-main": "3.0-dev"
5055 }, 5430 },
5056 "thanks": { 5431 "thanks": {
5057 "name": "symfony/contracts", 5432 "name": "symfony/contracts",
5058 "url": "https://github.com/symfony/contracts" 5433 "url": "https://github.com/symfony/contracts"
5059 } 5434 }
5060 }, 5435 },
5061 "autoload": { 5436 "autoload": {
5062 "psr-4": { 5437 "psr-4": {
5063 "Symfony\\Contracts\\EventDispatcher\\": "" 5438 "Symfony\\Contracts\\EventDispatcher\\": ""
5064 } 5439 }
5065 }, 5440 },
5066 "notification-url": "https://packagist.org/downloads/", 5441 "notification-url": "https://packagist.org/downloads/",
5067 "license": [ 5442 "license": [
5068 "MIT" 5443 "MIT"
5069 ], 5444 ],
5070 "authors": [ 5445 "authors": [
5071 { 5446 {
5072 "name": "Nicolas Grekas", 5447 "name": "Nicolas Grekas",
5073 "email": "p@tchwork.com" 5448 "email": "p@tchwork.com"
5074 }, 5449 },
5075 { 5450 {
5076 "name": "Symfony Community", 5451 "name": "Symfony Community",
5077 "homepage": "https://symfony.com/contributors" 5452 "homepage": "https://symfony.com/contributors"
5078 } 5453 }
5079 ], 5454 ],
5080 "description": "Generic abstractions related to dispatching event", 5455 "description": "Generic abstractions related to dispatching event",
5081 "homepage": "https://symfony.com", 5456 "homepage": "https://symfony.com",
5082 "keywords": [ 5457 "keywords": [
5083 "abstractions", 5458 "abstractions",
5084 "contracts", 5459 "contracts",
5085 "decoupling", 5460 "decoupling",
5086 "interfaces", 5461 "interfaces",
5087 "interoperability", 5462 "interoperability",
5088 "standards" 5463 "standards"
5089 ], 5464 ],
5090 "support": { 5465 "support": {
5091 "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2" 5466 "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
5092 }, 5467 },
5093 "funding": [ 5468 "funding": [
5094 { 5469 {
5095 "url": "https://symfony.com/sponsor", 5470 "url": "https://symfony.com/sponsor",
5096 "type": "custom" 5471 "type": "custom"
5097 }, 5472 },
5098 { 5473 {
5099 "url": "https://github.com/fabpot", 5474 "url": "https://github.com/fabpot",
5100 "type": "github" 5475 "type": "github"
5101 }, 5476 },
5102 { 5477 {
5103 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 5478 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5104 "type": "tidelift" 5479 "type": "tidelift"
5105 } 5480 }
5106 ], 5481 ],
5107 "time": "2022-01-02T09:55:41+00:00" 5482 "time": "2022-01-02T09:55:41+00:00"
5108 }, 5483 },
5109 { 5484 {
5110 "name": "symfony/finder", 5485 "name": "symfony/finder",
5111 "version": "v6.0.19", 5486 "version": "v6.0.19",
5112 "source": { 5487 "source": {
5113 "type": "git", 5488 "type": "git",
5114 "url": "https://github.com/symfony/finder.git", 5489 "url": "https://github.com/symfony/finder.git",
5115 "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11" 5490 "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11"
5116 }, 5491 },
5117 "dist": { 5492 "dist": {
5118 "type": "zip", 5493 "type": "zip",
5119 "url": "https://api.github.com/repos/symfony/finder/zipball/5cc9cac6586fc0c28cd173780ca696e419fefa11", 5494 "url": "https://api.github.com/repos/symfony/finder/zipball/5cc9cac6586fc0c28cd173780ca696e419fefa11",
5120 "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11", 5495 "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11",
5121 "shasum": "" 5496 "shasum": ""
5122 }, 5497 },
5123 "require": { 5498 "require": {
5124 "php": ">=8.0.2" 5499 "php": ">=8.0.2"
5125 }, 5500 },
5126 "type": "library", 5501 "type": "library",
5127 "autoload": { 5502 "autoload": {
5128 "psr-4": { 5503 "psr-4": {
5129 "Symfony\\Component\\Finder\\": "" 5504 "Symfony\\Component\\Finder\\": ""
5130 }, 5505 },
5131 "exclude-from-classmap": [ 5506 "exclude-from-classmap": [
5132 "/Tests/" 5507 "/Tests/"
5133 ] 5508 ]
5134 }, 5509 },
5135 "notification-url": "https://packagist.org/downloads/", 5510 "notification-url": "https://packagist.org/downloads/",
5136 "license": [ 5511 "license": [
5137 "MIT" 5512 "MIT"
5138 ], 5513 ],
5139 "authors": [ 5514 "authors": [
5140 { 5515 {
5141 "name": "Fabien Potencier", 5516 "name": "Fabien Potencier",
5142 "email": "fabien@symfony.com" 5517 "email": "fabien@symfony.com"
5143 }, 5518 },
5144 { 5519 {
5145 "name": "Symfony Community", 5520 "name": "Symfony Community",
5146 "homepage": "https://symfony.com/contributors" 5521 "homepage": "https://symfony.com/contributors"
5147 } 5522 }
5148 ], 5523 ],
5149 "description": "Finds files and directories via an intuitive fluent interface", 5524 "description": "Finds files and directories via an intuitive fluent interface",
5150 "homepage": "https://symfony.com", 5525 "homepage": "https://symfony.com",
5151 "support": { 5526 "support": {
5152 "source": "https://github.com/symfony/finder/tree/v6.0.19" 5527 "source": "https://github.com/symfony/finder/tree/v6.0.19"
5153 }, 5528 },
5154 "funding": [ 5529 "funding": [
5155 { 5530 {
5156 "url": "https://symfony.com/sponsor", 5531 "url": "https://symfony.com/sponsor",
5157 "type": "custom" 5532 "type": "custom"
5158 }, 5533 },
5159 { 5534 {
5160 "url": "https://github.com/fabpot", 5535 "url": "https://github.com/fabpot",
5161 "type": "github" 5536 "type": "github"
5162 }, 5537 },
5163 { 5538 {
5164 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 5539 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5165 "type": "tidelift" 5540 "type": "tidelift"
5166 } 5541 }
5167 ], 5542 ],
5168 "time": "2023-01-20T17:44:14+00:00" 5543 "time": "2023-01-20T17:44:14+00:00"
5169 }, 5544 },
5170 { 5545 {
5171 "name": "symfony/http-foundation", 5546 "name": "symfony/http-foundation",
5172 "version": "v6.0.20", 5547 "version": "v6.0.20",
5173 "source": { 5548 "source": {
5174 "type": "git", 5549 "type": "git",
5175 "url": "https://github.com/symfony/http-foundation.git", 5550 "url": "https://github.com/symfony/http-foundation.git",
5176 "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6" 5551 "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6"
5177 }, 5552 },
5178 "dist": { 5553 "dist": {
5179 "type": "zip", 5554 "type": "zip",
5180 "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e16b2676a4b3b1fa12378a20b29c364feda2a8d6", 5555 "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e16b2676a4b3b1fa12378a20b29c364feda2a8d6",
5181 "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6", 5556 "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6",
5182 "shasum": "" 5557 "shasum": ""
5183 }, 5558 },
5184 "require": { 5559 "require": {
5185 "php": ">=8.0.2", 5560 "php": ">=8.0.2",
5186 "symfony/deprecation-contracts": "^2.1|^3", 5561 "symfony/deprecation-contracts": "^2.1|^3",
5187 "symfony/polyfill-mbstring": "~1.1" 5562 "symfony/polyfill-mbstring": "~1.1"
5188 }, 5563 },
5189 "require-dev": { 5564 "require-dev": {
5190 "predis/predis": "~1.0", 5565 "predis/predis": "~1.0",
5191 "symfony/cache": "^5.4|^6.0", 5566 "symfony/cache": "^5.4|^6.0",
5192 "symfony/dependency-injection": "^5.4|^6.0", 5567 "symfony/dependency-injection": "^5.4|^6.0",
5193 "symfony/expression-language": "^5.4|^6.0", 5568 "symfony/expression-language": "^5.4|^6.0",
5194 "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", 5569 "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
5195 "symfony/mime": "^5.4|^6.0", 5570 "symfony/mime": "^5.4|^6.0",
5196 "symfony/rate-limiter": "^5.2|^6.0" 5571 "symfony/rate-limiter": "^5.2|^6.0"
5197 }, 5572 },
5198 "suggest": { 5573 "suggest": {
5199 "symfony/mime": "To use the file extension guesser" 5574 "symfony/mime": "To use the file extension guesser"
5200 }, 5575 },
5201 "type": "library", 5576 "type": "library",
5202 "autoload": { 5577 "autoload": {
5203 "psr-4": { 5578 "psr-4": {
5204 "Symfony\\Component\\HttpFoundation\\": "" 5579 "Symfony\\Component\\HttpFoundation\\": ""
5205 }, 5580 },
5206 "exclude-from-classmap": [ 5581 "exclude-from-classmap": [
5207 "/Tests/" 5582 "/Tests/"
5208 ] 5583 ]
5209 }, 5584 },
5210 "notification-url": "https://packagist.org/downloads/", 5585 "notification-url": "https://packagist.org/downloads/",
5211 "license": [ 5586 "license": [
5212 "MIT" 5587 "MIT"
5213 ], 5588 ],
5214 "authors": [ 5589 "authors": [
5215 { 5590 {
5216 "name": "Fabien Potencier", 5591 "name": "Fabien Potencier",
5217 "email": "fabien@symfony.com" 5592 "email": "fabien@symfony.com"
5218 }, 5593 },
5219 { 5594 {
5220 "name": "Symfony Community", 5595 "name": "Symfony Community",
5221 "homepage": "https://symfony.com/contributors" 5596 "homepage": "https://symfony.com/contributors"
5222 } 5597 }
5223 ], 5598 ],
5224 "description": "Defines an object-oriented layer for the HTTP specification", 5599 "description": "Defines an object-oriented layer for the HTTP specification",
5225 "homepage": "https://symfony.com", 5600 "homepage": "https://symfony.com",
5226 "support": { 5601 "support": {
5227 "source": "https://github.com/symfony/http-foundation/tree/v6.0.20" 5602 "source": "https://github.com/symfony/http-foundation/tree/v6.0.20"
5228 }, 5603 },
5229 "funding": [ 5604 "funding": [
5230 { 5605 {
5231 "url": "https://symfony.com/sponsor", 5606 "url": "https://symfony.com/sponsor",
5232 "type": "custom" 5607 "type": "custom"
5233 }, 5608 },
5234 { 5609 {
5235 "url": "https://github.com/fabpot", 5610 "url": "https://github.com/fabpot",
5236 "type": "github" 5611 "type": "github"
5237 }, 5612 },
5238 { 5613 {
5239 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 5614 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5240 "type": "tidelift" 5615 "type": "tidelift"
5241 } 5616 }
5242 ], 5617 ],
5243 "time": "2023-01-30T15:41:07+00:00" 5618 "time": "2023-01-30T15:41:07+00:00"
5244 }, 5619 },
5245 { 5620 {
5246 "name": "symfony/http-kernel", 5621 "name": "symfony/http-kernel",
5247 "version": "v6.0.20", 5622 "version": "v6.0.20",
5248 "source": { 5623 "source": {
5249 "type": "git", 5624 "type": "git",
5250 "url": "https://github.com/symfony/http-kernel.git", 5625 "url": "https://github.com/symfony/http-kernel.git",
5251 "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349" 5626 "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349"
5252 }, 5627 },
5253 "dist": { 5628 "dist": {
5254 "type": "zip", 5629 "type": "zip",
5255 "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6dc70833fd0ef5e861e17c7854c12d7d86679349", 5630 "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6dc70833fd0ef5e861e17c7854c12d7d86679349",
5256 "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349", 5631 "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349",
5257 "shasum": "" 5632 "shasum": ""
5258 }, 5633 },
5259 "require": { 5634 "require": {
5260 "php": ">=8.0.2", 5635 "php": ">=8.0.2",
5261 "psr/log": "^1|^2|^3", 5636 "psr/log": "^1|^2|^3",
5262 "symfony/error-handler": "^5.4|^6.0", 5637 "symfony/error-handler": "^5.4|^6.0",
5263 "symfony/event-dispatcher": "^5.4|^6.0", 5638 "symfony/event-dispatcher": "^5.4|^6.0",
5264 "symfony/http-foundation": "^5.4|^6.0", 5639 "symfony/http-foundation": "^5.4|^6.0",
5265 "symfony/polyfill-ctype": "^1.8" 5640 "symfony/polyfill-ctype": "^1.8"
5266 }, 5641 },
5267 "conflict": { 5642 "conflict": {
5268 "symfony/browser-kit": "<5.4", 5643 "symfony/browser-kit": "<5.4",
5269 "symfony/cache": "<5.4", 5644 "symfony/cache": "<5.4",
5270 "symfony/config": "<5.4", 5645 "symfony/config": "<5.4",
5271 "symfony/console": "<5.4", 5646 "symfony/console": "<5.4",
5272 "symfony/dependency-injection": "<5.4", 5647 "symfony/dependency-injection": "<5.4",
5273 "symfony/doctrine-bridge": "<5.4", 5648 "symfony/doctrine-bridge": "<5.4",
5274 "symfony/form": "<5.4", 5649 "symfony/form": "<5.4",
5275 "symfony/http-client": "<5.4", 5650 "symfony/http-client": "<5.4",
5276 "symfony/mailer": "<5.4", 5651 "symfony/mailer": "<5.4",
5277 "symfony/messenger": "<5.4", 5652 "symfony/messenger": "<5.4",
5278 "symfony/translation": "<5.4", 5653 "symfony/translation": "<5.4",
5279 "symfony/twig-bridge": "<5.4", 5654 "symfony/twig-bridge": "<5.4",
5280 "symfony/validator": "<5.4", 5655 "symfony/validator": "<5.4",
5281 "twig/twig": "<2.13" 5656 "twig/twig": "<2.13"
5282 }, 5657 },
5283 "provide": { 5658 "provide": {
5284 "psr/log-implementation": "1.0|2.0|3.0" 5659 "psr/log-implementation": "1.0|2.0|3.0"
5285 }, 5660 },
5286 "require-dev": { 5661 "require-dev": {
5287 "psr/cache": "^1.0|^2.0|^3.0", 5662 "psr/cache": "^1.0|^2.0|^3.0",
5288 "symfony/browser-kit": "^5.4|^6.0", 5663 "symfony/browser-kit": "^5.4|^6.0",
5289 "symfony/config": "^5.4|^6.0", 5664 "symfony/config": "^5.4|^6.0",
5290 "symfony/console": "^5.4|^6.0", 5665 "symfony/console": "^5.4|^6.0",
5291 "symfony/css-selector": "^5.4|^6.0", 5666 "symfony/css-selector": "^5.4|^6.0",
5292 "symfony/dependency-injection": "^5.4|^6.0", 5667 "symfony/dependency-injection": "^5.4|^6.0",
5293 "symfony/dom-crawler": "^5.4|^6.0", 5668 "symfony/dom-crawler": "^5.4|^6.0",
5294 "symfony/expression-language": "^5.4|^6.0", 5669 "symfony/expression-language": "^5.4|^6.0",
5295 "symfony/finder": "^5.4|^6.0", 5670 "symfony/finder": "^5.4|^6.0",
5296 "symfony/http-client-contracts": "^1.1|^2|^3", 5671 "symfony/http-client-contracts": "^1.1|^2|^3",
5297 "symfony/process": "^5.4|^6.0", 5672 "symfony/process": "^5.4|^6.0",
5298 "symfony/routing": "^5.4|^6.0", 5673 "symfony/routing": "^5.4|^6.0",
5299 "symfony/stopwatch": "^5.4|^6.0", 5674 "symfony/stopwatch": "^5.4|^6.0",
5300 "symfony/translation": "^5.4|^6.0", 5675 "symfony/translation": "^5.4|^6.0",
5301 "symfony/translation-contracts": "^1.1|^2|^3", 5676 "symfony/translation-contracts": "^1.1|^2|^3",
5302 "twig/twig": "^2.13|^3.0.4" 5677 "twig/twig": "^2.13|^3.0.4"
5303 }, 5678 },
5304 "suggest": { 5679 "suggest": {
5305 "symfony/browser-kit": "", 5680 "symfony/browser-kit": "",
5306 "symfony/config": "", 5681 "symfony/config": "",
5307 "symfony/console": "", 5682 "symfony/console": "",
5308 "symfony/dependency-injection": "" 5683 "symfony/dependency-injection": ""
5309 }, 5684 },
5310 "type": "library", 5685 "type": "library",
5311 "autoload": { 5686 "autoload": {
5312 "psr-4": { 5687 "psr-4": {
5313 "Symfony\\Component\\HttpKernel\\": "" 5688 "Symfony\\Component\\HttpKernel\\": ""
5314 }, 5689 },
5315 "exclude-from-classmap": [ 5690 "exclude-from-classmap": [
5316 "/Tests/" 5691 "/Tests/"
5317 ] 5692 ]
5318 }, 5693 },
5319 "notification-url": "https://packagist.org/downloads/", 5694 "notification-url": "https://packagist.org/downloads/",
5320 "license": [ 5695 "license": [
5321 "MIT" 5696 "MIT"
5322 ], 5697 ],
5323 "authors": [ 5698 "authors": [
5324 { 5699 {
5325 "name": "Fabien Potencier", 5700 "name": "Fabien Potencier",
5326 "email": "fabien@symfony.com" 5701 "email": "fabien@symfony.com"
5327 }, 5702 },
5328 { 5703 {
5329 "name": "Symfony Community", 5704 "name": "Symfony Community",
5330 "homepage": "https://symfony.com/contributors" 5705 "homepage": "https://symfony.com/contributors"
5331 } 5706 }
5332 ], 5707 ],
5333 "description": "Provides a structured process for converting a Request into a Response", 5708 "description": "Provides a structured process for converting a Request into a Response",
5334 "homepage": "https://symfony.com", 5709 "homepage": "https://symfony.com",
5335 "support": { 5710 "support": {
5336 "source": "https://github.com/symfony/http-kernel/tree/v6.0.20" 5711 "source": "https://github.com/symfony/http-kernel/tree/v6.0.20"
5337 }, 5712 },
5338 "funding": [ 5713 "funding": [
5339 { 5714 {
5340 "url": "https://symfony.com/sponsor", 5715 "url": "https://symfony.com/sponsor",
5341 "type": "custom" 5716 "type": "custom"
5342 }, 5717 },
5343 { 5718 {
5344 "url": "https://github.com/fabpot", 5719 "url": "https://github.com/fabpot",
5345 "type": "github" 5720 "type": "github"
5346 }, 5721 },
5347 { 5722 {
5348 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 5723 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5349 "type": "tidelift" 5724 "type": "tidelift"
5350 } 5725 }
5351 ], 5726 ],
5352 "time": "2023-02-01T08:22:55+00:00" 5727 "time": "2023-02-01T08:22:55+00:00"
5353 }, 5728 },
5354 { 5729 {
5355 "name": "symfony/mailer", 5730 "name": "symfony/mailer",
5356 "version": "v6.0.19", 5731 "version": "v6.0.19",
5357 "source": { 5732 "source": {
5358 "type": "git", 5733 "type": "git",
5359 "url": "https://github.com/symfony/mailer.git", 5734 "url": "https://github.com/symfony/mailer.git",
5360 "reference": "cd60799210c488f545ddde2444dc1aa548322872" 5735 "reference": "cd60799210c488f545ddde2444dc1aa548322872"
5361 }, 5736 },
5362 "dist": { 5737 "dist": {
5363 "type": "zip", 5738 "type": "zip",
5364 "url": "https://api.github.com/repos/symfony/mailer/zipball/cd60799210c488f545ddde2444dc1aa548322872", 5739 "url": "https://api.github.com/repos/symfony/mailer/zipball/cd60799210c488f545ddde2444dc1aa548322872",
5365 "reference": "cd60799210c488f545ddde2444dc1aa548322872", 5740 "reference": "cd60799210c488f545ddde2444dc1aa548322872",
5366 "shasum": "" 5741 "shasum": ""
5367 }, 5742 },
5368 "require": { 5743 "require": {
5369 "egulias/email-validator": "^2.1.10|^3|^4", 5744 "egulias/email-validator": "^2.1.10|^3|^4",
5370 "php": ">=8.0.2", 5745 "php": ">=8.0.2",
5371 "psr/event-dispatcher": "^1", 5746 "psr/event-dispatcher": "^1",
5372 "psr/log": "^1|^2|^3", 5747 "psr/log": "^1|^2|^3",
5373 "symfony/event-dispatcher": "^5.4|^6.0", 5748 "symfony/event-dispatcher": "^5.4|^6.0",
5374 "symfony/mime": "^5.4|^6.0", 5749 "symfony/mime": "^5.4|^6.0",
5375 "symfony/service-contracts": "^1.1|^2|^3" 5750 "symfony/service-contracts": "^1.1|^2|^3"
5376 }, 5751 },
5377 "conflict": { 5752 "conflict": {
5378 "symfony/http-kernel": "<5.4" 5753 "symfony/http-kernel": "<5.4"
5379 }, 5754 },
5380 "require-dev": { 5755 "require-dev": {
5381 "symfony/http-client-contracts": "^1.1|^2|^3", 5756 "symfony/http-client-contracts": "^1.1|^2|^3",
5382 "symfony/messenger": "^5.4|^6.0" 5757 "symfony/messenger": "^5.4|^6.0"
5383 }, 5758 },
5384 "type": "library", 5759 "type": "library",
5385 "autoload": { 5760 "autoload": {
5386 "psr-4": { 5761 "psr-4": {
5387 "Symfony\\Component\\Mailer\\": "" 5762 "Symfony\\Component\\Mailer\\": ""
5388 }, 5763 },
5389 "exclude-from-classmap": [ 5764 "exclude-from-classmap": [
5390 "/Tests/" 5765 "/Tests/"
5391 ] 5766 ]
5392 }, 5767 },
5393 "notification-url": "https://packagist.org/downloads/", 5768 "notification-url": "https://packagist.org/downloads/",
5394 "license": [ 5769 "license": [
5395 "MIT" 5770 "MIT"
5396 ], 5771 ],
5397 "authors": [ 5772 "authors": [
5398 { 5773 {
5399 "name": "Fabien Potencier", 5774 "name": "Fabien Potencier",
5400 "email": "fabien@symfony.com" 5775 "email": "fabien@symfony.com"
5401 }, 5776 },
5402 { 5777 {
5403 "name": "Symfony Community", 5778 "name": "Symfony Community",
5404 "homepage": "https://symfony.com/contributors" 5779 "homepage": "https://symfony.com/contributors"
5405 } 5780 }
5406 ], 5781 ],
5407 "description": "Helps sending emails", 5782 "description": "Helps sending emails",
5408 "homepage": "https://symfony.com", 5783 "homepage": "https://symfony.com",
5409 "support": { 5784 "support": {
5410 "source": "https://github.com/symfony/mailer/tree/v6.0.19" 5785 "source": "https://github.com/symfony/mailer/tree/v6.0.19"
5411 }, 5786 },
5412 "funding": [ 5787 "funding": [
5413 { 5788 {
5414 "url": "https://symfony.com/sponsor", 5789 "url": "https://symfony.com/sponsor",
5415 "type": "custom" 5790 "type": "custom"
5416 }, 5791 },
5417 { 5792 {
5418 "url": "https://github.com/fabpot", 5793 "url": "https://github.com/fabpot",
5419 "type": "github" 5794 "type": "github"
5420 }, 5795 },
5421 { 5796 {
5422 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 5797 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5423 "type": "tidelift" 5798 "type": "tidelift"
5424 } 5799 }
5425 ], 5800 ],
5426 "time": "2023-01-11T11:50:03+00:00" 5801 "time": "2023-01-11T11:50:03+00:00"
5427 }, 5802 },
5428 { 5803 {
5429 "name": "symfony/mime", 5804 "name": "symfony/mime",
5430 "version": "v6.0.19", 5805 "version": "v6.0.19",
5431 "source": { 5806 "source": {
5432 "type": "git", 5807 "type": "git",
5433 "url": "https://github.com/symfony/mime.git", 5808 "url": "https://github.com/symfony/mime.git",
5434 "reference": "d7052547a0070cbeadd474e172b527a00d657301" 5809 "reference": "d7052547a0070cbeadd474e172b527a00d657301"
5435 }, 5810 },
5436 "dist": { 5811 "dist": {
5437 "type": "zip", 5812 "type": "zip",
5438 "url": "https://api.github.com/repos/symfony/mime/zipball/d7052547a0070cbeadd474e172b527a00d657301", 5813 "url": "https://api.github.com/repos/symfony/mime/zipball/d7052547a0070cbeadd474e172b527a00d657301",
5439 "reference": "d7052547a0070cbeadd474e172b527a00d657301", 5814 "reference": "d7052547a0070cbeadd474e172b527a00d657301",
5440 "shasum": "" 5815 "shasum": ""
5441 }, 5816 },
5442 "require": { 5817 "require": {
5443 "php": ">=8.0.2", 5818 "php": ">=8.0.2",
5444 "symfony/polyfill-intl-idn": "^1.10", 5819 "symfony/polyfill-intl-idn": "^1.10",
5445 "symfony/polyfill-mbstring": "^1.0" 5820 "symfony/polyfill-mbstring": "^1.0"
5446 }, 5821 },
5447 "conflict": { 5822 "conflict": {
5448 "egulias/email-validator": "~3.0.0", 5823 "egulias/email-validator": "~3.0.0",
5449 "phpdocumentor/reflection-docblock": "<3.2.2", 5824 "phpdocumentor/reflection-docblock": "<3.2.2",
5450 "phpdocumentor/type-resolver": "<1.4.0", 5825 "phpdocumentor/type-resolver": "<1.4.0",
5451 "symfony/mailer": "<5.4", 5826 "symfony/mailer": "<5.4",
5452 "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6" 5827 "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
5453 }, 5828 },
5454 "require-dev": { 5829 "require-dev": {
5455 "egulias/email-validator": "^2.1.10|^3.1|^4", 5830 "egulias/email-validator": "^2.1.10|^3.1|^4",
5456 "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", 5831 "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
5457 "symfony/dependency-injection": "^5.4|^6.0", 5832 "symfony/dependency-injection": "^5.4|^6.0",
5458 "symfony/property-access": "^5.4|^6.0", 5833 "symfony/property-access": "^5.4|^6.0",
5459 "symfony/property-info": "^5.4|^6.0", 5834 "symfony/property-info": "^5.4|^6.0",
5460 "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6" 5835 "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
5461 }, 5836 },
5462 "type": "library", 5837 "type": "library",
5463 "autoload": { 5838 "autoload": {
5464 "psr-4": { 5839 "psr-4": {
5465 "Symfony\\Component\\Mime\\": "" 5840 "Symfony\\Component\\Mime\\": ""
5466 }, 5841 },
5467 "exclude-from-classmap": [ 5842 "exclude-from-classmap": [
5468 "/Tests/" 5843 "/Tests/"
5469 ] 5844 ]
5470 }, 5845 },
5471 "notification-url": "https://packagist.org/downloads/", 5846 "notification-url": "https://packagist.org/downloads/",
5472 "license": [ 5847 "license": [
5473 "MIT" 5848 "MIT"
5474 ], 5849 ],
5475 "authors": [ 5850 "authors": [
5476 { 5851 {
5477 "name": "Fabien Potencier", 5852 "name": "Fabien Potencier",
5478 "email": "fabien@symfony.com" 5853 "email": "fabien@symfony.com"
5479 }, 5854 },
5480 { 5855 {
5481 "name": "Symfony Community", 5856 "name": "Symfony Community",
5482 "homepage": "https://symfony.com/contributors" 5857 "homepage": "https://symfony.com/contributors"
5483 } 5858 }
5484 ], 5859 ],
5485 "description": "Allows manipulating MIME messages", 5860 "description": "Allows manipulating MIME messages",
5486 "homepage": "https://symfony.com", 5861 "homepage": "https://symfony.com",
5487 "keywords": [ 5862 "keywords": [
5488 "mime", 5863 "mime",
5489 "mime-type" 5864 "mime-type"
5490 ], 5865 ],
5491 "support": { 5866 "support": {
5492 "source": "https://github.com/symfony/mime/tree/v6.0.19" 5867 "source": "https://github.com/symfony/mime/tree/v6.0.19"
5493 }, 5868 },
5494 "funding": [ 5869 "funding": [
5495 { 5870 {
5496 "url": "https://symfony.com/sponsor", 5871 "url": "https://symfony.com/sponsor",
5497 "type": "custom" 5872 "type": "custom"
5498 }, 5873 },
5499 { 5874 {
5500 "url": "https://github.com/fabpot", 5875 "url": "https://github.com/fabpot",
5501 "type": "github" 5876 "type": "github"
5502 }, 5877 },
5503 { 5878 {
5504 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 5879 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5505 "type": "tidelift" 5880 "type": "tidelift"
5506 } 5881 }
5507 ], 5882 ],
5508 "time": "2023-01-11T11:50:03+00:00" 5883 "time": "2023-01-11T11:50:03+00:00"
5509 }, 5884 },
5510 { 5885 {
5511 "name": "symfony/polyfill-ctype", 5886 "name": "symfony/polyfill-ctype",
5512 "version": "v1.27.0", 5887 "version": "v1.27.0",
5513 "source": { 5888 "source": {
5514 "type": "git", 5889 "type": "git",
5515 "url": "https://github.com/symfony/polyfill-ctype.git", 5890 "url": "https://github.com/symfony/polyfill-ctype.git",
5516 "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" 5891 "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
5517 }, 5892 },
5518 "dist": { 5893 "dist": {
5519 "type": "zip", 5894 "type": "zip",
5520 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", 5895 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
5521 "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", 5896 "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
5522 "shasum": "" 5897 "shasum": ""
5523 }, 5898 },
5524 "require": { 5899 "require": {
5525 "php": ">=7.1" 5900 "php": ">=7.1"
5526 }, 5901 },
5527 "provide": { 5902 "provide": {
5528 "ext-ctype": "*" 5903 "ext-ctype": "*"
5529 }, 5904 },
5530 "suggest": { 5905 "suggest": {
5531 "ext-ctype": "For best performance" 5906 "ext-ctype": "For best performance"
5532 }, 5907 },
5533 "type": "library", 5908 "type": "library",
5534 "extra": { 5909 "extra": {
5535 "branch-alias": { 5910 "branch-alias": {
5536 "dev-main": "1.27-dev" 5911 "dev-main": "1.27-dev"
5537 }, 5912 },
5538 "thanks": { 5913 "thanks": {
5539 "name": "symfony/polyfill", 5914 "name": "symfony/polyfill",
5540 "url": "https://github.com/symfony/polyfill" 5915 "url": "https://github.com/symfony/polyfill"
5541 } 5916 }
5542 }, 5917 },
5543 "autoload": { 5918 "autoload": {
5544 "files": [ 5919 "files": [
5545 "bootstrap.php" 5920 "bootstrap.php"
5546 ], 5921 ],
5547 "psr-4": { 5922 "psr-4": {
5548 "Symfony\\Polyfill\\Ctype\\": "" 5923 "Symfony\\Polyfill\\Ctype\\": ""
5549 } 5924 }
5550 }, 5925 },
5551 "notification-url": "https://packagist.org/downloads/", 5926 "notification-url": "https://packagist.org/downloads/",
5552 "license": [ 5927 "license": [
5553 "MIT" 5928 "MIT"
5554 ], 5929 ],
5555 "authors": [ 5930 "authors": [
5556 { 5931 {
5557 "name": "Gert de Pagter", 5932 "name": "Gert de Pagter",
5558 "email": "BackEndTea@gmail.com" 5933 "email": "BackEndTea@gmail.com"
5559 }, 5934 },
5560 { 5935 {
5561 "name": "Symfony Community", 5936 "name": "Symfony Community",
5562 "homepage": "https://symfony.com/contributors" 5937 "homepage": "https://symfony.com/contributors"
5563 } 5938 }
5564 ], 5939 ],
5565 "description": "Symfony polyfill for ctype functions", 5940 "description": "Symfony polyfill for ctype functions",
5566 "homepage": "https://symfony.com", 5941 "homepage": "https://symfony.com",
5567 "keywords": [ 5942 "keywords": [
5568 "compatibility", 5943 "compatibility",
5569 "ctype", 5944 "ctype",
5570 "polyfill", 5945 "polyfill",
5571 "portable" 5946 "portable"
5572 ], 5947 ],
5573 "support": { 5948 "support": {
5574 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" 5949 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
5575 }, 5950 },
5576 "funding": [ 5951 "funding": [
5577 { 5952 {
5578 "url": "https://symfony.com/sponsor", 5953 "url": "https://symfony.com/sponsor",
5579 "type": "custom" 5954 "type": "custom"
5580 }, 5955 },
5581 { 5956 {
5582 "url": "https://github.com/fabpot", 5957 "url": "https://github.com/fabpot",
5583 "type": "github" 5958 "type": "github"
5584 }, 5959 },
5585 { 5960 {
5586 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 5961 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5587 "type": "tidelift" 5962 "type": "tidelift"
5588 } 5963 }
5589 ], 5964 ],
5590 "time": "2022-11-03T14:55:06+00:00" 5965 "time": "2022-11-03T14:55:06+00:00"
5591 }, 5966 },
5592 { 5967 {
5593 "name": "symfony/polyfill-intl-grapheme", 5968 "name": "symfony/polyfill-intl-grapheme",
5594 "version": "v1.27.0", 5969 "version": "v1.27.0",
5595 "source": { 5970 "source": {
5596 "type": "git", 5971 "type": "git",
5597 "url": "https://github.com/symfony/polyfill-intl-grapheme.git", 5972 "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
5598 "reference": "511a08c03c1960e08a883f4cffcacd219b758354" 5973 "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
5599 }, 5974 },
5600 "dist": { 5975 "dist": {
5601 "type": "zip", 5976 "type": "zip",
5602 "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354", 5977 "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
5603 "reference": "511a08c03c1960e08a883f4cffcacd219b758354", 5978 "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
5604 "shasum": "" 5979 "shasum": ""
5605 }, 5980 },
5606 "require": { 5981 "require": {
5607 "php": ">=7.1" 5982 "php": ">=7.1"
5608 }, 5983 },
5609 "suggest": { 5984 "suggest": {
5610 "ext-intl": "For best performance" 5985 "ext-intl": "For best performance"
5611 }, 5986 },
5612 "type": "library", 5987 "type": "library",
5613 "extra": { 5988 "extra": {
5614 "branch-alias": { 5989 "branch-alias": {
5615 "dev-main": "1.27-dev" 5990 "dev-main": "1.27-dev"
5616 }, 5991 },
5617 "thanks": { 5992 "thanks": {
5618 "name": "symfony/polyfill", 5993 "name": "symfony/polyfill",
5619 "url": "https://github.com/symfony/polyfill" 5994 "url": "https://github.com/symfony/polyfill"
5620 } 5995 }
5621 }, 5996 },
5622 "autoload": { 5997 "autoload": {
5623 "files": [ 5998 "files": [
5624 "bootstrap.php" 5999 "bootstrap.php"
5625 ], 6000 ],
5626 "psr-4": { 6001 "psr-4": {
5627 "Symfony\\Polyfill\\Intl\\Grapheme\\": "" 6002 "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
5628 } 6003 }
5629 }, 6004 },
5630 "notification-url": "https://packagist.org/downloads/", 6005 "notification-url": "https://packagist.org/downloads/",
5631 "license": [ 6006 "license": [
5632 "MIT" 6007 "MIT"
5633 ], 6008 ],
5634 "authors": [ 6009 "authors": [
5635 { 6010 {
5636 "name": "Nicolas Grekas", 6011 "name": "Nicolas Grekas",
5637 "email": "p@tchwork.com" 6012 "email": "p@tchwork.com"
5638 }, 6013 },
5639 { 6014 {
5640 "name": "Symfony Community", 6015 "name": "Symfony Community",
5641 "homepage": "https://symfony.com/contributors" 6016 "homepage": "https://symfony.com/contributors"
5642 } 6017 }
5643 ], 6018 ],
5644 "description": "Symfony polyfill for intl's grapheme_* functions", 6019 "description": "Symfony polyfill for intl's grapheme_* functions",
5645 "homepage": "https://symfony.com", 6020 "homepage": "https://symfony.com",
5646 "keywords": [ 6021 "keywords": [
5647 "compatibility", 6022 "compatibility",
5648 "grapheme", 6023 "grapheme",
5649 "intl", 6024 "intl",
5650 "polyfill", 6025 "polyfill",
5651 "portable", 6026 "portable",
5652 "shim" 6027 "shim"
5653 ], 6028 ],
5654 "support": { 6029 "support": {
5655 "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0" 6030 "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
5656 }, 6031 },
5657 "funding": [ 6032 "funding": [
5658 { 6033 {
5659 "url": "https://symfony.com/sponsor", 6034 "url": "https://symfony.com/sponsor",
5660 "type": "custom" 6035 "type": "custom"
5661 }, 6036 },
5662 { 6037 {
5663 "url": "https://github.com/fabpot", 6038 "url": "https://github.com/fabpot",
5664 "type": "github" 6039 "type": "github"
5665 }, 6040 },
5666 { 6041 {
5667 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 6042 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5668 "type": "tidelift" 6043 "type": "tidelift"
5669 } 6044 }
5670 ], 6045 ],
5671 "time": "2022-11-03T14:55:06+00:00" 6046 "time": "2022-11-03T14:55:06+00:00"
5672 }, 6047 },
5673 { 6048 {
5674 "name": "symfony/polyfill-intl-idn", 6049 "name": "symfony/polyfill-intl-idn",
5675 "version": "v1.27.0", 6050 "version": "v1.27.0",
5676 "source": { 6051 "source": {
5677 "type": "git", 6052 "type": "git",
5678 "url": "https://github.com/symfony/polyfill-intl-idn.git", 6053 "url": "https://github.com/symfony/polyfill-intl-idn.git",
5679 "reference": "639084e360537a19f9ee352433b84ce831f3d2da" 6054 "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
5680 }, 6055 },
5681 "dist": { 6056 "dist": {
5682 "type": "zip", 6057 "type": "zip",
5683 "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", 6058 "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
5684 "reference": "639084e360537a19f9ee352433b84ce831f3d2da", 6059 "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
5685 "shasum": "" 6060 "shasum": ""
5686 }, 6061 },
5687 "require": { 6062 "require": {
5688 "php": ">=7.1", 6063 "php": ">=7.1",
5689 "symfony/polyfill-intl-normalizer": "^1.10", 6064 "symfony/polyfill-intl-normalizer": "^1.10",
5690 "symfony/polyfill-php72": "^1.10" 6065 "symfony/polyfill-php72": "^1.10"
5691 }, 6066 },
5692 "suggest": { 6067 "suggest": {
5693 "ext-intl": "For best performance" 6068 "ext-intl": "For best performance"
5694 }, 6069 },
5695 "type": "library", 6070 "type": "library",
5696 "extra": { 6071 "extra": {
5697 "branch-alias": { 6072 "branch-alias": {
5698 "dev-main": "1.27-dev" 6073 "dev-main": "1.27-dev"
5699 }, 6074 },
5700 "thanks": { 6075 "thanks": {
5701 "name": "symfony/polyfill", 6076 "name": "symfony/polyfill",
5702 "url": "https://github.com/symfony/polyfill" 6077 "url": "https://github.com/symfony/polyfill"
5703 } 6078 }
5704 }, 6079 },
5705 "autoload": { 6080 "autoload": {
5706 "files": [ 6081 "files": [
5707 "bootstrap.php" 6082 "bootstrap.php"
5708 ], 6083 ],
5709 "psr-4": { 6084 "psr-4": {
5710 "Symfony\\Polyfill\\Intl\\Idn\\": "" 6085 "Symfony\\Polyfill\\Intl\\Idn\\": ""
5711 } 6086 }
5712 }, 6087 },
5713 "notification-url": "https://packagist.org/downloads/", 6088 "notification-url": "https://packagist.org/downloads/",
5714 "license": [ 6089 "license": [
5715 "MIT" 6090 "MIT"
5716 ], 6091 ],
5717 "authors": [ 6092 "authors": [
5718 { 6093 {
5719 "name": "Laurent Bassin", 6094 "name": "Laurent Bassin",
5720 "email": "laurent@bassin.info" 6095 "email": "laurent@bassin.info"
5721 }, 6096 },
5722 { 6097 {
5723 "name": "Trevor Rowbotham", 6098 "name": "Trevor Rowbotham",
5724 "email": "trevor.rowbotham@pm.me" 6099 "email": "trevor.rowbotham@pm.me"
5725 }, 6100 },
5726 { 6101 {
5727 "name": "Symfony Community", 6102 "name": "Symfony Community",
5728 "homepage": "https://symfony.com/contributors" 6103 "homepage": "https://symfony.com/contributors"
5729 } 6104 }
5730 ], 6105 ],
5731 "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", 6106 "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
5732 "homepage": "https://symfony.com", 6107 "homepage": "https://symfony.com",
5733 "keywords": [ 6108 "keywords": [
5734 "compatibility", 6109 "compatibility",
5735 "idn", 6110 "idn",
5736 "intl", 6111 "intl",
5737 "polyfill", 6112 "polyfill",
5738 "portable", 6113 "portable",
5739 "shim" 6114 "shim"
5740 ], 6115 ],
5741 "support": { 6116 "support": {
5742 "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" 6117 "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
5743 }, 6118 },
5744 "funding": [ 6119 "funding": [
5745 { 6120 {
5746 "url": "https://symfony.com/sponsor", 6121 "url": "https://symfony.com/sponsor",
5747 "type": "custom" 6122 "type": "custom"
5748 }, 6123 },
5749 { 6124 {
5750 "url": "https://github.com/fabpot", 6125 "url": "https://github.com/fabpot",
5751 "type": "github" 6126 "type": "github"
5752 }, 6127 },
5753 { 6128 {
5754 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 6129 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5755 "type": "tidelift" 6130 "type": "tidelift"
5756 } 6131 }
5757 ], 6132 ],
5758 "time": "2022-11-03T14:55:06+00:00" 6133 "time": "2022-11-03T14:55:06+00:00"
5759 }, 6134 },
5760 { 6135 {
5761 "name": "symfony/polyfill-intl-normalizer", 6136 "name": "symfony/polyfill-intl-normalizer",
5762 "version": "v1.27.0", 6137 "version": "v1.27.0",
5763 "source": { 6138 "source": {
5764 "type": "git", 6139 "type": "git",
5765 "url": "https://github.com/symfony/polyfill-intl-normalizer.git", 6140 "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
5766 "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" 6141 "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
5767 }, 6142 },
5768 "dist": { 6143 "dist": {
5769 "type": "zip", 6144 "type": "zip",
5770 "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", 6145 "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
5771 "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", 6146 "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
5772 "shasum": "" 6147 "shasum": ""
5773 }, 6148 },
5774 "require": { 6149 "require": {
5775 "php": ">=7.1" 6150 "php": ">=7.1"
5776 }, 6151 },
5777 "suggest": { 6152 "suggest": {
5778 "ext-intl": "For best performance" 6153 "ext-intl": "For best performance"
5779 }, 6154 },
5780 "type": "library", 6155 "type": "library",
5781 "extra": { 6156 "extra": {
5782 "branch-alias": { 6157 "branch-alias": {
5783 "dev-main": "1.27-dev" 6158 "dev-main": "1.27-dev"
5784 }, 6159 },
5785 "thanks": { 6160 "thanks": {
5786 "name": "symfony/polyfill", 6161 "name": "symfony/polyfill",
5787 "url": "https://github.com/symfony/polyfill" 6162 "url": "https://github.com/symfony/polyfill"
5788 } 6163 }
5789 }, 6164 },
5790 "autoload": { 6165 "autoload": {
5791 "files": [ 6166 "files": [
5792 "bootstrap.php" 6167 "bootstrap.php"
5793 ], 6168 ],
5794 "psr-4": { 6169 "psr-4": {
5795 "Symfony\\Polyfill\\Intl\\Normalizer\\": "" 6170 "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
5796 }, 6171 },
5797 "classmap": [ 6172 "classmap": [
5798 "Resources/stubs" 6173 "Resources/stubs"
5799 ] 6174 ]
5800 }, 6175 },
5801 "notification-url": "https://packagist.org/downloads/", 6176 "notification-url": "https://packagist.org/downloads/",
5802 "license": [ 6177 "license": [
5803 "MIT" 6178 "MIT"
5804 ], 6179 ],
5805 "authors": [ 6180 "authors": [
5806 { 6181 {
5807 "name": "Nicolas Grekas", 6182 "name": "Nicolas Grekas",
5808 "email": "p@tchwork.com" 6183 "email": "p@tchwork.com"
5809 }, 6184 },
5810 { 6185 {
5811 "name": "Symfony Community", 6186 "name": "Symfony Community",
5812 "homepage": "https://symfony.com/contributors" 6187 "homepage": "https://symfony.com/contributors"
5813 } 6188 }
5814 ], 6189 ],
5815 "description": "Symfony polyfill for intl's Normalizer class and related functions", 6190 "description": "Symfony polyfill for intl's Normalizer class and related functions",
5816 "homepage": "https://symfony.com", 6191 "homepage": "https://symfony.com",
5817 "keywords": [ 6192 "keywords": [
5818 "compatibility", 6193 "compatibility",
5819 "intl", 6194 "intl",
5820 "normalizer", 6195 "normalizer",
5821 "polyfill", 6196 "polyfill",
5822 "portable", 6197 "portable",
5823 "shim" 6198 "shim"
5824 ], 6199 ],
5825 "support": { 6200 "support": {
5826 "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" 6201 "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
5827 }, 6202 },
5828 "funding": [ 6203 "funding": [
5829 { 6204 {
5830 "url": "https://symfony.com/sponsor", 6205 "url": "https://symfony.com/sponsor",
5831 "type": "custom" 6206 "type": "custom"
5832 }, 6207 },
5833 { 6208 {
5834 "url": "https://github.com/fabpot", 6209 "url": "https://github.com/fabpot",
5835 "type": "github" 6210 "type": "github"
5836 }, 6211 },
5837 { 6212 {
5838 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 6213 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5839 "type": "tidelift" 6214 "type": "tidelift"
5840 } 6215 }
5841 ], 6216 ],
5842 "time": "2022-11-03T14:55:06+00:00" 6217 "time": "2022-11-03T14:55:06+00:00"
5843 }, 6218 },
5844 { 6219 {
5845 "name": "symfony/polyfill-mbstring", 6220 "name": "symfony/polyfill-mbstring",
5846 "version": "v1.27.0", 6221 "version": "v1.27.0",
5847 "source": { 6222 "source": {
5848 "type": "git", 6223 "type": "git",
5849 "url": "https://github.com/symfony/polyfill-mbstring.git", 6224 "url": "https://github.com/symfony/polyfill-mbstring.git",
5850 "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" 6225 "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
5851 }, 6226 },
5852 "dist": { 6227 "dist": {
5853 "type": "zip", 6228 "type": "zip",
5854 "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", 6229 "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
5855 "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", 6230 "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
5856 "shasum": "" 6231 "shasum": ""
5857 }, 6232 },
5858 "require": { 6233 "require": {
5859 "php": ">=7.1" 6234 "php": ">=7.1"
5860 }, 6235 },
5861 "provide": { 6236 "provide": {
5862 "ext-mbstring": "*" 6237 "ext-mbstring": "*"
5863 }, 6238 },
5864 "suggest": { 6239 "suggest": {
5865 "ext-mbstring": "For best performance" 6240 "ext-mbstring": "For best performance"
5866 }, 6241 },
5867 "type": "library", 6242 "type": "library",
5868 "extra": { 6243 "extra": {
5869 "branch-alias": { 6244 "branch-alias": {
5870 "dev-main": "1.27-dev" 6245 "dev-main": "1.27-dev"
5871 }, 6246 },
5872 "thanks": { 6247 "thanks": {
5873 "name": "symfony/polyfill", 6248 "name": "symfony/polyfill",
5874 "url": "https://github.com/symfony/polyfill" 6249 "url": "https://github.com/symfony/polyfill"
5875 } 6250 }
5876 }, 6251 },
5877 "autoload": { 6252 "autoload": {
5878 "files": [ 6253 "files": [
5879 "bootstrap.php" 6254 "bootstrap.php"
5880 ], 6255 ],
5881 "psr-4": { 6256 "psr-4": {
5882 "Symfony\\Polyfill\\Mbstring\\": "" 6257 "Symfony\\Polyfill\\Mbstring\\": ""
5883 } 6258 }
5884 }, 6259 },
5885 "notification-url": "https://packagist.org/downloads/", 6260 "notification-url": "https://packagist.org/downloads/",
5886 "license": [ 6261 "license": [
5887 "MIT" 6262 "MIT"
5888 ], 6263 ],
5889 "authors": [ 6264 "authors": [
5890 { 6265 {
5891 "name": "Nicolas Grekas", 6266 "name": "Nicolas Grekas",
5892 "email": "p@tchwork.com" 6267 "email": "p@tchwork.com"
5893 }, 6268 },
5894 { 6269 {
5895 "name": "Symfony Community", 6270 "name": "Symfony Community",
5896 "homepage": "https://symfony.com/contributors" 6271 "homepage": "https://symfony.com/contributors"
5897 } 6272 }
5898 ], 6273 ],
5899 "description": "Symfony polyfill for the Mbstring extension", 6274 "description": "Symfony polyfill for the Mbstring extension",
5900 "homepage": "https://symfony.com", 6275 "homepage": "https://symfony.com",
5901 "keywords": [ 6276 "keywords": [
5902 "compatibility", 6277 "compatibility",
5903 "mbstring", 6278 "mbstring",
5904 "polyfill", 6279 "polyfill",
5905 "portable", 6280 "portable",
5906 "shim" 6281 "shim"
5907 ], 6282 ],
5908 "support": { 6283 "support": {
5909 "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" 6284 "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
5910 }, 6285 },
5911 "funding": [ 6286 "funding": [
5912 { 6287 {
5913 "url": "https://symfony.com/sponsor", 6288 "url": "https://symfony.com/sponsor",
5914 "type": "custom" 6289 "type": "custom"
5915 }, 6290 },
5916 { 6291 {
5917 "url": "https://github.com/fabpot", 6292 "url": "https://github.com/fabpot",
5918 "type": "github" 6293 "type": "github"
5919 }, 6294 },
5920 { 6295 {
5921 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 6296 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5922 "type": "tidelift" 6297 "type": "tidelift"
5923 } 6298 }
5924 ], 6299 ],
5925 "time": "2022-11-03T14:55:06+00:00" 6300 "time": "2022-11-03T14:55:06+00:00"
5926 }, 6301 },
5927 { 6302 {
5928 "name": "symfony/polyfill-php72", 6303 "name": "symfony/polyfill-php72",
5929 "version": "v1.27.0", 6304 "version": "v1.27.0",
5930 "source": { 6305 "source": {
5931 "type": "git", 6306 "type": "git",
5932 "url": "https://github.com/symfony/polyfill-php72.git", 6307 "url": "https://github.com/symfony/polyfill-php72.git",
5933 "reference": "869329b1e9894268a8a61dabb69153029b7a8c97" 6308 "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
5934 }, 6309 },
5935 "dist": { 6310 "dist": {
5936 "type": "zip", 6311 "type": "zip",
5937 "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", 6312 "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
5938 "reference": "869329b1e9894268a8a61dabb69153029b7a8c97", 6313 "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
5939 "shasum": "" 6314 "shasum": ""
5940 }, 6315 },
5941 "require": { 6316 "require": {
5942 "php": ">=7.1" 6317 "php": ">=7.1"
5943 }, 6318 },
5944 "type": "library", 6319 "type": "library",
5945 "extra": { 6320 "extra": {
5946 "branch-alias": { 6321 "branch-alias": {
5947 "dev-main": "1.27-dev" 6322 "dev-main": "1.27-dev"
5948 }, 6323 },
5949 "thanks": { 6324 "thanks": {
5950 "name": "symfony/polyfill", 6325 "name": "symfony/polyfill",
5951 "url": "https://github.com/symfony/polyfill" 6326 "url": "https://github.com/symfony/polyfill"
5952 } 6327 }
5953 }, 6328 },
5954 "autoload": { 6329 "autoload": {
5955 "files": [ 6330 "files": [
5956 "bootstrap.php" 6331 "bootstrap.php"
5957 ], 6332 ],
5958 "psr-4": { 6333 "psr-4": {
5959 "Symfony\\Polyfill\\Php72\\": "" 6334 "Symfony\\Polyfill\\Php72\\": ""
5960 } 6335 }
5961 }, 6336 },
5962 "notification-url": "https://packagist.org/downloads/", 6337 "notification-url": "https://packagist.org/downloads/",
5963 "license": [ 6338 "license": [
5964 "MIT" 6339 "MIT"
5965 ], 6340 ],
5966 "authors": [ 6341 "authors": [
5967 { 6342 {
5968 "name": "Nicolas Grekas", 6343 "name": "Nicolas Grekas",
5969 "email": "p@tchwork.com" 6344 "email": "p@tchwork.com"
5970 }, 6345 },
5971 { 6346 {
5972 "name": "Symfony Community", 6347 "name": "Symfony Community",
5973 "homepage": "https://symfony.com/contributors" 6348 "homepage": "https://symfony.com/contributors"
5974 } 6349 }
5975 ], 6350 ],
5976 "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", 6351 "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
5977 "homepage": "https://symfony.com", 6352 "homepage": "https://symfony.com",
5978 "keywords": [ 6353 "keywords": [
5979 "compatibility", 6354 "compatibility",
5980 "polyfill", 6355 "polyfill",
5981 "portable", 6356 "portable",
5982 "shim" 6357 "shim"
5983 ], 6358 ],
5984 "support": { 6359 "support": {
5985 "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0" 6360 "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
5986 }, 6361 },
5987 "funding": [ 6362 "funding": [
5988 { 6363 {
5989 "url": "https://symfony.com/sponsor", 6364 "url": "https://symfony.com/sponsor",
5990 "type": "custom" 6365 "type": "custom"
5991 }, 6366 },
5992 { 6367 {
5993 "url": "https://github.com/fabpot", 6368 "url": "https://github.com/fabpot",
5994 "type": "github" 6369 "type": "github"
5995 }, 6370 },
5996 { 6371 {
5997 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 6372 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5998 "type": "tidelift" 6373 "type": "tidelift"
5999 } 6374 }
6000 ], 6375 ],
6001 "time": "2022-11-03T14:55:06+00:00" 6376 "time": "2022-11-03T14:55:06+00:00"
6002 }, 6377 },
6003 { 6378 {
6004 "name": "symfony/polyfill-php80", 6379 "name": "symfony/polyfill-php80",
6005 "version": "v1.27.0", 6380 "version": "v1.27.0",
6006 "source": { 6381 "source": {
6007 "type": "git", 6382 "type": "git",
6008 "url": "https://github.com/symfony/polyfill-php80.git", 6383 "url": "https://github.com/symfony/polyfill-php80.git",
6009 "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" 6384 "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
6010 }, 6385 },
6011 "dist": { 6386 "dist": {
6012 "type": "zip", 6387 "type": "zip",
6013 "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", 6388 "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
6014 "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", 6389 "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
6015 "shasum": "" 6390 "shasum": ""
6016 }, 6391 },
6017 "require": { 6392 "require": {
6018 "php": ">=7.1" 6393 "php": ">=7.1"
6019 }, 6394 },
6020 "type": "library", 6395 "type": "library",
6021 "extra": { 6396 "extra": {
6022 "branch-alias": { 6397 "branch-alias": {
6023 "dev-main": "1.27-dev" 6398 "dev-main": "1.27-dev"
6024 }, 6399 },
6025 "thanks": { 6400 "thanks": {
6026 "name": "symfony/polyfill", 6401 "name": "symfony/polyfill",
6027 "url": "https://github.com/symfony/polyfill" 6402 "url": "https://github.com/symfony/polyfill"
6028 } 6403 }
6029 }, 6404 },
6030 "autoload": { 6405 "autoload": {
6031 "files": [ 6406 "files": [
6032 "bootstrap.php" 6407 "bootstrap.php"
6033 ], 6408 ],
6034 "psr-4": { 6409 "psr-4": {
6035 "Symfony\\Polyfill\\Php80\\": "" 6410 "Symfony\\Polyfill\\Php80\\": ""
6036 }, 6411 },
6037 "classmap": [ 6412 "classmap": [
6038 "Resources/stubs" 6413 "Resources/stubs"
6039 ] 6414 ]
6040 }, 6415 },
6041 "notification-url": "https://packagist.org/downloads/", 6416 "notification-url": "https://packagist.org/downloads/",
6042 "license": [ 6417 "license": [
6043 "MIT" 6418 "MIT"
6044 ], 6419 ],
6045 "authors": [ 6420 "authors": [
6046 { 6421 {
6047 "name": "Ion Bazan", 6422 "name": "Ion Bazan",
6048 "email": "ion.bazan@gmail.com" 6423 "email": "ion.bazan@gmail.com"
6049 }, 6424 },
6050 { 6425 {
6051 "name": "Nicolas Grekas", 6426 "name": "Nicolas Grekas",
6052 "email": "p@tchwork.com" 6427 "email": "p@tchwork.com"
6053 }, 6428 },
6054 { 6429 {
6055 "name": "Symfony Community", 6430 "name": "Symfony Community",
6056 "homepage": "https://symfony.com/contributors" 6431 "homepage": "https://symfony.com/contributors"
6057 } 6432 }
6058 ], 6433 ],
6059 "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", 6434 "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
6060 "homepage": "https://symfony.com", 6435 "homepage": "https://symfony.com",
6061 "keywords": [ 6436 "keywords": [
6062 "compatibility", 6437 "compatibility",
6063 "polyfill", 6438 "polyfill",
6064 "portable", 6439 "portable",
6065 "shim" 6440 "shim"
6066 ], 6441 ],
6067 "support": { 6442 "support": {
6068 "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" 6443 "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
6069 }, 6444 },
6070 "funding": [ 6445 "funding": [
6071 { 6446 {
6072 "url": "https://symfony.com/sponsor", 6447 "url": "https://symfony.com/sponsor",
6073 "type": "custom" 6448 "type": "custom"
6074 }, 6449 },
6075 { 6450 {
6076 "url": "https://github.com/fabpot", 6451 "url": "https://github.com/fabpot",
6077 "type": "github" 6452 "type": "github"
6078 }, 6453 },
6079 { 6454 {
6080 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 6455 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6081 "type": "tidelift" 6456 "type": "tidelift"
6082 } 6457 }
6083 ], 6458 ],
6084 "time": "2022-11-03T14:55:06+00:00" 6459 "time": "2022-11-03T14:55:06+00:00"
6085 }, 6460 },
6086 { 6461 {
6087 "name": "symfony/polyfill-php81", 6462 "name": "symfony/polyfill-php81",
6088 "version": "v1.27.0", 6463 "version": "v1.27.0",
6089 "source": { 6464 "source": {
6090 "type": "git", 6465 "type": "git",
6091 "url": "https://github.com/symfony/polyfill-php81.git", 6466 "url": "https://github.com/symfony/polyfill-php81.git",
6092 "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a" 6467 "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
6093 }, 6468 },
6094 "dist": { 6469 "dist": {
6095 "type": "zip", 6470 "type": "zip",
6096 "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a", 6471 "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
6097 "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a", 6472 "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
6098 "shasum": "" 6473 "shasum": ""
6099 }, 6474 },
6100 "require": { 6475 "require": {
6101 "php": ">=7.1" 6476 "php": ">=7.1"
6102 }, 6477 },
6103 "type": "library", 6478 "type": "library",
6104 "extra": { 6479 "extra": {
6105 "branch-alias": { 6480 "branch-alias": {
6106 "dev-main": "1.27-dev" 6481 "dev-main": "1.27-dev"
6107 }, 6482 },
6108 "thanks": { 6483 "thanks": {
6109 "name": "symfony/polyfill", 6484 "name": "symfony/polyfill",
6110 "url": "https://github.com/symfony/polyfill" 6485 "url": "https://github.com/symfony/polyfill"
6111 } 6486 }
6112 }, 6487 },
6113 "autoload": { 6488 "autoload": {
6114 "files": [ 6489 "files": [
6115 "bootstrap.php" 6490 "bootstrap.php"
6116 ], 6491 ],
6117 "psr-4": { 6492 "psr-4": {
6118 "Symfony\\Polyfill\\Php81\\": "" 6493 "Symfony\\Polyfill\\Php81\\": ""
6119 }, 6494 },
6120 "classmap": [ 6495 "classmap": [
6121 "Resources/stubs" 6496 "Resources/stubs"
6122 ] 6497 ]
6123 }, 6498 },
6124 "notification-url": "https://packagist.org/downloads/", 6499 "notification-url": "https://packagist.org/downloads/",
6125 "license": [ 6500 "license": [
6126 "MIT" 6501 "MIT"
6127 ], 6502 ],
6128 "authors": [ 6503 "authors": [
6129 { 6504 {
6130 "name": "Nicolas Grekas", 6505 "name": "Nicolas Grekas",
6131 "email": "p@tchwork.com" 6506 "email": "p@tchwork.com"
6132 }, 6507 },
6133 { 6508 {
6134 "name": "Symfony Community", 6509 "name": "Symfony Community",
6135 "homepage": "https://symfony.com/contributors" 6510 "homepage": "https://symfony.com/contributors"
6136 } 6511 }
6137 ], 6512 ],
6138 "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", 6513 "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
6139 "homepage": "https://symfony.com", 6514 "homepage": "https://symfony.com",
6140 "keywords": [ 6515 "keywords": [
6141 "compatibility", 6516 "compatibility",
6142 "polyfill", 6517 "polyfill",
6143 "portable", 6518 "portable",
6144 "shim" 6519 "shim"
6145 ], 6520 ],
6146 "support": { 6521 "support": {
6147 "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0" 6522 "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
6148 }, 6523 },
6149 "funding": [ 6524 "funding": [
6150 { 6525 {
6151 "url": "https://symfony.com/sponsor", 6526 "url": "https://symfony.com/sponsor",
6152 "type": "custom" 6527 "type": "custom"
6153 }, 6528 },
6154 { 6529 {
6155 "url": "https://github.com/fabpot", 6530 "url": "https://github.com/fabpot",
6156 "type": "github" 6531 "type": "github"
6157 }, 6532 },
6158 { 6533 {
6159 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 6534 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6160 "type": "tidelift" 6535 "type": "tidelift"
6161 } 6536 }
6162 ], 6537 ],
6163 "time": "2022-11-03T14:55:06+00:00" 6538 "time": "2022-11-03T14:55:06+00:00"
6164 }, 6539 },
6165 { 6540 {
6166 "name": "symfony/polyfill-uuid", 6541 "name": "symfony/polyfill-uuid",
6167 "version": "v1.27.0", 6542 "version": "v1.27.0",
6168 "source": { 6543 "source": {
6169 "type": "git", 6544 "type": "git",
6170 "url": "https://github.com/symfony/polyfill-uuid.git", 6545 "url": "https://github.com/symfony/polyfill-uuid.git",
6171 "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166" 6546 "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
6172 }, 6547 },
6173 "dist": { 6548 "dist": {
6174 "type": "zip", 6549 "type": "zip",
6175 "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166", 6550 "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
6176 "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166", 6551 "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
6177 "shasum": "" 6552 "shasum": ""
6178 }, 6553 },
6179 "require": { 6554 "require": {
6180 "php": ">=7.1" 6555 "php": ">=7.1"
6181 }, 6556 },
6182 "provide": { 6557 "provide": {
6183 "ext-uuid": "*" 6558 "ext-uuid": "*"
6184 }, 6559 },
6185 "suggest": { 6560 "suggest": {
6186 "ext-uuid": "For best performance" 6561 "ext-uuid": "For best performance"
6187 }, 6562 },
6188 "type": "library", 6563 "type": "library",
6189 "extra": { 6564 "extra": {
6190 "branch-alias": { 6565 "branch-alias": {
6191 "dev-main": "1.27-dev" 6566 "dev-main": "1.27-dev"
6192 }, 6567 },
6193 "thanks": { 6568 "thanks": {
6194 "name": "symfony/polyfill", 6569 "name": "symfony/polyfill",
6195 "url": "https://github.com/symfony/polyfill" 6570 "url": "https://github.com/symfony/polyfill"
6196 } 6571 }
6197 }, 6572 },
6198 "autoload": { 6573 "autoload": {
6199 "files": [ 6574 "files": [
6200 "bootstrap.php" 6575 "bootstrap.php"
6201 ], 6576 ],
6202 "psr-4": { 6577 "psr-4": {
6203 "Symfony\\Polyfill\\Uuid\\": "" 6578 "Symfony\\Polyfill\\Uuid\\": ""
6204 } 6579 }
6205 }, 6580 },
6206 "notification-url": "https://packagist.org/downloads/", 6581 "notification-url": "https://packagist.org/downloads/",
6207 "license": [ 6582 "license": [
6208 "MIT" 6583 "MIT"
6209 ], 6584 ],
6210 "authors": [ 6585 "authors": [
6211 { 6586 {
6212 "name": "Grégoire Pineau", 6587 "name": "Grégoire Pineau",
6213 "email": "lyrixx@lyrixx.info" 6588 "email": "lyrixx@lyrixx.info"
6214 }, 6589 },
6215 { 6590 {
6216 "name": "Symfony Community", 6591 "name": "Symfony Community",
6217 "homepage": "https://symfony.com/contributors" 6592 "homepage": "https://symfony.com/contributors"
6218 } 6593 }
6219 ], 6594 ],
6220 "description": "Symfony polyfill for uuid functions", 6595 "description": "Symfony polyfill for uuid functions",
6221 "homepage": "https://symfony.com", 6596 "homepage": "https://symfony.com",
6222 "keywords": [ 6597 "keywords": [
6223 "compatibility", 6598 "compatibility",
6224 "polyfill", 6599 "polyfill",
6225 "portable", 6600 "portable",
6226 "uuid" 6601 "uuid"
6227 ], 6602 ],
6228 "support": { 6603 "support": {
6229 "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0" 6604 "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
6230 }, 6605 },
6231 "funding": [ 6606 "funding": [
6232 { 6607 {
6233 "url": "https://symfony.com/sponsor", 6608 "url": "https://symfony.com/sponsor",
6234 "type": "custom" 6609 "type": "custom"
6235 }, 6610 },
6236 { 6611 {
6237 "url": "https://github.com/fabpot", 6612 "url": "https://github.com/fabpot",
6238 "type": "github" 6613 "type": "github"
6239 }, 6614 },
6240 { 6615 {
6241 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 6616 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6242 "type": "tidelift" 6617 "type": "tidelift"
6243 } 6618 }
6244 ], 6619 ],
6245 "time": "2022-11-03T14:55:06+00:00" 6620 "time": "2022-11-03T14:55:06+00:00"
6246 }, 6621 },
6247 { 6622 {
6248 "name": "symfony/process", 6623 "name": "symfony/process",
6249 "version": "v6.0.19", 6624 "version": "v6.0.19",
6250 "source": { 6625 "source": {
6251 "type": "git", 6626 "type": "git",
6252 "url": "https://github.com/symfony/process.git", 6627 "url": "https://github.com/symfony/process.git",
6253 "reference": "2114fd60f26a296cc403a7939ab91478475a33d4" 6628 "reference": "2114fd60f26a296cc403a7939ab91478475a33d4"
6254 }, 6629 },
6255 "dist": { 6630 "dist": {
6256 "type": "zip", 6631 "type": "zip",
6257 "url": "https://api.github.com/repos/symfony/process/zipball/2114fd60f26a296cc403a7939ab91478475a33d4", 6632 "url": "https://api.github.com/repos/symfony/process/zipball/2114fd60f26a296cc403a7939ab91478475a33d4",
6258 "reference": "2114fd60f26a296cc403a7939ab91478475a33d4", 6633 "reference": "2114fd60f26a296cc403a7939ab91478475a33d4",
6259 "shasum": "" 6634 "shasum": ""
6260 }, 6635 },
6261 "require": { 6636 "require": {
6262 "php": ">=8.0.2" 6637 "php": ">=8.0.2"
6263 }, 6638 },
6264 "type": "library", 6639 "type": "library",
6265 "autoload": { 6640 "autoload": {
6266 "psr-4": { 6641 "psr-4": {
6267 "Symfony\\Component\\Process\\": "" 6642 "Symfony\\Component\\Process\\": ""
6268 }, 6643 },
6269 "exclude-from-classmap": [ 6644 "exclude-from-classmap": [
6270 "/Tests/" 6645 "/Tests/"
6271 ] 6646 ]
6272 }, 6647 },
6273 "notification-url": "https://packagist.org/downloads/", 6648 "notification-url": "https://packagist.org/downloads/",
6274 "license": [ 6649 "license": [
6275 "MIT" 6650 "MIT"
6276 ], 6651 ],
6277 "authors": [ 6652 "authors": [
6278 { 6653 {
6279 "name": "Fabien Potencier", 6654 "name": "Fabien Potencier",
6280 "email": "fabien@symfony.com" 6655 "email": "fabien@symfony.com"
6281 }, 6656 },
6282 { 6657 {
6283 "name": "Symfony Community", 6658 "name": "Symfony Community",
6284 "homepage": "https://symfony.com/contributors" 6659 "homepage": "https://symfony.com/contributors"
6285 } 6660 }
6286 ], 6661 ],
6287 "description": "Executes commands in sub-processes", 6662 "description": "Executes commands in sub-processes",
6288 "homepage": "https://symfony.com", 6663 "homepage": "https://symfony.com",
6289 "support": { 6664 "support": {
6290 "source": "https://github.com/symfony/process/tree/v6.0.19" 6665 "source": "https://github.com/symfony/process/tree/v6.0.19"
6291 }, 6666 },
6292 "funding": [ 6667 "funding": [
6293 { 6668 {
6294 "url": "https://symfony.com/sponsor", 6669 "url": "https://symfony.com/sponsor",
6295 "type": "custom" 6670 "type": "custom"
6296 }, 6671 },
6297 { 6672 {
6298 "url": "https://github.com/fabpot", 6673 "url": "https://github.com/fabpot",
6299 "type": "github" 6674 "type": "github"
6300 }, 6675 },
6301 { 6676 {
6302 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 6677 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6303 "type": "tidelift" 6678 "type": "tidelift"
6304 } 6679 }
6305 ], 6680 ],
6306 "time": "2023-01-01T08:36:10+00:00" 6681 "time": "2023-01-01T08:36:10+00:00"
6307 }, 6682 },
6308 { 6683 {
6309 "name": "symfony/routing", 6684 "name": "symfony/routing",
6310 "version": "v6.0.19", 6685 "version": "v6.0.19",
6311 "source": { 6686 "source": {
6312 "type": "git", 6687 "type": "git",
6313 "url": "https://github.com/symfony/routing.git", 6688 "url": "https://github.com/symfony/routing.git",
6314 "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac" 6689 "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac"
6315 }, 6690 },
6316 "dist": { 6691 "dist": {
6317 "type": "zip", 6692 "type": "zip",
6318 "url": "https://api.github.com/repos/symfony/routing/zipball/e56ca9b41c1ec447193474cd86ad7c0b547755ac", 6693 "url": "https://api.github.com/repos/symfony/routing/zipball/e56ca9b41c1ec447193474cd86ad7c0b547755ac",
6319 "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac", 6694 "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac",
6320 "shasum": "" 6695 "shasum": ""
6321 }, 6696 },
6322 "require": { 6697 "require": {
6323 "php": ">=8.0.2" 6698 "php": ">=8.0.2"
6324 }, 6699 },
6325 "conflict": { 6700 "conflict": {
6326 "doctrine/annotations": "<1.12", 6701 "doctrine/annotations": "<1.12",
6327 "symfony/config": "<5.4", 6702 "symfony/config": "<5.4",
6328 "symfony/dependency-injection": "<5.4", 6703 "symfony/dependency-injection": "<5.4",
6329 "symfony/yaml": "<5.4" 6704 "symfony/yaml": "<5.4"
6330 }, 6705 },
6331 "require-dev": { 6706 "require-dev": {
6332 "doctrine/annotations": "^1.12|^2", 6707 "doctrine/annotations": "^1.12|^2",
6333 "psr/log": "^1|^2|^3", 6708 "psr/log": "^1|^2|^3",
6334 "symfony/config": "^5.4|^6.0", 6709 "symfony/config": "^5.4|^6.0",
6335 "symfony/dependency-injection": "^5.4|^6.0", 6710 "symfony/dependency-injection": "^5.4|^6.0",
6336 "symfony/expression-language": "^5.4|^6.0", 6711 "symfony/expression-language": "^5.4|^6.0",
6337 "symfony/http-foundation": "^5.4|^6.0", 6712 "symfony/http-foundation": "^5.4|^6.0",
6338 "symfony/yaml": "^5.4|^6.0" 6713 "symfony/yaml": "^5.4|^6.0"
6339 }, 6714 },
6340 "suggest": { 6715 "suggest": {
6341 "symfony/config": "For using the all-in-one router or any loader", 6716 "symfony/config": "For using the all-in-one router or any loader",
6342 "symfony/expression-language": "For using expression matching", 6717 "symfony/expression-language": "For using expression matching",
6343 "symfony/http-foundation": "For using a Symfony Request object", 6718 "symfony/http-foundation": "For using a Symfony Request object",
6344 "symfony/yaml": "For using the YAML loader" 6719 "symfony/yaml": "For using the YAML loader"
6345 }, 6720 },
6346 "type": "library", 6721 "type": "library",
6347 "autoload": { 6722 "autoload": {
6348 "psr-4": { 6723 "psr-4": {
6349 "Symfony\\Component\\Routing\\": "" 6724 "Symfony\\Component\\Routing\\": ""
6350 }, 6725 },
6351 "exclude-from-classmap": [ 6726 "exclude-from-classmap": [
6352 "/Tests/" 6727 "/Tests/"
6353 ] 6728 ]
6354 }, 6729 },
6355 "notification-url": "https://packagist.org/downloads/", 6730 "notification-url": "https://packagist.org/downloads/",
6356 "license": [ 6731 "license": [
6357 "MIT" 6732 "MIT"
6358 ], 6733 ],
6359 "authors": [ 6734 "authors": [
6360 { 6735 {
6361 "name": "Fabien Potencier", 6736 "name": "Fabien Potencier",
6362 "email": "fabien@symfony.com" 6737 "email": "fabien@symfony.com"
6363 }, 6738 },
6364 { 6739 {
6365 "name": "Symfony Community", 6740 "name": "Symfony Community",
6366 "homepage": "https://symfony.com/contributors" 6741 "homepage": "https://symfony.com/contributors"
6367 } 6742 }
6368 ], 6743 ],
6369 "description": "Maps an HTTP request to a set of configuration variables", 6744 "description": "Maps an HTTP request to a set of configuration variables",
6370 "homepage": "https://symfony.com", 6745 "homepage": "https://symfony.com",
6371 "keywords": [ 6746 "keywords": [
6372 "router", 6747 "router",
6373 "routing", 6748 "routing",
6374 "uri", 6749 "uri",
6375 "url" 6750 "url"
6376 ], 6751 ],
6377 "support": { 6752 "support": {
6378 "source": "https://github.com/symfony/routing/tree/v6.0.19" 6753 "source": "https://github.com/symfony/routing/tree/v6.0.19"
6379 }, 6754 },
6380 "funding": [ 6755 "funding": [
6381 { 6756 {
6382 "url": "https://symfony.com/sponsor", 6757 "url": "https://symfony.com/sponsor",
6383 "type": "custom" 6758 "type": "custom"
6384 }, 6759 },
6385 { 6760 {
6386 "url": "https://github.com/fabpot", 6761 "url": "https://github.com/fabpot",
6387 "type": "github" 6762 "type": "github"
6388 }, 6763 },
6389 { 6764 {
6390 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 6765 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6391 "type": "tidelift" 6766 "type": "tidelift"
6392 } 6767 }
6393 ], 6768 ],
6394 "time": "2023-01-01T08:36:10+00:00" 6769 "time": "2023-01-01T08:36:10+00:00"
6395 }, 6770 },
6396 { 6771 {
6397 "name": "symfony/service-contracts", 6772 "name": "symfony/service-contracts",
6398 "version": "v3.0.2", 6773 "version": "v3.0.2",
6399 "source": { 6774 "source": {
6400 "type": "git", 6775 "type": "git",
6401 "url": "https://github.com/symfony/service-contracts.git", 6776 "url": "https://github.com/symfony/service-contracts.git",
6402 "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66" 6777 "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66"
6403 }, 6778 },
6404 "dist": { 6779 "dist": {
6405 "type": "zip", 6780 "type": "zip",
6406 "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66", 6781 "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
6407 "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66", 6782 "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
6408 "shasum": "" 6783 "shasum": ""
6409 }, 6784 },
6410 "require": { 6785 "require": {
6411 "php": ">=8.0.2", 6786 "php": ">=8.0.2",
6412 "psr/container": "^2.0" 6787 "psr/container": "^2.0"
6413 }, 6788 },
6414 "conflict": { 6789 "conflict": {
6415 "ext-psr": "<1.1|>=2" 6790 "ext-psr": "<1.1|>=2"
6416 }, 6791 },
6417 "suggest": { 6792 "suggest": {
6418 "symfony/service-implementation": "" 6793 "symfony/service-implementation": ""
6419 }, 6794 },
6420 "type": "library", 6795 "type": "library",
6421 "extra": { 6796 "extra": {
6422 "branch-alias": { 6797 "branch-alias": {
6423 "dev-main": "3.0-dev" 6798 "dev-main": "3.0-dev"
6424 }, 6799 },
6425 "thanks": { 6800 "thanks": {
6426 "name": "symfony/contracts", 6801 "name": "symfony/contracts",
6427 "url": "https://github.com/symfony/contracts" 6802 "url": "https://github.com/symfony/contracts"
6428 } 6803 }
6429 }, 6804 },
6430 "autoload": { 6805 "autoload": {
6431 "psr-4": { 6806 "psr-4": {
6432 "Symfony\\Contracts\\Service\\": "" 6807 "Symfony\\Contracts\\Service\\": ""
6433 } 6808 }
6434 }, 6809 },
6435 "notification-url": "https://packagist.org/downloads/", 6810 "notification-url": "https://packagist.org/downloads/",
6436 "license": [ 6811 "license": [
6437 "MIT" 6812 "MIT"
6438 ], 6813 ],
6439 "authors": [ 6814 "authors": [
6440 { 6815 {
6441 "name": "Nicolas Grekas", 6816 "name": "Nicolas Grekas",
6442 "email": "p@tchwork.com" 6817 "email": "p@tchwork.com"
6443 }, 6818 },
6444 { 6819 {
6445 "name": "Symfony Community", 6820 "name": "Symfony Community",
6446 "homepage": "https://symfony.com/contributors" 6821 "homepage": "https://symfony.com/contributors"
6447 } 6822 }
6448 ], 6823 ],
6449 "description": "Generic abstractions related to writing services", 6824 "description": "Generic abstractions related to writing services",
6450 "homepage": "https://symfony.com", 6825 "homepage": "https://symfony.com",
6451 "keywords": [ 6826 "keywords": [
6452 "abstractions", 6827 "abstractions",
6453 "contracts", 6828 "contracts",
6454 "decoupling", 6829 "decoupling",
6455 "interfaces", 6830 "interfaces",
6456 "interoperability", 6831 "interoperability",
6457 "standards" 6832 "standards"
6458 ], 6833 ],
6459 "support": { 6834 "support": {
6460 "source": "https://github.com/symfony/service-contracts/tree/v3.0.2" 6835 "source": "https://github.com/symfony/service-contracts/tree/v3.0.2"
6461 }, 6836 },
6462 "funding": [ 6837 "funding": [
6463 { 6838 {
6464 "url": "https://symfony.com/sponsor", 6839 "url": "https://symfony.com/sponsor",
6465 "type": "custom" 6840 "type": "custom"
6466 }, 6841 },
6467 { 6842 {
6468 "url": "https://github.com/fabpot", 6843 "url": "https://github.com/fabpot",
6469 "type": "github" 6844 "type": "github"
6470 }, 6845 },
6471 { 6846 {
6472 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 6847 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6473 "type": "tidelift" 6848 "type": "tidelift"
6474 } 6849 }
6475 ], 6850 ],
6476 "time": "2022-05-30T19:17:58+00:00" 6851 "time": "2022-05-30T19:17:58+00:00"
6477 }, 6852 },
6478 { 6853 {
6479 "name": "symfony/string", 6854 "name": "symfony/string",
6480 "version": "v6.0.19", 6855 "version": "v6.0.19",
6481 "source": { 6856 "source": {
6482 "type": "git", 6857 "type": "git",
6483 "url": "https://github.com/symfony/string.git", 6858 "url": "https://github.com/symfony/string.git",
6484 "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a" 6859 "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
6485 }, 6860 },
6486 "dist": { 6861 "dist": {
6487 "type": "zip", 6862 "type": "zip",
6488 "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a", 6863 "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
6489 "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a", 6864 "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
6490 "shasum": "" 6865 "shasum": ""
6491 }, 6866 },
6492 "require": { 6867 "require": {
6493 "php": ">=8.0.2", 6868 "php": ">=8.0.2",
6494 "symfony/polyfill-ctype": "~1.8", 6869 "symfony/polyfill-ctype": "~1.8",
6495 "symfony/polyfill-intl-grapheme": "~1.0", 6870 "symfony/polyfill-intl-grapheme": "~1.0",
6496 "symfony/polyfill-intl-normalizer": "~1.0", 6871 "symfony/polyfill-intl-normalizer": "~1.0",
6497 "symfony/polyfill-mbstring": "~1.0" 6872 "symfony/polyfill-mbstring": "~1.0"
6498 }, 6873 },
6499 "conflict": { 6874 "conflict": {
6500 "symfony/translation-contracts": "<2.0" 6875 "symfony/translation-contracts": "<2.0"
6501 }, 6876 },
6502 "require-dev": { 6877 "require-dev": {
6503 "symfony/error-handler": "^5.4|^6.0", 6878 "symfony/error-handler": "^5.4|^6.0",
6504 "symfony/http-client": "^5.4|^6.0", 6879 "symfony/http-client": "^5.4|^6.0",
6505 "symfony/translation-contracts": "^2.0|^3.0", 6880 "symfony/translation-contracts": "^2.0|^3.0",
6506 "symfony/var-exporter": "^5.4|^6.0" 6881 "symfony/var-exporter": "^5.4|^6.0"
6507 }, 6882 },
6508 "type": "library", 6883 "type": "library",
6509 "autoload": { 6884 "autoload": {
6510 "files": [ 6885 "files": [
6511 "Resources/functions.php" 6886 "Resources/functions.php"
6512 ], 6887 ],
6513 "psr-4": { 6888 "psr-4": {
6514 "Symfony\\Component\\String\\": "" 6889 "Symfony\\Component\\String\\": ""
6515 }, 6890 },
6516 "exclude-from-classmap": [ 6891 "exclude-from-classmap": [
6517 "/Tests/" 6892 "/Tests/"
6518 ] 6893 ]
6519 }, 6894 },
6520 "notification-url": "https://packagist.org/downloads/", 6895 "notification-url": "https://packagist.org/downloads/",
6521 "license": [ 6896 "license": [
6522 "MIT" 6897 "MIT"
6523 ], 6898 ],
6524 "authors": [ 6899 "authors": [
6525 { 6900 {
6526 "name": "Nicolas Grekas", 6901 "name": "Nicolas Grekas",
6527 "email": "p@tchwork.com" 6902 "email": "p@tchwork.com"
6528 }, 6903 },
6529 { 6904 {
6530 "name": "Symfony Community", 6905 "name": "Symfony Community",
6531 "homepage": "https://symfony.com/contributors" 6906 "homepage": "https://symfony.com/contributors"
6532 } 6907 }
6533 ], 6908 ],
6534 "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", 6909 "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
6535 "homepage": "https://symfony.com", 6910 "homepage": "https://symfony.com",
6536 "keywords": [ 6911 "keywords": [
6537 "grapheme", 6912 "grapheme",
6538 "i18n", 6913 "i18n",
6539 "string", 6914 "string",
6540 "unicode", 6915 "unicode",
6541 "utf-8", 6916 "utf-8",
6542 "utf8" 6917 "utf8"
6543 ], 6918 ],
6544 "support": { 6919 "support": {
6545 "source": "https://github.com/symfony/string/tree/v6.0.19" 6920 "source": "https://github.com/symfony/string/tree/v6.0.19"
6546 }, 6921 },
6547 "funding": [ 6922 "funding": [
6548 { 6923 {
6549 "url": "https://symfony.com/sponsor", 6924 "url": "https://symfony.com/sponsor",
6550 "type": "custom" 6925 "type": "custom"
6551 }, 6926 },
6552 { 6927 {
6553 "url": "https://github.com/fabpot", 6928 "url": "https://github.com/fabpot",
6554 "type": "github" 6929 "type": "github"
6555 }, 6930 },
6556 { 6931 {
6557 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 6932 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6558 "type": "tidelift" 6933 "type": "tidelift"
6559 } 6934 }
6560 ], 6935 ],
6561 "time": "2023-01-01T08:36:10+00:00" 6936 "time": "2023-01-01T08:36:10+00:00"
6562 }, 6937 },
6563 { 6938 {
6564 "name": "symfony/translation", 6939 "name": "symfony/translation",
6565 "version": "v6.0.19", 6940 "version": "v6.0.19",
6566 "source": { 6941 "source": {
6567 "type": "git", 6942 "type": "git",
6568 "url": "https://github.com/symfony/translation.git", 6943 "url": "https://github.com/symfony/translation.git",
6569 "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f" 6944 "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
6570 }, 6945 },
6571 "dist": { 6946 "dist": {
6572 "type": "zip", 6947 "type": "zip",
6573 "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f", 6948 "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
6574 "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f", 6949 "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
6575 "shasum": "" 6950 "shasum": ""
6576 }, 6951 },
6577 "require": { 6952 "require": {
6578 "php": ">=8.0.2", 6953 "php": ">=8.0.2",
6579 "symfony/polyfill-mbstring": "~1.0", 6954 "symfony/polyfill-mbstring": "~1.0",
6580 "symfony/translation-contracts": "^2.3|^3.0" 6955 "symfony/translation-contracts": "^2.3|^3.0"
6581 }, 6956 },
6582 "conflict": { 6957 "conflict": {
6583 "symfony/config": "<5.4", 6958 "symfony/config": "<5.4",
6584 "symfony/console": "<5.4", 6959 "symfony/console": "<5.4",
6585 "symfony/dependency-injection": "<5.4", 6960 "symfony/dependency-injection": "<5.4",
6586 "symfony/http-kernel": "<5.4", 6961 "symfony/http-kernel": "<5.4",
6587 "symfony/twig-bundle": "<5.4", 6962 "symfony/twig-bundle": "<5.4",
6588 "symfony/yaml": "<5.4" 6963 "symfony/yaml": "<5.4"
6589 }, 6964 },
6590 "provide": { 6965 "provide": {
6591 "symfony/translation-implementation": "2.3|3.0" 6966 "symfony/translation-implementation": "2.3|3.0"
6592 }, 6967 },
6593 "require-dev": { 6968 "require-dev": {
6594 "psr/log": "^1|^2|^3", 6969 "psr/log": "^1|^2|^3",
6595 "symfony/config": "^5.4|^6.0", 6970 "symfony/config": "^5.4|^6.0",
6596 "symfony/console": "^5.4|^6.0", 6971 "symfony/console": "^5.4|^6.0",
6597 "symfony/dependency-injection": "^5.4|^6.0", 6972 "symfony/dependency-injection": "^5.4|^6.0",
6598 "symfony/finder": "^5.4|^6.0", 6973 "symfony/finder": "^5.4|^6.0",
6599 "symfony/http-client-contracts": "^1.1|^2.0|^3.0", 6974 "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
6600 "symfony/http-kernel": "^5.4|^6.0", 6975 "symfony/http-kernel": "^5.4|^6.0",
6601 "symfony/intl": "^5.4|^6.0", 6976 "symfony/intl": "^5.4|^6.0",
6602 "symfony/polyfill-intl-icu": "^1.21", 6977 "symfony/polyfill-intl-icu": "^1.21",
6603 "symfony/service-contracts": "^1.1.2|^2|^3", 6978 "symfony/service-contracts": "^1.1.2|^2|^3",
6604 "symfony/yaml": "^5.4|^6.0" 6979 "symfony/yaml": "^5.4|^6.0"
6605 }, 6980 },
6606 "suggest": { 6981 "suggest": {
6607 "psr/log-implementation": "To use logging capability in translator", 6982 "psr/log-implementation": "To use logging capability in translator",
6608 "symfony/config": "", 6983 "symfony/config": "",
6609 "symfony/yaml": "" 6984 "symfony/yaml": ""
6610 }, 6985 },
6611 "type": "library", 6986 "type": "library",
6612 "autoload": { 6987 "autoload": {
6613 "files": [ 6988 "files": [
6614 "Resources/functions.php" 6989 "Resources/functions.php"
6615 ], 6990 ],
6616 "psr-4": { 6991 "psr-4": {
6617 "Symfony\\Component\\Translation\\": "" 6992 "Symfony\\Component\\Translation\\": ""
6618 }, 6993 },
6619 "exclude-from-classmap": [ 6994 "exclude-from-classmap": [
6620 "/Tests/" 6995 "/Tests/"
6621 ] 6996 ]
6622 }, 6997 },
6623 "notification-url": "https://packagist.org/downloads/", 6998 "notification-url": "https://packagist.org/downloads/",
6624 "license": [ 6999 "license": [
6625 "MIT" 7000 "MIT"
6626 ], 7001 ],
6627 "authors": [ 7002 "authors": [
6628 { 7003 {
6629 "name": "Fabien Potencier", 7004 "name": "Fabien Potencier",
6630 "email": "fabien@symfony.com" 7005 "email": "fabien@symfony.com"
6631 }, 7006 },
6632 { 7007 {
6633 "name": "Symfony Community", 7008 "name": "Symfony Community",
6634 "homepage": "https://symfony.com/contributors" 7009 "homepage": "https://symfony.com/contributors"
6635 } 7010 }
6636 ], 7011 ],
6637 "description": "Provides tools to internationalize your application", 7012 "description": "Provides tools to internationalize your application",
6638 "homepage": "https://symfony.com", 7013 "homepage": "https://symfony.com",
6639 "support": { 7014 "support": {
6640 "source": "https://github.com/symfony/translation/tree/v6.0.19" 7015 "source": "https://github.com/symfony/translation/tree/v6.0.19"
6641 }, 7016 },
6642 "funding": [ 7017 "funding": [
6643 { 7018 {
6644 "url": "https://symfony.com/sponsor", 7019 "url": "https://symfony.com/sponsor",
6645 "type": "custom" 7020 "type": "custom"
6646 }, 7021 },
6647 { 7022 {
6648 "url": "https://github.com/fabpot", 7023 "url": "https://github.com/fabpot",
6649 "type": "github" 7024 "type": "github"
6650 }, 7025 },
6651 { 7026 {
6652 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 7027 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6653 "type": "tidelift" 7028 "type": "tidelift"
6654 } 7029 }
6655 ], 7030 ],
6656 "time": "2023-01-01T08:36:10+00:00" 7031 "time": "2023-01-01T08:36:10+00:00"
6657 }, 7032 },
6658 { 7033 {
6659 "name": "symfony/translation-contracts", 7034 "name": "symfony/translation-contracts",
6660 "version": "v3.0.2", 7035 "version": "v3.0.2",
6661 "source": { 7036 "source": {
6662 "type": "git", 7037 "type": "git",
6663 "url": "https://github.com/symfony/translation-contracts.git", 7038 "url": "https://github.com/symfony/translation-contracts.git",
6664 "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282" 7039 "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
6665 }, 7040 },
6666 "dist": { 7041 "dist": {
6667 "type": "zip", 7042 "type": "zip",
6668 "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282", 7043 "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
6669 "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282", 7044 "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
6670 "shasum": "" 7045 "shasum": ""
6671 }, 7046 },
6672 "require": { 7047 "require": {
6673 "php": ">=8.0.2" 7048 "php": ">=8.0.2"
6674 }, 7049 },
6675 "suggest": { 7050 "suggest": {
6676 "symfony/translation-implementation": "" 7051 "symfony/translation-implementation": ""
6677 }, 7052 },
6678 "type": "library", 7053 "type": "library",
6679 "extra": { 7054 "extra": {
6680 "branch-alias": { 7055 "branch-alias": {
6681 "dev-main": "3.0-dev" 7056 "dev-main": "3.0-dev"
6682 }, 7057 },
6683 "thanks": { 7058 "thanks": {
6684 "name": "symfony/contracts", 7059 "name": "symfony/contracts",
6685 "url": "https://github.com/symfony/contracts" 7060 "url": "https://github.com/symfony/contracts"
6686 } 7061 }
6687 }, 7062 },
6688 "autoload": { 7063 "autoload": {
6689 "psr-4": { 7064 "psr-4": {
6690 "Symfony\\Contracts\\Translation\\": "" 7065 "Symfony\\Contracts\\Translation\\": ""
6691 } 7066 }
6692 }, 7067 },
6693 "notification-url": "https://packagist.org/downloads/", 7068 "notification-url": "https://packagist.org/downloads/",
6694 "license": [ 7069 "license": [
6695 "MIT" 7070 "MIT"
6696 ], 7071 ],
6697 "authors": [ 7072 "authors": [
6698 { 7073 {
6699 "name": "Nicolas Grekas", 7074 "name": "Nicolas Grekas",
6700 "email": "p@tchwork.com" 7075 "email": "p@tchwork.com"
6701 }, 7076 },
6702 { 7077 {
6703 "name": "Symfony Community", 7078 "name": "Symfony Community",
6704 "homepage": "https://symfony.com/contributors" 7079 "homepage": "https://symfony.com/contributors"
6705 } 7080 }
6706 ], 7081 ],
6707 "description": "Generic abstractions related to translation", 7082 "description": "Generic abstractions related to translation",
6708 "homepage": "https://symfony.com", 7083 "homepage": "https://symfony.com",
6709 "keywords": [ 7084 "keywords": [
6710 "abstractions", 7085 "abstractions",
6711 "contracts", 7086 "contracts",
6712 "decoupling", 7087 "decoupling",
6713 "interfaces", 7088 "interfaces",
6714 "interoperability", 7089 "interoperability",
6715 "standards" 7090 "standards"
6716 ], 7091 ],
6717 "support": { 7092 "support": {
6718 "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2" 7093 "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
6719 }, 7094 },
6720 "funding": [ 7095 "funding": [
6721 { 7096 {
6722 "url": "https://symfony.com/sponsor", 7097 "url": "https://symfony.com/sponsor",
6723 "type": "custom" 7098 "type": "custom"
6724 }, 7099 },
6725 { 7100 {
6726 "url": "https://github.com/fabpot", 7101 "url": "https://github.com/fabpot",
6727 "type": "github" 7102 "type": "github"
6728 }, 7103 },
6729 { 7104 {
6730 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 7105 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6731 "type": "tidelift" 7106 "type": "tidelift"
6732 } 7107 }
6733 ], 7108 ],
6734 "time": "2022-06-27T17:10:44+00:00" 7109 "time": "2022-06-27T17:10:44+00:00"
6735 }, 7110 },
6736 { 7111 {
6737 "name": "symfony/uid", 7112 "name": "symfony/uid",
6738 "version": "v6.0.19", 7113 "version": "v6.0.19",
6739 "source": { 7114 "source": {
6740 "type": "git", 7115 "type": "git",
6741 "url": "https://github.com/symfony/uid.git", 7116 "url": "https://github.com/symfony/uid.git",
6742 "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d" 7117 "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d"
6743 }, 7118 },
6744 "dist": { 7119 "dist": {
6745 "type": "zip", 7120 "type": "zip",
6746 "url": "https://api.github.com/repos/symfony/uid/zipball/6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d", 7121 "url": "https://api.github.com/repos/symfony/uid/zipball/6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d",
6747 "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d", 7122 "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d",
6748 "shasum": "" 7123 "shasum": ""
6749 }, 7124 },
6750 "require": { 7125 "require": {
6751 "php": ">=8.0.2", 7126 "php": ">=8.0.2",
6752 "symfony/polyfill-uuid": "^1.15" 7127 "symfony/polyfill-uuid": "^1.15"
6753 }, 7128 },
6754 "require-dev": { 7129 "require-dev": {
6755 "symfony/console": "^5.4|^6.0" 7130 "symfony/console": "^5.4|^6.0"
6756 }, 7131 },
6757 "type": "library", 7132 "type": "library",
6758 "autoload": { 7133 "autoload": {
6759 "psr-4": { 7134 "psr-4": {
6760 "Symfony\\Component\\Uid\\": "" 7135 "Symfony\\Component\\Uid\\": ""
6761 }, 7136 },
6762 "exclude-from-classmap": [ 7137 "exclude-from-classmap": [
6763 "/Tests/" 7138 "/Tests/"
6764 ] 7139 ]
6765 }, 7140 },
6766 "notification-url": "https://packagist.org/downloads/", 7141 "notification-url": "https://packagist.org/downloads/",
6767 "license": [ 7142 "license": [
6768 "MIT" 7143 "MIT"
6769 ], 7144 ],
6770 "authors": [ 7145 "authors": [
6771 { 7146 {
6772 "name": "Grégoire Pineau", 7147 "name": "Grégoire Pineau",
6773 "email": "lyrixx@lyrixx.info" 7148 "email": "lyrixx@lyrixx.info"
6774 }, 7149 },
6775 { 7150 {
6776 "name": "Nicolas Grekas", 7151 "name": "Nicolas Grekas",
6777 "email": "p@tchwork.com" 7152 "email": "p@tchwork.com"
6778 }, 7153 },
6779 { 7154 {
6780 "name": "Symfony Community", 7155 "name": "Symfony Community",
6781 "homepage": "https://symfony.com/contributors" 7156 "homepage": "https://symfony.com/contributors"
6782 } 7157 }
6783 ], 7158 ],
6784 "description": "Provides an object-oriented API to generate and represent UIDs", 7159 "description": "Provides an object-oriented API to generate and represent UIDs",
6785 "homepage": "https://symfony.com", 7160 "homepage": "https://symfony.com",
6786 "keywords": [ 7161 "keywords": [
6787 "UID", 7162 "UID",
6788 "ulid", 7163 "ulid",
6789 "uuid" 7164 "uuid"
6790 ], 7165 ],
6791 "support": { 7166 "support": {
6792 "source": "https://github.com/symfony/uid/tree/v6.0.19" 7167 "source": "https://github.com/symfony/uid/tree/v6.0.19"
6793 }, 7168 },
6794 "funding": [ 7169 "funding": [
6795 { 7170 {
6796 "url": "https://symfony.com/sponsor", 7171 "url": "https://symfony.com/sponsor",
6797 "type": "custom" 7172 "type": "custom"
6798 }, 7173 },
6799 { 7174 {
6800 "url": "https://github.com/fabpot", 7175 "url": "https://github.com/fabpot",
6801 "type": "github" 7176 "type": "github"
6802 }, 7177 },
6803 { 7178 {
6804 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 7179 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6805 "type": "tidelift" 7180 "type": "tidelift"
6806 } 7181 }
6807 ], 7182 ],
6808 "time": "2023-01-01T08:36:10+00:00" 7183 "time": "2023-01-01T08:36:10+00:00"
6809 }, 7184 },
6810 { 7185 {
6811 "name": "symfony/var-dumper", 7186 "name": "symfony/var-dumper",
6812 "version": "v6.0.19", 7187 "version": "v6.0.19",
6813 "source": { 7188 "source": {
6814 "type": "git", 7189 "type": "git",
6815 "url": "https://github.com/symfony/var-dumper.git", 7190 "url": "https://github.com/symfony/var-dumper.git",
6816 "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52" 7191 "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52"
6817 }, 7192 },
6818 "dist": { 7193 "dist": {
6819 "type": "zip", 7194 "type": "zip",
6820 "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eb980457fa6899840fe1687e8627a03a7d8a3d52", 7195 "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eb980457fa6899840fe1687e8627a03a7d8a3d52",
6821 "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52", 7196 "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52",
6822 "shasum": "" 7197 "shasum": ""
6823 }, 7198 },
6824 "require": { 7199 "require": {
6825 "php": ">=8.0.2", 7200 "php": ">=8.0.2",
6826 "symfony/polyfill-mbstring": "~1.0" 7201 "symfony/polyfill-mbstring": "~1.0"
6827 }, 7202 },
6828 "conflict": { 7203 "conflict": {
6829 "phpunit/phpunit": "<5.4.3", 7204 "phpunit/phpunit": "<5.4.3",
6830 "symfony/console": "<5.4" 7205 "symfony/console": "<5.4"
6831 }, 7206 },
6832 "require-dev": { 7207 "require-dev": {
6833 "ext-iconv": "*", 7208 "ext-iconv": "*",
6834 "symfony/console": "^5.4|^6.0", 7209 "symfony/console": "^5.4|^6.0",
6835 "symfony/process": "^5.4|^6.0", 7210 "symfony/process": "^5.4|^6.0",
6836 "symfony/uid": "^5.4|^6.0", 7211 "symfony/uid": "^5.4|^6.0",
6837 "twig/twig": "^2.13|^3.0.4" 7212 "twig/twig": "^2.13|^3.0.4"
6838 }, 7213 },
6839 "suggest": { 7214 "suggest": {
6840 "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", 7215 "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
6841 "ext-intl": "To show region name in time zone dump", 7216 "ext-intl": "To show region name in time zone dump",
6842 "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" 7217 "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
6843 }, 7218 },
6844 "bin": [ 7219 "bin": [
6845 "Resources/bin/var-dump-server" 7220 "Resources/bin/var-dump-server"
6846 ], 7221 ],
6847 "type": "library", 7222 "type": "library",
6848 "autoload": { 7223 "autoload": {
6849 "files": [ 7224 "files": [
6850 "Resources/functions/dump.php" 7225 "Resources/functions/dump.php"
6851 ], 7226 ],
6852 "psr-4": { 7227 "psr-4": {
6853 "Symfony\\Component\\VarDumper\\": "" 7228 "Symfony\\Component\\VarDumper\\": ""
6854 }, 7229 },
6855 "exclude-from-classmap": [ 7230 "exclude-from-classmap": [
6856 "/Tests/" 7231 "/Tests/"
6857 ] 7232 ]
6858 }, 7233 },
6859 "notification-url": "https://packagist.org/downloads/", 7234 "notification-url": "https://packagist.org/downloads/",
6860 "license": [ 7235 "license": [
6861 "MIT" 7236 "MIT"
6862 ], 7237 ],
6863 "authors": [ 7238 "authors": [
6864 { 7239 {
6865 "name": "Nicolas Grekas", 7240 "name": "Nicolas Grekas",
6866 "email": "p@tchwork.com" 7241 "email": "p@tchwork.com"
6867 }, 7242 },
6868 { 7243 {
6869 "name": "Symfony Community", 7244 "name": "Symfony Community",
6870 "homepage": "https://symfony.com/contributors" 7245 "homepage": "https://symfony.com/contributors"
6871 } 7246 }
6872 ], 7247 ],
6873 "description": "Provides mechanisms for walking through any arbitrary PHP variable", 7248 "description": "Provides mechanisms for walking through any arbitrary PHP variable",
6874 "homepage": "https://symfony.com", 7249 "homepage": "https://symfony.com",
6875 "keywords": [ 7250 "keywords": [
6876 "debug", 7251 "debug",
6877 "dump" 7252 "dump"
6878 ], 7253 ],
6879 "support": { 7254 "support": {
6880 "source": "https://github.com/symfony/var-dumper/tree/v6.0.19" 7255 "source": "https://github.com/symfony/var-dumper/tree/v6.0.19"
6881 }, 7256 },
6882 "funding": [ 7257 "funding": [
6883 { 7258 {
6884 "url": "https://symfony.com/sponsor", 7259 "url": "https://symfony.com/sponsor",
6885 "type": "custom" 7260 "type": "custom"
6886 }, 7261 },
6887 { 7262 {
6888 "url": "https://github.com/fabpot", 7263 "url": "https://github.com/fabpot",
6889 "type": "github" 7264 "type": "github"
6890 }, 7265 },
6891 { 7266 {
6892 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 7267 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6893 "type": "tidelift" 7268 "type": "tidelift"
6894 } 7269 }
6895 ], 7270 ],
6896 "time": "2023-01-20T17:44:14+00:00" 7271 "time": "2023-01-20T17:44:14+00:00"
6897 }, 7272 },
6898 { 7273 {
6899 "name": "tgalopin/html-sanitizer", 7274 "name": "tgalopin/html-sanitizer",
6900 "version": "1.5.0", 7275 "version": "1.5.0",
6901 "source": { 7276 "source": {
6902 "type": "git", 7277 "type": "git",
6903 "url": "https://github.com/tgalopin/html-sanitizer.git", 7278 "url": "https://github.com/tgalopin/html-sanitizer.git",
6904 "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913" 7279 "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913"
6905 }, 7280 },
6906 "dist": { 7281 "dist": {
6907 "type": "zip", 7282 "type": "zip",
6908 "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/5d02dcb6f2ea4f505731eac440798caa1b3b0913", 7283 "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/5d02dcb6f2ea4f505731eac440798caa1b3b0913",
6909 "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913", 7284 "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913",
6910 "shasum": "" 7285 "shasum": ""
6911 }, 7286 },
6912 "require": { 7287 "require": {
6913 "ext-dom": "*", 7288 "ext-dom": "*",
6914 "league/uri-parser": "^1.4.1", 7289 "league/uri-parser": "^1.4.1",
6915 "masterminds/html5": "^2.4", 7290 "masterminds/html5": "^2.4",
6916 "php": ">=7.1", 7291 "php": ">=7.1",
6917 "psr/log": "^1.0|^2.0|^3.0" 7292 "psr/log": "^1.0|^2.0|^3.0"
6918 }, 7293 },
6919 "require-dev": { 7294 "require-dev": {
6920 "phpunit/phpunit": "^7.4", 7295 "phpunit/phpunit": "^7.4",
6921 "symfony/var-dumper": "^4.1" 7296 "symfony/var-dumper": "^4.1"
6922 }, 7297 },
6923 "type": "library", 7298 "type": "library",
6924 "autoload": { 7299 "autoload": {
6925 "psr-4": { 7300 "psr-4": {
6926 "HtmlSanitizer\\": "src" 7301 "HtmlSanitizer\\": "src"
6927 } 7302 }
6928 }, 7303 },
6929 "notification-url": "https://packagist.org/downloads/", 7304 "notification-url": "https://packagist.org/downloads/",
6930 "license": [ 7305 "license": [
6931 "MIT" 7306 "MIT"
6932 ], 7307 ],
6933 "authors": [ 7308 "authors": [
6934 { 7309 {
6935 "name": "Titouan Galopin", 7310 "name": "Titouan Galopin",
6936 "email": "galopintitouan@gmail.com" 7311 "email": "galopintitouan@gmail.com"
6937 } 7312 }
6938 ], 7313 ],
6939 "description": "Sanitize untrustworthy HTML user input", 7314 "description": "Sanitize untrustworthy HTML user input",
6940 "support": { 7315 "support": {
6941 "issues": "https://github.com/tgalopin/html-sanitizer/issues", 7316 "issues": "https://github.com/tgalopin/html-sanitizer/issues",
6942 "source": "https://github.com/tgalopin/html-sanitizer/tree/1.5.0" 7317 "source": "https://github.com/tgalopin/html-sanitizer/tree/1.5.0"
6943 }, 7318 },
6944 "abandoned": "symfony/html-sanitizer", 7319 "abandoned": "symfony/html-sanitizer",
6945 "time": "2021-09-14T08:27:50+00:00" 7320 "time": "2021-09-14T08:27:50+00:00"
6946 }, 7321 },
6947 { 7322 {
6948 "name": "tijsverkoyen/css-to-inline-styles", 7323 "name": "tijsverkoyen/css-to-inline-styles",
6949 "version": "2.2.6", 7324 "version": "2.2.6",
6950 "source": { 7325 "source": {
6951 "type": "git", 7326 "type": "git",
6952 "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", 7327 "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
6953 "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c" 7328 "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
6954 }, 7329 },
6955 "dist": { 7330 "dist": {
6956 "type": "zip", 7331 "type": "zip",
6957 "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c", 7332 "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
6958 "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c", 7333 "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
6959 "shasum": "" 7334 "shasum": ""
6960 }, 7335 },
6961 "require": { 7336 "require": {
6962 "ext-dom": "*", 7337 "ext-dom": "*",
6963 "ext-libxml": "*", 7338 "ext-libxml": "*",
6964 "php": "^5.5 || ^7.0 || ^8.0", 7339 "php": "^5.5 || ^7.0 || ^8.0",
6965 "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0" 7340 "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
6966 }, 7341 },
6967 "require-dev": { 7342 "require-dev": {
6968 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" 7343 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
6969 }, 7344 },
6970 "type": "library", 7345 "type": "library",
6971 "extra": { 7346 "extra": {
6972 "branch-alias": { 7347 "branch-alias": {
6973 "dev-master": "2.2.x-dev" 7348 "dev-master": "2.2.x-dev"
6974 } 7349 }
6975 }, 7350 },
6976 "autoload": { 7351 "autoload": {
6977 "psr-4": { 7352 "psr-4": {
6978 "TijsVerkoyen\\CssToInlineStyles\\": "src" 7353 "TijsVerkoyen\\CssToInlineStyles\\": "src"
6979 } 7354 }
6980 }, 7355 },
6981 "notification-url": "https://packagist.org/downloads/", 7356 "notification-url": "https://packagist.org/downloads/",
6982 "license": [ 7357 "license": [
6983 "BSD-3-Clause" 7358 "BSD-3-Clause"
6984 ], 7359 ],
6985 "authors": [ 7360 "authors": [
6986 { 7361 {
6987 "name": "Tijs Verkoyen", 7362 "name": "Tijs Verkoyen",
6988 "email": "css_to_inline_styles@verkoyen.eu", 7363 "email": "css_to_inline_styles@verkoyen.eu",
6989 "role": "Developer" 7364 "role": "Developer"
6990 } 7365 }
6991 ], 7366 ],
6992 "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", 7367 "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
6993 "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", 7368 "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
6994 "support": { 7369 "support": {
6995 "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", 7370 "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
6996 "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6" 7371 "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
6997 }, 7372 },
6998 "time": "2023-01-03T09:29:04+00:00" 7373 "time": "2023-01-03T09:29:04+00:00"
6999 }, 7374 },
7000 { 7375 {
7001 "name": "vlucas/phpdotenv", 7376 "name": "vlucas/phpdotenv",
7002 "version": "v5.5.0", 7377 "version": "v5.5.0",
7003 "source": { 7378 "source": {
7004 "type": "git", 7379 "type": "git",
7005 "url": "https://github.com/vlucas/phpdotenv.git", 7380 "url": "https://github.com/vlucas/phpdotenv.git",
7006 "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7" 7381 "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
7007 }, 7382 },
7008 "dist": { 7383 "dist": {
7009 "type": "zip", 7384 "type": "zip",
7010 "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", 7385 "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
7011 "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", 7386 "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
7012 "shasum": "" 7387 "shasum": ""
7013 }, 7388 },
7014 "require": { 7389 "require": {
7015 "ext-pcre": "*", 7390 "ext-pcre": "*",
7016 "graham-campbell/result-type": "^1.0.2", 7391 "graham-campbell/result-type": "^1.0.2",
7017 "php": "^7.1.3 || ^8.0", 7392 "php": "^7.1.3 || ^8.0",
7018 "phpoption/phpoption": "^1.8", 7393 "phpoption/phpoption": "^1.8",
7019 "symfony/polyfill-ctype": "^1.23", 7394 "symfony/polyfill-ctype": "^1.23",
7020 "symfony/polyfill-mbstring": "^1.23.1", 7395 "symfony/polyfill-mbstring": "^1.23.1",
7021 "symfony/polyfill-php80": "^1.23.1" 7396 "symfony/polyfill-php80": "^1.23.1"
7022 }, 7397 },
7023 "require-dev": { 7398 "require-dev": {
7024 "bamarni/composer-bin-plugin": "^1.4.1", 7399 "bamarni/composer-bin-plugin": "^1.4.1",
7025 "ext-filter": "*", 7400 "ext-filter": "*",
7026 "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25" 7401 "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
7027 }, 7402 },
7028 "suggest": { 7403 "suggest": {
7029 "ext-filter": "Required to use the boolean validator." 7404 "ext-filter": "Required to use the boolean validator."
7030 }, 7405 },
7031 "type": "library", 7406 "type": "library",
7032 "extra": { 7407 "extra": {
7033 "bamarni-bin": { 7408 "bamarni-bin": {
7034 "bin-links": true, 7409 "bin-links": true,
7035 "forward-command": true 7410 "forward-command": true
7036 }, 7411 },
7037 "branch-alias": { 7412 "branch-alias": {
7038 "dev-master": "5.5-dev" 7413 "dev-master": "5.5-dev"
7039 } 7414 }
7040 }, 7415 },
7041 "autoload": { 7416 "autoload": {
7042 "psr-4": { 7417 "psr-4": {
7043 "Dotenv\\": "src/" 7418 "Dotenv\\": "src/"
7044 } 7419 }
7045 }, 7420 },
7046 "notification-url": "https://packagist.org/downloads/", 7421 "notification-url": "https://packagist.org/downloads/",
7047 "license": [ 7422 "license": [
7048 "BSD-3-Clause" 7423 "BSD-3-Clause"
7049 ], 7424 ],
7050 "authors": [ 7425 "authors": [
7051 { 7426 {
7052 "name": "Graham Campbell", 7427 "name": "Graham Campbell",
7053 "email": "hello@gjcampbell.co.uk", 7428 "email": "hello@gjcampbell.co.uk",
7054 "homepage": "https://github.com/GrahamCampbell" 7429 "homepage": "https://github.com/GrahamCampbell"
7055 }, 7430 },
7056 { 7431 {
7057 "name": "Vance Lucas", 7432 "name": "Vance Lucas",
7058 "email": "vance@vancelucas.com", 7433 "email": "vance@vancelucas.com",
7059 "homepage": "https://github.com/vlucas" 7434 "homepage": "https://github.com/vlucas"
7060 } 7435 }
7061 ], 7436 ],
7062 "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", 7437 "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
7063 "keywords": [ 7438 "keywords": [
7064 "dotenv", 7439 "dotenv",
7065 "env", 7440 "env",
7066 "environment" 7441 "environment"
7067 ], 7442 ],
7068 "support": { 7443 "support": {
7069 "issues": "https://github.com/vlucas/phpdotenv/issues", 7444 "issues": "https://github.com/vlucas/phpdotenv/issues",
7070 "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0" 7445 "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
7071 }, 7446 },
7072 "funding": [ 7447 "funding": [
7073 { 7448 {
7074 "url": "https://github.com/GrahamCampbell", 7449 "url": "https://github.com/GrahamCampbell",
7075 "type": "github" 7450 "type": "github"
7076 }, 7451 },
7077 { 7452 {
7078 "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", 7453 "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
7079 "type": "tidelift" 7454 "type": "tidelift"
7080 } 7455 }
7081 ], 7456 ],
7082 "time": "2022-10-16T01:01:54+00:00" 7457 "time": "2022-10-16T01:01:54+00:00"
7083 }, 7458 },
7084 { 7459 {
7085 "name": "voku/portable-ascii", 7460 "name": "voku/portable-ascii",
7086 "version": "2.0.1", 7461 "version": "2.0.1",
7087 "source": { 7462 "source": {
7088 "type": "git", 7463 "type": "git",
7089 "url": "https://github.com/voku/portable-ascii.git", 7464 "url": "https://github.com/voku/portable-ascii.git",
7090 "reference": "b56450eed252f6801410d810c8e1727224ae0743" 7465 "reference": "b56450eed252f6801410d810c8e1727224ae0743"
7091 }, 7466 },
7092 "dist": { 7467 "dist": {
7093 "type": "zip", 7468 "type": "zip",
7094 "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", 7469 "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
7095 "reference": "b56450eed252f6801410d810c8e1727224ae0743", 7470 "reference": "b56450eed252f6801410d810c8e1727224ae0743",
7096 "shasum": "" 7471 "shasum": ""
7097 }, 7472 },
7098 "require": { 7473 "require": {
7099 "php": ">=7.0.0" 7474 "php": ">=7.0.0"
7100 }, 7475 },
7101 "require-dev": { 7476 "require-dev": {
7102 "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" 7477 "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
7103 }, 7478 },
7104 "suggest": { 7479 "suggest": {
7105 "ext-intl": "Use Intl for transliterator_transliterate() support" 7480 "ext-intl": "Use Intl for transliterator_transliterate() support"
7106 }, 7481 },
7107 "type": "library", 7482 "type": "library",
7108 "autoload": { 7483 "autoload": {
7109 "psr-4": { 7484 "psr-4": {
7110 "voku\\": "src/voku/" 7485 "voku\\": "src/voku/"
7111 } 7486 }
7112 }, 7487 },
7113 "notification-url": "https://packagist.org/downloads/", 7488 "notification-url": "https://packagist.org/downloads/",
7114 "license": [ 7489 "license": [
7115 "MIT" 7490 "MIT"
7116 ], 7491 ],
7117 "authors": [ 7492 "authors": [
7118 { 7493 {
7119 "name": "Lars Moelleken", 7494 "name": "Lars Moelleken",
7120 "homepage": "http://www.moelleken.org/" 7495 "homepage": "http://www.moelleken.org/"
7121 } 7496 }
7122 ], 7497 ],
7123 "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", 7498 "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
7124 "homepage": "https://github.com/voku/portable-ascii", 7499 "homepage": "https://github.com/voku/portable-ascii",
7125 "keywords": [ 7500 "keywords": [
7126 "ascii", 7501 "ascii",
7127 "clean", 7502 "clean",
7128 "php" 7503 "php"
7129 ], 7504 ],
7130 "support": { 7505 "support": {
7131 "issues": "https://github.com/voku/portable-ascii/issues", 7506 "issues": "https://github.com/voku/portable-ascii/issues",
7132 "source": "https://github.com/voku/portable-ascii/tree/2.0.1" 7507 "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
7133 }, 7508 },
7134 "funding": [ 7509 "funding": [
7135 { 7510 {
7136 "url": "https://www.paypal.me/moelleken", 7511 "url": "https://www.paypal.me/moelleken",
7137 "type": "custom" 7512 "type": "custom"
7138 }, 7513 },
7139 { 7514 {
7140 "url": "https://github.com/voku", 7515 "url": "https://github.com/voku",
7141 "type": "github" 7516 "type": "github"
7142 }, 7517 },
7143 { 7518 {
7144 "url": "https://opencollective.com/portable-ascii", 7519 "url": "https://opencollective.com/portable-ascii",
7145 "type": "open_collective" 7520 "type": "open_collective"
7146 }, 7521 },
7147 { 7522 {
7148 "url": "https://www.patreon.com/voku", 7523 "url": "https://www.patreon.com/voku",
7149 "type": "patreon" 7524 "type": "patreon"
7150 }, 7525 },
7151 { 7526 {
7152 "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", 7527 "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
7153 "type": "tidelift" 7528 "type": "tidelift"
7154 } 7529 }
7155 ], 7530 ],
7156 "time": "2022-03-08T17:03:00+00:00" 7531 "time": "2022-03-08T17:03:00+00:00"
7157 }, 7532 },
7158 { 7533 {
7159 "name": "webmozart/assert", 7534 "name": "webmozart/assert",
7160 "version": "1.11.0", 7535 "version": "1.11.0",
7161 "source": { 7536 "source": {
7162 "type": "git", 7537 "type": "git",
7163 "url": "https://github.com/webmozarts/assert.git", 7538 "url": "https://github.com/webmozarts/assert.git",
7164 "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" 7539 "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
7165 }, 7540 },
7166 "dist": { 7541 "dist": {
7167 "type": "zip", 7542 "type": "zip",
7168 "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", 7543 "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
7169 "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", 7544 "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
7170 "shasum": "" 7545 "shasum": ""
7171 }, 7546 },
7172 "require": { 7547 "require": {
7173 "ext-ctype": "*", 7548 "ext-ctype": "*",
7174 "php": "^7.2 || ^8.0" 7549 "php": "^7.2 || ^8.0"
7175 }, 7550 },
7176 "conflict": { 7551 "conflict": {
7177 "phpstan/phpstan": "<0.12.20", 7552 "phpstan/phpstan": "<0.12.20",
7178 "vimeo/psalm": "<4.6.1 || 4.6.2" 7553 "vimeo/psalm": "<4.6.1 || 4.6.2"
7179 }, 7554 },
7180 "require-dev": { 7555 "require-dev": {
7181 "phpunit/phpunit": "^8.5.13" 7556 "phpunit/phpunit": "^8.5.13"
7182 }, 7557 },
7183 "type": "library", 7558 "type": "library",
7184 "extra": { 7559 "extra": {
7185 "branch-alias": { 7560 "branch-alias": {
7186 "dev-master": "1.10-dev" 7561 "dev-master": "1.10-dev"
7187 } 7562 }
7188 }, 7563 },
7189 "autoload": { 7564 "autoload": {
7190 "psr-4": { 7565 "psr-4": {
7191 "Webmozart\\Assert\\": "src/" 7566 "Webmozart\\Assert\\": "src/"
7192 } 7567 }
7193 }, 7568 },
7194 "notification-url": "https://packagist.org/downloads/", 7569 "notification-url": "https://packagist.org/downloads/",
7195 "license": [ 7570 "license": [
7196 "MIT" 7571 "MIT"
7197 ], 7572 ],
7198 "authors": [ 7573 "authors": [
7199 { 7574 {
7200 "name": "Bernhard Schussek", 7575 "name": "Bernhard Schussek",
7201 "email": "bschussek@gmail.com" 7576 "email": "bschussek@gmail.com"
7202 } 7577 }
7203 ], 7578 ],
7204 "description": "Assertions to validate method input/output with nice error messages.", 7579 "description": "Assertions to validate method input/output with nice error messages.",
7205 "keywords": [ 7580 "keywords": [
7206 "assert", 7581 "assert",
7207 "check", 7582 "check",
7208 "validate" 7583 "validate"
7209 ], 7584 ],
7210 "support": { 7585 "support": {
7211 "issues": "https://github.com/webmozarts/assert/issues", 7586 "issues": "https://github.com/webmozarts/assert/issues",
7212 "source": "https://github.com/webmozarts/assert/tree/1.11.0" 7587 "source": "https://github.com/webmozarts/assert/tree/1.11.0"
7213 }, 7588 },
7214 "time": "2022-06-03T18:03:27+00:00" 7589 "time": "2022-06-03T18:03:27+00:00"
7215 } 7590 }
7216 ], 7591 ],
7217 "packages-dev": [ 7592 "packages-dev": [
7218 { 7593 {
7219 "name": "barryvdh/laravel-debugbar", 7594 "name": "barryvdh/laravel-debugbar",
7220 "version": "v3.9.2", 7595 "version": "v3.9.2",
7221 "source": { 7596 "source": {
7222 "type": "git", 7597 "type": "git",
7223 "url": "https://github.com/barryvdh/laravel-debugbar.git", 7598 "url": "https://github.com/barryvdh/laravel-debugbar.git",
7224 "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1" 7599 "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1"
7225 }, 7600 },
7226 "dist": { 7601 "dist": {
7227 "type": "zip", 7602 "type": "zip",
7228 "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/bfd0131c146973cab164e50f5cdd8a67cc60cab1", 7603 "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/bfd0131c146973cab164e50f5cdd8a67cc60cab1",
7229 "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1", 7604 "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1",
7230 "shasum": "" 7605 "shasum": ""
7231 }, 7606 },
7232 "require": { 7607 "require": {
7233 "illuminate/routing": "^9|^10", 7608 "illuminate/routing": "^9|^10",
7234 "illuminate/session": "^9|^10", 7609 "illuminate/session": "^9|^10",
7235 "illuminate/support": "^9|^10", 7610 "illuminate/support": "^9|^10",
7236 "maximebf/debugbar": "^1.18.2", 7611 "maximebf/debugbar": "^1.18.2",
7237 "php": "^8.0", 7612 "php": "^8.0",
7238 "symfony/finder": "^6" 7613 "symfony/finder": "^6"
7239 }, 7614 },
7240 "require-dev": { 7615 "require-dev": {
7241 "mockery/mockery": "^1.3.3", 7616 "mockery/mockery": "^1.3.3",
7242 "orchestra/testbench-dusk": "^5|^6|^7|^8", 7617 "orchestra/testbench-dusk": "^5|^6|^7|^8",
7243 "phpunit/phpunit": "^8.5.30|^9.0", 7618 "phpunit/phpunit": "^8.5.30|^9.0",
7244 "squizlabs/php_codesniffer": "^3.5" 7619 "squizlabs/php_codesniffer": "^3.5"
7245 }, 7620 },
7246 "type": "library", 7621 "type": "library",
7247 "extra": { 7622 "extra": {
7248 "branch-alias": { 7623 "branch-alias": {
7249 "dev-master": "3.8-dev" 7624 "dev-master": "3.8-dev"
7250 }, 7625 },
7251 "laravel": { 7626 "laravel": {
7252 "providers": [ 7627 "providers": [
7253 "Barryvdh\\Debugbar\\ServiceProvider" 7628 "Barryvdh\\Debugbar\\ServiceProvider"
7254 ], 7629 ],
7255 "aliases": { 7630 "aliases": {
7256 "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar" 7631 "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
7257 } 7632 }
7258 } 7633 }
7259 }, 7634 },
7260 "autoload": { 7635 "autoload": {
7261 "files": [ 7636 "files": [
7262 "src/helpers.php" 7637 "src/helpers.php"
7263 ], 7638 ],
7264 "psr-4": { 7639 "psr-4": {
7265 "Barryvdh\\Debugbar\\": "src/" 7640 "Barryvdh\\Debugbar\\": "src/"
7266 } 7641 }
7267 }, 7642 },
7268 "notification-url": "https://packagist.org/downloads/", 7643 "notification-url": "https://packagist.org/downloads/",
7269 "license": [ 7644 "license": [
7270 "MIT" 7645 "MIT"
7271 ], 7646 ],
7272 "authors": [ 7647 "authors": [
7273 { 7648 {
7274 "name": "Barry vd. Heuvel", 7649 "name": "Barry vd. Heuvel",
7275 "email": "barryvdh@gmail.com" 7650 "email": "barryvdh@gmail.com"
7276 } 7651 }
7277 ], 7652 ],
7278 "description": "PHP Debugbar integration for Laravel", 7653 "description": "PHP Debugbar integration for Laravel",
7279 "keywords": [ 7654 "keywords": [
7280 "debug", 7655 "debug",
7281 "debugbar", 7656 "debugbar",
7282 "laravel", 7657 "laravel",
7283 "profiler", 7658 "profiler",
7284 "webprofiler" 7659 "webprofiler"
7285 ], 7660 ],
7286 "support": { 7661 "support": {
7287 "issues": "https://github.com/barryvdh/laravel-debugbar/issues", 7662 "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
7288 "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.9.2" 7663 "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.9.2"
7289 }, 7664 },
7290 "funding": [ 7665 "funding": [
7291 { 7666 {
7292 "url": "https://fruitcake.nl", 7667 "url": "https://fruitcake.nl",
7293 "type": "custom" 7668 "type": "custom"
7294 }, 7669 },
7295 { 7670 {
7296 "url": "https://github.com/barryvdh", 7671 "url": "https://github.com/barryvdh",
7297 "type": "github" 7672 "type": "github"
7298 } 7673 }
7299 ], 7674 ],
7300 "time": "2023-08-25T18:43:57+00:00" 7675 "time": "2023-08-25T18:43:57+00:00"
7301 }, 7676 },
7302 { 7677 {
7303 "name": "doctrine/instantiator", 7678 "name": "doctrine/instantiator",
7304 "version": "1.5.0", 7679 "version": "1.5.0",
7305 "source": { 7680 "source": {
7306 "type": "git", 7681 "type": "git",
7307 "url": "https://github.com/doctrine/instantiator.git", 7682 "url": "https://github.com/doctrine/instantiator.git",
7308 "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b" 7683 "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
7309 }, 7684 },
7310 "dist": { 7685 "dist": {
7311 "type": "zip", 7686 "type": "zip",
7312 "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b", 7687 "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
7313 "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b", 7688 "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
7314 "shasum": "" 7689 "shasum": ""
7315 }, 7690 },
7316 "require": { 7691 "require": {
7317 "php": "^7.1 || ^8.0" 7692 "php": "^7.1 || ^8.0"
7318 }, 7693 },
7319 "require-dev": { 7694 "require-dev": {
7320 "doctrine/coding-standard": "^9 || ^11", 7695 "doctrine/coding-standard": "^9 || ^11",
7321 "ext-pdo": "*", 7696 "ext-pdo": "*",
7322 "ext-phar": "*", 7697 "ext-phar": "*",
7323 "phpbench/phpbench": "^0.16 || ^1", 7698 "phpbench/phpbench": "^0.16 || ^1",
7324 "phpstan/phpstan": "^1.4", 7699 "phpstan/phpstan": "^1.4",
7325 "phpstan/phpstan-phpunit": "^1", 7700 "phpstan/phpstan-phpunit": "^1",
7326 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", 7701 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
7327 "vimeo/psalm": "^4.30 || ^5.4" 7702 "vimeo/psalm": "^4.30 || ^5.4"
7328 }, 7703 },
7329 "type": "library", 7704 "type": "library",
7330 "autoload": { 7705 "autoload": {
7331 "psr-4": { 7706 "psr-4": {
7332 "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 7707 "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
7333 } 7708 }
7334 }, 7709 },
7335 "notification-url": "https://packagist.org/downloads/", 7710 "notification-url": "https://packagist.org/downloads/",
7336 "license": [ 7711 "license": [
7337 "MIT" 7712 "MIT"
7338 ], 7713 ],
7339 "authors": [ 7714 "authors": [
7340 { 7715 {
7341 "name": "Marco Pivetta", 7716 "name": "Marco Pivetta",
7342 "email": "ocramius@gmail.com", 7717 "email": "ocramius@gmail.com",
7343 "homepage": "https://ocramius.github.io/" 7718 "homepage": "https://ocramius.github.io/"
7344 } 7719 }
7345 ], 7720 ],
7346 "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", 7721 "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
7347 "homepage": "https://www.doctrine-project.org/projects/instantiator.html", 7722 "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
7348 "keywords": [ 7723 "keywords": [
7349 "constructor", 7724 "constructor",
7350 "instantiate" 7725 "instantiate"
7351 ], 7726 ],
7352 "support": { 7727 "support": {
7353 "issues": "https://github.com/doctrine/instantiator/issues", 7728 "issues": "https://github.com/doctrine/instantiator/issues",
7354 "source": "https://github.com/doctrine/instantiator/tree/1.5.0" 7729 "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
7355 }, 7730 },
7356 "funding": [ 7731 "funding": [
7357 { 7732 {
7358 "url": "https://www.doctrine-project.org/sponsorship.html", 7733 "url": "https://www.doctrine-project.org/sponsorship.html",
7359 "type": "custom" 7734 "type": "custom"
7360 }, 7735 },
7361 { 7736 {
7362 "url": "https://www.patreon.com/phpdoctrine", 7737 "url": "https://www.patreon.com/phpdoctrine",
7363 "type": "patreon" 7738 "type": "patreon"
7364 }, 7739 },
7365 { 7740 {
7366 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", 7741 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
7367 "type": "tidelift" 7742 "type": "tidelift"
7368 } 7743 }
7369 ], 7744 ],
7370 "time": "2022-12-30T00:15:36+00:00" 7745 "time": "2022-12-30T00:15:36+00:00"
7371 }, 7746 },
7372 { 7747 {
7373 "name": "fakerphp/faker", 7748 "name": "fakerphp/faker",
7374 "version": "v1.21.0", 7749 "version": "v1.21.0",
7375 "source": { 7750 "source": {
7376 "type": "git", 7751 "type": "git",
7377 "url": "https://github.com/FakerPHP/Faker.git", 7752 "url": "https://github.com/FakerPHP/Faker.git",
7378 "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d" 7753 "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
7379 }, 7754 },
7380 "dist": { 7755 "dist": {
7381 "type": "zip", 7756 "type": "zip",
7382 "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d", 7757 "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
7383 "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d", 7758 "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
7384 "shasum": "" 7759 "shasum": ""
7385 }, 7760 },
7386 "require": { 7761 "require": {
7387 "php": "^7.4 || ^8.0", 7762 "php": "^7.4 || ^8.0",
7388 "psr/container": "^1.0 || ^2.0", 7763 "psr/container": "^1.0 || ^2.0",
7389 "symfony/deprecation-contracts": "^2.2 || ^3.0" 7764 "symfony/deprecation-contracts": "^2.2 || ^3.0"
7390 }, 7765 },
7391 "conflict": { 7766 "conflict": {
7392 "fzaninotto/faker": "*" 7767 "fzaninotto/faker": "*"
7393 }, 7768 },
7394 "require-dev": { 7769 "require-dev": {
7395 "bamarni/composer-bin-plugin": "^1.4.1", 7770 "bamarni/composer-bin-plugin": "^1.4.1",
7396 "doctrine/persistence": "^1.3 || ^2.0", 7771 "doctrine/persistence": "^1.3 || ^2.0",
7397 "ext-intl": "*", 7772 "ext-intl": "*",
7398 "phpunit/phpunit": "^9.5.26", 7773 "phpunit/phpunit": "^9.5.26",
7399 "symfony/phpunit-bridge": "^5.4.16" 7774 "symfony/phpunit-bridge": "^5.4.16"
7400 }, 7775 },
7401 "suggest": { 7776 "suggest": {
7402 "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", 7777 "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
7403 "ext-curl": "Required by Faker\\Provider\\Image to download images.", 7778 "ext-curl": "Required by Faker\\Provider\\Image to download images.",
7404 "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", 7779 "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
7405 "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", 7780 "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
7406 "ext-mbstring": "Required for multibyte Unicode string functionality." 7781 "ext-mbstring": "Required for multibyte Unicode string functionality."
7407 }, 7782 },
7408 "type": "library", 7783 "type": "library",
7409 "extra": { 7784 "extra": {
7410 "branch-alias": { 7785 "branch-alias": {
7411 "dev-main": "v1.21-dev" 7786 "dev-main": "v1.21-dev"
7412 } 7787 }
7413 }, 7788 },
7414 "autoload": { 7789 "autoload": {
7415 "psr-4": { 7790 "psr-4": {
7416 "Faker\\": "src/Faker/" 7791 "Faker\\": "src/Faker/"
7417 } 7792 }
7418 }, 7793 },
7419 "notification-url": "https://packagist.org/downloads/", 7794 "notification-url": "https://packagist.org/downloads/",
7420 "license": [ 7795 "license": [
7421 "MIT" 7796 "MIT"
7422 ], 7797 ],
7423 "authors": [ 7798 "authors": [
7424 { 7799 {
7425 "name": "François Zaninotto" 7800 "name": "François Zaninotto"
7426 } 7801 }
7427 ], 7802 ],
7428 "description": "Faker is a PHP library that generates fake data for you.", 7803 "description": "Faker is a PHP library that generates fake data for you.",
7429 "keywords": [ 7804 "keywords": [
7430 "data", 7805 "data",
7431 "faker", 7806 "faker",
7432 "fixtures" 7807 "fixtures"
7433 ], 7808 ],
7434 "support": { 7809 "support": {
7435 "issues": "https://github.com/FakerPHP/Faker/issues", 7810 "issues": "https://github.com/FakerPHP/Faker/issues",
7436 "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0" 7811 "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
7437 }, 7812 },
7438 "time": "2022-12-13T13:54:32+00:00" 7813 "time": "2022-12-13T13:54:32+00:00"
7439 }, 7814 },
7440 { 7815 {
7441 "name": "filp/whoops", 7816 "name": "filp/whoops",
7442 "version": "2.15.2", 7817 "version": "2.15.2",
7443 "source": { 7818 "source": {
7444 "type": "git", 7819 "type": "git",
7445 "url": "https://github.com/filp/whoops.git", 7820 "url": "https://github.com/filp/whoops.git",
7446 "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73" 7821 "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73"
7447 }, 7822 },
7448 "dist": { 7823 "dist": {
7449 "type": "zip", 7824 "type": "zip",
7450 "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", 7825 "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
7451 "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", 7826 "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
7452 "shasum": "" 7827 "shasum": ""
7453 }, 7828 },
7454 "require": { 7829 "require": {
7455 "php": "^5.5.9 || ^7.0 || ^8.0", 7830 "php": "^5.5.9 || ^7.0 || ^8.0",
7456 "psr/log": "^1.0.1 || ^2.0 || ^3.0" 7831 "psr/log": "^1.0.1 || ^2.0 || ^3.0"
7457 }, 7832 },
7458 "require-dev": { 7833 "require-dev": {
7459 "mockery/mockery": "^0.9 || ^1.0", 7834 "mockery/mockery": "^0.9 || ^1.0",
7460 "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", 7835 "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
7461 "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" 7836 "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
7462 }, 7837 },
7463 "suggest": { 7838 "suggest": {
7464 "symfony/var-dumper": "Pretty print complex values better with var-dumper available", 7839 "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
7465 "whoops/soap": "Formats errors as SOAP responses" 7840 "whoops/soap": "Formats errors as SOAP responses"
7466 }, 7841 },
7467 "type": "library", 7842 "type": "library",
7468 "extra": { 7843 "extra": {
7469 "branch-alias": { 7844 "branch-alias": {
7470 "dev-master": "2.7-dev" 7845 "dev-master": "2.7-dev"
7471 } 7846 }
7472 }, 7847 },
7473 "autoload": { 7848 "autoload": {
7474 "psr-4": { 7849 "psr-4": {
7475 "Whoops\\": "src/Whoops/" 7850 "Whoops\\": "src/Whoops/"
7476 } 7851 }
7477 }, 7852 },
7478 "notification-url": "https://packagist.org/downloads/", 7853 "notification-url": "https://packagist.org/downloads/",
7479 "license": [ 7854 "license": [
7480 "MIT" 7855 "MIT"
7481 ], 7856 ],
7482 "authors": [ 7857 "authors": [
7483 { 7858 {
7484 "name": "Filipe Dobreira", 7859 "name": "Filipe Dobreira",
7485 "homepage": "https://github.com/filp", 7860 "homepage": "https://github.com/filp",
7486 "role": "Developer" 7861 "role": "Developer"
7487 } 7862 }
7488 ], 7863 ],
7489 "description": "php error handling for cool kids", 7864 "description": "php error handling for cool kids",
7490 "homepage": "https://filp.github.io/whoops/", 7865 "homepage": "https://filp.github.io/whoops/",
7491 "keywords": [ 7866 "keywords": [
7492 "error", 7867 "error",
7493 "exception", 7868 "exception",
7494 "handling", 7869 "handling",
7495 "library", 7870 "library",
7496 "throwable", 7871 "throwable",
7497 "whoops" 7872 "whoops"
7498 ], 7873 ],
7499 "support": { 7874 "support": {
7500 "issues": "https://github.com/filp/whoops/issues", 7875 "issues": "https://github.com/filp/whoops/issues",
7501 "source": "https://github.com/filp/whoops/tree/2.15.2" 7876 "source": "https://github.com/filp/whoops/tree/2.15.2"
7502 }, 7877 },
7503 "funding": [ 7878 "funding": [
7504 { 7879 {
7505 "url": "https://github.com/denis-sokolov", 7880 "url": "https://github.com/denis-sokolov",
7506 "type": "github" 7881 "type": "github"
7507 } 7882 }
7508 ], 7883 ],
7509 "time": "2023-04-12T12:00:00+00:00" 7884 "time": "2023-04-12T12:00:00+00:00"
7510 }, 7885 },
7511 { 7886 {
7512 "name": "hamcrest/hamcrest-php", 7887 "name": "hamcrest/hamcrest-php",
7513 "version": "v2.0.1", 7888 "version": "v2.0.1",
7514 "source": { 7889 "source": {
7515 "type": "git", 7890 "type": "git",
7516 "url": "https://github.com/hamcrest/hamcrest-php.git", 7891 "url": "https://github.com/hamcrest/hamcrest-php.git",
7517 "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" 7892 "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
7518 }, 7893 },
7519 "dist": { 7894 "dist": {
7520 "type": "zip", 7895 "type": "zip",
7521 "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", 7896 "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
7522 "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", 7897 "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
7523 "shasum": "" 7898 "shasum": ""
7524 }, 7899 },
7525 "require": { 7900 "require": {
7526 "php": "^5.3|^7.0|^8.0" 7901 "php": "^5.3|^7.0|^8.0"
7527 }, 7902 },
7528 "replace": { 7903 "replace": {
7529 "cordoval/hamcrest-php": "*", 7904 "cordoval/hamcrest-php": "*",
7530 "davedevelopment/hamcrest-php": "*", 7905 "davedevelopment/hamcrest-php": "*",
7531 "kodova/hamcrest-php": "*" 7906 "kodova/hamcrest-php": "*"
7532 }, 7907 },
7533 "require-dev": { 7908 "require-dev": {
7534 "phpunit/php-file-iterator": "^1.4 || ^2.0", 7909 "phpunit/php-file-iterator": "^1.4 || ^2.0",
7535 "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" 7910 "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
7536 }, 7911 },
7537 "type": "library", 7912 "type": "library",
7538 "extra": { 7913 "extra": {
7539 "branch-alias": { 7914 "branch-alias": {
7540 "dev-master": "2.1-dev" 7915 "dev-master": "2.1-dev"
7541 } 7916 }
7542 }, 7917 },
7543 "autoload": { 7918 "autoload": {
7544 "classmap": [ 7919 "classmap": [
7545 "hamcrest" 7920 "hamcrest"
7546 ] 7921 ]
7547 }, 7922 },
7548 "notification-url": "https://packagist.org/downloads/", 7923 "notification-url": "https://packagist.org/downloads/",
7549 "license": [ 7924 "license": [
7550 "BSD-3-Clause" 7925 "BSD-3-Clause"
7551 ], 7926 ],
7552 "description": "This is the PHP port of Hamcrest Matchers", 7927 "description": "This is the PHP port of Hamcrest Matchers",
7553 "keywords": [ 7928 "keywords": [
7554 "test" 7929 "test"
7555 ], 7930 ],
7556 "support": { 7931 "support": {
7557 "issues": "https://github.com/hamcrest/hamcrest-php/issues", 7932 "issues": "https://github.com/hamcrest/hamcrest-php/issues",
7558 "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" 7933 "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
7559 }, 7934 },
7560 "time": "2020-07-09T08:09:16+00:00" 7935 "time": "2020-07-09T08:09:16+00:00"
7561 }, 7936 },
7562 { 7937 {
7563 "name": "laravel/pint", 7938 "name": "laravel/pint",
7564 "version": "v1.5.0", 7939 "version": "v1.5.0",
7565 "source": { 7940 "source": {
7566 "type": "git", 7941 "type": "git",
7567 "url": "https://github.com/laravel/pint.git", 7942 "url": "https://github.com/laravel/pint.git",
7568 "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362" 7943 "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362"
7569 }, 7944 },
7570 "dist": { 7945 "dist": {
7571 "type": "zip", 7946 "type": "zip",
7572 "url": "https://api.github.com/repos/laravel/pint/zipball/e0a8cef58b74662f27355be9cdea0e726bbac362", 7947 "url": "https://api.github.com/repos/laravel/pint/zipball/e0a8cef58b74662f27355be9cdea0e726bbac362",
7573 "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362", 7948 "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362",
7574 "shasum": "" 7949 "shasum": ""
7575 }, 7950 },
7576 "require": { 7951 "require": {
7577 "ext-json": "*", 7952 "ext-json": "*",
7578 "ext-mbstring": "*", 7953 "ext-mbstring": "*",
7579 "ext-tokenizer": "*", 7954 "ext-tokenizer": "*",
7580 "ext-xml": "*", 7955 "ext-xml": "*",
7581 "php": "^8.0" 7956 "php": "^8.0"
7582 }, 7957 },
7583 "require-dev": { 7958 "require-dev": {
7584 "friendsofphp/php-cs-fixer": "^3.14.4", 7959 "friendsofphp/php-cs-fixer": "^3.14.4",
7585 "illuminate/view": "^9.51.0", 7960 "illuminate/view": "^9.51.0",
7586 "laravel-zero/framework": "^9.2.0", 7961 "laravel-zero/framework": "^9.2.0",
7587 "mockery/mockery": "^1.5.1", 7962 "mockery/mockery": "^1.5.1",
7588 "nunomaduro/larastan": "^2.4.0", 7963 "nunomaduro/larastan": "^2.4.0",
7589 "nunomaduro/termwind": "^1.15.1", 7964 "nunomaduro/termwind": "^1.15.1",
7590 "pestphp/pest": "^1.22.4" 7965 "pestphp/pest": "^1.22.4"
7591 }, 7966 },
7592 "bin": [ 7967 "bin": [
7593 "builds/pint" 7968 "builds/pint"
7594 ], 7969 ],
7595 "type": "project", 7970 "type": "project",
7596 "autoload": { 7971 "autoload": {
7597 "psr-4": { 7972 "psr-4": {
7598 "App\\": "app/", 7973 "App\\": "app/",
7599 "Database\\Seeders\\": "database/seeders/", 7974 "Database\\Seeders\\": "database/seeders/",
7600 "Database\\Factories\\": "database/factories/" 7975 "Database\\Factories\\": "database/factories/"
7601 } 7976 }
7602 }, 7977 },
7603 "notification-url": "https://packagist.org/downloads/", 7978 "notification-url": "https://packagist.org/downloads/",
7604 "license": [ 7979 "license": [
7605 "MIT" 7980 "MIT"
7606 ], 7981 ],
7607 "authors": [ 7982 "authors": [
7608 { 7983 {
7609 "name": "Nuno Maduro", 7984 "name": "Nuno Maduro",
7610 "email": "enunomaduro@gmail.com" 7985 "email": "enunomaduro@gmail.com"
7611 } 7986 }
7612 ], 7987 ],
7613 "description": "An opinionated code formatter for PHP.", 7988 "description": "An opinionated code formatter for PHP.",
7614 "homepage": "https://laravel.com", 7989 "homepage": "https://laravel.com",
7615 "keywords": [ 7990 "keywords": [
7616 "format", 7991 "format",
7617 "formatter", 7992 "formatter",
7618 "lint", 7993 "lint",
7619 "linter", 7994 "linter",
7620 "php" 7995 "php"
7621 ], 7996 ],
7622 "support": { 7997 "support": {
7623 "issues": "https://github.com/laravel/pint/issues", 7998 "issues": "https://github.com/laravel/pint/issues",
7624 "source": "https://github.com/laravel/pint" 7999 "source": "https://github.com/laravel/pint"
7625 }, 8000 },
7626 "time": "2023-02-14T16:31:02+00:00" 8001 "time": "2023-02-14T16:31:02+00:00"
7627 }, 8002 },
7628 { 8003 {
7629 "name": "laravel/sail", 8004 "name": "laravel/sail",
7630 "version": "v1.22.0", 8005 "version": "v1.22.0",
7631 "source": { 8006 "source": {
7632 "type": "git", 8007 "type": "git",
7633 "url": "https://github.com/laravel/sail.git", 8008 "url": "https://github.com/laravel/sail.git",
7634 "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56" 8009 "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56"
7635 }, 8010 },
7636 "dist": { 8011 "dist": {
7637 "type": "zip", 8012 "type": "zip",
7638 "url": "https://api.github.com/repos/laravel/sail/zipball/923e1e112b6a8598664dbb0ee79dd3137f1c9d56", 8013 "url": "https://api.github.com/repos/laravel/sail/zipball/923e1e112b6a8598664dbb0ee79dd3137f1c9d56",
7639 "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56", 8014 "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56",
7640 "shasum": "" 8015 "shasum": ""
7641 }, 8016 },
7642 "require": { 8017 "require": {
7643 "illuminate/console": "^8.0|^9.0|^10.0", 8018 "illuminate/console": "^8.0|^9.0|^10.0",
7644 "illuminate/contracts": "^8.0|^9.0|^10.0", 8019 "illuminate/contracts": "^8.0|^9.0|^10.0",
7645 "illuminate/support": "^8.0|^9.0|^10.0", 8020 "illuminate/support": "^8.0|^9.0|^10.0",
7646 "php": "^8.0", 8021 "php": "^8.0",
7647 "symfony/yaml": "^6.0" 8022 "symfony/yaml": "^6.0"
7648 }, 8023 },
7649 "require-dev": { 8024 "require-dev": {
7650 "orchestra/testbench": "^6.0|^7.0|^8.0", 8025 "orchestra/testbench": "^6.0|^7.0|^8.0",
7651 "phpstan/phpstan": "^1.10" 8026 "phpstan/phpstan": "^1.10"
7652 }, 8027 },
7653 "bin": [ 8028 "bin": [
7654 "bin/sail" 8029 "bin/sail"
7655 ], 8030 ],
7656 "type": "library", 8031 "type": "library",
7657 "extra": { 8032 "extra": {
7658 "branch-alias": { 8033 "branch-alias": {
7659 "dev-master": "1.x-dev" 8034 "dev-master": "1.x-dev"
7660 }, 8035 },
7661 "laravel": { 8036 "laravel": {
7662 "providers": [ 8037 "providers": [
7663 "Laravel\\Sail\\SailServiceProvider" 8038 "Laravel\\Sail\\SailServiceProvider"
7664 ] 8039 ]
7665 } 8040 }
7666 }, 8041 },
7667 "autoload": { 8042 "autoload": {
7668 "psr-4": { 8043 "psr-4": {
7669 "Laravel\\Sail\\": "src/" 8044 "Laravel\\Sail\\": "src/"
7670 } 8045 }
7671 }, 8046 },
7672 "notification-url": "https://packagist.org/downloads/", 8047 "notification-url": "https://packagist.org/downloads/",
7673 "license": [ 8048 "license": [
7674 "MIT" 8049 "MIT"
7675 ], 8050 ],
7676 "authors": [ 8051 "authors": [
7677 { 8052 {
7678 "name": "Taylor Otwell", 8053 "name": "Taylor Otwell",
7679 "email": "taylor@laravel.com" 8054 "email": "taylor@laravel.com"
7680 } 8055 }
7681 ], 8056 ],
7682 "description": "Docker files for running a basic Laravel application.", 8057 "description": "Docker files for running a basic Laravel application.",
7683 "keywords": [ 8058 "keywords": [
7684 "docker", 8059 "docker",
7685 "laravel" 8060 "laravel"
7686 ], 8061 ],
7687 "support": { 8062 "support": {
7688 "issues": "https://github.com/laravel/sail/issues", 8063 "issues": "https://github.com/laravel/sail/issues",
7689 "source": "https://github.com/laravel/sail" 8064 "source": "https://github.com/laravel/sail"
7690 }, 8065 },
7691 "time": "2023-05-04T14:52:56+00:00" 8066 "time": "2023-05-04T14:52:56+00:00"
7692 }, 8067 },
7693 { 8068 {
7694 "name": "maximebf/debugbar", 8069 "name": "maximebf/debugbar",
7695 "version": "v1.19.0", 8070 "version": "v1.19.0",
7696 "source": { 8071 "source": {
7697 "type": "git", 8072 "type": "git",
7698 "url": "https://github.com/maximebf/php-debugbar.git", 8073 "url": "https://github.com/maximebf/php-debugbar.git",
7699 "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e" 8074 "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e"
7700 }, 8075 },
7701 "dist": { 8076 "dist": {
7702 "type": "zip", 8077 "type": "zip",
7703 "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30f65f18f7ac086255a77a079f8e0dcdd35e828e", 8078 "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30f65f18f7ac086255a77a079f8e0dcdd35e828e",
7704 "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e", 8079 "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e",
7705 "shasum": "" 8080 "shasum": ""
7706 }, 8081 },
7707 "require": { 8082 "require": {
7708 "php": "^7.1|^8", 8083 "php": "^7.1|^8",
7709 "psr/log": "^1|^2|^3", 8084 "psr/log": "^1|^2|^3",
7710 "symfony/var-dumper": "^4|^5|^6" 8085 "symfony/var-dumper": "^4|^5|^6"
7711 }, 8086 },
7712 "require-dev": { 8087 "require-dev": {
7713 "phpunit/phpunit": ">=7.5.20 <10.0", 8088 "phpunit/phpunit": ">=7.5.20 <10.0",
7714 "twig/twig": "^1.38|^2.7|^3.0" 8089 "twig/twig": "^1.38|^2.7|^3.0"
7715 }, 8090 },
7716 "suggest": { 8091 "suggest": {
7717 "kriswallsmith/assetic": "The best way to manage assets", 8092 "kriswallsmith/assetic": "The best way to manage assets",
7718 "monolog/monolog": "Log using Monolog", 8093 "monolog/monolog": "Log using Monolog",
7719 "predis/predis": "Redis storage" 8094 "predis/predis": "Redis storage"
7720 }, 8095 },
7721 "type": "library", 8096 "type": "library",
7722 "extra": { 8097 "extra": {
7723 "branch-alias": { 8098 "branch-alias": {
7724 "dev-master": "1.18-dev" 8099 "dev-master": "1.18-dev"
7725 } 8100 }
7726 }, 8101 },
7727 "autoload": { 8102 "autoload": {
7728 "psr-4": { 8103 "psr-4": {
7729 "DebugBar\\": "src/DebugBar/" 8104 "DebugBar\\": "src/DebugBar/"
7730 } 8105 }
7731 }, 8106 },
7732 "notification-url": "https://packagist.org/downloads/", 8107 "notification-url": "https://packagist.org/downloads/",
7733 "license": [ 8108 "license": [
7734 "MIT" 8109 "MIT"
7735 ], 8110 ],
7736 "authors": [ 8111 "authors": [
7737 { 8112 {
7738 "name": "Maxime Bouroumeau-Fuseau", 8113 "name": "Maxime Bouroumeau-Fuseau",
7739 "email": "maxime.bouroumeau@gmail.com", 8114 "email": "maxime.bouroumeau@gmail.com",
7740 "homepage": "http://maximebf.com" 8115 "homepage": "http://maximebf.com"
7741 }, 8116 },
7742 { 8117 {
7743 "name": "Barry vd. Heuvel", 8118 "name": "Barry vd. Heuvel",
7744 "email": "barryvdh@gmail.com" 8119 "email": "barryvdh@gmail.com"
7745 } 8120 }
7746 ], 8121 ],
7747 "description": "Debug bar in the browser for php application", 8122 "description": "Debug bar in the browser for php application",
7748 "homepage": "https://github.com/maximebf/php-debugbar", 8123 "homepage": "https://github.com/maximebf/php-debugbar",
7749 "keywords": [ 8124 "keywords": [
7750 "debug", 8125 "debug",
7751 "debugbar" 8126 "debugbar"
7752 ], 8127 ],
7753 "support": { 8128 "support": {
7754 "issues": "https://github.com/maximebf/php-debugbar/issues", 8129 "issues": "https://github.com/maximebf/php-debugbar/issues",
7755 "source": "https://github.com/maximebf/php-debugbar/tree/v1.19.0" 8130 "source": "https://github.com/maximebf/php-debugbar/tree/v1.19.0"
7756 }, 8131 },
7757 "time": "2023-09-19T19:53:10+00:00" 8132 "time": "2023-09-19T19:53:10+00:00"
7758 }, 8133 },
7759 { 8134 {
7760 "name": "mockery/mockery", 8135 "name": "mockery/mockery",
7761 "version": "1.5.1", 8136 "version": "1.5.1",
7762 "source": { 8137 "source": {
7763 "type": "git", 8138 "type": "git",
7764 "url": "https://github.com/mockery/mockery.git", 8139 "url": "https://github.com/mockery/mockery.git",
7765 "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e" 8140 "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
7766 }, 8141 },
7767 "dist": { 8142 "dist": {
7768 "type": "zip", 8143 "type": "zip",
7769 "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e", 8144 "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
7770 "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e", 8145 "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
7771 "shasum": "" 8146 "shasum": ""
7772 }, 8147 },
7773 "require": { 8148 "require": {
7774 "hamcrest/hamcrest-php": "^2.0.1", 8149 "hamcrest/hamcrest-php": "^2.0.1",
7775 "lib-pcre": ">=7.0", 8150 "lib-pcre": ">=7.0",
7776 "php": "^7.3 || ^8.0" 8151 "php": "^7.3 || ^8.0"
7777 }, 8152 },
7778 "conflict": { 8153 "conflict": {
7779 "phpunit/phpunit": "<8.0" 8154 "phpunit/phpunit": "<8.0"
7780 }, 8155 },
7781 "require-dev": { 8156 "require-dev": {
7782 "phpunit/phpunit": "^8.5 || ^9.3" 8157 "phpunit/phpunit": "^8.5 || ^9.3"
7783 }, 8158 },
7784 "type": "library", 8159 "type": "library",
7785 "extra": { 8160 "extra": {
7786 "branch-alias": { 8161 "branch-alias": {
7787 "dev-master": "1.4.x-dev" 8162 "dev-master": "1.4.x-dev"
7788 } 8163 }
7789 }, 8164 },
7790 "autoload": { 8165 "autoload": {
7791 "psr-0": { 8166 "psr-0": {
7792 "Mockery": "library/" 8167 "Mockery": "library/"
7793 } 8168 }
7794 }, 8169 },
7795 "notification-url": "https://packagist.org/downloads/", 8170 "notification-url": "https://packagist.org/downloads/",
7796 "license": [ 8171 "license": [
7797 "BSD-3-Clause" 8172 "BSD-3-Clause"
7798 ], 8173 ],
7799 "authors": [ 8174 "authors": [
7800 { 8175 {
7801 "name": "Pádraic Brady", 8176 "name": "Pádraic Brady",
7802 "email": "padraic.brady@gmail.com", 8177 "email": "padraic.brady@gmail.com",
7803 "homepage": "http://blog.astrumfutura.com" 8178 "homepage": "http://blog.astrumfutura.com"
7804 }, 8179 },
7805 { 8180 {
7806 "name": "Dave Marshall", 8181 "name": "Dave Marshall",
7807 "email": "dave.marshall@atstsolutions.co.uk", 8182 "email": "dave.marshall@atstsolutions.co.uk",
7808 "homepage": "http://davedevelopment.co.uk" 8183 "homepage": "http://davedevelopment.co.uk"
7809 } 8184 }
7810 ], 8185 ],
7811 "description": "Mockery is a simple yet flexible PHP mock object framework", 8186 "description": "Mockery is a simple yet flexible PHP mock object framework",
7812 "homepage": "https://github.com/mockery/mockery", 8187 "homepage": "https://github.com/mockery/mockery",
7813 "keywords": [ 8188 "keywords": [
7814 "BDD", 8189 "BDD",
7815 "TDD", 8190 "TDD",
7816 "library", 8191 "library",
7817 "mock", 8192 "mock",
7818 "mock objects", 8193 "mock objects",
7819 "mockery", 8194 "mockery",
7820 "stub", 8195 "stub",
7821 "test", 8196 "test",
7822 "test double", 8197 "test double",
7823 "testing" 8198 "testing"
7824 ], 8199 ],
7825 "support": { 8200 "support": {
7826 "issues": "https://github.com/mockery/mockery/issues", 8201 "issues": "https://github.com/mockery/mockery/issues",
7827 "source": "https://github.com/mockery/mockery/tree/1.5.1" 8202 "source": "https://github.com/mockery/mockery/tree/1.5.1"
7828 }, 8203 },
7829 "time": "2022-09-07T15:32:08+00:00" 8204 "time": "2022-09-07T15:32:08+00:00"
7830 }, 8205 },
7831 { 8206 {
7832 "name": "myclabs/deep-copy", 8207 "name": "myclabs/deep-copy",
7833 "version": "1.11.1", 8208 "version": "1.11.1",
7834 "source": { 8209 "source": {
7835 "type": "git", 8210 "type": "git",
7836 "url": "https://github.com/myclabs/DeepCopy.git", 8211 "url": "https://github.com/myclabs/DeepCopy.git",
7837 "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" 8212 "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
7838 }, 8213 },
7839 "dist": { 8214 "dist": {
7840 "type": "zip", 8215 "type": "zip",
7841 "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", 8216 "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
7842 "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", 8217 "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
7843 "shasum": "" 8218 "shasum": ""
7844 }, 8219 },
7845 "require": { 8220 "require": {
7846 "php": "^7.1 || ^8.0" 8221 "php": "^7.1 || ^8.0"
7847 }, 8222 },
7848 "conflict": { 8223 "conflict": {
7849 "doctrine/collections": "<1.6.8", 8224 "doctrine/collections": "<1.6.8",
7850 "doctrine/common": "<2.13.3 || >=3,<3.2.2" 8225 "doctrine/common": "<2.13.3 || >=3,<3.2.2"
7851 }, 8226 },
7852 "require-dev": { 8227 "require-dev": {
7853 "doctrine/collections": "^1.6.8", 8228 "doctrine/collections": "^1.6.8",
7854 "doctrine/common": "^2.13.3 || ^3.2.2", 8229 "doctrine/common": "^2.13.3 || ^3.2.2",
7855 "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" 8230 "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
7856 }, 8231 },
7857 "type": "library", 8232 "type": "library",
7858 "autoload": { 8233 "autoload": {
7859 "files": [ 8234 "files": [
7860 "src/DeepCopy/deep_copy.php" 8235 "src/DeepCopy/deep_copy.php"
7861 ], 8236 ],
7862 "psr-4": { 8237 "psr-4": {
7863 "DeepCopy\\": "src/DeepCopy/" 8238 "DeepCopy\\": "src/DeepCopy/"
7864 } 8239 }
7865 }, 8240 },
7866 "notification-url": "https://packagist.org/downloads/", 8241 "notification-url": "https://packagist.org/downloads/",
7867 "license": [ 8242 "license": [
7868 "MIT" 8243 "MIT"
7869 ], 8244 ],
7870 "description": "Create deep copies (clones) of your objects", 8245 "description": "Create deep copies (clones) of your objects",
7871 "keywords": [ 8246 "keywords": [
7872 "clone", 8247 "clone",
7873 "copy", 8248 "copy",
7874 "duplicate", 8249 "duplicate",
7875 "object", 8250 "object",
7876 "object graph" 8251 "object graph"
7877 ], 8252 ],
7878 "support": { 8253 "support": {
7879 "issues": "https://github.com/myclabs/DeepCopy/issues", 8254 "issues": "https://github.com/myclabs/DeepCopy/issues",
7880 "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" 8255 "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
7881 }, 8256 },
7882 "funding": [ 8257 "funding": [
7883 { 8258 {
7884 "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", 8259 "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
7885 "type": "tidelift" 8260 "type": "tidelift"
7886 } 8261 }
7887 ], 8262 ],
7888 "time": "2023-03-08T13:26:56+00:00" 8263 "time": "2023-03-08T13:26:56+00:00"
7889 }, 8264 },
7890 { 8265 {
7891 "name": "nunomaduro/collision", 8266 "name": "nunomaduro/collision",
7892 "version": "v6.4.0", 8267 "version": "v6.4.0",
7893 "source": { 8268 "source": {
7894 "type": "git", 8269 "type": "git",
7895 "url": "https://github.com/nunomaduro/collision.git", 8270 "url": "https://github.com/nunomaduro/collision.git",
7896 "reference": "f05978827b9343cba381ca05b8c7deee346b6015" 8271 "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
7897 }, 8272 },
7898 "dist": { 8273 "dist": {
7899 "type": "zip", 8274 "type": "zip",
7900 "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015", 8275 "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
7901 "reference": "f05978827b9343cba381ca05b8c7deee346b6015", 8276 "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
7902 "shasum": "" 8277 "shasum": ""
7903 }, 8278 },
7904 "require": { 8279 "require": {
7905 "filp/whoops": "^2.14.5", 8280 "filp/whoops": "^2.14.5",
7906 "php": "^8.0.0", 8281 "php": "^8.0.0",
7907 "symfony/console": "^6.0.2" 8282 "symfony/console": "^6.0.2"
7908 }, 8283 },
7909 "require-dev": { 8284 "require-dev": {
7910 "brianium/paratest": "^6.4.1", 8285 "brianium/paratest": "^6.4.1",
7911 "laravel/framework": "^9.26.1", 8286 "laravel/framework": "^9.26.1",
7912 "laravel/pint": "^1.1.1", 8287 "laravel/pint": "^1.1.1",
7913 "nunomaduro/larastan": "^1.0.3", 8288 "nunomaduro/larastan": "^1.0.3",
7914 "nunomaduro/mock-final-classes": "^1.1.0", 8289 "nunomaduro/mock-final-classes": "^1.1.0",
7915 "orchestra/testbench": "^7.7", 8290 "orchestra/testbench": "^7.7",
7916 "phpunit/phpunit": "^9.5.23", 8291 "phpunit/phpunit": "^9.5.23",
7917 "spatie/ignition": "^1.4.1" 8292 "spatie/ignition": "^1.4.1"
7918 }, 8293 },
7919 "type": "library", 8294 "type": "library",
7920 "extra": { 8295 "extra": {
7921 "branch-alias": { 8296 "branch-alias": {
7922 "dev-develop": "6.x-dev" 8297 "dev-develop": "6.x-dev"
7923 }, 8298 },
7924 "laravel": { 8299 "laravel": {
7925 "providers": [ 8300 "providers": [
7926 "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" 8301 "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
7927 ] 8302 ]
7928 } 8303 }
7929 }, 8304 },
7930 "autoload": { 8305 "autoload": {
7931 "psr-4": { 8306 "psr-4": {
7932 "NunoMaduro\\Collision\\": "src/" 8307 "NunoMaduro\\Collision\\": "src/"
7933 } 8308 }
7934 }, 8309 },
7935 "notification-url": "https://packagist.org/downloads/", 8310 "notification-url": "https://packagist.org/downloads/",
7936 "license": [ 8311 "license": [
7937 "MIT" 8312 "MIT"
7938 ], 8313 ],
7939 "authors": [ 8314 "authors": [
7940 { 8315 {
7941 "name": "Nuno Maduro", 8316 "name": "Nuno Maduro",
7942 "email": "enunomaduro@gmail.com" 8317 "email": "enunomaduro@gmail.com"
7943 } 8318 }
7944 ], 8319 ],
7945 "description": "Cli error handling for console/command-line PHP applications.", 8320 "description": "Cli error handling for console/command-line PHP applications.",
7946 "keywords": [ 8321 "keywords": [
7947 "artisan", 8322 "artisan",
7948 "cli", 8323 "cli",
7949 "command-line", 8324 "command-line",
7950 "console", 8325 "console",
7951 "error", 8326 "error",
7952 "handling", 8327 "handling",
7953 "laravel", 8328 "laravel",
7954 "laravel-zero", 8329 "laravel-zero",
7955 "php", 8330 "php",
7956 "symfony" 8331 "symfony"
7957 ], 8332 ],
7958 "support": { 8333 "support": {
7959 "issues": "https://github.com/nunomaduro/collision/issues", 8334 "issues": "https://github.com/nunomaduro/collision/issues",
7960 "source": "https://github.com/nunomaduro/collision" 8335 "source": "https://github.com/nunomaduro/collision"
7961 }, 8336 },
7962 "funding": [ 8337 "funding": [
7963 { 8338 {
7964 "url": "https://www.paypal.com/paypalme/enunomaduro", 8339 "url": "https://www.paypal.com/paypalme/enunomaduro",
7965 "type": "custom" 8340 "type": "custom"
7966 }, 8341 },
7967 { 8342 {
7968 "url": "https://github.com/nunomaduro", 8343 "url": "https://github.com/nunomaduro",
7969 "type": "github" 8344 "type": "github"
7970 }, 8345 },
7971 { 8346 {
7972 "url": "https://www.patreon.com/nunomaduro", 8347 "url": "https://www.patreon.com/nunomaduro",
7973 "type": "patreon" 8348 "type": "patreon"
7974 } 8349 }
7975 ], 8350 ],
7976 "time": "2023-01-03T12:54:54+00:00" 8351 "time": "2023-01-03T12:54:54+00:00"
7977 }, 8352 },
7978 { 8353 {
7979 "name": "phar-io/manifest", 8354 "name": "phar-io/manifest",
7980 "version": "2.0.3", 8355 "version": "2.0.3",
7981 "source": { 8356 "source": {
7982 "type": "git", 8357 "type": "git",
7983 "url": "https://github.com/phar-io/manifest.git", 8358 "url": "https://github.com/phar-io/manifest.git",
7984 "reference": "97803eca37d319dfa7826cc2437fc020857acb53" 8359 "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
7985 }, 8360 },
7986 "dist": { 8361 "dist": {
7987 "type": "zip", 8362 "type": "zip",
7988 "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", 8363 "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
7989 "reference": "97803eca37d319dfa7826cc2437fc020857acb53", 8364 "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
7990 "shasum": "" 8365 "shasum": ""
7991 }, 8366 },
7992 "require": { 8367 "require": {
7993 "ext-dom": "*", 8368 "ext-dom": "*",
7994 "ext-phar": "*", 8369 "ext-phar": "*",
7995 "ext-xmlwriter": "*", 8370 "ext-xmlwriter": "*",
7996 "phar-io/version": "^3.0.1", 8371 "phar-io/version": "^3.0.1",
7997 "php": "^7.2 || ^8.0" 8372 "php": "^7.2 || ^8.0"
7998 }, 8373 },
7999 "type": "library", 8374 "type": "library",
8000 "extra": { 8375 "extra": {
8001 "branch-alias": { 8376 "branch-alias": {
8002 "dev-master": "2.0.x-dev" 8377 "dev-master": "2.0.x-dev"
8003 } 8378 }
8004 }, 8379 },
8005 "autoload": { 8380 "autoload": {
8006 "classmap": [ 8381 "classmap": [
8007 "src/" 8382 "src/"
8008 ] 8383 ]
8009 }, 8384 },
8010 "notification-url": "https://packagist.org/downloads/", 8385 "notification-url": "https://packagist.org/downloads/",
8011 "license": [ 8386 "license": [
8012 "BSD-3-Clause" 8387 "BSD-3-Clause"
8013 ], 8388 ],
8014 "authors": [ 8389 "authors": [
8015 { 8390 {
8016 "name": "Arne Blankerts", 8391 "name": "Arne Blankerts",
8017 "email": "arne@blankerts.de", 8392 "email": "arne@blankerts.de",
8018 "role": "Developer" 8393 "role": "Developer"
8019 }, 8394 },
8020 { 8395 {
8021 "name": "Sebastian Heuer", 8396 "name": "Sebastian Heuer",
8022 "email": "sebastian@phpeople.de", 8397 "email": "sebastian@phpeople.de",
8023 "role": "Developer" 8398 "role": "Developer"
8024 }, 8399 },
8025 { 8400 {
8026 "name": "Sebastian Bergmann", 8401 "name": "Sebastian Bergmann",
8027 "email": "sebastian@phpunit.de", 8402 "email": "sebastian@phpunit.de",
8028 "role": "Developer" 8403 "role": "Developer"
8029 } 8404 }
8030 ], 8405 ],
8031 "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", 8406 "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
8032 "support": { 8407 "support": {
8033 "issues": "https://github.com/phar-io/manifest/issues", 8408 "issues": "https://github.com/phar-io/manifest/issues",
8034 "source": "https://github.com/phar-io/manifest/tree/2.0.3" 8409 "source": "https://github.com/phar-io/manifest/tree/2.0.3"
8035 }, 8410 },
8036 "time": "2021-07-20T11:28:43+00:00" 8411 "time": "2021-07-20T11:28:43+00:00"
8037 }, 8412 },
8038 { 8413 {
8039 "name": "phar-io/version", 8414 "name": "phar-io/version",
8040 "version": "3.2.1", 8415 "version": "3.2.1",
8041 "source": { 8416 "source": {
8042 "type": "git", 8417 "type": "git",
8043 "url": "https://github.com/phar-io/version.git", 8418 "url": "https://github.com/phar-io/version.git",
8044 "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" 8419 "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
8045 }, 8420 },
8046 "dist": { 8421 "dist": {
8047 "type": "zip", 8422 "type": "zip",
8048 "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", 8423 "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
8049 "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", 8424 "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
8050 "shasum": "" 8425 "shasum": ""
8051 }, 8426 },
8052 "require": { 8427 "require": {
8053 "php": "^7.2 || ^8.0" 8428 "php": "^7.2 || ^8.0"
8054 }, 8429 },
8055 "type": "library", 8430 "type": "library",
8056 "autoload": { 8431 "autoload": {
8057 "classmap": [ 8432 "classmap": [
8058 "src/" 8433 "src/"
8059 ] 8434 ]
8060 }, 8435 },
8061 "notification-url": "https://packagist.org/downloads/", 8436 "notification-url": "https://packagist.org/downloads/",
8062 "license": [ 8437 "license": [
8063 "BSD-3-Clause" 8438 "BSD-3-Clause"
8064 ], 8439 ],
8065 "authors": [ 8440 "authors": [
8066 { 8441 {
8067 "name": "Arne Blankerts", 8442 "name": "Arne Blankerts",
8068 "email": "arne@blankerts.de", 8443 "email": "arne@blankerts.de",
8069 "role": "Developer" 8444 "role": "Developer"
8070 }, 8445 },
8071 { 8446 {
8072 "name": "Sebastian Heuer", 8447 "name": "Sebastian Heuer",
8073 "email": "sebastian@phpeople.de", 8448 "email": "sebastian@phpeople.de",
8074 "role": "Developer" 8449 "role": "Developer"
8075 }, 8450 },
8076 { 8451 {
8077 "name": "Sebastian Bergmann", 8452 "name": "Sebastian Bergmann",
8078 "email": "sebastian@phpunit.de", 8453 "email": "sebastian@phpunit.de",
8079 "role": "Developer" 8454 "role": "Developer"
8080 } 8455 }
8081 ], 8456 ],
8082 "description": "Library for handling version information and constraints", 8457 "description": "Library for handling version information and constraints",
8083 "support": { 8458 "support": {
8084 "issues": "https://github.com/phar-io/version/issues", 8459 "issues": "https://github.com/phar-io/version/issues",
8085 "source": "https://github.com/phar-io/version/tree/3.2.1" 8460 "source": "https://github.com/phar-io/version/tree/3.2.1"
8086 }, 8461 },
8087 "time": "2022-02-21T01:04:05+00:00" 8462 "time": "2022-02-21T01:04:05+00:00"
8088 }, 8463 },
8089 { 8464 {
8090 "name": "phpunit/php-code-coverage", 8465 "name": "phpunit/php-code-coverage",
8091 "version": "9.2.26", 8466 "version": "9.2.26",
8092 "source": { 8467 "source": {
8093 "type": "git", 8468 "type": "git",
8094 "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 8469 "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
8095 "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1" 8470 "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
8096 }, 8471 },
8097 "dist": { 8472 "dist": {
8098 "type": "zip", 8473 "type": "zip",
8099 "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", 8474 "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
8100 "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", 8475 "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
8101 "shasum": "" 8476 "shasum": ""
8102 }, 8477 },
8103 "require": { 8478 "require": {
8104 "ext-dom": "*", 8479 "ext-dom": "*",
8105 "ext-libxml": "*", 8480 "ext-libxml": "*",
8106 "ext-xmlwriter": "*", 8481 "ext-xmlwriter": "*",
8107 "nikic/php-parser": "^4.15", 8482 "nikic/php-parser": "^4.15",
8108 "php": ">=7.3", 8483 "php": ">=7.3",
8109 "phpunit/php-file-iterator": "^3.0.3", 8484 "phpunit/php-file-iterator": "^3.0.3",
8110 "phpunit/php-text-template": "^2.0.2", 8485 "phpunit/php-text-template": "^2.0.2",
8111 "sebastian/code-unit-reverse-lookup": "^2.0.2", 8486 "sebastian/code-unit-reverse-lookup": "^2.0.2",
8112 "sebastian/complexity": "^2.0", 8487 "sebastian/complexity": "^2.0",
8113 "sebastian/environment": "^5.1.2", 8488 "sebastian/environment": "^5.1.2",
8114 "sebastian/lines-of-code": "^1.0.3", 8489 "sebastian/lines-of-code": "^1.0.3",
8115 "sebastian/version": "^3.0.1", 8490 "sebastian/version": "^3.0.1",
8116 "theseer/tokenizer": "^1.2.0" 8491 "theseer/tokenizer": "^1.2.0"
8117 }, 8492 },
8118 "require-dev": { 8493 "require-dev": {
8119 "phpunit/phpunit": "^9.3" 8494 "phpunit/phpunit": "^9.3"
8120 }, 8495 },
8121 "suggest": { 8496 "suggest": {
8122 "ext-pcov": "PHP extension that provides line coverage", 8497 "ext-pcov": "PHP extension that provides line coverage",
8123 "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" 8498 "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
8124 }, 8499 },
8125 "type": "library", 8500 "type": "library",
8126 "extra": { 8501 "extra": {
8127 "branch-alias": { 8502 "branch-alias": {
8128 "dev-master": "9.2-dev" 8503 "dev-master": "9.2-dev"
8129 } 8504 }
8130 }, 8505 },
8131 "autoload": { 8506 "autoload": {
8132 "classmap": [ 8507 "classmap": [
8133 "src/" 8508 "src/"
8134 ] 8509 ]
8135 }, 8510 },
8136 "notification-url": "https://packagist.org/downloads/", 8511 "notification-url": "https://packagist.org/downloads/",
8137 "license": [ 8512 "license": [
8138 "BSD-3-Clause" 8513 "BSD-3-Clause"
8139 ], 8514 ],
8140 "authors": [ 8515 "authors": [
8141 { 8516 {
8142 "name": "Sebastian Bergmann", 8517 "name": "Sebastian Bergmann",
8143 "email": "sebastian@phpunit.de", 8518 "email": "sebastian@phpunit.de",
8144 "role": "lead" 8519 "role": "lead"
8145 } 8520 }
8146 ], 8521 ],
8147 "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 8522 "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
8148 "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 8523 "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
8149 "keywords": [ 8524 "keywords": [
8150 "coverage", 8525 "coverage",
8151 "testing", 8526 "testing",
8152 "xunit" 8527 "xunit"
8153 ], 8528 ],
8154 "support": { 8529 "support": {
8155 "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", 8530 "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
8156 "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26" 8531 "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
8157 }, 8532 },
8158 "funding": [ 8533 "funding": [
8159 { 8534 {
8160 "url": "https://github.com/sebastianbergmann", 8535 "url": "https://github.com/sebastianbergmann",
8161 "type": "github" 8536 "type": "github"
8162 } 8537 }
8163 ], 8538 ],
8164 "time": "2023-03-06T12:58:08+00:00" 8539 "time": "2023-03-06T12:58:08+00:00"
8165 }, 8540 },
8166 { 8541 {
8167 "name": "phpunit/php-file-iterator", 8542 "name": "phpunit/php-file-iterator",
8168 "version": "3.0.6", 8543 "version": "3.0.6",
8169 "source": { 8544 "source": {
8170 "type": "git", 8545 "type": "git",
8171 "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 8546 "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
8172 "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" 8547 "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
8173 }, 8548 },
8174 "dist": { 8549 "dist": {
8175 "type": "zip", 8550 "type": "zip",
8176 "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", 8551 "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
8177 "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", 8552 "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
8178 "shasum": "" 8553 "shasum": ""
8179 }, 8554 },
8180 "require": { 8555 "require": {
8181 "php": ">=7.3" 8556 "php": ">=7.3"
8182 }, 8557 },
8183 "require-dev": { 8558 "require-dev": {
8184 "phpunit/phpunit": "^9.3" 8559 "phpunit/phpunit": "^9.3"
8185 }, 8560 },
8186 "type": "library", 8561 "type": "library",
8187 "extra": { 8562 "extra": {
8188 "branch-alias": { 8563 "branch-alias": {
8189 "dev-master": "3.0-dev" 8564 "dev-master": "3.0-dev"
8190 } 8565 }
8191 }, 8566 },
8192 "autoload": { 8567 "autoload": {
8193 "classmap": [ 8568 "classmap": [
8194 "src/" 8569 "src/"
8195 ] 8570 ]
8196 }, 8571 },
8197 "notification-url": "https://packagist.org/downloads/", 8572 "notification-url": "https://packagist.org/downloads/",
8198 "license": [ 8573 "license": [
8199 "BSD-3-Clause" 8574 "BSD-3-Clause"
8200 ], 8575 ],
8201 "authors": [ 8576 "authors": [
8202 { 8577 {
8203 "name": "Sebastian Bergmann", 8578 "name": "Sebastian Bergmann",
8204 "email": "sebastian@phpunit.de", 8579 "email": "sebastian@phpunit.de",
8205 "role": "lead" 8580 "role": "lead"
8206 } 8581 }
8207 ], 8582 ],
8208 "description": "FilterIterator implementation that filters files based on a list of suffixes.", 8583 "description": "FilterIterator implementation that filters files based on a list of suffixes.",
8209 "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 8584 "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
8210 "keywords": [ 8585 "keywords": [
8211 "filesystem", 8586 "filesystem",
8212 "iterator" 8587 "iterator"
8213 ], 8588 ],
8214 "support": { 8589 "support": {
8215 "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", 8590 "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
8216 "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" 8591 "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
8217 }, 8592 },
8218 "funding": [ 8593 "funding": [
8219 { 8594 {
8220 "url": "https://github.com/sebastianbergmann", 8595 "url": "https://github.com/sebastianbergmann",
8221 "type": "github" 8596 "type": "github"
8222 } 8597 }
8223 ], 8598 ],
8224 "time": "2021-12-02T12:48:52+00:00" 8599 "time": "2021-12-02T12:48:52+00:00"
8225 }, 8600 },
8226 { 8601 {
8227 "name": "phpunit/php-invoker", 8602 "name": "phpunit/php-invoker",
8228 "version": "3.1.1", 8603 "version": "3.1.1",
8229 "source": { 8604 "source": {
8230 "type": "git", 8605 "type": "git",
8231 "url": "https://github.com/sebastianbergmann/php-invoker.git", 8606 "url": "https://github.com/sebastianbergmann/php-invoker.git",
8232 "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" 8607 "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
8233 }, 8608 },
8234 "dist": { 8609 "dist": {
8235 "type": "zip", 8610 "type": "zip",
8236 "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", 8611 "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
8237 "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", 8612 "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
8238 "shasum": "" 8613 "shasum": ""
8239 }, 8614 },
8240 "require": { 8615 "require": {
8241 "php": ">=7.3" 8616 "php": ">=7.3"
8242 }, 8617 },
8243 "require-dev": { 8618 "require-dev": {
8244 "ext-pcntl": "*", 8619 "ext-pcntl": "*",
8245 "phpunit/phpunit": "^9.3" 8620 "phpunit/phpunit": "^9.3"
8246 }, 8621 },
8247 "suggest": { 8622 "suggest": {
8248 "ext-pcntl": "*" 8623 "ext-pcntl": "*"
8249 }, 8624 },
8250 "type": "library", 8625 "type": "library",
8251 "extra": { 8626 "extra": {
8252 "branch-alias": { 8627 "branch-alias": {
8253 "dev-master": "3.1-dev" 8628 "dev-master": "3.1-dev"
8254 } 8629 }
8255 }, 8630 },
8256 "autoload": { 8631 "autoload": {
8257 "classmap": [ 8632 "classmap": [
8258 "src/" 8633 "src/"
8259 ] 8634 ]
8260 }, 8635 },
8261 "notification-url": "https://packagist.org/downloads/", 8636 "notification-url": "https://packagist.org/downloads/",
8262 "license": [ 8637 "license": [
8263 "BSD-3-Clause" 8638 "BSD-3-Clause"
8264 ], 8639 ],
8265 "authors": [ 8640 "authors": [
8266 { 8641 {
8267 "name": "Sebastian Bergmann", 8642 "name": "Sebastian Bergmann",
8268 "email": "sebastian@phpunit.de", 8643 "email": "sebastian@phpunit.de",
8269 "role": "lead" 8644 "role": "lead"
8270 } 8645 }
8271 ], 8646 ],
8272 "description": "Invoke callables with a timeout", 8647 "description": "Invoke callables with a timeout",
8273 "homepage": "https://github.com/sebastianbergmann/php-invoker/", 8648 "homepage": "https://github.com/sebastianbergmann/php-invoker/",
8274 "keywords": [ 8649 "keywords": [
8275 "process" 8650 "process"
8276 ], 8651 ],
8277 "support": { 8652 "support": {
8278 "issues": "https://github.com/sebastianbergmann/php-invoker/issues", 8653 "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
8279 "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" 8654 "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
8280 }, 8655 },
8281 "funding": [ 8656 "funding": [
8282 { 8657 {
8283 "url": "https://github.com/sebastianbergmann", 8658 "url": "https://github.com/sebastianbergmann",
8284 "type": "github" 8659 "type": "github"
8285 } 8660 }
8286 ], 8661 ],
8287 "time": "2020-09-28T05:58:55+00:00" 8662 "time": "2020-09-28T05:58:55+00:00"
8288 }, 8663 },
8289 { 8664 {
8290 "name": "phpunit/php-text-template", 8665 "name": "phpunit/php-text-template",
8291 "version": "2.0.4", 8666 "version": "2.0.4",
8292 "source": { 8667 "source": {
8293 "type": "git", 8668 "type": "git",
8294 "url": "https://github.com/sebastianbergmann/php-text-template.git", 8669 "url": "https://github.com/sebastianbergmann/php-text-template.git",
8295 "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" 8670 "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
8296 }, 8671 },
8297 "dist": { 8672 "dist": {
8298 "type": "zip", 8673 "type": "zip",
8299 "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", 8674 "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
8300 "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", 8675 "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
8301 "shasum": "" 8676 "shasum": ""
8302 }, 8677 },
8303 "require": { 8678 "require": {
8304 "php": ">=7.3" 8679 "php": ">=7.3"
8305 }, 8680 },
8306 "require-dev": { 8681 "require-dev": {
8307 "phpunit/phpunit": "^9.3" 8682 "phpunit/phpunit": "^9.3"
8308 }, 8683 },
8309 "type": "library", 8684 "type": "library",
8310 "extra": { 8685 "extra": {
8311 "branch-alias": { 8686 "branch-alias": {
8312 "dev-master": "2.0-dev" 8687 "dev-master": "2.0-dev"
8313 } 8688 }
8314 }, 8689 },
8315 "autoload": { 8690 "autoload": {
8316 "classmap": [ 8691 "classmap": [
8317 "src/" 8692 "src/"
8318 ] 8693 ]
8319 }, 8694 },
8320 "notification-url": "https://packagist.org/downloads/", 8695 "notification-url": "https://packagist.org/downloads/",
8321 "license": [ 8696 "license": [
8322 "BSD-3-Clause" 8697 "BSD-3-Clause"
8323 ], 8698 ],
8324 "authors": [ 8699 "authors": [
8325 { 8700 {
8326 "name": "Sebastian Bergmann", 8701 "name": "Sebastian Bergmann",
8327 "email": "sebastian@phpunit.de", 8702 "email": "sebastian@phpunit.de",
8328 "role": "lead" 8703 "role": "lead"
8329 } 8704 }
8330 ], 8705 ],
8331 "description": "Simple template engine.", 8706 "description": "Simple template engine.",
8332 "homepage": "https://github.com/sebastianbergmann/php-text-template/", 8707 "homepage": "https://github.com/sebastianbergmann/php-text-template/",
8333 "keywords": [ 8708 "keywords": [
8334 "template" 8709 "template"
8335 ], 8710 ],
8336 "support": { 8711 "support": {
8337 "issues": "https://github.com/sebastianbergmann/php-text-template/issues", 8712 "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
8338 "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" 8713 "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
8339 }, 8714 },
8340 "funding": [ 8715 "funding": [
8341 { 8716 {
8342 "url": "https://github.com/sebastianbergmann", 8717 "url": "https://github.com/sebastianbergmann",
8343 "type": "github" 8718 "type": "github"
8344 } 8719 }
8345 ], 8720 ],
8346 "time": "2020-10-26T05:33:50+00:00" 8721 "time": "2020-10-26T05:33:50+00:00"
8347 }, 8722 },
8348 { 8723 {
8349 "name": "phpunit/php-timer", 8724 "name": "phpunit/php-timer",
8350 "version": "5.0.3", 8725 "version": "5.0.3",
8351 "source": { 8726 "source": {
8352 "type": "git", 8727 "type": "git",
8353 "url": "https://github.com/sebastianbergmann/php-timer.git", 8728 "url": "https://github.com/sebastianbergmann/php-timer.git",
8354 "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" 8729 "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
8355 }, 8730 },
8356 "dist": { 8731 "dist": {
8357 "type": "zip", 8732 "type": "zip",
8358 "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", 8733 "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
8359 "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", 8734 "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
8360 "shasum": "" 8735 "shasum": ""
8361 }, 8736 },
8362 "require": { 8737 "require": {
8363 "php": ">=7.3" 8738 "php": ">=7.3"
8364 }, 8739 },
8365 "require-dev": { 8740 "require-dev": {
8366 "phpunit/phpunit": "^9.3" 8741 "phpunit/phpunit": "^9.3"
8367 }, 8742 },
8368 "type": "library", 8743 "type": "library",
8369 "extra": { 8744 "extra": {
8370 "branch-alias": { 8745 "branch-alias": {
8371 "dev-master": "5.0-dev" 8746 "dev-master": "5.0-dev"
8372 } 8747 }
8373 }, 8748 },
8374 "autoload": { 8749 "autoload": {
8375 "classmap": [ 8750 "classmap": [
8376 "src/" 8751 "src/"
8377 ] 8752 ]
8378 }, 8753 },
8379 "notification-url": "https://packagist.org/downloads/", 8754 "notification-url": "https://packagist.org/downloads/",
8380 "license": [ 8755 "license": [
8381 "BSD-3-Clause" 8756 "BSD-3-Clause"
8382 ], 8757 ],
8383 "authors": [ 8758 "authors": [
8384 { 8759 {
8385 "name": "Sebastian Bergmann", 8760 "name": "Sebastian Bergmann",
8386 "email": "sebastian@phpunit.de", 8761 "email": "sebastian@phpunit.de",
8387 "role": "lead" 8762 "role": "lead"
8388 } 8763 }
8389 ], 8764 ],
8390 "description": "Utility class for timing", 8765 "description": "Utility class for timing",
8391 "homepage": "https://github.com/sebastianbergmann/php-timer/", 8766 "homepage": "https://github.com/sebastianbergmann/php-timer/",
8392 "keywords": [ 8767 "keywords": [
8393 "timer" 8768 "timer"
8394 ], 8769 ],
8395 "support": { 8770 "support": {
8396 "issues": "https://github.com/sebastianbergmann/php-timer/issues", 8771 "issues": "https://github.com/sebastianbergmann/php-timer/issues",
8397 "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" 8772 "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
8398 }, 8773 },
8399 "funding": [ 8774 "funding": [
8400 { 8775 {
8401 "url": "https://github.com/sebastianbergmann", 8776 "url": "https://github.com/sebastianbergmann",
8402 "type": "github" 8777 "type": "github"
8403 } 8778 }
8404 ], 8779 ],
8405 "time": "2020-10-26T13:16:10+00:00" 8780 "time": "2020-10-26T13:16:10+00:00"
8406 }, 8781 },
8407 { 8782 {
8408 "name": "phpunit/phpunit", 8783 "name": "phpunit/phpunit",
8409 "version": "9.6.8", 8784 "version": "9.6.8",
8410 "source": { 8785 "source": {
8411 "type": "git", 8786 "type": "git",
8412 "url": "https://github.com/sebastianbergmann/phpunit.git", 8787 "url": "https://github.com/sebastianbergmann/phpunit.git",
8413 "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e" 8788 "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e"
8414 }, 8789 },
8415 "dist": { 8790 "dist": {
8416 "type": "zip", 8791 "type": "zip",
8417 "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/17d621b3aff84d0c8b62539e269e87d8d5baa76e", 8792 "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/17d621b3aff84d0c8b62539e269e87d8d5baa76e",
8418 "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e", 8793 "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e",
8419 "shasum": "" 8794 "shasum": ""
8420 }, 8795 },
8421 "require": { 8796 "require": {
8422 "doctrine/instantiator": "^1.3.1 || ^2", 8797 "doctrine/instantiator": "^1.3.1 || ^2",
8423 "ext-dom": "*", 8798 "ext-dom": "*",
8424 "ext-json": "*", 8799 "ext-json": "*",
8425 "ext-libxml": "*", 8800 "ext-libxml": "*",
8426 "ext-mbstring": "*", 8801 "ext-mbstring": "*",
8427 "ext-xml": "*", 8802 "ext-xml": "*",
8428 "ext-xmlwriter": "*", 8803 "ext-xmlwriter": "*",
8429 "myclabs/deep-copy": "^1.10.1", 8804 "myclabs/deep-copy": "^1.10.1",
8430 "phar-io/manifest": "^2.0.3", 8805 "phar-io/manifest": "^2.0.3",
8431 "phar-io/version": "^3.0.2", 8806 "phar-io/version": "^3.0.2",
8432 "php": ">=7.3", 8807 "php": ">=7.3",
8433 "phpunit/php-code-coverage": "^9.2.13", 8808 "phpunit/php-code-coverage": "^9.2.13",
8434 "phpunit/php-file-iterator": "^3.0.5", 8809 "phpunit/php-file-iterator": "^3.0.5",
8435 "phpunit/php-invoker": "^3.1.1", 8810 "phpunit/php-invoker": "^3.1.1",
8436 "phpunit/php-text-template": "^2.0.3", 8811 "phpunit/php-text-template": "^2.0.3",
8437 "phpunit/php-timer": "^5.0.2", 8812 "phpunit/php-timer": "^5.0.2",
8438 "sebastian/cli-parser": "^1.0.1", 8813 "sebastian/cli-parser": "^1.0.1",
8439 "sebastian/code-unit": "^1.0.6", 8814 "sebastian/code-unit": "^1.0.6",
8440 "sebastian/comparator": "^4.0.8", 8815 "sebastian/comparator": "^4.0.8",
8441 "sebastian/diff": "^4.0.3", 8816 "sebastian/diff": "^4.0.3",
8442 "sebastian/environment": "^5.1.3", 8817 "sebastian/environment": "^5.1.3",
8443 "sebastian/exporter": "^4.0.5", 8818 "sebastian/exporter": "^4.0.5",
8444 "sebastian/global-state": "^5.0.1", 8819 "sebastian/global-state": "^5.0.1",
8445 "sebastian/object-enumerator": "^4.0.3", 8820 "sebastian/object-enumerator": "^4.0.3",
8446 "sebastian/resource-operations": "^3.0.3", 8821 "sebastian/resource-operations": "^3.0.3",
8447 "sebastian/type": "^3.2", 8822 "sebastian/type": "^3.2",
8448 "sebastian/version": "^3.0.2" 8823 "sebastian/version": "^3.0.2"
8449 }, 8824 },
8450 "suggest": { 8825 "suggest": {
8451 "ext-soap": "To be able to generate mocks based on WSDL files", 8826 "ext-soap": "To be able to generate mocks based on WSDL files",
8452 "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" 8827 "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
8453 }, 8828 },
8454 "bin": [ 8829 "bin": [
8455 "phpunit" 8830 "phpunit"
8456 ], 8831 ],
8457 "type": "library", 8832 "type": "library",
8458 "extra": { 8833 "extra": {
8459 "branch-alias": { 8834 "branch-alias": {
8460 "dev-master": "9.6-dev" 8835 "dev-master": "9.6-dev"
8461 } 8836 }
8462 }, 8837 },
8463 "autoload": { 8838 "autoload": {
8464 "files": [ 8839 "files": [
8465 "src/Framework/Assert/Functions.php" 8840 "src/Framework/Assert/Functions.php"
8466 ], 8841 ],
8467 "classmap": [ 8842 "classmap": [
8468 "src/" 8843 "src/"
8469 ] 8844 ]
8470 }, 8845 },
8471 "notification-url": "https://packagist.org/downloads/", 8846 "notification-url": "https://packagist.org/downloads/",
8472 "license": [ 8847 "license": [
8473 "BSD-3-Clause" 8848 "BSD-3-Clause"
8474 ], 8849 ],
8475 "authors": [ 8850 "authors": [
8476 { 8851 {
8477 "name": "Sebastian Bergmann", 8852 "name": "Sebastian Bergmann",
8478 "email": "sebastian@phpunit.de", 8853 "email": "sebastian@phpunit.de",
8479 "role": "lead" 8854 "role": "lead"
8480 } 8855 }
8481 ], 8856 ],
8482 "description": "The PHP Unit Testing framework.", 8857 "description": "The PHP Unit Testing framework.",
8483 "homepage": "https://phpunit.de/", 8858 "homepage": "https://phpunit.de/",
8484 "keywords": [ 8859 "keywords": [
8485 "phpunit", 8860 "phpunit",
8486 "testing", 8861 "testing",
8487 "xunit" 8862 "xunit"
8488 ], 8863 ],
8489 "support": { 8864 "support": {
8490 "issues": "https://github.com/sebastianbergmann/phpunit/issues", 8865 "issues": "https://github.com/sebastianbergmann/phpunit/issues",
8491 "security": "https://github.com/sebastianbergmann/phpunit/security/policy", 8866 "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
8492 "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.8" 8867 "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.8"
8493 }, 8868 },
8494 "funding": [ 8869 "funding": [
8495 { 8870 {
8496 "url": "https://phpunit.de/sponsors.html", 8871 "url": "https://phpunit.de/sponsors.html",
8497 "type": "custom" 8872 "type": "custom"
8498 }, 8873 },
8499 { 8874 {
8500 "url": "https://github.com/sebastianbergmann", 8875 "url": "https://github.com/sebastianbergmann",
8501 "type": "github" 8876 "type": "github"
8502 }, 8877 },
8503 { 8878 {
8504 "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", 8879 "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
8505 "type": "tidelift" 8880 "type": "tidelift"
8506 } 8881 }
8507 ], 8882 ],
8508 "time": "2023-05-11T05:14:45+00:00" 8883 "time": "2023-05-11T05:14:45+00:00"
8509 }, 8884 },
8510 { 8885 {
8511 "name": "sebastian/cli-parser", 8886 "name": "sebastian/cli-parser",
8512 "version": "1.0.1", 8887 "version": "1.0.1",
8513 "source": { 8888 "source": {
8514 "type": "git", 8889 "type": "git",
8515 "url": "https://github.com/sebastianbergmann/cli-parser.git", 8890 "url": "https://github.com/sebastianbergmann/cli-parser.git",
8516 "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" 8891 "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
8517 }, 8892 },
8518 "dist": { 8893 "dist": {
8519 "type": "zip", 8894 "type": "zip",
8520 "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", 8895 "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
8521 "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", 8896 "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
8522 "shasum": "" 8897 "shasum": ""
8523 }, 8898 },
8524 "require": { 8899 "require": {
8525 "php": ">=7.3" 8900 "php": ">=7.3"
8526 }, 8901 },
8527 "require-dev": { 8902 "require-dev": {
8528 "phpunit/phpunit": "^9.3" 8903 "phpunit/phpunit": "^9.3"
8529 }, 8904 },
8530 "type": "library", 8905 "type": "library",
8531 "extra": { 8906 "extra": {
8532 "branch-alias": { 8907 "branch-alias": {
8533 "dev-master": "1.0-dev" 8908 "dev-master": "1.0-dev"
8534 } 8909 }
8535 }, 8910 },
8536 "autoload": { 8911 "autoload": {
8537 "classmap": [ 8912 "classmap": [
8538 "src/" 8913 "src/"
8539 ] 8914 ]
8540 }, 8915 },
8541 "notification-url": "https://packagist.org/downloads/", 8916 "notification-url": "https://packagist.org/downloads/",
8542 "license": [ 8917 "license": [
8543 "BSD-3-Clause" 8918 "BSD-3-Clause"
8544 ], 8919 ],
8545 "authors": [ 8920 "authors": [
8546 { 8921 {
8547 "name": "Sebastian Bergmann", 8922 "name": "Sebastian Bergmann",
8548 "email": "sebastian@phpunit.de", 8923 "email": "sebastian@phpunit.de",
8549 "role": "lead" 8924 "role": "lead"
8550 } 8925 }
8551 ], 8926 ],
8552 "description": "Library for parsing CLI options", 8927 "description": "Library for parsing CLI options",
8553 "homepage": "https://github.com/sebastianbergmann/cli-parser", 8928 "homepage": "https://github.com/sebastianbergmann/cli-parser",
8554 "support": { 8929 "support": {
8555 "issues": "https://github.com/sebastianbergmann/cli-parser/issues", 8930 "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
8556 "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" 8931 "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
8557 }, 8932 },
8558 "funding": [ 8933 "funding": [
8559 { 8934 {
8560 "url": "https://github.com/sebastianbergmann", 8935 "url": "https://github.com/sebastianbergmann",
8561 "type": "github" 8936 "type": "github"
8562 } 8937 }
8563 ], 8938 ],
8564 "time": "2020-09-28T06:08:49+00:00" 8939 "time": "2020-09-28T06:08:49+00:00"
8565 }, 8940 },
8566 { 8941 {
8567 "name": "sebastian/code-unit", 8942 "name": "sebastian/code-unit",
8568 "version": "1.0.8", 8943 "version": "1.0.8",
8569 "source": { 8944 "source": {
8570 "type": "git", 8945 "type": "git",
8571 "url": "https://github.com/sebastianbergmann/code-unit.git", 8946 "url": "https://github.com/sebastianbergmann/code-unit.git",
8572 "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" 8947 "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
8573 }, 8948 },
8574 "dist": { 8949 "dist": {
8575 "type": "zip", 8950 "type": "zip",
8576 "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", 8951 "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
8577 "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", 8952 "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
8578 "shasum": "" 8953 "shasum": ""
8579 }, 8954 },
8580 "require": { 8955 "require": {
8581 "php": ">=7.3" 8956 "php": ">=7.3"
8582 }, 8957 },
8583 "require-dev": { 8958 "require-dev": {
8584 "phpunit/phpunit": "^9.3" 8959 "phpunit/phpunit": "^9.3"
8585 }, 8960 },
8586 "type": "library", 8961 "type": "library",
8587 "extra": { 8962 "extra": {
8588 "branch-alias": { 8963 "branch-alias": {
8589 "dev-master": "1.0-dev" 8964 "dev-master": "1.0-dev"
8590 } 8965 }
8591 }, 8966 },
8592 "autoload": { 8967 "autoload": {
8593 "classmap": [ 8968 "classmap": [
8594 "src/" 8969 "src/"
8595 ] 8970 ]
8596 }, 8971 },
8597 "notification-url": "https://packagist.org/downloads/", 8972 "notification-url": "https://packagist.org/downloads/",
8598 "license": [ 8973 "license": [
8599 "BSD-3-Clause" 8974 "BSD-3-Clause"
8600 ], 8975 ],
8601 "authors": [ 8976 "authors": [
8602 { 8977 {
8603 "name": "Sebastian Bergmann", 8978 "name": "Sebastian Bergmann",
8604 "email": "sebastian@phpunit.de", 8979 "email": "sebastian@phpunit.de",
8605 "role": "lead" 8980 "role": "lead"
8606 } 8981 }
8607 ], 8982 ],
8608 "description": "Collection of value objects that represent the PHP code units", 8983 "description": "Collection of value objects that represent the PHP code units",
8609 "homepage": "https://github.com/sebastianbergmann/code-unit", 8984 "homepage": "https://github.com/sebastianbergmann/code-unit",
8610 "support": { 8985 "support": {
8611 "issues": "https://github.com/sebastianbergmann/code-unit/issues", 8986 "issues": "https://github.com/sebastianbergmann/code-unit/issues",
8612 "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" 8987 "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
8613 }, 8988 },
8614 "funding": [ 8989 "funding": [
8615 { 8990 {
8616 "url": "https://github.com/sebastianbergmann", 8991 "url": "https://github.com/sebastianbergmann",
8617 "type": "github" 8992 "type": "github"
8618 } 8993 }
8619 ], 8994 ],
8620 "time": "2020-10-26T13:08:54+00:00" 8995 "time": "2020-10-26T13:08:54+00:00"
8621 }, 8996 },
8622 { 8997 {
8623 "name": "sebastian/code-unit-reverse-lookup", 8998 "name": "sebastian/code-unit-reverse-lookup",
8624 "version": "2.0.3", 8999 "version": "2.0.3",
8625 "source": { 9000 "source": {
8626 "type": "git", 9001 "type": "git",
8627 "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", 9002 "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
8628 "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" 9003 "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
8629 }, 9004 },
8630 "dist": { 9005 "dist": {
8631 "type": "zip", 9006 "type": "zip",
8632 "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", 9007 "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
8633 "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", 9008 "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
8634 "shasum": "" 9009 "shasum": ""
8635 }, 9010 },
8636 "require": { 9011 "require": {
8637 "php": ">=7.3" 9012 "php": ">=7.3"
8638 }, 9013 },
8639 "require-dev": { 9014 "require-dev": {
8640 "phpunit/phpunit": "^9.3" 9015 "phpunit/phpunit": "^9.3"
8641 }, 9016 },
8642 "type": "library", 9017 "type": "library",
8643 "extra": { 9018 "extra": {
8644 "branch-alias": { 9019 "branch-alias": {
8645 "dev-master": "2.0-dev" 9020 "dev-master": "2.0-dev"
8646 } 9021 }
8647 }, 9022 },
8648 "autoload": { 9023 "autoload": {
8649 "classmap": [ 9024 "classmap": [
8650 "src/" 9025 "src/"
8651 ] 9026 ]
8652 }, 9027 },
8653 "notification-url": "https://packagist.org/downloads/", 9028 "notification-url": "https://packagist.org/downloads/",
8654 "license": [ 9029 "license": [
8655 "BSD-3-Clause" 9030 "BSD-3-Clause"
8656 ], 9031 ],
8657 "authors": [ 9032 "authors": [
8658 { 9033 {
8659 "name": "Sebastian Bergmann", 9034 "name": "Sebastian Bergmann",
8660 "email": "sebastian@phpunit.de" 9035 "email": "sebastian@phpunit.de"
8661 } 9036 }
8662 ], 9037 ],
8663 "description": "Looks up which function or method a line of code belongs to", 9038 "description": "Looks up which function or method a line of code belongs to",
8664 "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", 9039 "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
8665 "support": { 9040 "support": {
8666 "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", 9041 "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
8667 "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" 9042 "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
8668 }, 9043 },
8669 "funding": [ 9044 "funding": [
8670 { 9045 {
8671 "url": "https://github.com/sebastianbergmann", 9046 "url": "https://github.com/sebastianbergmann",
8672 "type": "github" 9047 "type": "github"
8673 } 9048 }
8674 ], 9049 ],
8675 "time": "2020-09-28T05:30:19+00:00" 9050 "time": "2020-09-28T05:30:19+00:00"
8676 }, 9051 },
8677 { 9052 {
8678 "name": "sebastian/comparator", 9053 "name": "sebastian/comparator",
8679 "version": "4.0.8", 9054 "version": "4.0.8",
8680 "source": { 9055 "source": {
8681 "type": "git", 9056 "type": "git",
8682 "url": "https://github.com/sebastianbergmann/comparator.git", 9057 "url": "https://github.com/sebastianbergmann/comparator.git",
8683 "reference": "fa0f136dd2334583309d32b62544682ee972b51a" 9058 "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
8684 }, 9059 },
8685 "dist": { 9060 "dist": {
8686 "type": "zip", 9061 "type": "zip",
8687 "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", 9062 "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
8688 "reference": "fa0f136dd2334583309d32b62544682ee972b51a", 9063 "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
8689 "shasum": "" 9064 "shasum": ""
8690 }, 9065 },
8691 "require": { 9066 "require": {
8692 "php": ">=7.3", 9067 "php": ">=7.3",
8693 "sebastian/diff": "^4.0", 9068 "sebastian/diff": "^4.0",
8694 "sebastian/exporter": "^4.0" 9069 "sebastian/exporter": "^4.0"
8695 }, 9070 },
8696 "require-dev": { 9071 "require-dev": {
8697 "phpunit/phpunit": "^9.3" 9072 "phpunit/phpunit": "^9.3"
8698 }, 9073 },
8699 "type": "library", 9074 "type": "library",
8700 "extra": { 9075 "extra": {
8701 "branch-alias": { 9076 "branch-alias": {
8702 "dev-master": "4.0-dev" 9077 "dev-master": "4.0-dev"
8703 } 9078 }
8704 }, 9079 },
8705 "autoload": { 9080 "autoload": {
8706 "classmap": [ 9081 "classmap": [
8707 "src/" 9082 "src/"
8708 ] 9083 ]
8709 }, 9084 },
8710 "notification-url": "https://packagist.org/downloads/", 9085 "notification-url": "https://packagist.org/downloads/",
8711 "license": [ 9086 "license": [
8712 "BSD-3-Clause" 9087 "BSD-3-Clause"
8713 ], 9088 ],
8714 "authors": [ 9089 "authors": [
8715 { 9090 {
8716 "name": "Sebastian Bergmann", 9091 "name": "Sebastian Bergmann",
8717 "email": "sebastian@phpunit.de" 9092 "email": "sebastian@phpunit.de"
8718 }, 9093 },
8719 { 9094 {
8720 "name": "Jeff Welch", 9095 "name": "Jeff Welch",
8721 "email": "whatthejeff@gmail.com" 9096 "email": "whatthejeff@gmail.com"
8722 }, 9097 },
8723 { 9098 {
8724 "name": "Volker Dusch", 9099 "name": "Volker Dusch",
8725 "email": "github@wallbash.com" 9100 "email": "github@wallbash.com"
8726 }, 9101 },
8727 { 9102 {
8728 "name": "Bernhard Schussek", 9103 "name": "Bernhard Schussek",
8729 "email": "bschussek@2bepublished.at" 9104 "email": "bschussek@2bepublished.at"
8730 } 9105 }
8731 ], 9106 ],
8732 "description": "Provides the functionality to compare PHP values for equality", 9107 "description": "Provides the functionality to compare PHP values for equality",
8733 "homepage": "https://github.com/sebastianbergmann/comparator", 9108 "homepage": "https://github.com/sebastianbergmann/comparator",
8734 "keywords": [ 9109 "keywords": [
8735 "comparator", 9110 "comparator",
8736 "compare", 9111 "compare",
8737 "equality" 9112 "equality"
8738 ], 9113 ],
8739 "support": { 9114 "support": {
8740 "issues": "https://github.com/sebastianbergmann/comparator/issues", 9115 "issues": "https://github.com/sebastianbergmann/comparator/issues",
8741 "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" 9116 "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
8742 }, 9117 },
8743 "funding": [ 9118 "funding": [
8744 { 9119 {
8745 "url": "https://github.com/sebastianbergmann", 9120 "url": "https://github.com/sebastianbergmann",
8746 "type": "github" 9121 "type": "github"
8747 } 9122 }
8748 ], 9123 ],
8749 "time": "2022-09-14T12:41:17+00:00" 9124 "time": "2022-09-14T12:41:17+00:00"
8750 }, 9125 },
8751 { 9126 {
8752 "name": "sebastian/complexity", 9127 "name": "sebastian/complexity",
8753 "version": "2.0.2", 9128 "version": "2.0.2",
8754 "source": { 9129 "source": {
8755 "type": "git", 9130 "type": "git",
8756 "url": "https://github.com/sebastianbergmann/complexity.git", 9131 "url": "https://github.com/sebastianbergmann/complexity.git",
8757 "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" 9132 "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
8758 }, 9133 },
8759 "dist": { 9134 "dist": {
8760 "type": "zip", 9135 "type": "zip",
8761 "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", 9136 "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
8762 "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", 9137 "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
8763 "shasum": "" 9138 "shasum": ""
8764 }, 9139 },
8765 "require": { 9140 "require": {
8766 "nikic/php-parser": "^4.7", 9141 "nikic/php-parser": "^4.7",
8767 "php": ">=7.3" 9142 "php": ">=7.3"
8768 }, 9143 },
8769 "require-dev": { 9144 "require-dev": {
8770 "phpunit/phpunit": "^9.3" 9145 "phpunit/phpunit": "^9.3"
8771 }, 9146 },
8772 "type": "library", 9147 "type": "library",
8773 "extra": { 9148 "extra": {
8774 "branch-alias": { 9149 "branch-alias": {
8775 "dev-master": "2.0-dev" 9150 "dev-master": "2.0-dev"
8776 } 9151 }
8777 }, 9152 },
8778 "autoload": { 9153 "autoload": {
8779 "classmap": [ 9154 "classmap": [
8780 "src/" 9155 "src/"
8781 ] 9156 ]
8782 }, 9157 },
8783 "notification-url": "https://packagist.org/downloads/", 9158 "notification-url": "https://packagist.org/downloads/",
8784 "license": [ 9159 "license": [
8785 "BSD-3-Clause" 9160 "BSD-3-Clause"
8786 ], 9161 ],
8787 "authors": [ 9162 "authors": [
8788 { 9163 {
8789 "name": "Sebastian Bergmann", 9164 "name": "Sebastian Bergmann",
8790 "email": "sebastian@phpunit.de", 9165 "email": "sebastian@phpunit.de",
8791 "role": "lead" 9166 "role": "lead"
8792 } 9167 }
8793 ], 9168 ],
8794 "description": "Library for calculating the complexity of PHP code units", 9169 "description": "Library for calculating the complexity of PHP code units",
8795 "homepage": "https://github.com/sebastianbergmann/complexity", 9170 "homepage": "https://github.com/sebastianbergmann/complexity",
8796 "support": { 9171 "support": {
8797 "issues": "https://github.com/sebastianbergmann/complexity/issues", 9172 "issues": "https://github.com/sebastianbergmann/complexity/issues",
8798 "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" 9173 "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
8799 }, 9174 },
8800 "funding": [ 9175 "funding": [
8801 { 9176 {
8802 "url": "https://github.com/sebastianbergmann", 9177 "url": "https://github.com/sebastianbergmann",
8803 "type": "github" 9178 "type": "github"
8804 } 9179 }
8805 ], 9180 ],
8806 "time": "2020-10-26T15:52:27+00:00" 9181 "time": "2020-10-26T15:52:27+00:00"
8807 }, 9182 },
8808 { 9183 {
8809 "name": "sebastian/diff", 9184 "name": "sebastian/diff",
8810 "version": "4.0.5", 9185 "version": "4.0.5",
8811 "source": { 9186 "source": {
8812 "type": "git", 9187 "type": "git",
8813 "url": "https://github.com/sebastianbergmann/diff.git", 9188 "url": "https://github.com/sebastianbergmann/diff.git",
8814 "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" 9189 "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
8815 }, 9190 },
8816 "dist": { 9191 "dist": {
8817 "type": "zip", 9192 "type": "zip",
8818 "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", 9193 "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
8819 "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", 9194 "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
8820 "shasum": "" 9195 "shasum": ""
8821 }, 9196 },
8822 "require": { 9197 "require": {
8823 "php": ">=7.3" 9198 "php": ">=7.3"
8824 }, 9199 },
8825 "require-dev": { 9200 "require-dev": {
8826 "phpunit/phpunit": "^9.3", 9201 "phpunit/phpunit": "^9.3",
8827 "symfony/process": "^4.2 || ^5" 9202 "symfony/process": "^4.2 || ^5"
8828 }, 9203 },
8829 "type": "library", 9204 "type": "library",
8830 "extra": { 9205 "extra": {
8831 "branch-alias": { 9206 "branch-alias": {
8832 "dev-master": "4.0-dev" 9207 "dev-master": "4.0-dev"
8833 } 9208 }
8834 }, 9209 },
8835 "autoload": { 9210 "autoload": {
8836 "classmap": [ 9211 "classmap": [
8837 "src/" 9212 "src/"
8838 ] 9213 ]
8839 }, 9214 },
8840 "notification-url": "https://packagist.org/downloads/", 9215 "notification-url": "https://packagist.org/downloads/",
8841 "license": [ 9216 "license": [
8842 "BSD-3-Clause" 9217 "BSD-3-Clause"
8843 ], 9218 ],
8844 "authors": [ 9219 "authors": [
8845 { 9220 {
8846 "name": "Sebastian Bergmann", 9221 "name": "Sebastian Bergmann",
8847 "email": "sebastian@phpunit.de" 9222 "email": "sebastian@phpunit.de"
8848 }, 9223 },
8849 { 9224 {
8850 "name": "Kore Nordmann", 9225 "name": "Kore Nordmann",
8851 "email": "mail@kore-nordmann.de" 9226 "email": "mail@kore-nordmann.de"
8852 } 9227 }
8853 ], 9228 ],
8854 "description": "Diff implementation", 9229 "description": "Diff implementation",
8855 "homepage": "https://github.com/sebastianbergmann/diff", 9230 "homepage": "https://github.com/sebastianbergmann/diff",
8856 "keywords": [ 9231 "keywords": [
8857 "diff", 9232 "diff",
8858 "udiff", 9233 "udiff",
8859 "unidiff", 9234 "unidiff",
8860 "unified diff" 9235 "unified diff"
8861 ], 9236 ],
8862 "support": { 9237 "support": {
8863 "issues": "https://github.com/sebastianbergmann/diff/issues", 9238 "issues": "https://github.com/sebastianbergmann/diff/issues",
8864 "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" 9239 "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
8865 }, 9240 },
8866 "funding": [ 9241 "funding": [
8867 { 9242 {
8868 "url": "https://github.com/sebastianbergmann", 9243 "url": "https://github.com/sebastianbergmann",
8869 "type": "github" 9244 "type": "github"
8870 } 9245 }
8871 ], 9246 ],
8872 "time": "2023-05-07T05:35:17+00:00" 9247 "time": "2023-05-07T05:35:17+00:00"
8873 }, 9248 },
8874 { 9249 {
8875 "name": "sebastian/environment", 9250 "name": "sebastian/environment",
8876 "version": "5.1.5", 9251 "version": "5.1.5",
8877 "source": { 9252 "source": {
8878 "type": "git", 9253 "type": "git",
8879 "url": "https://github.com/sebastianbergmann/environment.git", 9254 "url": "https://github.com/sebastianbergmann/environment.git",
8880 "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" 9255 "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
8881 }, 9256 },
8882 "dist": { 9257 "dist": {
8883 "type": "zip", 9258 "type": "zip",
8884 "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", 9259 "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
8885 "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", 9260 "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
8886 "shasum": "" 9261 "shasum": ""
8887 }, 9262 },
8888 "require": { 9263 "require": {
8889 "php": ">=7.3" 9264 "php": ">=7.3"
8890 }, 9265 },
8891 "require-dev": { 9266 "require-dev": {
8892 "phpunit/phpunit": "^9.3" 9267 "phpunit/phpunit": "^9.3"
8893 }, 9268 },
8894 "suggest": { 9269 "suggest": {
8895 "ext-posix": "*" 9270 "ext-posix": "*"
8896 }, 9271 },
8897 "type": "library", 9272 "type": "library",
8898 "extra": { 9273 "extra": {
8899 "branch-alias": { 9274 "branch-alias": {
8900 "dev-master": "5.1-dev" 9275 "dev-master": "5.1-dev"
8901 } 9276 }
8902 }, 9277 },
8903 "autoload": { 9278 "autoload": {
8904 "classmap": [ 9279 "classmap": [
8905 "src/" 9280 "src/"
8906 ] 9281 ]
8907 }, 9282 },
8908 "notification-url": "https://packagist.org/downloads/", 9283 "notification-url": "https://packagist.org/downloads/",
8909 "license": [ 9284 "license": [
8910 "BSD-3-Clause" 9285 "BSD-3-Clause"
8911 ], 9286 ],
8912 "authors": [ 9287 "authors": [
8913 { 9288 {
8914 "name": "Sebastian Bergmann", 9289 "name": "Sebastian Bergmann",
8915 "email": "sebastian@phpunit.de" 9290 "email": "sebastian@phpunit.de"
8916 } 9291 }
8917 ], 9292 ],
8918 "description": "Provides functionality to handle HHVM/PHP environments", 9293 "description": "Provides functionality to handle HHVM/PHP environments",
8919 "homepage": "http://www.github.com/sebastianbergmann/environment", 9294 "homepage": "http://www.github.com/sebastianbergmann/environment",
8920 "keywords": [ 9295 "keywords": [
8921 "Xdebug", 9296 "Xdebug",
8922 "environment", 9297 "environment",
8923 "hhvm" 9298 "hhvm"
8924 ], 9299 ],
8925 "support": { 9300 "support": {
8926 "issues": "https://github.com/sebastianbergmann/environment/issues", 9301 "issues": "https://github.com/sebastianbergmann/environment/issues",
8927 "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" 9302 "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
8928 }, 9303 },
8929 "funding": [ 9304 "funding": [
8930 { 9305 {
8931 "url": "https://github.com/sebastianbergmann", 9306 "url": "https://github.com/sebastianbergmann",
8932 "type": "github" 9307 "type": "github"
8933 } 9308 }
8934 ], 9309 ],
8935 "time": "2023-02-03T06:03:51+00:00" 9310 "time": "2023-02-03T06:03:51+00:00"
8936 }, 9311 },
8937 { 9312 {
8938 "name": "sebastian/exporter", 9313 "name": "sebastian/exporter",
8939 "version": "4.0.5", 9314 "version": "4.0.5",
8940 "source": { 9315 "source": {
8941 "type": "git", 9316 "type": "git",
8942 "url": "https://github.com/sebastianbergmann/exporter.git", 9317 "url": "https://github.com/sebastianbergmann/exporter.git",
8943 "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" 9318 "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
8944 }, 9319 },
8945 "dist": { 9320 "dist": {
8946 "type": "zip", 9321 "type": "zip",
8947 "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", 9322 "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
8948 "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", 9323 "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
8949 "shasum": "" 9324 "shasum": ""
8950 }, 9325 },
8951 "require": { 9326 "require": {
8952 "php": ">=7.3", 9327 "php": ">=7.3",
8953 "sebastian/recursion-context": "^4.0" 9328 "sebastian/recursion-context": "^4.0"
8954 }, 9329 },
8955 "require-dev": { 9330 "require-dev": {
8956 "ext-mbstring": "*", 9331 "ext-mbstring": "*",
8957 "phpunit/phpunit": "^9.3" 9332 "phpunit/phpunit": "^9.3"
8958 }, 9333 },
8959 "type": "library", 9334 "type": "library",
8960 "extra": { 9335 "extra": {
8961 "branch-alias": { 9336 "branch-alias": {
8962 "dev-master": "4.0-dev" 9337 "dev-master": "4.0-dev"
8963 } 9338 }
8964 }, 9339 },
8965 "autoload": { 9340 "autoload": {
8966 "classmap": [ 9341 "classmap": [
8967 "src/" 9342 "src/"
8968 ] 9343 ]
8969 }, 9344 },
8970 "notification-url": "https://packagist.org/downloads/", 9345 "notification-url": "https://packagist.org/downloads/",
8971 "license": [ 9346 "license": [
8972 "BSD-3-Clause" 9347 "BSD-3-Clause"
8973 ], 9348 ],
8974 "authors": [ 9349 "authors": [
8975 { 9350 {
8976 "name": "Sebastian Bergmann", 9351 "name": "Sebastian Bergmann",
8977 "email": "sebastian@phpunit.de" 9352 "email": "sebastian@phpunit.de"
8978 }, 9353 },
8979 { 9354 {
8980 "name": "Jeff Welch", 9355 "name": "Jeff Welch",
8981 "email": "whatthejeff@gmail.com" 9356 "email": "whatthejeff@gmail.com"
8982 }, 9357 },
8983 { 9358 {
8984 "name": "Volker Dusch", 9359 "name": "Volker Dusch",
8985 "email": "github@wallbash.com" 9360 "email": "github@wallbash.com"
8986 }, 9361 },
8987 { 9362 {
8988 "name": "Adam Harvey", 9363 "name": "Adam Harvey",
8989 "email": "aharvey@php.net" 9364 "email": "aharvey@php.net"
8990 }, 9365 },
8991 { 9366 {
8992 "name": "Bernhard Schussek", 9367 "name": "Bernhard Schussek",
8993 "email": "bschussek@gmail.com" 9368 "email": "bschussek@gmail.com"
8994 } 9369 }
8995 ], 9370 ],
8996 "description": "Provides the functionality to export PHP variables for visualization", 9371 "description": "Provides the functionality to export PHP variables for visualization",
8997 "homepage": "https://www.github.com/sebastianbergmann/exporter", 9372 "homepage": "https://www.github.com/sebastianbergmann/exporter",
8998 "keywords": [ 9373 "keywords": [
8999 "export", 9374 "export",
9000 "exporter" 9375 "exporter"
9001 ], 9376 ],
9002 "support": { 9377 "support": {
9003 "issues": "https://github.com/sebastianbergmann/exporter/issues", 9378 "issues": "https://github.com/sebastianbergmann/exporter/issues",
9004 "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" 9379 "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
9005 }, 9380 },
9006 "funding": [ 9381 "funding": [
9007 { 9382 {
9008 "url": "https://github.com/sebastianbergmann", 9383 "url": "https://github.com/sebastianbergmann",
9009 "type": "github" 9384 "type": "github"
9010 } 9385 }
9011 ], 9386 ],
9012 "time": "2022-09-14T06:03:37+00:00" 9387 "time": "2022-09-14T06:03:37+00:00"
9013 }, 9388 },
9014 { 9389 {
9015 "name": "sebastian/global-state", 9390 "name": "sebastian/global-state",
9016 "version": "5.0.5", 9391 "version": "5.0.5",
9017 "source": { 9392 "source": {
9018 "type": "git", 9393 "type": "git",
9019 "url": "https://github.com/sebastianbergmann/global-state.git", 9394 "url": "https://github.com/sebastianbergmann/global-state.git",
9020 "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" 9395 "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
9021 }, 9396 },
9022 "dist": { 9397 "dist": {
9023 "type": "zip", 9398 "type": "zip",
9024 "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", 9399 "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
9025 "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", 9400 "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
9026 "shasum": "" 9401 "shasum": ""
9027 }, 9402 },
9028 "require": { 9403 "require": {
9029 "php": ">=7.3", 9404 "php": ">=7.3",
9030 "sebastian/object-reflector": "^2.0", 9405 "sebastian/object-reflector": "^2.0",
9031 "sebastian/recursion-context": "^4.0" 9406 "sebastian/recursion-context": "^4.0"
9032 }, 9407 },
9033 "require-dev": { 9408 "require-dev": {
9034 "ext-dom": "*", 9409 "ext-dom": "*",
9035 "phpunit/phpunit": "^9.3" 9410 "phpunit/phpunit": "^9.3"
9036 }, 9411 },
9037 "suggest": { 9412 "suggest": {
9038 "ext-uopz": "*" 9413 "ext-uopz": "*"
9039 }, 9414 },
9040 "type": "library", 9415 "type": "library",
9041 "extra": { 9416 "extra": {
9042 "branch-alias": { 9417 "branch-alias": {
9043 "dev-master": "5.0-dev" 9418 "dev-master": "5.0-dev"
9044 } 9419 }
9045 }, 9420 },
9046 "autoload": { 9421 "autoload": {
9047 "classmap": [ 9422 "classmap": [
9048 "src/" 9423 "src/"
9049 ] 9424 ]
9050 }, 9425 },
9051 "notification-url": "https://packagist.org/downloads/", 9426 "notification-url": "https://packagist.org/downloads/",
9052 "license": [ 9427 "license": [
9053 "BSD-3-Clause" 9428 "BSD-3-Clause"
9054 ], 9429 ],
9055 "authors": [ 9430 "authors": [
9056 { 9431 {
9057 "name": "Sebastian Bergmann", 9432 "name": "Sebastian Bergmann",
9058 "email": "sebastian@phpunit.de" 9433 "email": "sebastian@phpunit.de"
9059 } 9434 }
9060 ], 9435 ],
9061 "description": "Snapshotting of global state", 9436 "description": "Snapshotting of global state",
9062 "homepage": "http://www.github.com/sebastianbergmann/global-state", 9437 "homepage": "http://www.github.com/sebastianbergmann/global-state",
9063 "keywords": [ 9438 "keywords": [
9064 "global state" 9439 "global state"
9065 ], 9440 ],
9066 "support": { 9441 "support": {
9067 "issues": "https://github.com/sebastianbergmann/global-state/issues", 9442 "issues": "https://github.com/sebastianbergmann/global-state/issues",
9068 "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" 9443 "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
9069 }, 9444 },
9070 "funding": [ 9445 "funding": [
9071 { 9446 {
9072 "url": "https://github.com/sebastianbergmann", 9447 "url": "https://github.com/sebastianbergmann",
9073 "type": "github" 9448 "type": "github"
9074 } 9449 }
9075 ], 9450 ],
9076 "time": "2022-02-14T08:28:10+00:00" 9451 "time": "2022-02-14T08:28:10+00:00"
9077 }, 9452 },
9078 { 9453 {
9079 "name": "sebastian/lines-of-code", 9454 "name": "sebastian/lines-of-code",
9080 "version": "1.0.3", 9455 "version": "1.0.3",
9081 "source": { 9456 "source": {
9082 "type": "git", 9457 "type": "git",
9083 "url": "https://github.com/sebastianbergmann/lines-of-code.git", 9458 "url": "https://github.com/sebastianbergmann/lines-of-code.git",
9084 "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" 9459 "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
9085 }, 9460 },
9086 "dist": { 9461 "dist": {
9087 "type": "zip", 9462 "type": "zip",
9088 "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", 9463 "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
9089 "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", 9464 "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
9090 "shasum": "" 9465 "shasum": ""
9091 }, 9466 },
9092 "require": { 9467 "require": {
9093 "nikic/php-parser": "^4.6", 9468 "nikic/php-parser": "^4.6",
9094 "php": ">=7.3" 9469 "php": ">=7.3"
9095 }, 9470 },
9096 "require-dev": { 9471 "require-dev": {
9097 "phpunit/phpunit": "^9.3" 9472 "phpunit/phpunit": "^9.3"
9098 }, 9473 },
9099 "type": "library", 9474 "type": "library",
9100 "extra": { 9475 "extra": {
9101 "branch-alias": { 9476 "branch-alias": {
9102 "dev-master": "1.0-dev" 9477 "dev-master": "1.0-dev"
9103 } 9478 }
9104 }, 9479 },
9105 "autoload": { 9480 "autoload": {
9106 "classmap": [ 9481 "classmap": [
9107 "src/" 9482 "src/"
9108 ] 9483 ]
9109 }, 9484 },
9110 "notification-url": "https://packagist.org/downloads/", 9485 "notification-url": "https://packagist.org/downloads/",
9111 "license": [ 9486 "license": [
9112 "BSD-3-Clause" 9487 "BSD-3-Clause"
9113 ], 9488 ],
9114 "authors": [ 9489 "authors": [
9115 { 9490 {
9116 "name": "Sebastian Bergmann", 9491 "name": "Sebastian Bergmann",
9117 "email": "sebastian@phpunit.de", 9492 "email": "sebastian@phpunit.de",
9118 "role": "lead" 9493 "role": "lead"
9119 } 9494 }
9120 ], 9495 ],
9121 "description": "Library for counting the lines of code in PHP source code", 9496 "description": "Library for counting the lines of code in PHP source code",
9122 "homepage": "https://github.com/sebastianbergmann/lines-of-code", 9497 "homepage": "https://github.com/sebastianbergmann/lines-of-code",
9123 "support": { 9498 "support": {
9124 "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", 9499 "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
9125 "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" 9500 "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
9126 }, 9501 },
9127 "funding": [ 9502 "funding": [
9128 { 9503 {
9129 "url": "https://github.com/sebastianbergmann", 9504 "url": "https://github.com/sebastianbergmann",
9130 "type": "github" 9505 "type": "github"
9131 } 9506 }
9132 ], 9507 ],
9133 "time": "2020-11-28T06:42:11+00:00" 9508 "time": "2020-11-28T06:42:11+00:00"
9134 }, 9509 },
9135 { 9510 {
9136 "name": "sebastian/object-enumerator", 9511 "name": "sebastian/object-enumerator",
9137 "version": "4.0.4", 9512 "version": "4.0.4",
9138 "source": { 9513 "source": {
9139 "type": "git", 9514 "type": "git",
9140 "url": "https://github.com/sebastianbergmann/object-enumerator.git", 9515 "url": "https://github.com/sebastianbergmann/object-enumerator.git",
9141 "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" 9516 "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
9142 }, 9517 },
9143 "dist": { 9518 "dist": {
9144 "type": "zip", 9519 "type": "zip",
9145 "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", 9520 "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
9146 "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", 9521 "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
9147 "shasum": "" 9522 "shasum": ""
9148 }, 9523 },
9149 "require": { 9524 "require": {
9150 "php": ">=7.3", 9525 "php": ">=7.3",
9151 "sebastian/object-reflector": "^2.0", 9526 "sebastian/object-reflector": "^2.0",
9152 "sebastian/recursion-context": "^4.0" 9527 "sebastian/recursion-context": "^4.0"
9153 }, 9528 },
9154 "require-dev": { 9529 "require-dev": {
9155 "phpunit/phpunit": "^9.3" 9530 "phpunit/phpunit": "^9.3"
9156 }, 9531 },
9157 "type": "library", 9532 "type": "library",
9158 "extra": { 9533 "extra": {
9159 "branch-alias": { 9534 "branch-alias": {
9160 "dev-master": "4.0-dev" 9535 "dev-master": "4.0-dev"
9161 } 9536 }
9162 }, 9537 },
9163 "autoload": { 9538 "autoload": {
9164 "classmap": [ 9539 "classmap": [
9165 "src/" 9540 "src/"
9166 ] 9541 ]
9167 }, 9542 },
9168 "notification-url": "https://packagist.org/downloads/", 9543 "notification-url": "https://packagist.org/downloads/",
9169 "license": [ 9544 "license": [
9170 "BSD-3-Clause" 9545 "BSD-3-Clause"
9171 ], 9546 ],
9172 "authors": [ 9547 "authors": [
9173 { 9548 {
9174 "name": "Sebastian Bergmann", 9549 "name": "Sebastian Bergmann",
9175 "email": "sebastian@phpunit.de" 9550 "email": "sebastian@phpunit.de"
9176 } 9551 }
9177 ], 9552 ],
9178 "description": "Traverses array structures and object graphs to enumerate all referenced objects", 9553 "description": "Traverses array structures and object graphs to enumerate all referenced objects",
9179 "homepage": "https://github.com/sebastianbergmann/object-enumerator/", 9554 "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
9180 "support": { 9555 "support": {
9181 "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", 9556 "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
9182 "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" 9557 "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
9183 }, 9558 },
9184 "funding": [ 9559 "funding": [
9185 { 9560 {
9186 "url": "https://github.com/sebastianbergmann", 9561 "url": "https://github.com/sebastianbergmann",
9187 "type": "github" 9562 "type": "github"
9188 } 9563 }
9189 ], 9564 ],
9190 "time": "2020-10-26T13:12:34+00:00" 9565 "time": "2020-10-26T13:12:34+00:00"
9191 }, 9566 },
9192 { 9567 {
9193 "name": "sebastian/object-reflector", 9568 "name": "sebastian/object-reflector",
9194 "version": "2.0.4", 9569 "version": "2.0.4",
9195 "source": { 9570 "source": {
9196 "type": "git", 9571 "type": "git",
9197 "url": "https://github.com/sebastianbergmann/object-reflector.git", 9572 "url": "https://github.com/sebastianbergmann/object-reflector.git",
9198 "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" 9573 "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
9199 }, 9574 },
9200 "dist": { 9575 "dist": {
9201 "type": "zip", 9576 "type": "zip",
9202 "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", 9577 "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
9203 "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", 9578 "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
9204 "shasum": "" 9579 "shasum": ""
9205 }, 9580 },
9206 "require": { 9581 "require": {
9207 "php": ">=7.3" 9582 "php": ">=7.3"
9208 }, 9583 },
9209 "require-dev": { 9584 "require-dev": {
9210 "phpunit/phpunit": "^9.3" 9585 "phpunit/phpunit": "^9.3"
9211 }, 9586 },
9212 "type": "library", 9587 "type": "library",
9213 "extra": { 9588 "extra": {
9214 "branch-alias": { 9589 "branch-alias": {
9215 "dev-master": "2.0-dev" 9590 "dev-master": "2.0-dev"
9216 } 9591 }
9217 }, 9592 },
9218 "autoload": { 9593 "autoload": {
9219 "classmap": [ 9594 "classmap": [
9220 "src/" 9595 "src/"
9221 ] 9596 ]
9222 }, 9597 },
9223 "notification-url": "https://packagist.org/downloads/", 9598 "notification-url": "https://packagist.org/downloads/",
9224 "license": [ 9599 "license": [
9225 "BSD-3-Clause" 9600 "BSD-3-Clause"
9226 ], 9601 ],
9227 "authors": [ 9602 "authors": [
9228 { 9603 {
9229 "name": "Sebastian Bergmann", 9604 "name": "Sebastian Bergmann",
9230 "email": "sebastian@phpunit.de" 9605 "email": "sebastian@phpunit.de"
9231 } 9606 }
9232 ], 9607 ],
9233 "description": "Allows reflection of object attributes, including inherited and non-public ones", 9608 "description": "Allows reflection of object attributes, including inherited and non-public ones",
9234 "homepage": "https://github.com/sebastianbergmann/object-reflector/", 9609 "homepage": "https://github.com/sebastianbergmann/object-reflector/",
9235 "support": { 9610 "support": {
9236 "issues": "https://github.com/sebastianbergmann/object-reflector/issues", 9611 "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
9237 "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" 9612 "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
9238 }, 9613 },
9239 "funding": [ 9614 "funding": [
9240 { 9615 {
9241 "url": "https://github.com/sebastianbergmann", 9616 "url": "https://github.com/sebastianbergmann",
9242 "type": "github" 9617 "type": "github"
9243 } 9618 }
9244 ], 9619 ],
9245 "time": "2020-10-26T13:14:26+00:00" 9620 "time": "2020-10-26T13:14:26+00:00"
9246 }, 9621 },
9247 { 9622 {
9248 "name": "sebastian/recursion-context", 9623 "name": "sebastian/recursion-context",
9249 "version": "4.0.5", 9624 "version": "4.0.5",
9250 "source": { 9625 "source": {
9251 "type": "git", 9626 "type": "git",
9252 "url": "https://github.com/sebastianbergmann/recursion-context.git", 9627 "url": "https://github.com/sebastianbergmann/recursion-context.git",
9253 "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" 9628 "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
9254 }, 9629 },
9255 "dist": { 9630 "dist": {
9256 "type": "zip", 9631 "type": "zip",
9257 "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", 9632 "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
9258 "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", 9633 "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
9259 "shasum": "" 9634 "shasum": ""
9260 }, 9635 },
9261 "require": { 9636 "require": {
9262 "php": ">=7.3" 9637 "php": ">=7.3"
9263 }, 9638 },
9264 "require-dev": { 9639 "require-dev": {
9265 "phpunit/phpunit": "^9.3" 9640 "phpunit/phpunit": "^9.3"
9266 }, 9641 },
9267 "type": "library", 9642 "type": "library",
9268 "extra": { 9643 "extra": {
9269 "branch-alias": { 9644 "branch-alias": {
9270 "dev-master": "4.0-dev" 9645 "dev-master": "4.0-dev"
9271 } 9646 }
9272 }, 9647 },
9273 "autoload": { 9648 "autoload": {
9274 "classmap": [ 9649 "classmap": [
9275 "src/" 9650 "src/"
9276 ] 9651 ]
9277 }, 9652 },
9278 "notification-url": "https://packagist.org/downloads/", 9653 "notification-url": "https://packagist.org/downloads/",
9279 "license": [ 9654 "license": [
9280 "BSD-3-Clause" 9655 "BSD-3-Clause"
9281 ], 9656 ],
9282 "authors": [ 9657 "authors": [
9283 { 9658 {
9284 "name": "Sebastian Bergmann", 9659 "name": "Sebastian Bergmann",
9285 "email": "sebastian@phpunit.de" 9660 "email": "sebastian@phpunit.de"
9286 }, 9661 },
9287 { 9662 {
9288 "name": "Jeff Welch", 9663 "name": "Jeff Welch",
9289 "email": "whatthejeff@gmail.com" 9664 "email": "whatthejeff@gmail.com"
9290 }, 9665 },
9291 { 9666 {
9292 "name": "Adam Harvey", 9667 "name": "Adam Harvey",
9293 "email": "aharvey@php.net" 9668 "email": "aharvey@php.net"
9294 } 9669 }
9295 ], 9670 ],
9296 "description": "Provides functionality to recursively process PHP variables", 9671 "description": "Provides functionality to recursively process PHP variables",
9297 "homepage": "https://github.com/sebastianbergmann/recursion-context", 9672 "homepage": "https://github.com/sebastianbergmann/recursion-context",
9298 "support": { 9673 "support": {
9299 "issues": "https://github.com/sebastianbergmann/recursion-context/issues", 9674 "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
9300 "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" 9675 "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
9301 }, 9676 },
9302 "funding": [ 9677 "funding": [
9303 { 9678 {
9304 "url": "https://github.com/sebastianbergmann", 9679 "url": "https://github.com/sebastianbergmann",
9305 "type": "github" 9680 "type": "github"
9306 } 9681 }
9307 ], 9682 ],
9308 "time": "2023-02-03T06:07:39+00:00" 9683 "time": "2023-02-03T06:07:39+00:00"
9309 }, 9684 },
9310 { 9685 {
9311 "name": "sebastian/resource-operations", 9686 "name": "sebastian/resource-operations",
9312 "version": "3.0.3", 9687 "version": "3.0.3",
9313 "source": { 9688 "source": {
9314 "type": "git", 9689 "type": "git",
9315 "url": "https://github.com/sebastianbergmann/resource-operations.git", 9690 "url": "https://github.com/sebastianbergmann/resource-operations.git",
9316 "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" 9691 "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
9317 }, 9692 },
9318 "dist": { 9693 "dist": {
9319 "type": "zip", 9694 "type": "zip",
9320 "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", 9695 "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
9321 "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", 9696 "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
9322 "shasum": "" 9697 "shasum": ""
9323 }, 9698 },
9324 "require": { 9699 "require": {
9325 "php": ">=7.3" 9700 "php": ">=7.3"
9326 }, 9701 },
9327 "require-dev": { 9702 "require-dev": {
9328 "phpunit/phpunit": "^9.0" 9703 "phpunit/phpunit": "^9.0"
9329 }, 9704 },
9330 "type": "library", 9705 "type": "library",
9331 "extra": { 9706 "extra": {
9332 "branch-alias": { 9707 "branch-alias": {
9333 "dev-master": "3.0-dev" 9708 "dev-master": "3.0-dev"
9334 } 9709 }
9335 }, 9710 },
9336 "autoload": { 9711 "autoload": {
9337 "classmap": [ 9712 "classmap": [
9338 "src/" 9713 "src/"
9339 ] 9714 ]
9340 }, 9715 },
9341 "notification-url": "https://packagist.org/downloads/", 9716 "notification-url": "https://packagist.org/downloads/",
9342 "license": [ 9717 "license": [
9343 "BSD-3-Clause" 9718 "BSD-3-Clause"
9344 ], 9719 ],
9345 "authors": [ 9720 "authors": [
9346 { 9721 {
9347 "name": "Sebastian Bergmann", 9722 "name": "Sebastian Bergmann",
9348 "email": "sebastian@phpunit.de" 9723 "email": "sebastian@phpunit.de"
9349 } 9724 }
9350 ], 9725 ],
9351 "description": "Provides a list of PHP built-in functions that operate on resources", 9726 "description": "Provides a list of PHP built-in functions that operate on resources",
9352 "homepage": "https://www.github.com/sebastianbergmann/resource-operations", 9727 "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
9353 "support": { 9728 "support": {
9354 "issues": "https://github.com/sebastianbergmann/resource-operations/issues", 9729 "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
9355 "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" 9730 "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
9356 }, 9731 },
9357 "funding": [ 9732 "funding": [
9358 { 9733 {
9359 "url": "https://github.com/sebastianbergmann", 9734 "url": "https://github.com/sebastianbergmann",
9360 "type": "github" 9735 "type": "github"
9361 } 9736 }
9362 ], 9737 ],
9363 "time": "2020-09-28T06:45:17+00:00" 9738 "time": "2020-09-28T06:45:17+00:00"
9364 }, 9739 },
9365 { 9740 {
9366 "name": "sebastian/type", 9741 "name": "sebastian/type",
9367 "version": "3.2.1", 9742 "version": "3.2.1",
9368 "source": { 9743 "source": {
9369 "type": "git", 9744 "type": "git",
9370 "url": "https://github.com/sebastianbergmann/type.git", 9745 "url": "https://github.com/sebastianbergmann/type.git",
9371 "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" 9746 "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
9372 }, 9747 },
9373 "dist": { 9748 "dist": {
9374 "type": "zip", 9749 "type": "zip",
9375 "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", 9750 "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
9376 "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", 9751 "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
9377 "shasum": "" 9752 "shasum": ""
9378 }, 9753 },
9379 "require": { 9754 "require": {
9380 "php": ">=7.3" 9755 "php": ">=7.3"
9381 }, 9756 },
9382 "require-dev": { 9757 "require-dev": {
9383 "phpunit/phpunit": "^9.5" 9758 "phpunit/phpunit": "^9.5"
9384 }, 9759 },
9385 "type": "library", 9760 "type": "library",
9386 "extra": { 9761 "extra": {
9387 "branch-alias": { 9762 "branch-alias": {
9388 "dev-master": "3.2-dev" 9763 "dev-master": "3.2-dev"
9389 } 9764 }
9390 }, 9765 },
9391 "autoload": { 9766 "autoload": {
9392 "classmap": [ 9767 "classmap": [
9393 "src/" 9768 "src/"
9394 ] 9769 ]
9395 }, 9770 },
9396 "notification-url": "https://packagist.org/downloads/", 9771 "notification-url": "https://packagist.org/downloads/",
9397 "license": [ 9772 "license": [
9398 "BSD-3-Clause" 9773 "BSD-3-Clause"
9399 ], 9774 ],
9400 "authors": [ 9775 "authors": [
9401 { 9776 {
9402 "name": "Sebastian Bergmann", 9777 "name": "Sebastian Bergmann",
9403 "email": "sebastian@phpunit.de", 9778 "email": "sebastian@phpunit.de",
9404 "role": "lead" 9779 "role": "lead"
9405 } 9780 }
9406 ], 9781 ],
9407 "description": "Collection of value objects that represent the types of the PHP type system", 9782 "description": "Collection of value objects that represent the types of the PHP type system",
9408 "homepage": "https://github.com/sebastianbergmann/type", 9783 "homepage": "https://github.com/sebastianbergmann/type",
9409 "support": { 9784 "support": {
9410 "issues": "https://github.com/sebastianbergmann/type/issues", 9785 "issues": "https://github.com/sebastianbergmann/type/issues",
9411 "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" 9786 "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
9412 }, 9787 },
9413 "funding": [ 9788 "funding": [
9414 { 9789 {
9415 "url": "https://github.com/sebastianbergmann", 9790 "url": "https://github.com/sebastianbergmann",
9416 "type": "github" 9791 "type": "github"
9417 } 9792 }
9418 ], 9793 ],
9419 "time": "2023-02-03T06:13:03+00:00" 9794 "time": "2023-02-03T06:13:03+00:00"
9420 }, 9795 },
9421 { 9796 {
9422 "name": "sebastian/version", 9797 "name": "sebastian/version",
9423 "version": "3.0.2", 9798 "version": "3.0.2",
9424 "source": { 9799 "source": {
9425 "type": "git", 9800 "type": "git",
9426 "url": "https://github.com/sebastianbergmann/version.git", 9801 "url": "https://github.com/sebastianbergmann/version.git",
9427 "reference": "c6c1022351a901512170118436c764e473f6de8c" 9802 "reference": "c6c1022351a901512170118436c764e473f6de8c"
9428 }, 9803 },
9429 "dist": { 9804 "dist": {
9430 "type": "zip", 9805 "type": "zip",
9431 "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", 9806 "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
9432 "reference": "c6c1022351a901512170118436c764e473f6de8c", 9807 "reference": "c6c1022351a901512170118436c764e473f6de8c",
9433 "shasum": "" 9808 "shasum": ""
9434 }, 9809 },
9435 "require": { 9810 "require": {
9436 "php": ">=7.3" 9811 "php": ">=7.3"
9437 }, 9812 },
9438 "type": "library", 9813 "type": "library",
9439 "extra": { 9814 "extra": {
9440 "branch-alias": { 9815 "branch-alias": {
9441 "dev-master": "3.0-dev" 9816 "dev-master": "3.0-dev"
9442 } 9817 }
9443 }, 9818 },
9444 "autoload": { 9819 "autoload": {
9445 "classmap": [ 9820 "classmap": [
9446 "src/" 9821 "src/"
9447 ] 9822 ]
9448 }, 9823 },
9449 "notification-url": "https://packagist.org/downloads/", 9824 "notification-url": "https://packagist.org/downloads/",
9450 "license": [ 9825 "license": [
9451 "BSD-3-Clause" 9826 "BSD-3-Clause"
9452 ], 9827 ],
9453 "authors": [ 9828 "authors": [
9454 { 9829 {
9455 "name": "Sebastian Bergmann", 9830 "name": "Sebastian Bergmann",
9456 "email": "sebastian@phpunit.de", 9831 "email": "sebastian@phpunit.de",
9457 "role": "lead" 9832 "role": "lead"
9458 } 9833 }
9459 ], 9834 ],
9460 "description": "Library that helps with managing the version number of Git-hosted PHP projects", 9835 "description": "Library that helps with managing the version number of Git-hosted PHP projects",
9461 "homepage": "https://github.com/sebastianbergmann/version", 9836 "homepage": "https://github.com/sebastianbergmann/version",
9462 "support": { 9837 "support": {
9463 "issues": "https://github.com/sebastianbergmann/version/issues", 9838 "issues": "https://github.com/sebastianbergmann/version/issues",
9464 "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" 9839 "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
9465 }, 9840 },
9466 "funding": [ 9841 "funding": [
9467 { 9842 {
9468 "url": "https://github.com/sebastianbergmann", 9843 "url": "https://github.com/sebastianbergmann",
9469 "type": "github" 9844 "type": "github"
9470 } 9845 }
9471 ], 9846 ],
9472 "time": "2020-09-28T06:39:44+00:00" 9847 "time": "2020-09-28T06:39:44+00:00"
9473 }, 9848 },
9474 { 9849 {
9475 "name": "spatie/backtrace", 9850 "name": "spatie/backtrace",
9476 "version": "1.4.0", 9851 "version": "1.4.0",
9477 "source": { 9852 "source": {
9478 "type": "git", 9853 "type": "git",
9479 "url": "https://github.com/spatie/backtrace.git", 9854 "url": "https://github.com/spatie/backtrace.git",
9480 "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c" 9855 "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c"
9481 }, 9856 },
9482 "dist": { 9857 "dist": {
9483 "type": "zip", 9858 "type": "zip",
9484 "url": "https://api.github.com/repos/spatie/backtrace/zipball/ec4dd16476b802dbdc6b4467f84032837e316b8c", 9859 "url": "https://api.github.com/repos/spatie/backtrace/zipball/ec4dd16476b802dbdc6b4467f84032837e316b8c",
9485 "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c", 9860 "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c",
9486 "shasum": "" 9861 "shasum": ""
9487 }, 9862 },
9488 "require": { 9863 "require": {
9489 "php": "^7.3|^8.0" 9864 "php": "^7.3|^8.0"
9490 }, 9865 },
9491 "require-dev": { 9866 "require-dev": {
9492 "ext-json": "*", 9867 "ext-json": "*",
9493 "phpunit/phpunit": "^9.3", 9868 "phpunit/phpunit": "^9.3",
9494 "spatie/phpunit-snapshot-assertions": "^4.2", 9869 "spatie/phpunit-snapshot-assertions": "^4.2",
9495 "symfony/var-dumper": "^5.1" 9870 "symfony/var-dumper": "^5.1"
9496 }, 9871 },
9497 "type": "library", 9872 "type": "library",
9498 "autoload": { 9873 "autoload": {
9499 "psr-4": { 9874 "psr-4": {
9500 "Spatie\\Backtrace\\": "src" 9875 "Spatie\\Backtrace\\": "src"
9501 } 9876 }
9502 }, 9877 },
9503 "notification-url": "https://packagist.org/downloads/", 9878 "notification-url": "https://packagist.org/downloads/",
9504 "license": [ 9879 "license": [
9505 "MIT" 9880 "MIT"
9506 ], 9881 ],
9507 "authors": [ 9882 "authors": [
9508 { 9883 {
9509 "name": "Freek Van de Herten", 9884 "name": "Freek Van de Herten",
9510 "email": "freek@spatie.be", 9885 "email": "freek@spatie.be",
9511 "homepage": "https://spatie.be", 9886 "homepage": "https://spatie.be",
9512 "role": "Developer" 9887 "role": "Developer"
9513 } 9888 }
9514 ], 9889 ],
9515 "description": "A better backtrace", 9890 "description": "A better backtrace",
9516 "homepage": "https://github.com/spatie/backtrace", 9891 "homepage": "https://github.com/spatie/backtrace",
9517 "keywords": [ 9892 "keywords": [
9518 "Backtrace", 9893 "Backtrace",
9519 "spatie" 9894 "spatie"
9520 ], 9895 ],
9521 "support": { 9896 "support": {
9522 "source": "https://github.com/spatie/backtrace/tree/1.4.0" 9897 "source": "https://github.com/spatie/backtrace/tree/1.4.0"
9523 }, 9898 },
9524 "funding": [ 9899 "funding": [
9525 { 9900 {
9526 "url": "https://github.com/sponsors/spatie", 9901 "url": "https://github.com/sponsors/spatie",
9527 "type": "github" 9902 "type": "github"
9528 }, 9903 },
9529 { 9904 {
9530 "url": "https://spatie.be/open-source/support-us", 9905 "url": "https://spatie.be/open-source/support-us",
9531 "type": "other" 9906 "type": "other"
9532 } 9907 }
9533 ], 9908 ],
9534 "time": "2023-03-04T08:57:24+00:00" 9909 "time": "2023-03-04T08:57:24+00:00"
9535 }, 9910 },
9536 { 9911 {
9537 "name": "spatie/flare-client-php", 9912 "name": "spatie/flare-client-php",
9538 "version": "1.3.6", 9913 "version": "1.3.6",
9539 "source": { 9914 "source": {
9540 "type": "git", 9915 "type": "git",
9541 "url": "https://github.com/spatie/flare-client-php.git", 9916 "url": "https://github.com/spatie/flare-client-php.git",
9542 "reference": "530ac81255af79f114344286e4275f8869c671e2" 9917 "reference": "530ac81255af79f114344286e4275f8869c671e2"
9543 }, 9918 },
9544 "dist": { 9919 "dist": {
9545 "type": "zip", 9920 "type": "zip",
9546 "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/530ac81255af79f114344286e4275f8869c671e2", 9921 "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/530ac81255af79f114344286e4275f8869c671e2",
9547 "reference": "530ac81255af79f114344286e4275f8869c671e2", 9922 "reference": "530ac81255af79f114344286e4275f8869c671e2",
9548 "shasum": "" 9923 "shasum": ""
9549 }, 9924 },
9550 "require": { 9925 "require": {
9551 "illuminate/pipeline": "^8.0|^9.0|^10.0", 9926 "illuminate/pipeline": "^8.0|^9.0|^10.0",
9552 "php": "^8.0", 9927 "php": "^8.0",
9553 "spatie/backtrace": "^1.2", 9928 "spatie/backtrace": "^1.2",
9554 "symfony/http-foundation": "^5.0|^6.0", 9929 "symfony/http-foundation": "^5.0|^6.0",
9555 "symfony/mime": "^5.2|^6.0", 9930 "symfony/mime": "^5.2|^6.0",
9556 "symfony/process": "^5.2|^6.0", 9931 "symfony/process": "^5.2|^6.0",
9557 "symfony/var-dumper": "^5.2|^6.0" 9932 "symfony/var-dumper": "^5.2|^6.0"
9558 }, 9933 },
9559 "require-dev": { 9934 "require-dev": {
9560 "dms/phpunit-arraysubset-asserts": "^0.3.0", 9935 "dms/phpunit-arraysubset-asserts": "^0.3.0",
9561 "pestphp/pest": "^1.20", 9936 "pestphp/pest": "^1.20",
9562 "phpstan/extension-installer": "^1.1", 9937 "phpstan/extension-installer": "^1.1",
9563 "phpstan/phpstan-deprecation-rules": "^1.0", 9938 "phpstan/phpstan-deprecation-rules": "^1.0",
9564 "phpstan/phpstan-phpunit": "^1.0", 9939 "phpstan/phpstan-phpunit": "^1.0",
9565 "spatie/phpunit-snapshot-assertions": "^4.0" 9940 "spatie/phpunit-snapshot-assertions": "^4.0"
9566 }, 9941 },
9567 "type": "library", 9942 "type": "library",
9568 "extra": { 9943 "extra": {
9569 "branch-alias": { 9944 "branch-alias": {
9570 "dev-main": "1.1.x-dev" 9945 "dev-main": "1.1.x-dev"
9571 } 9946 }
9572 }, 9947 },
9573 "autoload": { 9948 "autoload": {
9574 "files": [ 9949 "files": [
9575 "src/helpers.php" 9950 "src/helpers.php"
9576 ], 9951 ],
9577 "psr-4": { 9952 "psr-4": {
9578 "Spatie\\FlareClient\\": "src" 9953 "Spatie\\FlareClient\\": "src"
9579 } 9954 }
9580 }, 9955 },
9581 "notification-url": "https://packagist.org/downloads/", 9956 "notification-url": "https://packagist.org/downloads/",
9582 "license": [ 9957 "license": [
9583 "MIT" 9958 "MIT"
9584 ], 9959 ],
9585 "description": "Send PHP errors to Flare", 9960 "description": "Send PHP errors to Flare",
9586 "homepage": "https://github.com/spatie/flare-client-php", 9961 "homepage": "https://github.com/spatie/flare-client-php",
9587 "keywords": [ 9962 "keywords": [
9588 "exception", 9963 "exception",
9589 "flare", 9964 "flare",
9590 "reporting", 9965 "reporting",
9591 "spatie" 9966 "spatie"
9592 ], 9967 ],
9593 "support": { 9968 "support": {
9594 "issues": "https://github.com/spatie/flare-client-php/issues", 9969 "issues": "https://github.com/spatie/flare-client-php/issues",
9595 "source": "https://github.com/spatie/flare-client-php/tree/1.3.6" 9970 "source": "https://github.com/spatie/flare-client-php/tree/1.3.6"
9596 }, 9971 },
9597 "funding": [ 9972 "funding": [
9598 { 9973 {
9599 "url": "https://github.com/spatie", 9974 "url": "https://github.com/spatie",
9600 "type": "github" 9975 "type": "github"
9601 } 9976 }
9602 ], 9977 ],
9603 "time": "2023-04-12T07:57:12+00:00" 9978 "time": "2023-04-12T07:57:12+00:00"
9604 }, 9979 },
9605 { 9980 {
9606 "name": "spatie/ignition", 9981 "name": "spatie/ignition",
9607 "version": "1.7.0", 9982 "version": "1.7.0",
9608 "source": { 9983 "source": {
9609 "type": "git", 9984 "type": "git",
9610 "url": "https://github.com/spatie/ignition.git", 9985 "url": "https://github.com/spatie/ignition.git",
9611 "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78" 9986 "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78"
9612 }, 9987 },
9613 "dist": { 9988 "dist": {
9614 "type": "zip", 9989 "type": "zip",
9615 "url": "https://api.github.com/repos/spatie/ignition/zipball/f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78", 9990 "url": "https://api.github.com/repos/spatie/ignition/zipball/f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78",
9616 "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78", 9991 "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78",
9617 "shasum": "" 9992 "shasum": ""
9618 }, 9993 },
9619 "require": { 9994 "require": {
9620 "ext-json": "*", 9995 "ext-json": "*",
9621 "ext-mbstring": "*", 9996 "ext-mbstring": "*",
9622 "php": "^8.0", 9997 "php": "^8.0",
9623 "spatie/backtrace": "^1.4", 9998 "spatie/backtrace": "^1.4",
9624 "spatie/flare-client-php": "^1.1", 9999 "spatie/flare-client-php": "^1.1",
9625 "symfony/console": "^5.4|^6.0", 10000 "symfony/console": "^5.4|^6.0",
9626 "symfony/var-dumper": "^5.4|^6.0" 10001 "symfony/var-dumper": "^5.4|^6.0"
9627 }, 10002 },
9628 "require-dev": { 10003 "require-dev": {
9629 "illuminate/cache": "^9.52", 10004 "illuminate/cache": "^9.52",
9630 "mockery/mockery": "^1.4", 10005 "mockery/mockery": "^1.4",
9631 "pestphp/pest": "^1.20", 10006 "pestphp/pest": "^1.20",
9632 "phpstan/extension-installer": "^1.1", 10007 "phpstan/extension-installer": "^1.1",
9633 "phpstan/phpstan-deprecation-rules": "^1.0", 10008 "phpstan/phpstan-deprecation-rules": "^1.0",
9634 "phpstan/phpstan-phpunit": "^1.0", 10009 "phpstan/phpstan-phpunit": "^1.0",
9635 "psr/simple-cache-implementation": "*", 10010 "psr/simple-cache-implementation": "*",
9636 "symfony/cache": "^6.2", 10011 "symfony/cache": "^6.2",
9637 "symfony/process": "^5.4|^6.0", 10012 "symfony/process": "^5.4|^6.0",
9638 "vlucas/phpdotenv": "^5.5" 10013 "vlucas/phpdotenv": "^5.5"
9639 }, 10014 },
9640 "suggest": { 10015 "suggest": {
9641 "openai-php/client": "Require get solutions from OpenAI", 10016 "openai-php/client": "Require get solutions from OpenAI",
9642 "simple-cache-implementation": "To cache solutions from OpenAI" 10017 "simple-cache-implementation": "To cache solutions from OpenAI"
9643 }, 10018 },
9644 "type": "library", 10019 "type": "library",
9645 "extra": { 10020 "extra": {
9646 "branch-alias": { 10021 "branch-alias": {
9647 "dev-main": "1.5.x-dev" 10022 "dev-main": "1.5.x-dev"
9648 } 10023 }
9649 }, 10024 },
9650 "autoload": { 10025 "autoload": {
9651 "psr-4": { 10026 "psr-4": {
9652 "Spatie\\Ignition\\": "src" 10027 "Spatie\\Ignition\\": "src"
9653 } 10028 }
9654 }, 10029 },
9655 "notification-url": "https://packagist.org/downloads/", 10030 "notification-url": "https://packagist.org/downloads/",
9656 "license": [ 10031 "license": [
9657 "MIT" 10032 "MIT"
9658 ], 10033 ],
9659 "authors": [ 10034 "authors": [
9660 { 10035 {
9661 "name": "Spatie", 10036 "name": "Spatie",
9662 "email": "info@spatie.be", 10037 "email": "info@spatie.be",
9663 "role": "Developer" 10038 "role": "Developer"
9664 } 10039 }
9665 ], 10040 ],
9666 "description": "A beautiful error page for PHP applications.", 10041 "description": "A beautiful error page for PHP applications.",
9667 "homepage": "https://flareapp.io/ignition", 10042 "homepage": "https://flareapp.io/ignition",
9668 "keywords": [ 10043 "keywords": [
9669 "error", 10044 "error",
9670 "flare", 10045 "flare",
9671 "laravel", 10046 "laravel",
9672 "page" 10047 "page"
9673 ], 10048 ],
9674 "support": { 10049 "support": {
9675 "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", 10050 "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
9676 "forum": "https://twitter.com/flareappio", 10051 "forum": "https://twitter.com/flareappio",
9677 "issues": "https://github.com/spatie/ignition/issues", 10052 "issues": "https://github.com/spatie/ignition/issues",
9678 "source": "https://github.com/spatie/ignition" 10053 "source": "https://github.com/spatie/ignition"
9679 }, 10054 },
9680 "funding": [ 10055 "funding": [
9681 { 10056 {
9682 "url": "https://github.com/spatie", 10057 "url": "https://github.com/spatie",
9683 "type": "github" 10058 "type": "github"
9684 } 10059 }
9685 ], 10060 ],
9686 "time": "2023-05-04T13:20:26+00:00" 10061 "time": "2023-05-04T13:20:26+00:00"
9687 }, 10062 },
9688 { 10063 {
9689 "name": "spatie/laravel-ignition", 10064 "name": "spatie/laravel-ignition",
9690 "version": "1.6.4", 10065 "version": "1.6.4",
9691 "source": { 10066 "source": {
9692 "type": "git", 10067 "type": "git",
9693 "url": "https://github.com/spatie/laravel-ignition.git", 10068 "url": "https://github.com/spatie/laravel-ignition.git",
9694 "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc" 10069 "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
9695 }, 10070 },
9696 "dist": { 10071 "dist": {
9697 "type": "zip", 10072 "type": "zip",
9698 "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", 10073 "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
9699 "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", 10074 "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
9700 "shasum": "" 10075 "shasum": ""
9701 }, 10076 },
9702 "require": { 10077 "require": {
9703 "ext-curl": "*", 10078 "ext-curl": "*",
9704 "ext-json": "*", 10079 "ext-json": "*",
9705 "ext-mbstring": "*", 10080 "ext-mbstring": "*",
9706 "illuminate/support": "^8.77|^9.27", 10081 "illuminate/support": "^8.77|^9.27",
9707 "monolog/monolog": "^2.3", 10082 "monolog/monolog": "^2.3",
9708 "php": "^8.0", 10083 "php": "^8.0",
9709 "spatie/flare-client-php": "^1.0.1", 10084 "spatie/flare-client-php": "^1.0.1",
9710 "spatie/ignition": "^1.4.1", 10085 "spatie/ignition": "^1.4.1",
9711 "symfony/console": "^5.0|^6.0", 10086 "symfony/console": "^5.0|^6.0",
9712 "symfony/var-dumper": "^5.0|^6.0" 10087 "symfony/var-dumper": "^5.0|^6.0"
9713 }, 10088 },
9714 "require-dev": { 10089 "require-dev": {
9715 "filp/whoops": "^2.14", 10090 "filp/whoops": "^2.14",
9716 "livewire/livewire": "^2.8|dev-develop", 10091 "livewire/livewire": "^2.8|dev-develop",
9717 "mockery/mockery": "^1.4", 10092 "mockery/mockery": "^1.4",
9718 "nunomaduro/larastan": "^1.0", 10093 "nunomaduro/larastan": "^1.0",
9719 "orchestra/testbench": "^6.23|^7.0", 10094 "orchestra/testbench": "^6.23|^7.0",
9720 "pestphp/pest": "^1.20", 10095 "pestphp/pest": "^1.20",
9721 "phpstan/extension-installer": "^1.1", 10096 "phpstan/extension-installer": "^1.1",
9722 "phpstan/phpstan-deprecation-rules": "^1.0", 10097 "phpstan/phpstan-deprecation-rules": "^1.0",
9723 "phpstan/phpstan-phpunit": "^1.0", 10098 "phpstan/phpstan-phpunit": "^1.0",
9724 "spatie/laravel-ray": "^1.27" 10099 "spatie/laravel-ray": "^1.27"
9725 }, 10100 },
9726 "type": "library", 10101 "type": "library",
9727 "extra": { 10102 "extra": {
9728 "laravel": { 10103 "laravel": {
9729 "providers": [ 10104 "providers": [
9730 "Spatie\\LaravelIgnition\\IgnitionServiceProvider" 10105 "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
9731 ], 10106 ],
9732 "aliases": { 10107 "aliases": {
9733 "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare" 10108 "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
9734 } 10109 }
9735 } 10110 }
9736 }, 10111 },
9737 "autoload": { 10112 "autoload": {
9738 "files": [ 10113 "files": [
9739 "src/helpers.php" 10114 "src/helpers.php"
9740 ], 10115 ],
9741 "psr-4": { 10116 "psr-4": {
9742 "Spatie\\LaravelIgnition\\": "src" 10117 "Spatie\\LaravelIgnition\\": "src"
9743 } 10118 }
9744 }, 10119 },
9745 "notification-url": "https://packagist.org/downloads/", 10120 "notification-url": "https://packagist.org/downloads/",
9746 "license": [ 10121 "license": [
9747 "MIT" 10122 "MIT"
9748 ], 10123 ],
9749 "authors": [ 10124 "authors": [
9750 { 10125 {
9751 "name": "Spatie", 10126 "name": "Spatie",
9752 "email": "info@spatie.be", 10127 "email": "info@spatie.be",
9753 "role": "Developer" 10128 "role": "Developer"
9754 } 10129 }
9755 ], 10130 ],
9756 "description": "A beautiful error page for Laravel applications.", 10131 "description": "A beautiful error page for Laravel applications.",
9757 "homepage": "https://flareapp.io/ignition", 10132 "homepage": "https://flareapp.io/ignition",
9758 "keywords": [ 10133 "keywords": [
9759 "error", 10134 "error",
9760 "flare", 10135 "flare",
9761 "laravel", 10136 "laravel",
9762 "page" 10137 "page"
9763 ], 10138 ],
9764 "support": { 10139 "support": {
9765 "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", 10140 "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
9766 "forum": "https://twitter.com/flareappio", 10141 "forum": "https://twitter.com/flareappio",
9767 "issues": "https://github.com/spatie/laravel-ignition/issues", 10142 "issues": "https://github.com/spatie/laravel-ignition/issues",
9768 "source": "https://github.com/spatie/laravel-ignition" 10143 "source": "https://github.com/spatie/laravel-ignition"
9769 }, 10144 },
9770 "funding": [ 10145 "funding": [
9771 { 10146 {
9772 "url": "https://github.com/spatie", 10147 "url": "https://github.com/spatie",
9773 "type": "github" 10148 "type": "github"
9774 } 10149 }
9775 ], 10150 ],
9776 "time": "2023-01-03T19:28:04+00:00" 10151 "time": "2023-01-03T19:28:04+00:00"
9777 }, 10152 },
9778 { 10153 {
9779 "name": "symfony/yaml", 10154 "name": "symfony/yaml",
9780 "version": "v6.0.19", 10155 "version": "v6.0.19",
9781 "source": { 10156 "source": {
9782 "type": "git", 10157 "type": "git",
9783 "url": "https://github.com/symfony/yaml.git", 10158 "url": "https://github.com/symfony/yaml.git",
9784 "reference": "deec3a812a0305a50db8ae689b183f43d915c884" 10159 "reference": "deec3a812a0305a50db8ae689b183f43d915c884"
9785 }, 10160 },
9786 "dist": { 10161 "dist": {
9787 "type": "zip", 10162 "type": "zip",
9788 "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884", 10163 "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884",
9789 "reference": "deec3a812a0305a50db8ae689b183f43d915c884", 10164 "reference": "deec3a812a0305a50db8ae689b183f43d915c884",
9790 "shasum": "" 10165 "shasum": ""
9791 }, 10166 },
9792 "require": { 10167 "require": {
9793 "php": ">=8.0.2", 10168 "php": ">=8.0.2",
9794 "symfony/polyfill-ctype": "^1.8" 10169 "symfony/polyfill-ctype": "^1.8"
9795 }, 10170 },
9796 "conflict": { 10171 "conflict": {
9797 "symfony/console": "<5.4" 10172 "symfony/console": "<5.4"
9798 }, 10173 },
9799 "require-dev": { 10174 "require-dev": {
9800 "symfony/console": "^5.4|^6.0" 10175 "symfony/console": "^5.4|^6.0"
9801 }, 10176 },
9802 "suggest": { 10177 "suggest": {
9803 "symfony/console": "For validating YAML files using the lint command" 10178 "symfony/console": "For validating YAML files using the lint command"
9804 }, 10179 },
9805 "bin": [ 10180 "bin": [
9806 "Resources/bin/yaml-lint" 10181 "Resources/bin/yaml-lint"
9807 ], 10182 ],
9808 "type": "library", 10183 "type": "library",
9809 "autoload": { 10184 "autoload": {
9810 "psr-4": { 10185 "psr-4": {
9811 "Symfony\\Component\\Yaml\\": "" 10186 "Symfony\\Component\\Yaml\\": ""
9812 }, 10187 },
9813 "exclude-from-classmap": [ 10188 "exclude-from-classmap": [
9814 "/Tests/" 10189 "/Tests/"
9815 ] 10190 ]
9816 }, 10191 },
9817 "notification-url": "https://packagist.org/downloads/", 10192 "notification-url": "https://packagist.org/downloads/",
9818 "license": [ 10193 "license": [
9819 "MIT" 10194 "MIT"
9820 ], 10195 ],
9821 "authors": [ 10196 "authors": [
9822 { 10197 {
9823 "name": "Fabien Potencier", 10198 "name": "Fabien Potencier",
9824 "email": "fabien@symfony.com" 10199 "email": "fabien@symfony.com"
9825 }, 10200 },
9826 { 10201 {
9827 "name": "Symfony Community", 10202 "name": "Symfony Community",
9828 "homepage": "https://symfony.com/contributors" 10203 "homepage": "https://symfony.com/contributors"
9829 } 10204 }
9830 ], 10205 ],
9831 "description": "Loads and dumps YAML files", 10206 "description": "Loads and dumps YAML files",
9832 "homepage": "https://symfony.com", 10207 "homepage": "https://symfony.com",
9833 "support": { 10208 "support": {
9834 "source": "https://github.com/symfony/yaml/tree/v6.0.19" 10209 "source": "https://github.com/symfony/yaml/tree/v6.0.19"
9835 }, 10210 },
9836 "funding": [ 10211 "funding": [
9837 { 10212 {
9838 "url": "https://symfony.com/sponsor", 10213 "url": "https://symfony.com/sponsor",
9839 "type": "custom" 10214 "type": "custom"
9840 }, 10215 },
9841 { 10216 {
9842 "url": "https://github.com/fabpot", 10217 "url": "https://github.com/fabpot",
9843 "type": "github" 10218 "type": "github"
9844 }, 10219 },
9845 { 10220 {
9846 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 10221 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9847 "type": "tidelift" 10222 "type": "tidelift"
9848 } 10223 }
9849 ], 10224 ],
9850 "time": "2023-01-11T11:50:03+00:00" 10225 "time": "2023-01-11T11:50:03+00:00"
9851 }, 10226 },
9852 { 10227 {
9853 "name": "theseer/tokenizer", 10228 "name": "theseer/tokenizer",
9854 "version": "1.2.1", 10229 "version": "1.2.1",
9855 "source": { 10230 "source": {
9856 "type": "git", 10231 "type": "git",
9857 "url": "https://github.com/theseer/tokenizer.git", 10232 "url": "https://github.com/theseer/tokenizer.git",
9858 "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" 10233 "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
9859 }, 10234 },
9860 "dist": { 10235 "dist": {
9861 "type": "zip", 10236 "type": "zip",
9862 "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", 10237 "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
9863 "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", 10238 "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
9864 "shasum": "" 10239 "shasum": ""
9865 }, 10240 },
9866 "require": { 10241 "require": {
9867 "ext-dom": "*", 10242 "ext-dom": "*",
9868 "ext-tokenizer": "*", 10243 "ext-tokenizer": "*",
9869 "ext-xmlwriter": "*", 10244 "ext-xmlwriter": "*",
9870 "php": "^7.2 || ^8.0" 10245 "php": "^7.2 || ^8.0"
9871 }, 10246 },
9872 "type": "library", 10247 "type": "library",
9873 "autoload": { 10248 "autoload": {
9874 "classmap": [ 10249 "classmap": [
9875 "src/" 10250 "src/"
9876 ] 10251 ]
9877 }, 10252 },
9878 "notification-url": "https://packagist.org/downloads/", 10253 "notification-url": "https://packagist.org/downloads/",
9879 "license": [ 10254 "license": [
9880 "BSD-3-Clause" 10255 "BSD-3-Clause"
9881 ], 10256 ],
9882 "authors": [ 10257 "authors": [
9883 { 10258 {
9884 "name": "Arne Blankerts", 10259 "name": "Arne Blankerts",
9885 "email": "arne@blankerts.de", 10260 "email": "arne@blankerts.de",
9886 "role": "Developer" 10261 "role": "Developer"
9887 } 10262 }
9888 ], 10263 ],
9889 "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", 10264 "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
9890 "support": { 10265 "support": {
9891 "issues": "https://github.com/theseer/tokenizer/issues", 10266 "issues": "https://github.com/theseer/tokenizer/issues",
9892 "source": "https://github.com/theseer/tokenizer/tree/1.2.1" 10267 "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
9893 }, 10268 },
9894 "funding": [ 10269 "funding": [
9895 { 10270 {
9896 "url": "https://github.com/theseer", 10271 "url": "https://github.com/theseer",
9897 "type": "github" 10272 "type": "github"
9898 } 10273 }
9899 ], 10274 ],
9900 "time": "2021-07-28T10:34:58+00:00" 10275 "time": "2021-07-28T10:34:58+00:00"
9901 } 10276 }
9902 ], 10277 ],
9903 "aliases": [], 10278 "aliases": [],
9904 "minimum-stability": "stable", 10279 "minimum-stability": "stable",
9905 "stability-flags": [], 10280 "stability-flags": [],
9906 "prefer-stable": true, 10281 "prefer-stable": true,
9907 "prefer-lowest": false, 10282 "prefer-lowest": false,
9908 "platform": { 10283 "platform": {
9909 "php": "^8.0.2" 10284 "php": "^8.0.2"
9910 }, 10285 },
9911 "platform-dev": [], 10286 "platform-dev": [],
9912 "plugin-api-version": "2.3.0" 10287 "plugin-api-version": "2.6.0"
9913 } 10288 }
9914 10289
database/migrations/2024_06_24_092718_alert_table_users.php
File was created 1 <?php
2
3 use Illuminate\Database\Migrations\Migration;
4 use Illuminate\Database\Schema\Blueprint;
5 use Illuminate\Support\Facades\Schema;
6
7 return new class extends Migration
8 {
9 /**
10 * Run the migrations.
11 *
12 * @return void
13 */
14 public function up()
15 {
16 Schema::table('users', function (Blueprint $table) {
17 $table->smallInteger('is_lookin')->tinyInteger('is_lookin')->default(0)->change();
18 $table->smallInteger('is_message')->tinyInteger('is_message')->default(0)->change();
19 $table->smallInteger('is_public')->tinyInteger('is_public')->default(0)->change();
20 $table->smallInteger('is_manager')->tinyInteger('is_manager')->default(0)->change();
21 });
22 }
23
24 /**
25 * Reverse the migrations.
26 *
27 * @return void
28 */
29 public function down()
30 {
31 Schema::table('users', function (Blueprint $table) {
32 //
33 });
34 }
35 };
36
resources/views/admin/employer/edit.blade.php
1 @extends('layout.admin', ['title' => 'Админка - Редактирование работодателя']) 1 @extends('layout.admin', ['title' => 'Админка - Редактирование работодателя'])
2 2
3 @section('content') 3 @section('content')
4 <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300"> 4 <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300">
5 Работодатель-пользователь: "{{$employer->users->name_man}} ({{$employer->user_id}})" 5 Работодатель-пользователь: "{{$employer->users->name_man}} ({{$employer->user_id}})"
6 </h4> 6 </h4>
7 <form method="POST" action="" enctype="multipart/form-data"> 7 <form method="POST" action="" enctype="multipart/form-data">
8 <div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800"> 8 <div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800">
9 @csrf 9 @csrf
10 <div class="tabs"> 10 <div class="tabs">
11 <input type="radio" name="tab-btn" id="tab-btn-1" value="" checked> 11 <input type="radio" name="tab-btn" id="tab-btn-1" value="" checked>
12 <label for="tab-btn-1">Персональная информация</label> 12 <label for="tab-btn-1">Персональная информация</label>
13 <input type="radio" name="tab-btn" id="tab-btn-2" value=""> 13 <input type="radio" name="tab-btn" id="tab-btn-2" value="">
14 <label for="tab-btn-2">Настройки</label> 14 <label for="tab-btn-2">Настройки</label>
15 <input type="radio" name="tab-btn" id="tab-btn-3" value=""> 15 <input type="radio" name="tab-btn" id="tab-btn-3" value="">
16 <label for="tab-btn-3">Флот</label> 16 <label for="tab-btn-3">Флот</label>
17 <div id="content-1"> 17 <div id="content-1">
18 18
19 <label class="block text-sm"> 19 <label class="block text-sm">
20 <span class="text-gray-700 dark:text-gray-400">Имя компании</span> 20 <span class="text-gray-700 dark:text-gray-400">Имя компании</span>
21 <input name="name" id="name" 21 <input name="name" id="name"
22 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 22 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
23 placeholder="Имя компании" value="{{ old('name') ?? $employer->users->name ?? '' }}" 23 placeholder="Имя компании" value="{{ old('name') ?? $employer->users->name ?? '' }}"
24 /> 24 />
25 @error('name') 25 @error('name')
26 <span class="text-xs text-red-600 dark:text-red-400"> 26 <span class="text-xs text-red-600 dark:text-red-400">
27 {{ $message }} 27 {{ $message }}
28 </span> 28 </span>
29 @enderror 29 @enderror
30 </label><br> 30 </label><br>
31 31
32 <label class="block text-sm"> 32 <label class="block text-sm">
33 <span class="text-gray-700 dark:text-gray-400">Email</span> 33 <span class="text-gray-700 dark:text-gray-400">Email</span>
34 <input name="email" id="email" 34 <input name="email" id="email"
35 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 35 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
36 placeholder="Почта" value="{{ old('email') ?? $employer->email ?? '' }}" 36 placeholder="Почта" value="{{ old('email') ?? $employer->email ?? '' }}"
37 /> 37 />
38 @error('email') 38 @error('email')
39 <span class="text-xs text-red-600 dark:text-red-400"> 39 <span class="text-xs text-red-600 dark:text-red-400">
40 {{ $message }} 40 {{ $message }}
41 </span> 41 </span>
42 @enderror 42 @enderror
43 </label><br> 43 </label><br>
44 44
45 <label class="block text-sm"> 45 <label class="block text-sm">
46 <span class="text-gray-700 dark:text-gray-400">Телефон</span> 46 <span class="text-gray-700 dark:text-gray-400">Телефон</span>
47 <input name="telephone" id="telephone" 47 <input name="telephone" id="telephone"
48 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 48 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
49 placeholder="Телефон" value="{{ old('telephone') ?? $employer->telephone ?? '' }}" 49 placeholder="Телефон" value="{{ old('telephone') ?? $employer->telephone ?? '' }}"
50 /> 50 />
51 @error('telephone') 51 @error('telephone')
52 <span class="text-xs text-red-600 dark:text-red-400"> 52 <span class="text-xs text-red-600 dark:text-red-400">
53 {{ $message }} 53 {{ $message }}
54 </span> 54 </span>
55 @enderror 55 @enderror
56 </label><br> 56 </label><br>
57 57
58 <label class="block text-sm"> 58 <label class="block text-sm">
59 <span class="text-gray-700 dark:text-gray-400">Адрес</span> 59 <span class="text-gray-700 dark:text-gray-400">Адрес</span>
60 <input name="address" id="address" 60 <input name="address" id="address"
61 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 61 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
62 placeholder="Адрес" value="{{ old('address') ?? $employer->address ?? '' }}" 62 placeholder="Адрес" value="{{ old('address') ?? $employer->address ?? '' }}"
63 /> 63 />
64 @error('address') 64 @error('address')
65 <span class="text-xs text-red-600 dark:text-red-400"> 65 <span class="text-xs text-red-600 dark:text-red-400">
66 {{ $message }} 66 {{ $message }}
67 </span> 67 </span>
68 @enderror 68 @enderror
69 </label><br> 69 </label><br>
70 70
71 <label class="block text-sm"> 71 <label class="block text-sm">
72 <span class="text-gray-700 dark:text-gray-400">Сайт</span> 72 <span class="text-gray-700 dark:text-gray-400">Сайт</span>
73 <input name="site" id="site" 73 <input name="site" id="site"
74 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 74 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
75 placeholder="Сайт" value="{{ old('site') ?? $employer->site ?? '' }}" 75 placeholder="Сайт" value="{{ old('site') ?? $employer->site ?? '' }}"
76 /> 76 />
77 @error('site') 77 @error('site')
78 <span class="text-xs text-red-600 dark:text-red-400"> 78 <span class="text-xs text-red-600 dark:text-red-400">
79 {{ $message }} 79 {{ $message }}
80 </span> 80 </span>
81 @enderror 81 @enderror
82 </label><br> 82 </label><br>
83 83
84 <label class="block text-sm"> 84 <label class="block text-sm">
85 <span class="text-gray-700 dark:text-gray-400">Лого</span> 85 <span class="text-gray-700 dark:text-gray-400">Лого</span>
86 86
87 <input name="logo" id="logo" type="file" 87 <input name="logo" id="logo" type="file"
88 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" 88 class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
89 placeholder="Лого" value="" 89 placeholder="Лого" value=""
90 /> 90 />
91 @isset($employer->logo) 91 @isset($employer->logo)
92 <img src="<?=asset(Storage::url($employer->logo))?>" width="150"/> 92 <img src="<?=asset(Storage::url($employer->logo))?>" width="150"/>
93 @endisset 93 @endisset
94 @error('logo') 94 @error('logo')
95 <span class="text-xs text-red-600 dark:text-red-400"> 95 <span class="text-xs text-red-600 dark:text-red-400">
96 {{ $message }} 96 {{ $message }}
97 </span> 97 </span>
98 @enderror 98 @enderror
99 </label><br> 99 </label><br>
100 100
101 <label class="block mt-4 text-sm"> 101 <label class="block mt-4 text-sm">
102 <span class="text-gray-700 dark:text-gray-400">Описание</span> 102 <span class="text-gray-700 dark:text-gray-400">Описание</span>
103 <textarea name="text" id="text" 103 <textarea name="text" id="text"
104 class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-textarea focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" 104 class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-textarea focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray"
105 rows="3" 105 rows="3"
106 placeholder="Описание компании" 106 placeholder="Описание компании"
107 >{{ old('text') ?? $employer->text ?? '' }}</textarea> 107 >{{ old('text') ?? $employer->text ?? '' }}</textarea>
108 </label> 108 </label>
109 109
110 <hr> 110 <hr>
111 111
112 <label class="block mt-4 text-sm"> 112 <label class="block mt-4 text-sm">
113 <span class="text-gray-700 dark:text-gray-400">Категории</span> 113 <span class="text-gray-700 dark:text-gray-400">Категории</span>
114 114
115 <select name="category" id="category" class="form-control"> 115 <select name="category" id="category" class="form-control">
116 @foreach($select_category as $cat) 116 @foreach($select_category as $cat)
117 <option value="{{ $cat->name }}" 117 <option value="{{ $cat->name }}"
118 @isset($employer) 118 @isset($employer)
119 @if($cat->name == $employer->category) 119 @if($cat->name == $employer->category)
120 selected 120 selected
121 @endif 121 @endif
122 @endisset 122 @endisset
123 >{{ $cat->name }}</option> 123 >{{ $cat->name }}</option>
124 @endforeach 124 @endforeach
125 </select> 125 </select>
126 126
127 @error('category') 127 @error('category')
128 <div class="alert alert-danger">{{ $message }}</div> 128 <div class="alert alert-danger">{{ $message }}</div>
129 @enderror 129 @enderror
130 </label> 130 </label>
131 131
132 <label class="block mt-4 text-sm"> 132 <label class="block mt-4 text-sm">
133 <span class="text-gray-700 dark:text-gray-400">Комментарий админа</span> 133 <span class="text-gray-700 dark:text-gray-400">Комментарий админа</span>
134 <textarea name="comment_admin" id="comment_admin" 134 <textarea name="comment_admin" id="comment_admin"
135 class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-textarea focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray" 135 class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-textarea focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray"
136 rows="3" 136 rows="3"
137 placeholder="Комментарий админа" 137 placeholder="Комментарий админа"
138 >{{ old('comment_admin') ?? $employer->comment_admin ?? '' }}</textarea> 138 >{{ old('comment_admin') ?? $employer->comment_admin ?? '' }}</textarea>
139 </label> 139 </label>
140 140
141 </div> 141 </div>
142 <div id="content-2"> 142 <div id="content-2">
143 <label class="block text-sm"> 143 <label class="block text-sm">
144 <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300"> 144 <h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300">
145 Права работодателя: 145 Права работодателя:
146 </h4> 146 </h4>
147 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Просмотр базы резюме </p> 147 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Просмотр базы резюме </p>
148 <input type="hidden" name="is_lookin" value="0" /> 148 <input type="hidden" name="is_lookin" value="0" />
149 <input name="is_lookin" <? if ($employer->users->is_lookin) echo "checked";?> 149 <input name="is_lookin" <?php if ($employer->users->is_lookin) echo "checked";?>
150 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 150 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
151 placeholder="" type="checkbox" value="1" 151 placeholder="" type="checkbox" value="1"
152 /><br> 152 /><br>
153 153
154 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Отправка сообщений</p> 154 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Отправка сообщений</p>
155 <input type="hidden" name="is_message" value="0" /> 155 <input type="hidden" name="is_message" value="0" />
156 <input name="is_message" id="is_message" <? if ($employer->users->is_message) echo "checked";?> 156 <input name="is_message" id="is_message" <?php if ($employer->users->is_message) echo "checked";?>
157 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 157 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
158 placeholder="" type="checkbox" value="1" 158 placeholder="" type="checkbox" value="1"
159 /><br> 159 /><br>
160 160
161 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Публикация вакансий</p> 161 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Публикация вакансий</p>
162 <input type="hidden" name="is_public" value="0" /> 162 <input type="hidden" name="is_public" value="0" />
163 <input name="is_public" id="is_public" <? if ($employer->users->is_public) echo "checked";?> 163 <input name="is_public" id="is_public" <?php if ($employer->users->is_public) echo "checked";?>
164 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 164 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
165 placeholder="" type="checkbox" value="1" 165 placeholder="" type="checkbox" value="1"
166 /><br> 166 /><br>
167 167
168 </label> 168 </label>
169 169
170 <label class="block text-sm"> 170 <label class="block text-sm">
171 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Работодатель скрыт </p> 171 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Работодатель скрыт </p>
172 <input type="hidden" name="status_hidden" value="0" /> 172 <input type="hidden" name="status_hidden" value="0" />
173 <input name="status_hidden" <? if ($employer->status_hidden) echo "checked";?> 173 <input name="status_hidden" <?php if ($employer->status_hidden) echo "checked";?>
174 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 174 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
175 placeholder="" type="checkbox" value="1" 175 placeholder="" type="checkbox" value="1"
176 /> 176 />
177 </label><br> 177 </label><br>
178 178
179 <label class="block text-sm"> 179 <label class="block text-sm">
180 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Компания подтверждена </p> 180 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Компания подтверждена </p>
181 <input type="hidden" name="oficial_status" value="0" /> 181 <input type="hidden" name="oficial_status" value="0" />
182 <input name="oficial_status" <? if ($employer->oficial_status) echo "checked";?> 182 <input name="oficial_status" <?php if ($employer->oficial_status) echo "checked";?>
183 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 183 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
184 placeholder="" type="checkbox" value="1" 184 placeholder="" type="checkbox" value="1"
185 /> 185 />
186 </label><br> 186 </label><br>
187 187
188 <label class="block text-sm"> 188 <label class="block text-sm">
189 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Разрешение публикации в соц.сетях </p> 189 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Разрешение публикации в соц.сетях </p>
190 <input type="hidden" name="social_is" value="0" /> 190 <input type="hidden" name="social_is" value="0" />
191 <input name="social_is" <? if ($employer->social_is) echo "checked";?> 191 <input name="social_is" <?php if ($employer->social_is) echo "checked";?>
192 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 192 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
193 placeholder="" type="checkbox" value="1" 193 placeholder="" type="checkbox" value="1"
194 /> 194 />
195 </label><br> 195 </label><br>
196 196
197 <label class="block text-sm"> 197 <label class="block text-sm">
198 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Рассылка </p> 198 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Рассылка </p>
199 <input type="hidden" name="sending_is" value="0" /> 199 <input type="hidden" name="sending_is" value="0" />
200 <input name="sending_is" <? if ($employer->sending_is) echo "checked";?> 200 <input name="sending_is" <?php if ($employer->sending_is) echo "checked";?>
201 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray " 201 class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
202 placeholder="" type="checkbox" value="1" 202 placeholder="" type="checkbox" value="1"
203 /> 203 />
204 </label><br> 204 </label><br>
205 205
206 </div> 206 </div>
207 207
208 <div id="content-3"> 208 <div id="content-3">
209 <label class="block text-sm"> 209 <label class="block text-sm">
210 <span class="text-gray-700 dark:text-gray-400">Флоты</span> 210 <span class="text-gray-700 dark:text-gray-400">Флоты</span>
211 <a href="{{ route('admin.flot_add', ['employer' => $employer->id]) }}" 211 <a href="{{ route('admin.flot_add', ['employer' => $employer->id]) }}"
212 class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple" 212 class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple"
213 style="display: -webkit-inline-box; height: 30px!important;" 213 style="display: -webkit-inline-box; height: 30px!important;"
214 >Новый корабль</a> 214 >Новый корабль</a>
215 @if ($flots->count()) 215 @if ($flots->count())
216 <table class="w-full whitespace-no-wrap"> 216 <table class="w-full whitespace-no-wrap">
217 <thead> 217 <thead>
218 <tr class="text-xs font-semibold tracking-wide text-left text-gray-500 uppercase border-b dark:border-gray-700 bg-gray-50 dark:text-gray-400 dark:bg-gray-800"> 218 <tr class="text-xs font-semibold tracking-wide text-left text-gray-500 uppercase border-b dark:border-gray-700 bg-gray-50 dark:text-gray-400 dark:bg-gray-800">
219 <th class="px-4 py-3">ID</th> 219 <th class="px-4 py-3">ID</th>
220 <th class="px-4 py-3">Название</th> 220 <th class="px-4 py-3">Название</th>
221 <th class="px-4 py-3">Картинка</th> 221 <th class="px-4 py-3">Картинка</th>
222 <th class="px-4 py-3">Дата регист.</th> 222 <th class="px-4 py-3">Дата регист.</th>
223 <th class="px-4 py-3">Редакт.</th> 223 <th class="px-4 py-3">Редакт.</th>
224 </tr> 224 </tr>
225 </thead> 225 </thead>
226 <tbody class="bg-white divide-y dark:divide-gray-700 dark:bg-gray-800"> 226 <tbody class="bg-white divide-y dark:divide-gray-700 dark:bg-gray-800">
227 @foreach($flots as $flot) 227 @foreach($flots as $flot)
228 <tr class="text-gray-700 dark:text-gray-400"> 228 <tr class="text-gray-700 dark:text-gray-400">
229 <td class="px-4 py-3 text-xs"> 229 <td class="px-4 py-3 text-xs">
230 {{ $flot->id }} 230 {{ $flot->id }}
231 </td> 231 </td>
232 <td class="px-4 py-3 text-xs"> 232 <td class="px-4 py-3 text-xs">
233 {{ $flot->name }} 233 {{ $flot->name }}
234 </td> 234 </td>
235 <td class="px-4 py-3 text-xs"> 235 <td class="px-4 py-3 text-xs">
236 @if (isset($flot->image)) 236 @if (isset($flot->image))
237 <div class="flex items-center text-sm"> 237 <div class="flex items-center text-sm">
238 <div class="relative hidden w-8 h-8 mr-3 rounded-full md:block"> 238 <div class="relative hidden w-8 h-8 mr-3 rounded-full md:block">
239 <img 239 <img
240 class="object-cover w-full h-full rounded-full" 240 class="object-cover w-full h-full rounded-full"
241 src="{{ asset(Storage::url($flot->image)) }}" 241 src="{{ asset(Storage::url($flot->image)) }}"
242 alt="{{ $flot->name }}" 242 alt="{{ $flot->name }}"
243 loading="lazy" 243 loading="lazy"
244 /> 244 />
245 <div 245 <div
246 class="absolute inset-0 rounded-full shadow-inner" 246 class="absolute inset-0 rounded-full shadow-inner"
247 aria-hidden="true" 247 aria-hidden="true"
248 ></div> 248 ></div>
249 </div> 249 </div>
250 </div> 250 </div>
251 @else 251 @else
252 - 252 -
253 @endif 253 @endif
254 </td> 254 </td>
255 <td class="px-4 py-3 text-xs"> 255 <td class="px-4 py-3 text-xs">
256 {{ $flot->created_at }} 256 {{ $flot->created_at }}
257 </td> 257 </td>
258 <td class="px-4 py-3 text-xs"> 258 <td class="px-4 py-3 text-xs">
259 <div class="flex items-center text-sm"> 259 <div class="flex items-center text-sm">
260 <div> 260 <div>
261 <a href="{{ route('admin.flot', ['flot' => $flot->id, 'employer' => $flot->employer_id]) }}" class="text-xs text-gray-600 dark:text-gray-400"> 261 <a href="{{ route('admin.flot', ['flot' => $flot->id, 'employer' => $flot->employer_id]) }}" class="text-xs text-gray-600 dark:text-gray-400">
262 Редактировать 262 Редактировать
263 </a> | 263 </a> |
264 <a href="{{ route('admin.flot_delete', ['flot' => $flot->id, 'employer_id' => $flot->employer_id]) }}" class="text-xs text-gray-600 dark:text-gray-400"> 264 <a href="{{ route('admin.flot_delete', ['flot' => $flot->id, 'employer_id' => $flot->employer_id]) }}" class="text-xs text-gray-600 dark:text-gray-400">
265 Удалить 265 Удалить
266 </a> 266 </a>
267 </div> 267 </div>
268 </div> 268 </div>
269 </td> 269 </td>
270 </tr> 270 </tr>
271 @endforeach 271 @endforeach
272 </tbody> 272 </tbody>
273 </table> 273 </table>
274 @else 274 @else
275 <h2>Нет данных</h2> 275 <h2>Нет данных</h2>
276 @endif 276 @endif
277 </label> 277 </label>
278 </div> 278 </div>
279 </div> 279 </div>
280 <br> 280 <br>
281 <div class="flex flex-col flex-wrap mb-4 space-y-4 md:flex-row md:items-end md:space-x-4"> 281 <div class="flex flex-col flex-wrap mb-4 space-y-4 md:flex-row md:items-end md:space-x-4">
282 <div> 282 <div>
283 <button type="submit" class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple"> 283 <button type="submit" class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple">
284 Сохранить 284 Сохранить
285 </button> 285 </button>
286 <a href="{{ route('admin.employers') }}" 286 <a href="{{ route('admin.employers') }}"
287 class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple" 287 class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple"
288 style="display: -webkit-inline-box; height: 30px!important;" 288 style="display: -webkit-inline-box; height: 30px!important;"
289 >Назад</a> 289 >Назад</a>
290 290
291 </div> 291 </div>
292 </div> 292 </div>
293 </div> 293 </div>
294 </form> 294 </form>
295 @endsection 295 @endsection
296 296
resources/views/employers/menu.blade.php
1 <div class="cabinet__side-item"> 1 <div class="cabinet__side-item">
2 <div class="cabinet__menu"> 2 <div class="cabinet__menu">
3 <button type="button" class="cabinet__menu-toper js-toggle"> 3 <button type="button" class="cabinet__menu-toper js-toggle">
4 <span class="cabinet__menu-toper-text"> 4 <span class="cabinet__menu-toper-text">
5 <i> 5 <i>
6 <svg> 6 <svg>
7 <use xlink:href="{{ asset('images/sprite.svg#cabinet-1') }}"></use> 7 <use xlink:href="{{ asset('images/sprite.svg#cabinet-1') }}"></use>
8 </svg> 8 </svg>
9 </i> 9 </i>
10 <span>Профиль</span> 10 <span>Профиль</span>
11 </span> 11 </span>
12 <i class="cabinet__menu-toper-arrow"> 12 <i class="cabinet__menu-toper-arrow">
13 <svg> 13 <svg>
14 <use xlink:href="{{ asset('images/sprite.svg#arrow') }}"></use> 14 <use xlink:href="{{ asset('images/sprite.svg#arrow') }}"></use>
15 </svg> 15 </svg>
16 </i> 16 </i>
17 </button> 17 </button>
18 <div class="cabinet__menu-body"> 18 <div class="cabinet__menu-body">
19 <div class="cabinet__menu-items"> 19 <div class="cabinet__menu-items">
20 <a href="{{ route('employer.employer_info') }}" class="cabinet__menu-item @if ($item==0) active @endif"> 20 <a href="{{ route('employer.employer_info') }}" class="cabinet__menu-item @if ($item==0) active @endif">
21 <i> 21 <i>
22 <svg> 22 <svg>
23 <use xlink:href="{{ asset('images/sprite.svg#cabinet-1') }}"></use> 23 <use xlink:href="{{ asset('images/sprite.svg#cabinet-1') }}"></use>
24 </svg> 24 </svg>
25 </i> 25 </i>
26 <span>Личные данные</span> 26 <span>Личные данные</span>
27 </a> 27 </a>
28 <a href="{{ route('employer.cabinet') }}" class="cabinet__menu-item @if ($item==1) active @endif"> 28 <a href="{{ route('employer.cabinet') }}" class="cabinet__menu-item @if ($item==1) active @endif">
29 <i> 29 <i>
30 <svg> 30 <svg>
31 <use xlink:href="{{ asset('images/sprite.svg#cabinet-1') }}"></use> 31 <use xlink:href="{{ asset('images/sprite.svg#cabinet-1') }}"></use>
32 </svg> 32 </svg>
33 </i> 33 </i>
34 <span>Профиль</span> 34 <span>Профиль</span>
35 </a> 35 </a>
36 @if ((!Auth()->user()->is_worker) && (Auth()->user()->is_public)) 36 @if ((!Auth()->user()->is_worker) && (Auth()->user()->is_public))
37 <a href="{{ route('employer.cabinet_vacancie') }}" class="cabinet__menu-item @if ($item==2) active @endif"> 37 <a href="{{ route('employer.cabinet_vacancie') }}" class="cabinet__menu-item @if ($item==2) active @endif">
38 <i> 38 <i>
39 <svg> 39 <svg>
40 <use xlink:href="{{ asset('images/sprite.svg#cabinet-2') }}"></use> 40 <use xlink:href="{{ asset('images/sprite.svg#cabinet-2') }}"></use>
41 </svg> 41 </svg>
42 </i> 42 </i>
43 <span>Разместить вакансию</span> 43 <span>Разместить вакансию</span>
44 </a> 44 </a>
45 @else 45 @else
46 <a href="{{ route('employer.cabinet_vacancie_danger') }}" class="cabinet__menu-item @if ($item==2) active @endif"> 46 <a href="{{ route('employer.cabinet_vacancie_danger') }}" class="cabinet__menu-item @if ($item==2) active @endif">
47 <i> 47 <i>
48 <svg> 48 <svg>
49 <use xlink:href="{{ asset('images/sprite.svg#cabinet-2') }}"></use> 49 <use xlink:href="{{ asset('images/sprite.svg#cabinet-2') }}"></use>
50 </svg> 50 </svg>
51 </i> 51 </i>
52 <span>Разместить вакансию</span> 52 <span>Разместить вакансию</span>
53 </a> 53 </a>
54 @endif 54 @endif
55 <a href="{{ route('employer.vacancy_list') }}" class="cabinet__menu-item @if ($item==3) active @endif"> 55 <a href="{{ route('employer.vacancy_list') }}" class="cabinet__menu-item @if ($item==3) active @endif">
56 <i> 56 <i>
57 <svg> 57 <svg>
58 <use xlink:href="{{ asset('images/sprite.svg#cabinet-3') }}"></use> 58 <use xlink:href="{{ asset('images/sprite.svg#cabinet-3') }}"></use>
59 </svg> 59 </svg>
60 </i> 60 </i>
61 <span>Мои вакансии</span> 61 <span>Мои вакансии</span>
62 </a> 62 </a>
63 <!-- <a href="{ route('employer.answers', ['employer' => $id_employer]) }}" class="cabinet__menu-item if ($item==4) active endif"> 63 <!-- <a href="{ route('employer.answers', ['employer' => $id_employer]) }}" class="cabinet__menu-item if ($item==4) active endif">
64 <i> 64 <i>
65 <svg> 65 <svg>
66 <use xlink:href="{ asset('images/sprite.svg#cabinet-4') }}"></use> 66 <use xlink:href="{ asset('images/sprite.svg#cabinet-4') }}"></use>
67 </svg> 67 </svg>
68 </i> 68 </i>
69 <span>Отклики на вакансию</span> 69 <span>Отклики на вакансию</span>
70 </a>--> 70 </a>-->
71 <a href="{{ route('employer.messages', ['type_message' => 'input']) }}" class="cabinet__menu-item @if ($item==5) active @endif"> 71 <a href="{{ route('employer.messages', ['type_message' => 'input']) }}" class="cabinet__menu-item @if ($item==5) active @endif">
72 <i> 72 <i>
73 <svg> 73 <svg>
74 <use xlink:href="{{ asset('images/sprite.svg#cabinet-5') }}"></use> 74 <use xlink:href="{{ asset('images/sprite.svg#cabinet-5') }}"></use>
75 </svg> 75 </svg>
76 </i> 76 </i>
77 <span>Сообщения</span> 77 <span>Сообщения</span>
78 </a> 78 </a>
79 <a href="{{ route('employer.favorites') }}" class="cabinet__menu-item @if ($item==6) active @endif"> 79 <a href="{{ route('employer.favorites') }}" class="cabinet__menu-item @if ($item==6) active @endif">
80 <i> 80 <i>
81 <svg> 81 <svg>
82 <use xlink:href="{{ asset('images/sprite.svg#cabinet-6') }}"></use> 82 <use xlink:href="{{ asset('images/sprite.svg#cabinet-6') }}"></use>
83 </svg> 83 </svg>
84 </i> 84 </i>
85 <span>Избранные кандидаты</span> 85 <span>Избранные кандидаты</span>
86 </a> 86 </a>
87 @if ((!Auth()->user()->is_worker) && (Auth()->user()->is_lookin))
87 <a href="{{ route('employer.bd') }}" class="cabinet__menu-item @if ($item==7) active @endif"> 88 <a href="{{ route('employer.bd') }}" class="cabinet__menu-item @if ($item==7) active @endif">
88 <i> 89 <i>
89 <svg> 90 <svg>
90 <use xlink:href="{{ asset('images/sprite.svg#cabinet-7')}}"></use> 91 <use xlink:href="{{ asset('images/sprite.svg#cabinet-7')}}"></use>
91 </svg> 92 </svg>
92 </i> 93 </i>
93 <span>База данных</span> 94 <span>База данных</span>
94 </a> 95 </a>
95 @if ((!Auth()->user()->is_worker) && (Auth()->user()->is_lookin))
96 <a href="{{ route('bd_resume') }}" target="_blank" class="cabinet__menu-item @if ($item==8) active @endif"> 96 <a href="{{ route('bd_resume') }}" target="_blank" class="cabinet__menu-item @if ($item==8) active @endif">
97 <i> 97 <i>
98 <svg> 98 <svg>
99 <use xlink:href="{{ asset('images/sprite.svg#cabinet-8') }}"></use> 99 <use xlink:href="{{ asset('images/sprite.svg#cabinet-8') }}"></use>
100 </svg> 100 </svg>
101 </i> 101 </i>
102 <span>База резюме</span> 102 <span>База резюме</span>
103 </a> 103 </a>
104 @else
105 <a href="{{ route('bd_resume_danger') }}" target="_blank" class="cabinet__menu-item @if ($item==8) active @endif">
106 <i>
107 <svg>
108 <use xlink:href="{{ asset('images/sprite.svg#cabinet-8') }}"></use>
109 </svg>
110 </i>
111 <span>База резюме</span>
112 </a>
113 @endif 104 @endif
114 <a href="{{ route('employer.send_all_messages') }}" class="cabinet__menu-item @if ($item==9) active @endif"> 105 <a href="{{ route('employer.send_all_messages') }}" class="cabinet__menu-item @if ($item==9) active @endif">
115 <i> 106 <i>
116 <svg> 107 <svg>
117 <use xlink:href="{{ asset('images/sprite.svg#cabinet-9') }}"></use> 108 <use xlink:href="{{ asset('images/sprite.svg#cabinet-9') }}"></use>
118 </svg> 109 </svg>
119 </i> 110 </i>
120 <span>Рассылка сообщений</span> 111 <span>Рассылка сообщений</span>
121 </a> 112 </a>
122 <a href="{{ route('employer.faq') }}" class="cabinet__menu-item @if ($item==10) active @endif"> 113 <a href="{{ route('employer.faq') }}" class="cabinet__menu-item @if ($item==10) active @endif">
123 <i> 114 <i>
124 <svg> 115 <svg>
125 <use xlink:href="{{ asset('images/sprite.svg#cabinet-10') }}"></use> 116 <use xlink:href="{{ asset('images/sprite.svg#cabinet-10') }}"></use>
126 </svg> 117 </svg>
127 </i> 118 </i>
128 <span>FAQ</span> 119 <span>FAQ</span>
129 </a> 120 </a>
130 <a href="{{ route('employer.subscribe') }}" class="cabinet__menu-item @if ($item==11) active @endif"> 121 <a href="{{ route('employer.subscribe') }}" class="cabinet__menu-item @if ($item==11) active @endif">
131 <i> 122 <i>
132 <svg> 123 <svg>
133 <use xlink:href="{{ asset('images/sprite.svg#cabinet-11') }}"></use> 124 <use xlink:href="{{ asset('images/sprite.svg#cabinet-11') }}"></use>
134 </svg> 125 </svg>
135 </i> 126 </i>
136 <span>Настройки уведомлений</span> 127 <span>Настройки уведомлений</span>
137 </a> 128 </a>
138 <a href="{{ route('employer.slider_flot') }}" class="cabinet__menu-item @if ($item==12) active @endif"> 129 <a href="{{ route('employer.slider_flot') }}" class="cabinet__menu-item @if ($item==12) active @endif">
139 <i> 130 <i>
140 <svg> 131 <svg>
141 <use xlink:href="{{ asset('images/sprite.svg#cabinet-11') }}"></use> 132 <use xlink:href="{{ asset('images/sprite.svg#cabinet-11') }}"></use>
142 </svg> 133 </svg>
143 </i> 134 </i>
144 <span>Мой флот</span> 135 <span>Мой флот</span>
145 </a> 136 </a>
146 <a href="{{ route('employer.password_reset') }}" class="cabinet__menu-item green @if ($item==13) active @endif"> 137 <a href="{{ route('employer.password_reset') }}" class="cabinet__menu-item green @if ($item==13) active @endif">
147 <i></i> 138 <i></i>
148 <span>Сменить пароль</span> 139 <span>Сменить пароль</span>
149 </a> 140 </a>
150 <a href="{{ route('employer.delete_people') }}" class="cabinet__menu-item red @if ($item==14) active @endif"> 141 <a href="{{ route('employer.delete_people') }}" class="cabinet__menu-item red @if ($item==14) active @endif">
151 <i></i> 142 <i></i>
152 <span>Удалить профиль</span> 143 <span>Удалить профиль</span>
153 </a> 144 </a>
154 </div> 145 </div>
155 <div class="cabinet__menu-bottom"> 146 <div class="cabinet__menu-bottom">
156 <a href="{{ route('logout') }}" class="button cabinet__menu-leave"> 147 <a href="{{ route('logout') }}" class="button cabinet__menu-leave">
157 <svg> 148 <svg>
158 <use xlink:href="{{ asset('images/sprite.svg#leave') }}"></use> 149 <use xlink:href="{{ asset('images/sprite.svg#leave') }}"></use>
159 </svg> 150 </svg>
160 Выход 151 Выход
161 </a> 152 </a>
162 <span class="cabinet__menu-copy"> 153 <span class="cabinet__menu-copy">
163 &copy; 2020 &ndash; Rekamore.su 154 &copy; 2020 &ndash; Rekamore.su
164 </span> 155 </span>
165 </div> 156 </div>
166 </div> 157 </div>
167 </div> 158 </div>
168 </div> 159 </div>