composer.lock 301 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409
  1. {
  2. "_readme": [
  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",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "547c4b98765f5d7b1907c2094004783d",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.11.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  20. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.0"
  25. },
  26. "require-dev": {
  27. "php-coveralls/php-coveralls": "^2.2",
  28. "phpunit/phpunit": "^9.0",
  29. "vimeo/psalm": "5.0.0"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "psr-4": {
  34. "Brick\\Math\\": "src/"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "description": "Arbitrary-precision arithmetic library",
  42. "keywords": [
  43. "Arbitrary-precision",
  44. "BigInteger",
  45. "BigRational",
  46. "arithmetic",
  47. "bigdecimal",
  48. "bignum",
  49. "brick",
  50. "math"
  51. ],
  52. "support": {
  53. "issues": "https://github.com/brick/math/issues",
  54. "source": "https://github.com/brick/math/tree/0.11.0"
  55. },
  56. "funding": [
  57. {
  58. "url": "https://github.com/BenMorel",
  59. "type": "github"
  60. }
  61. ],
  62. "time": "2023-01-15T23:15:59+00:00"
  63. },
  64. {
  65. "name": "composer/ca-bundle",
  66. "version": "1.3.6",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/composer/ca-bundle.git",
  70. "reference": "90d087e988ff194065333d16bc5cf649872d9cdb"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/90d087e988ff194065333d16bc5cf649872d9cdb",
  75. "reference": "90d087e988ff194065333d16bc5cf649872d9cdb",
  76. "shasum": ""
  77. },
  78. "require": {
  79. "ext-openssl": "*",
  80. "ext-pcre": "*",
  81. "php": "^5.3.2 || ^7.0 || ^8.0"
  82. },
  83. "require-dev": {
  84. "phpstan/phpstan": "^0.12.55",
  85. "psr/log": "^1.0",
  86. "symfony/phpunit-bridge": "^4.2 || ^5",
  87. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  88. },
  89. "type": "library",
  90. "extra": {
  91. "branch-alias": {
  92. "dev-main": "1.x-dev"
  93. }
  94. },
  95. "autoload": {
  96. "psr-4": {
  97. "Composer\\CaBundle\\": "src"
  98. }
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "MIT"
  103. ],
  104. "authors": [
  105. {
  106. "name": "Jordi Boggiano",
  107. "email": "j.boggiano@seld.be",
  108. "homepage": "http://seld.be"
  109. }
  110. ],
  111. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  112. "keywords": [
  113. "cabundle",
  114. "cacert",
  115. "certificate",
  116. "ssl",
  117. "tls"
  118. ],
  119. "support": {
  120. "irc": "irc://irc.freenode.org/composer",
  121. "issues": "https://github.com/composer/ca-bundle/issues",
  122. "source": "https://github.com/composer/ca-bundle/tree/1.3.6"
  123. },
  124. "funding": [
  125. {
  126. "url": "https://packagist.com",
  127. "type": "custom"
  128. },
  129. {
  130. "url": "https://github.com/composer",
  131. "type": "github"
  132. },
  133. {
  134. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  135. "type": "tidelift"
  136. }
  137. ],
  138. "time": "2023-06-06T12:02:59+00:00"
  139. },
  140. {
  141. "name": "dflydev/dot-access-data",
  142. "version": "v3.0.2",
  143. "source": {
  144. "type": "git",
  145. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  146. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  147. },
  148. "dist": {
  149. "type": "zip",
  150. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  151. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  152. "shasum": ""
  153. },
  154. "require": {
  155. "php": "^7.1 || ^8.0"
  156. },
  157. "require-dev": {
  158. "phpstan/phpstan": "^0.12.42",
  159. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  160. "scrutinizer/ocular": "1.6.0",
  161. "squizlabs/php_codesniffer": "^3.5",
  162. "vimeo/psalm": "^4.0.0"
  163. },
  164. "type": "library",
  165. "extra": {
  166. "branch-alias": {
  167. "dev-main": "3.x-dev"
  168. }
  169. },
  170. "autoload": {
  171. "psr-4": {
  172. "Dflydev\\DotAccessData\\": "src/"
  173. }
  174. },
  175. "notification-url": "https://packagist.org/downloads/",
  176. "license": [
  177. "MIT"
  178. ],
  179. "authors": [
  180. {
  181. "name": "Dragonfly Development Inc.",
  182. "email": "info@dflydev.com",
  183. "homepage": "http://dflydev.com"
  184. },
  185. {
  186. "name": "Beau Simensen",
  187. "email": "beau@dflydev.com",
  188. "homepage": "http://beausimensen.com"
  189. },
  190. {
  191. "name": "Carlos Frutos",
  192. "email": "carlos@kiwing.it",
  193. "homepage": "https://github.com/cfrutos"
  194. },
  195. {
  196. "name": "Colin O'Dell",
  197. "email": "colinodell@gmail.com",
  198. "homepage": "https://www.colinodell.com"
  199. }
  200. ],
  201. "description": "Given a deep data structure, access data by dot notation.",
  202. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  203. "keywords": [
  204. "access",
  205. "data",
  206. "dot",
  207. "notation"
  208. ],
  209. "support": {
  210. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  211. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  212. },
  213. "time": "2022-10-27T11:44:00+00:00"
  214. },
  215. {
  216. "name": "doctrine/inflector",
  217. "version": "2.0.8",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/doctrine/inflector.git",
  221. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  226. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "php": "^7.2 || ^8.0"
  231. },
  232. "require-dev": {
  233. "doctrine/coding-standard": "^11.0",
  234. "phpstan/phpstan": "^1.8",
  235. "phpstan/phpstan-phpunit": "^1.1",
  236. "phpstan/phpstan-strict-rules": "^1.3",
  237. "phpunit/phpunit": "^8.5 || ^9.5",
  238. "vimeo/psalm": "^4.25 || ^5.4"
  239. },
  240. "type": "library",
  241. "autoload": {
  242. "psr-4": {
  243. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  244. }
  245. },
  246. "notification-url": "https://packagist.org/downloads/",
  247. "license": [
  248. "MIT"
  249. ],
  250. "authors": [
  251. {
  252. "name": "Guilherme Blanco",
  253. "email": "guilhermeblanco@gmail.com"
  254. },
  255. {
  256. "name": "Roman Borschel",
  257. "email": "roman@code-factory.org"
  258. },
  259. {
  260. "name": "Benjamin Eberlei",
  261. "email": "kontakt@beberlei.de"
  262. },
  263. {
  264. "name": "Jonathan Wage",
  265. "email": "jonwage@gmail.com"
  266. },
  267. {
  268. "name": "Johannes Schmitt",
  269. "email": "schmittjoh@gmail.com"
  270. }
  271. ],
  272. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  273. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  274. "keywords": [
  275. "inflection",
  276. "inflector",
  277. "lowercase",
  278. "manipulation",
  279. "php",
  280. "plural",
  281. "singular",
  282. "strings",
  283. "uppercase",
  284. "words"
  285. ],
  286. "support": {
  287. "issues": "https://github.com/doctrine/inflector/issues",
  288. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  289. },
  290. "funding": [
  291. {
  292. "url": "https://www.doctrine-project.org/sponsorship.html",
  293. "type": "custom"
  294. },
  295. {
  296. "url": "https://www.patreon.com/phpdoctrine",
  297. "type": "patreon"
  298. },
  299. {
  300. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  301. "type": "tidelift"
  302. }
  303. ],
  304. "time": "2023-06-16T13:40:37+00:00"
  305. },
  306. {
  307. "name": "doctrine/lexer",
  308. "version": "3.0.0",
  309. "source": {
  310. "type": "git",
  311. "url": "https://github.com/doctrine/lexer.git",
  312. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  313. },
  314. "dist": {
  315. "type": "zip",
  316. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  317. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  318. "shasum": ""
  319. },
  320. "require": {
  321. "php": "^8.1"
  322. },
  323. "require-dev": {
  324. "doctrine/coding-standard": "^10",
  325. "phpstan/phpstan": "^1.9",
  326. "phpunit/phpunit": "^9.5",
  327. "psalm/plugin-phpunit": "^0.18.3",
  328. "vimeo/psalm": "^5.0"
  329. },
  330. "type": "library",
  331. "autoload": {
  332. "psr-4": {
  333. "Doctrine\\Common\\Lexer\\": "src"
  334. }
  335. },
  336. "notification-url": "https://packagist.org/downloads/",
  337. "license": [
  338. "MIT"
  339. ],
  340. "authors": [
  341. {
  342. "name": "Guilherme Blanco",
  343. "email": "guilhermeblanco@gmail.com"
  344. },
  345. {
  346. "name": "Roman Borschel",
  347. "email": "roman@code-factory.org"
  348. },
  349. {
  350. "name": "Johannes Schmitt",
  351. "email": "schmittjoh@gmail.com"
  352. }
  353. ],
  354. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  355. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  356. "keywords": [
  357. "annotations",
  358. "docblock",
  359. "lexer",
  360. "parser",
  361. "php"
  362. ],
  363. "support": {
  364. "issues": "https://github.com/doctrine/lexer/issues",
  365. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  366. },
  367. "funding": [
  368. {
  369. "url": "https://www.doctrine-project.org/sponsorship.html",
  370. "type": "custom"
  371. },
  372. {
  373. "url": "https://www.patreon.com/phpdoctrine",
  374. "type": "patreon"
  375. },
  376. {
  377. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  378. "type": "tidelift"
  379. }
  380. ],
  381. "time": "2022-12-15T16:57:16+00:00"
  382. },
  383. {
  384. "name": "dragonmantank/cron-expression",
  385. "version": "v3.3.2",
  386. "source": {
  387. "type": "git",
  388. "url": "https://github.com/dragonmantank/cron-expression.git",
  389. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  390. },
  391. "dist": {
  392. "type": "zip",
  393. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  394. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  395. "shasum": ""
  396. },
  397. "require": {
  398. "php": "^7.2|^8.0",
  399. "webmozart/assert": "^1.0"
  400. },
  401. "replace": {
  402. "mtdowling/cron-expression": "^1.0"
  403. },
  404. "require-dev": {
  405. "phpstan/extension-installer": "^1.0",
  406. "phpstan/phpstan": "^1.0",
  407. "phpstan/phpstan-webmozart-assert": "^1.0",
  408. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  409. },
  410. "type": "library",
  411. "autoload": {
  412. "psr-4": {
  413. "Cron\\": "src/Cron/"
  414. }
  415. },
  416. "notification-url": "https://packagist.org/downloads/",
  417. "license": [
  418. "MIT"
  419. ],
  420. "authors": [
  421. {
  422. "name": "Chris Tankersley",
  423. "email": "chris@ctankersley.com",
  424. "homepage": "https://github.com/dragonmantank"
  425. }
  426. ],
  427. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  428. "keywords": [
  429. "cron",
  430. "schedule"
  431. ],
  432. "support": {
  433. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  434. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/dragonmantank",
  439. "type": "github"
  440. }
  441. ],
  442. "time": "2022-09-10T18:51:20+00:00"
  443. },
  444. {
  445. "name": "egulias/email-validator",
  446. "version": "4.0.1",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/egulias/EmailValidator.git",
  450. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  455. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "doctrine/lexer": "^2.0 || ^3.0",
  460. "php": ">=8.1",
  461. "symfony/polyfill-intl-idn": "^1.26"
  462. },
  463. "require-dev": {
  464. "phpunit/phpunit": "^9.5.27",
  465. "vimeo/psalm": "^4.30"
  466. },
  467. "suggest": {
  468. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  469. },
  470. "type": "library",
  471. "extra": {
  472. "branch-alias": {
  473. "dev-master": "4.0.x-dev"
  474. }
  475. },
  476. "autoload": {
  477. "psr-4": {
  478. "Egulias\\EmailValidator\\": "src"
  479. }
  480. },
  481. "notification-url": "https://packagist.org/downloads/",
  482. "license": [
  483. "MIT"
  484. ],
  485. "authors": [
  486. {
  487. "name": "Eduardo Gulias Davis"
  488. }
  489. ],
  490. "description": "A library for validating emails against several RFCs",
  491. "homepage": "https://github.com/egulias/EmailValidator",
  492. "keywords": [
  493. "email",
  494. "emailvalidation",
  495. "emailvalidator",
  496. "validation",
  497. "validator"
  498. ],
  499. "support": {
  500. "issues": "https://github.com/egulias/EmailValidator/issues",
  501. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  502. },
  503. "funding": [
  504. {
  505. "url": "https://github.com/egulias",
  506. "type": "github"
  507. }
  508. ],
  509. "time": "2023-01-14T14:17:03+00:00"
  510. },
  511. {
  512. "name": "fruitcake/php-cors",
  513. "version": "v1.2.0",
  514. "source": {
  515. "type": "git",
  516. "url": "https://github.com/fruitcake/php-cors.git",
  517. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  518. },
  519. "dist": {
  520. "type": "zip",
  521. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  522. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  523. "shasum": ""
  524. },
  525. "require": {
  526. "php": "^7.4|^8.0",
  527. "symfony/http-foundation": "^4.4|^5.4|^6"
  528. },
  529. "require-dev": {
  530. "phpstan/phpstan": "^1.4",
  531. "phpunit/phpunit": "^9",
  532. "squizlabs/php_codesniffer": "^3.5"
  533. },
  534. "type": "library",
  535. "extra": {
  536. "branch-alias": {
  537. "dev-main": "1.1-dev"
  538. }
  539. },
  540. "autoload": {
  541. "psr-4": {
  542. "Fruitcake\\Cors\\": "src/"
  543. }
  544. },
  545. "notification-url": "https://packagist.org/downloads/",
  546. "license": [
  547. "MIT"
  548. ],
  549. "authors": [
  550. {
  551. "name": "Fruitcake",
  552. "homepage": "https://fruitcake.nl"
  553. },
  554. {
  555. "name": "Barryvdh",
  556. "email": "barryvdh@gmail.com"
  557. }
  558. ],
  559. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  560. "homepage": "https://github.com/fruitcake/php-cors",
  561. "keywords": [
  562. "cors",
  563. "laravel",
  564. "symfony"
  565. ],
  566. "support": {
  567. "issues": "https://github.com/fruitcake/php-cors/issues",
  568. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  569. },
  570. "funding": [
  571. {
  572. "url": "https://fruitcake.nl",
  573. "type": "custom"
  574. },
  575. {
  576. "url": "https://github.com/barryvdh",
  577. "type": "github"
  578. }
  579. ],
  580. "time": "2022-02-20T15:07:15+00:00"
  581. },
  582. {
  583. "name": "graham-campbell/result-type",
  584. "version": "v1.1.1",
  585. "source": {
  586. "type": "git",
  587. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  588. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  589. },
  590. "dist": {
  591. "type": "zip",
  592. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  593. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  594. "shasum": ""
  595. },
  596. "require": {
  597. "php": "^7.2.5 || ^8.0",
  598. "phpoption/phpoption": "^1.9.1"
  599. },
  600. "require-dev": {
  601. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  602. },
  603. "type": "library",
  604. "autoload": {
  605. "psr-4": {
  606. "GrahamCampbell\\ResultType\\": "src/"
  607. }
  608. },
  609. "notification-url": "https://packagist.org/downloads/",
  610. "license": [
  611. "MIT"
  612. ],
  613. "authors": [
  614. {
  615. "name": "Graham Campbell",
  616. "email": "hello@gjcampbell.co.uk",
  617. "homepage": "https://github.com/GrahamCampbell"
  618. }
  619. ],
  620. "description": "An Implementation Of The Result Type",
  621. "keywords": [
  622. "Graham Campbell",
  623. "GrahamCampbell",
  624. "Result Type",
  625. "Result-Type",
  626. "result"
  627. ],
  628. "support": {
  629. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  630. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  631. },
  632. "funding": [
  633. {
  634. "url": "https://github.com/GrahamCampbell",
  635. "type": "github"
  636. },
  637. {
  638. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  639. "type": "tidelift"
  640. }
  641. ],
  642. "time": "2023-02-25T20:23:15+00:00"
  643. },
  644. {
  645. "name": "guzzlehttp/guzzle",
  646. "version": "7.7.0",
  647. "source": {
  648. "type": "git",
  649. "url": "https://github.com/guzzle/guzzle.git",
  650. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5"
  651. },
  652. "dist": {
  653. "type": "zip",
  654. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/fb7566caccf22d74d1ab270de3551f72a58399f5",
  655. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5",
  656. "shasum": ""
  657. },
  658. "require": {
  659. "ext-json": "*",
  660. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  661. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  662. "php": "^7.2.5 || ^8.0",
  663. "psr/http-client": "^1.0",
  664. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  665. },
  666. "provide": {
  667. "psr/http-client-implementation": "1.0"
  668. },
  669. "require-dev": {
  670. "bamarni/composer-bin-plugin": "^1.8.1",
  671. "ext-curl": "*",
  672. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  673. "php-http/message-factory": "^1.1",
  674. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  675. "psr/log": "^1.1 || ^2.0 || ^3.0"
  676. },
  677. "suggest": {
  678. "ext-curl": "Required for CURL handler support",
  679. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  680. "psr/log": "Required for using the Log middleware"
  681. },
  682. "type": "library",
  683. "extra": {
  684. "bamarni-bin": {
  685. "bin-links": true,
  686. "forward-command": false
  687. }
  688. },
  689. "autoload": {
  690. "files": [
  691. "src/functions_include.php"
  692. ],
  693. "psr-4": {
  694. "GuzzleHttp\\": "src/"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "Graham Campbell",
  704. "email": "hello@gjcampbell.co.uk",
  705. "homepage": "https://github.com/GrahamCampbell"
  706. },
  707. {
  708. "name": "Michael Dowling",
  709. "email": "mtdowling@gmail.com",
  710. "homepage": "https://github.com/mtdowling"
  711. },
  712. {
  713. "name": "Jeremy Lindblom",
  714. "email": "jeremeamia@gmail.com",
  715. "homepage": "https://github.com/jeremeamia"
  716. },
  717. {
  718. "name": "George Mponos",
  719. "email": "gmponos@gmail.com",
  720. "homepage": "https://github.com/gmponos"
  721. },
  722. {
  723. "name": "Tobias Nyholm",
  724. "email": "tobias.nyholm@gmail.com",
  725. "homepage": "https://github.com/Nyholm"
  726. },
  727. {
  728. "name": "Márk Sági-Kazár",
  729. "email": "mark.sagikazar@gmail.com",
  730. "homepage": "https://github.com/sagikazarmark"
  731. },
  732. {
  733. "name": "Tobias Schultze",
  734. "email": "webmaster@tubo-world.de",
  735. "homepage": "https://github.com/Tobion"
  736. }
  737. ],
  738. "description": "Guzzle is a PHP HTTP client library",
  739. "keywords": [
  740. "client",
  741. "curl",
  742. "framework",
  743. "http",
  744. "http client",
  745. "psr-18",
  746. "psr-7",
  747. "rest",
  748. "web service"
  749. ],
  750. "support": {
  751. "issues": "https://github.com/guzzle/guzzle/issues",
  752. "source": "https://github.com/guzzle/guzzle/tree/7.7.0"
  753. },
  754. "funding": [
  755. {
  756. "url": "https://github.com/GrahamCampbell",
  757. "type": "github"
  758. },
  759. {
  760. "url": "https://github.com/Nyholm",
  761. "type": "github"
  762. },
  763. {
  764. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  765. "type": "tidelift"
  766. }
  767. ],
  768. "time": "2023-05-21T14:04:53+00:00"
  769. },
  770. {
  771. "name": "guzzlehttp/promises",
  772. "version": "2.0.0",
  773. "source": {
  774. "type": "git",
  775. "url": "https://github.com/guzzle/promises.git",
  776. "reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6"
  777. },
  778. "dist": {
  779. "type": "zip",
  780. "url": "https://api.github.com/repos/guzzle/promises/zipball/3a494dc7dc1d7d12e511890177ae2d0e6c107da6",
  781. "reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6",
  782. "shasum": ""
  783. },
  784. "require": {
  785. "php": "^7.2.5 || ^8.0"
  786. },
  787. "require-dev": {
  788. "bamarni/composer-bin-plugin": "^1.8.1",
  789. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  790. },
  791. "type": "library",
  792. "extra": {
  793. "bamarni-bin": {
  794. "bin-links": true,
  795. "forward-command": false
  796. }
  797. },
  798. "autoload": {
  799. "psr-4": {
  800. "GuzzleHttp\\Promise\\": "src/"
  801. }
  802. },
  803. "notification-url": "https://packagist.org/downloads/",
  804. "license": [
  805. "MIT"
  806. ],
  807. "authors": [
  808. {
  809. "name": "Graham Campbell",
  810. "email": "hello@gjcampbell.co.uk",
  811. "homepage": "https://github.com/GrahamCampbell"
  812. },
  813. {
  814. "name": "Michael Dowling",
  815. "email": "mtdowling@gmail.com",
  816. "homepage": "https://github.com/mtdowling"
  817. },
  818. {
  819. "name": "Tobias Nyholm",
  820. "email": "tobias.nyholm@gmail.com",
  821. "homepage": "https://github.com/Nyholm"
  822. },
  823. {
  824. "name": "Tobias Schultze",
  825. "email": "webmaster@tubo-world.de",
  826. "homepage": "https://github.com/Tobion"
  827. }
  828. ],
  829. "description": "Guzzle promises library",
  830. "keywords": [
  831. "promise"
  832. ],
  833. "support": {
  834. "issues": "https://github.com/guzzle/promises/issues",
  835. "source": "https://github.com/guzzle/promises/tree/2.0.0"
  836. },
  837. "funding": [
  838. {
  839. "url": "https://github.com/GrahamCampbell",
  840. "type": "github"
  841. },
  842. {
  843. "url": "https://github.com/Nyholm",
  844. "type": "github"
  845. },
  846. {
  847. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  848. "type": "tidelift"
  849. }
  850. ],
  851. "time": "2023-05-21T13:50:22+00:00"
  852. },
  853. {
  854. "name": "guzzlehttp/psr7",
  855. "version": "2.5.0",
  856. "source": {
  857. "type": "git",
  858. "url": "https://github.com/guzzle/psr7.git",
  859. "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
  860. },
  861. "dist": {
  862. "type": "zip",
  863. "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
  864. "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
  865. "shasum": ""
  866. },
  867. "require": {
  868. "php": "^7.2.5 || ^8.0",
  869. "psr/http-factory": "^1.0",
  870. "psr/http-message": "^1.1 || ^2.0",
  871. "ralouphie/getallheaders": "^3.0"
  872. },
  873. "provide": {
  874. "psr/http-factory-implementation": "1.0",
  875. "psr/http-message-implementation": "1.0"
  876. },
  877. "require-dev": {
  878. "bamarni/composer-bin-plugin": "^1.8.1",
  879. "http-interop/http-factory-tests": "^0.9",
  880. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  881. },
  882. "suggest": {
  883. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  884. },
  885. "type": "library",
  886. "extra": {
  887. "bamarni-bin": {
  888. "bin-links": true,
  889. "forward-command": false
  890. }
  891. },
  892. "autoload": {
  893. "psr-4": {
  894. "GuzzleHttp\\Psr7\\": "src/"
  895. }
  896. },
  897. "notification-url": "https://packagist.org/downloads/",
  898. "license": [
  899. "MIT"
  900. ],
  901. "authors": [
  902. {
  903. "name": "Graham Campbell",
  904. "email": "hello@gjcampbell.co.uk",
  905. "homepage": "https://github.com/GrahamCampbell"
  906. },
  907. {
  908. "name": "Michael Dowling",
  909. "email": "mtdowling@gmail.com",
  910. "homepage": "https://github.com/mtdowling"
  911. },
  912. {
  913. "name": "George Mponos",
  914. "email": "gmponos@gmail.com",
  915. "homepage": "https://github.com/gmponos"
  916. },
  917. {
  918. "name": "Tobias Nyholm",
  919. "email": "tobias.nyholm@gmail.com",
  920. "homepage": "https://github.com/Nyholm"
  921. },
  922. {
  923. "name": "Márk Sági-Kazár",
  924. "email": "mark.sagikazar@gmail.com",
  925. "homepage": "https://github.com/sagikazarmark"
  926. },
  927. {
  928. "name": "Tobias Schultze",
  929. "email": "webmaster@tubo-world.de",
  930. "homepage": "https://github.com/Tobion"
  931. },
  932. {
  933. "name": "Márk Sági-Kazár",
  934. "email": "mark.sagikazar@gmail.com",
  935. "homepage": "https://sagikazarmark.hu"
  936. }
  937. ],
  938. "description": "PSR-7 message implementation that also provides common utility methods",
  939. "keywords": [
  940. "http",
  941. "message",
  942. "psr-7",
  943. "request",
  944. "response",
  945. "stream",
  946. "uri",
  947. "url"
  948. ],
  949. "support": {
  950. "issues": "https://github.com/guzzle/psr7/issues",
  951. "source": "https://github.com/guzzle/psr7/tree/2.5.0"
  952. },
  953. "funding": [
  954. {
  955. "url": "https://github.com/GrahamCampbell",
  956. "type": "github"
  957. },
  958. {
  959. "url": "https://github.com/Nyholm",
  960. "type": "github"
  961. },
  962. {
  963. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  964. "type": "tidelift"
  965. }
  966. ],
  967. "time": "2023-04-17T16:11:26+00:00"
  968. },
  969. {
  970. "name": "guzzlehttp/uri-template",
  971. "version": "v1.0.1",
  972. "source": {
  973. "type": "git",
  974. "url": "https://github.com/guzzle/uri-template.git",
  975. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  976. },
  977. "dist": {
  978. "type": "zip",
  979. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  980. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  981. "shasum": ""
  982. },
  983. "require": {
  984. "php": "^7.2.5 || ^8.0",
  985. "symfony/polyfill-php80": "^1.17"
  986. },
  987. "require-dev": {
  988. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  989. "uri-template/tests": "1.0.0"
  990. },
  991. "type": "library",
  992. "extra": {
  993. "branch-alias": {
  994. "dev-master": "1.0-dev"
  995. }
  996. },
  997. "autoload": {
  998. "psr-4": {
  999. "GuzzleHttp\\UriTemplate\\": "src"
  1000. }
  1001. },
  1002. "notification-url": "https://packagist.org/downloads/",
  1003. "license": [
  1004. "MIT"
  1005. ],
  1006. "authors": [
  1007. {
  1008. "name": "Graham Campbell",
  1009. "email": "hello@gjcampbell.co.uk",
  1010. "homepage": "https://github.com/GrahamCampbell"
  1011. },
  1012. {
  1013. "name": "Michael Dowling",
  1014. "email": "mtdowling@gmail.com",
  1015. "homepage": "https://github.com/mtdowling"
  1016. },
  1017. {
  1018. "name": "George Mponos",
  1019. "email": "gmponos@gmail.com",
  1020. "homepage": "https://github.com/gmponos"
  1021. },
  1022. {
  1023. "name": "Tobias Nyholm",
  1024. "email": "tobias.nyholm@gmail.com",
  1025. "homepage": "https://github.com/Nyholm"
  1026. }
  1027. ],
  1028. "description": "A polyfill class for uri_template of PHP",
  1029. "keywords": [
  1030. "guzzlehttp",
  1031. "uri-template"
  1032. ],
  1033. "support": {
  1034. "issues": "https://github.com/guzzle/uri-template/issues",
  1035. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1036. },
  1037. "funding": [
  1038. {
  1039. "url": "https://github.com/GrahamCampbell",
  1040. "type": "github"
  1041. },
  1042. {
  1043. "url": "https://github.com/Nyholm",
  1044. "type": "github"
  1045. },
  1046. {
  1047. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1048. "type": "tidelift"
  1049. }
  1050. ],
  1051. "time": "2021-10-07T12:57:01+00:00"
  1052. },
  1053. {
  1054. "name": "jaybizzle/crawler-detect",
  1055. "version": "v1.2.115",
  1056. "source": {
  1057. "type": "git",
  1058. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1059. "reference": "4531e4a70d55d10cbe7d41ac1ff0d75a5fe2ef1e"
  1060. },
  1061. "dist": {
  1062. "type": "zip",
  1063. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/4531e4a70d55d10cbe7d41ac1ff0d75a5fe2ef1e",
  1064. "reference": "4531e4a70d55d10cbe7d41ac1ff0d75a5fe2ef1e",
  1065. "shasum": ""
  1066. },
  1067. "require": {
  1068. "php": ">=5.3.0"
  1069. },
  1070. "require-dev": {
  1071. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  1072. },
  1073. "type": "library",
  1074. "autoload": {
  1075. "psr-4": {
  1076. "Jaybizzle\\CrawlerDetect\\": "src/"
  1077. }
  1078. },
  1079. "notification-url": "https://packagist.org/downloads/",
  1080. "license": [
  1081. "MIT"
  1082. ],
  1083. "authors": [
  1084. {
  1085. "name": "Mark Beech",
  1086. "email": "m@rkbee.ch",
  1087. "role": "Developer"
  1088. }
  1089. ],
  1090. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1091. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1092. "keywords": [
  1093. "crawler",
  1094. "crawler detect",
  1095. "crawler detector",
  1096. "crawlerdetect",
  1097. "php crawler detect"
  1098. ],
  1099. "support": {
  1100. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  1101. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.115"
  1102. },
  1103. "time": "2023-06-05T21:32:18+00:00"
  1104. },
  1105. {
  1106. "name": "jenssegers/agent",
  1107. "version": "v2.6.4",
  1108. "source": {
  1109. "type": "git",
  1110. "url": "https://github.com/jenssegers/agent.git",
  1111. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1112. },
  1113. "dist": {
  1114. "type": "zip",
  1115. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1116. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1117. "shasum": ""
  1118. },
  1119. "require": {
  1120. "jaybizzle/crawler-detect": "^1.2",
  1121. "mobiledetect/mobiledetectlib": "^2.7.6",
  1122. "php": ">=5.6"
  1123. },
  1124. "require-dev": {
  1125. "php-coveralls/php-coveralls": "^2.1",
  1126. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1127. },
  1128. "suggest": {
  1129. "illuminate/support": "Required for laravel service providers"
  1130. },
  1131. "type": "library",
  1132. "extra": {
  1133. "branch-alias": {
  1134. "dev-master": "3.0-dev"
  1135. },
  1136. "laravel": {
  1137. "providers": [
  1138. "Jenssegers\\Agent\\AgentServiceProvider"
  1139. ],
  1140. "aliases": {
  1141. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1142. }
  1143. }
  1144. },
  1145. "autoload": {
  1146. "psr-4": {
  1147. "Jenssegers\\Agent\\": "src/"
  1148. }
  1149. },
  1150. "notification-url": "https://packagist.org/downloads/",
  1151. "license": [
  1152. "MIT"
  1153. ],
  1154. "authors": [
  1155. {
  1156. "name": "Jens Segers",
  1157. "homepage": "https://jenssegers.com"
  1158. }
  1159. ],
  1160. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1161. "homepage": "https://github.com/jenssegers/agent",
  1162. "keywords": [
  1163. "Agent",
  1164. "browser",
  1165. "desktop",
  1166. "laravel",
  1167. "mobile",
  1168. "platform",
  1169. "user agent",
  1170. "useragent"
  1171. ],
  1172. "support": {
  1173. "issues": "https://github.com/jenssegers/agent/issues",
  1174. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  1175. },
  1176. "funding": [
  1177. {
  1178. "url": "https://github.com/jenssegers",
  1179. "type": "github"
  1180. },
  1181. {
  1182. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1183. "type": "tidelift"
  1184. }
  1185. ],
  1186. "time": "2020-06-13T08:05:20+00:00"
  1187. },
  1188. {
  1189. "name": "laravel/framework",
  1190. "version": "v10.15.0",
  1191. "source": {
  1192. "type": "git",
  1193. "url": "https://github.com/laravel/framework.git",
  1194. "reference": "c7599dc92e04532824bafbd226c2936ce6a905b8"
  1195. },
  1196. "dist": {
  1197. "type": "zip",
  1198. "url": "https://api.github.com/repos/laravel/framework/zipball/c7599dc92e04532824bafbd226c2936ce6a905b8",
  1199. "reference": "c7599dc92e04532824bafbd226c2936ce6a905b8",
  1200. "shasum": ""
  1201. },
  1202. "require": {
  1203. "brick/math": "^0.9.3|^0.10.2|^0.11",
  1204. "composer-runtime-api": "^2.2",
  1205. "doctrine/inflector": "^2.0.5",
  1206. "dragonmantank/cron-expression": "^3.3.2",
  1207. "egulias/email-validator": "^3.2.1|^4.0",
  1208. "ext-ctype": "*",
  1209. "ext-filter": "*",
  1210. "ext-hash": "*",
  1211. "ext-mbstring": "*",
  1212. "ext-openssl": "*",
  1213. "ext-session": "*",
  1214. "ext-tokenizer": "*",
  1215. "fruitcake/php-cors": "^1.2",
  1216. "guzzlehttp/uri-template": "^1.0",
  1217. "laravel/serializable-closure": "^1.3",
  1218. "league/commonmark": "^2.2.1",
  1219. "league/flysystem": "^3.8.0",
  1220. "monolog/monolog": "^3.0",
  1221. "nesbot/carbon": "^2.62.1",
  1222. "nunomaduro/termwind": "^1.13",
  1223. "php": "^8.1",
  1224. "psr/container": "^1.1.1|^2.0.1",
  1225. "psr/log": "^1.0|^2.0|^3.0",
  1226. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1227. "ramsey/uuid": "^4.7",
  1228. "symfony/console": "^6.2",
  1229. "symfony/error-handler": "^6.2",
  1230. "symfony/finder": "^6.2",
  1231. "symfony/http-foundation": "^6.2",
  1232. "symfony/http-kernel": "^6.2",
  1233. "symfony/mailer": "^6.2",
  1234. "symfony/mime": "^6.2",
  1235. "symfony/process": "^6.2",
  1236. "symfony/routing": "^6.2",
  1237. "symfony/uid": "^6.2",
  1238. "symfony/var-dumper": "^6.2",
  1239. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1240. "vlucas/phpdotenv": "^5.4.1",
  1241. "voku/portable-ascii": "^2.0"
  1242. },
  1243. "conflict": {
  1244. "tightenco/collect": "<5.5.33"
  1245. },
  1246. "provide": {
  1247. "psr/container-implementation": "1.1|2.0",
  1248. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1249. },
  1250. "replace": {
  1251. "illuminate/auth": "self.version",
  1252. "illuminate/broadcasting": "self.version",
  1253. "illuminate/bus": "self.version",
  1254. "illuminate/cache": "self.version",
  1255. "illuminate/collections": "self.version",
  1256. "illuminate/conditionable": "self.version",
  1257. "illuminate/config": "self.version",
  1258. "illuminate/console": "self.version",
  1259. "illuminate/container": "self.version",
  1260. "illuminate/contracts": "self.version",
  1261. "illuminate/cookie": "self.version",
  1262. "illuminate/database": "self.version",
  1263. "illuminate/encryption": "self.version",
  1264. "illuminate/events": "self.version",
  1265. "illuminate/filesystem": "self.version",
  1266. "illuminate/hashing": "self.version",
  1267. "illuminate/http": "self.version",
  1268. "illuminate/log": "self.version",
  1269. "illuminate/macroable": "self.version",
  1270. "illuminate/mail": "self.version",
  1271. "illuminate/notifications": "self.version",
  1272. "illuminate/pagination": "self.version",
  1273. "illuminate/pipeline": "self.version",
  1274. "illuminate/process": "self.version",
  1275. "illuminate/queue": "self.version",
  1276. "illuminate/redis": "self.version",
  1277. "illuminate/routing": "self.version",
  1278. "illuminate/session": "self.version",
  1279. "illuminate/support": "self.version",
  1280. "illuminate/testing": "self.version",
  1281. "illuminate/translation": "self.version",
  1282. "illuminate/validation": "self.version",
  1283. "illuminate/view": "self.version"
  1284. },
  1285. "require-dev": {
  1286. "ably/ably-php": "^1.0",
  1287. "aws/aws-sdk-php": "^3.235.5",
  1288. "doctrine/dbal": "^3.5.1",
  1289. "ext-gmp": "*",
  1290. "fakerphp/faker": "^1.21",
  1291. "guzzlehttp/guzzle": "^7.5",
  1292. "league/flysystem-aws-s3-v3": "^3.0",
  1293. "league/flysystem-ftp": "^3.0",
  1294. "league/flysystem-path-prefixing": "^3.3",
  1295. "league/flysystem-read-only": "^3.3",
  1296. "league/flysystem-sftp-v3": "^3.0",
  1297. "mockery/mockery": "^1.5.1",
  1298. "orchestra/testbench-core": "^8.4",
  1299. "pda/pheanstalk": "^4.0",
  1300. "phpstan/phpdoc-parser": "^1.15",
  1301. "phpstan/phpstan": "^1.4.7",
  1302. "phpunit/phpunit": "^10.0.7",
  1303. "predis/predis": "^2.0.2",
  1304. "symfony/cache": "^6.2",
  1305. "symfony/http-client": "^6.2.4"
  1306. },
  1307. "suggest": {
  1308. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1309. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1310. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1311. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  1312. "ext-apcu": "Required to use the APC cache driver.",
  1313. "ext-fileinfo": "Required to use the Filesystem class.",
  1314. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1315. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1316. "ext-memcached": "Required to use the memcache cache driver.",
  1317. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1318. "ext-pdo": "Required to use all database features.",
  1319. "ext-posix": "Required to use all features of the queue worker.",
  1320. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1321. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1322. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1323. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  1324. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1325. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1326. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1327. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1328. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1329. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1330. "mockery/mockery": "Required to use mocking (^1.5.1).",
  1331. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1332. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1333. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
  1334. "predis/predis": "Required to use the predis connector (^2.0.2).",
  1335. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1336. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1337. "symfony/cache": "Required to PSR-6 cache bridge (^6.2).",
  1338. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).",
  1339. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).",
  1340. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
  1341. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).",
  1342. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  1343. },
  1344. "type": "library",
  1345. "extra": {
  1346. "branch-alias": {
  1347. "dev-master": "10.x-dev"
  1348. }
  1349. },
  1350. "autoload": {
  1351. "files": [
  1352. "src/Illuminate/Collections/helpers.php",
  1353. "src/Illuminate/Events/functions.php",
  1354. "src/Illuminate/Foundation/helpers.php",
  1355. "src/Illuminate/Support/helpers.php"
  1356. ],
  1357. "psr-4": {
  1358. "Illuminate\\": "src/Illuminate/",
  1359. "Illuminate\\Support\\": [
  1360. "src/Illuminate/Macroable/",
  1361. "src/Illuminate/Collections/",
  1362. "src/Illuminate/Conditionable/"
  1363. ]
  1364. }
  1365. },
  1366. "notification-url": "https://packagist.org/downloads/",
  1367. "license": [
  1368. "MIT"
  1369. ],
  1370. "authors": [
  1371. {
  1372. "name": "Taylor Otwell",
  1373. "email": "taylor@laravel.com"
  1374. }
  1375. ],
  1376. "description": "The Laravel Framework.",
  1377. "homepage": "https://laravel.com",
  1378. "keywords": [
  1379. "framework",
  1380. "laravel"
  1381. ],
  1382. "support": {
  1383. "issues": "https://github.com/laravel/framework/issues",
  1384. "source": "https://github.com/laravel/framework"
  1385. },
  1386. "time": "2023-07-11T13:43:52+00:00"
  1387. },
  1388. {
  1389. "name": "laravel/sanctum",
  1390. "version": "v3.2.5",
  1391. "source": {
  1392. "type": "git",
  1393. "url": "https://github.com/laravel/sanctum.git",
  1394. "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876"
  1395. },
  1396. "dist": {
  1397. "type": "zip",
  1398. "url": "https://api.github.com/repos/laravel/sanctum/zipball/8ebda85d59d3c414863a7f4d816ef8302faad876",
  1399. "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876",
  1400. "shasum": ""
  1401. },
  1402. "require": {
  1403. "ext-json": "*",
  1404. "illuminate/console": "^9.21|^10.0",
  1405. "illuminate/contracts": "^9.21|^10.0",
  1406. "illuminate/database": "^9.21|^10.0",
  1407. "illuminate/support": "^9.21|^10.0",
  1408. "php": "^8.0.2"
  1409. },
  1410. "require-dev": {
  1411. "mockery/mockery": "^1.0",
  1412. "orchestra/testbench": "^7.0|^8.0",
  1413. "phpstan/phpstan": "^1.10",
  1414. "phpunit/phpunit": "^9.3"
  1415. },
  1416. "type": "library",
  1417. "extra": {
  1418. "branch-alias": {
  1419. "dev-master": "3.x-dev"
  1420. },
  1421. "laravel": {
  1422. "providers": [
  1423. "Laravel\\Sanctum\\SanctumServiceProvider"
  1424. ]
  1425. }
  1426. },
  1427. "autoload": {
  1428. "psr-4": {
  1429. "Laravel\\Sanctum\\": "src/"
  1430. }
  1431. },
  1432. "notification-url": "https://packagist.org/downloads/",
  1433. "license": [
  1434. "MIT"
  1435. ],
  1436. "authors": [
  1437. {
  1438. "name": "Taylor Otwell",
  1439. "email": "taylor@laravel.com"
  1440. }
  1441. ],
  1442. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1443. "keywords": [
  1444. "auth",
  1445. "laravel",
  1446. "sanctum"
  1447. ],
  1448. "support": {
  1449. "issues": "https://github.com/laravel/sanctum/issues",
  1450. "source": "https://github.com/laravel/sanctum"
  1451. },
  1452. "time": "2023-05-01T19:39:51+00:00"
  1453. },
  1454. {
  1455. "name": "laravel/serializable-closure",
  1456. "version": "v1.3.0",
  1457. "source": {
  1458. "type": "git",
  1459. "url": "https://github.com/laravel/serializable-closure.git",
  1460. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
  1461. },
  1462. "dist": {
  1463. "type": "zip",
  1464. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  1465. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  1466. "shasum": ""
  1467. },
  1468. "require": {
  1469. "php": "^7.3|^8.0"
  1470. },
  1471. "require-dev": {
  1472. "nesbot/carbon": "^2.61",
  1473. "pestphp/pest": "^1.21.3",
  1474. "phpstan/phpstan": "^1.8.2",
  1475. "symfony/var-dumper": "^5.4.11"
  1476. },
  1477. "type": "library",
  1478. "extra": {
  1479. "branch-alias": {
  1480. "dev-master": "1.x-dev"
  1481. }
  1482. },
  1483. "autoload": {
  1484. "psr-4": {
  1485. "Laravel\\SerializableClosure\\": "src/"
  1486. }
  1487. },
  1488. "notification-url": "https://packagist.org/downloads/",
  1489. "license": [
  1490. "MIT"
  1491. ],
  1492. "authors": [
  1493. {
  1494. "name": "Taylor Otwell",
  1495. "email": "taylor@laravel.com"
  1496. },
  1497. {
  1498. "name": "Nuno Maduro",
  1499. "email": "nuno@laravel.com"
  1500. }
  1501. ],
  1502. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1503. "keywords": [
  1504. "closure",
  1505. "laravel",
  1506. "serializable"
  1507. ],
  1508. "support": {
  1509. "issues": "https://github.com/laravel/serializable-closure/issues",
  1510. "source": "https://github.com/laravel/serializable-closure"
  1511. },
  1512. "time": "2023-01-30T18:31:20+00:00"
  1513. },
  1514. {
  1515. "name": "laravel/tinker",
  1516. "version": "v2.8.1",
  1517. "source": {
  1518. "type": "git",
  1519. "url": "https://github.com/laravel/tinker.git",
  1520. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  1521. },
  1522. "dist": {
  1523. "type": "zip",
  1524. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1525. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1526. "shasum": ""
  1527. },
  1528. "require": {
  1529. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1530. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1531. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1532. "php": "^7.2.5|^8.0",
  1533. "psy/psysh": "^0.10.4|^0.11.1",
  1534. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1535. },
  1536. "require-dev": {
  1537. "mockery/mockery": "~1.3.3|^1.4.2",
  1538. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1539. },
  1540. "suggest": {
  1541. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  1542. },
  1543. "type": "library",
  1544. "extra": {
  1545. "branch-alias": {
  1546. "dev-master": "2.x-dev"
  1547. },
  1548. "laravel": {
  1549. "providers": [
  1550. "Laravel\\Tinker\\TinkerServiceProvider"
  1551. ]
  1552. }
  1553. },
  1554. "autoload": {
  1555. "psr-4": {
  1556. "Laravel\\Tinker\\": "src/"
  1557. }
  1558. },
  1559. "notification-url": "https://packagist.org/downloads/",
  1560. "license": [
  1561. "MIT"
  1562. ],
  1563. "authors": [
  1564. {
  1565. "name": "Taylor Otwell",
  1566. "email": "taylor@laravel.com"
  1567. }
  1568. ],
  1569. "description": "Powerful REPL for the Laravel framework.",
  1570. "keywords": [
  1571. "REPL",
  1572. "Tinker",
  1573. "laravel",
  1574. "psysh"
  1575. ],
  1576. "support": {
  1577. "issues": "https://github.com/laravel/tinker/issues",
  1578. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  1579. },
  1580. "time": "2023-02-15T16:40:09+00:00"
  1581. },
  1582. {
  1583. "name": "laravel/ui",
  1584. "version": "v4.2.2",
  1585. "source": {
  1586. "type": "git",
  1587. "url": "https://github.com/laravel/ui.git",
  1588. "reference": "a58ec468db4a340b33f3426c778784717a2c144b"
  1589. },
  1590. "dist": {
  1591. "type": "zip",
  1592. "url": "https://api.github.com/repos/laravel/ui/zipball/a58ec468db4a340b33f3426c778784717a2c144b",
  1593. "reference": "a58ec468db4a340b33f3426c778784717a2c144b",
  1594. "shasum": ""
  1595. },
  1596. "require": {
  1597. "illuminate/console": "^9.21|^10.0",
  1598. "illuminate/filesystem": "^9.21|^10.0",
  1599. "illuminate/support": "^9.21|^10.0",
  1600. "illuminate/validation": "^9.21|^10.0",
  1601. "php": "^8.0"
  1602. },
  1603. "require-dev": {
  1604. "orchestra/testbench": "^7.0|^8.0",
  1605. "phpunit/phpunit": "^9.3"
  1606. },
  1607. "type": "library",
  1608. "extra": {
  1609. "branch-alias": {
  1610. "dev-master": "4.x-dev"
  1611. },
  1612. "laravel": {
  1613. "providers": [
  1614. "Laravel\\Ui\\UiServiceProvider"
  1615. ]
  1616. }
  1617. },
  1618. "autoload": {
  1619. "psr-4": {
  1620. "Laravel\\Ui\\": "src/",
  1621. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  1622. }
  1623. },
  1624. "notification-url": "https://packagist.org/downloads/",
  1625. "license": [
  1626. "MIT"
  1627. ],
  1628. "authors": [
  1629. {
  1630. "name": "Taylor Otwell",
  1631. "email": "taylor@laravel.com"
  1632. }
  1633. ],
  1634. "description": "Laravel UI utilities and presets.",
  1635. "keywords": [
  1636. "laravel",
  1637. "ui"
  1638. ],
  1639. "support": {
  1640. "source": "https://github.com/laravel/ui/tree/v4.2.2"
  1641. },
  1642. "time": "2023-05-09T19:47:28+00:00"
  1643. },
  1644. {
  1645. "name": "league/commonmark",
  1646. "version": "2.4.0",
  1647. "source": {
  1648. "type": "git",
  1649. "url": "https://github.com/thephpleague/commonmark.git",
  1650. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  1651. },
  1652. "dist": {
  1653. "type": "zip",
  1654. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  1655. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  1656. "shasum": ""
  1657. },
  1658. "require": {
  1659. "ext-mbstring": "*",
  1660. "league/config": "^1.1.1",
  1661. "php": "^7.4 || ^8.0",
  1662. "psr/event-dispatcher": "^1.0",
  1663. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1664. "symfony/polyfill-php80": "^1.16"
  1665. },
  1666. "require-dev": {
  1667. "cebe/markdown": "^1.0",
  1668. "commonmark/cmark": "0.30.0",
  1669. "commonmark/commonmark.js": "0.30.0",
  1670. "composer/package-versions-deprecated": "^1.8",
  1671. "embed/embed": "^4.4",
  1672. "erusev/parsedown": "^1.0",
  1673. "ext-json": "*",
  1674. "github/gfm": "0.29.0",
  1675. "michelf/php-markdown": "^1.4 || ^2.0",
  1676. "nyholm/psr7": "^1.5",
  1677. "phpstan/phpstan": "^1.8.2",
  1678. "phpunit/phpunit": "^9.5.21",
  1679. "scrutinizer/ocular": "^1.8.1",
  1680. "symfony/finder": "^5.3 | ^6.0",
  1681. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1682. "unleashedtech/php-coding-standard": "^3.1.1",
  1683. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1684. },
  1685. "suggest": {
  1686. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1687. },
  1688. "type": "library",
  1689. "extra": {
  1690. "branch-alias": {
  1691. "dev-main": "2.5-dev"
  1692. }
  1693. },
  1694. "autoload": {
  1695. "psr-4": {
  1696. "League\\CommonMark\\": "src"
  1697. }
  1698. },
  1699. "notification-url": "https://packagist.org/downloads/",
  1700. "license": [
  1701. "BSD-3-Clause"
  1702. ],
  1703. "authors": [
  1704. {
  1705. "name": "Colin O'Dell",
  1706. "email": "colinodell@gmail.com",
  1707. "homepage": "https://www.colinodell.com",
  1708. "role": "Lead Developer"
  1709. }
  1710. ],
  1711. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1712. "homepage": "https://commonmark.thephpleague.com",
  1713. "keywords": [
  1714. "commonmark",
  1715. "flavored",
  1716. "gfm",
  1717. "github",
  1718. "github-flavored",
  1719. "markdown",
  1720. "md",
  1721. "parser"
  1722. ],
  1723. "support": {
  1724. "docs": "https://commonmark.thephpleague.com/",
  1725. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1726. "issues": "https://github.com/thephpleague/commonmark/issues",
  1727. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1728. "source": "https://github.com/thephpleague/commonmark"
  1729. },
  1730. "funding": [
  1731. {
  1732. "url": "https://www.colinodell.com/sponsor",
  1733. "type": "custom"
  1734. },
  1735. {
  1736. "url": "https://www.paypal.me/colinpodell/10.00",
  1737. "type": "custom"
  1738. },
  1739. {
  1740. "url": "https://github.com/colinodell",
  1741. "type": "github"
  1742. },
  1743. {
  1744. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1745. "type": "tidelift"
  1746. }
  1747. ],
  1748. "time": "2023-03-24T15:16:10+00:00"
  1749. },
  1750. {
  1751. "name": "league/config",
  1752. "version": "v1.2.0",
  1753. "source": {
  1754. "type": "git",
  1755. "url": "https://github.com/thephpleague/config.git",
  1756. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1757. },
  1758. "dist": {
  1759. "type": "zip",
  1760. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1761. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1762. "shasum": ""
  1763. },
  1764. "require": {
  1765. "dflydev/dot-access-data": "^3.0.1",
  1766. "nette/schema": "^1.2",
  1767. "php": "^7.4 || ^8.0"
  1768. },
  1769. "require-dev": {
  1770. "phpstan/phpstan": "^1.8.2",
  1771. "phpunit/phpunit": "^9.5.5",
  1772. "scrutinizer/ocular": "^1.8.1",
  1773. "unleashedtech/php-coding-standard": "^3.1",
  1774. "vimeo/psalm": "^4.7.3"
  1775. },
  1776. "type": "library",
  1777. "extra": {
  1778. "branch-alias": {
  1779. "dev-main": "1.2-dev"
  1780. }
  1781. },
  1782. "autoload": {
  1783. "psr-4": {
  1784. "League\\Config\\": "src"
  1785. }
  1786. },
  1787. "notification-url": "https://packagist.org/downloads/",
  1788. "license": [
  1789. "BSD-3-Clause"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "Colin O'Dell",
  1794. "email": "colinodell@gmail.com",
  1795. "homepage": "https://www.colinodell.com",
  1796. "role": "Lead Developer"
  1797. }
  1798. ],
  1799. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1800. "homepage": "https://config.thephpleague.com",
  1801. "keywords": [
  1802. "array",
  1803. "config",
  1804. "configuration",
  1805. "dot",
  1806. "dot-access",
  1807. "nested",
  1808. "schema"
  1809. ],
  1810. "support": {
  1811. "docs": "https://config.thephpleague.com/",
  1812. "issues": "https://github.com/thephpleague/config/issues",
  1813. "rss": "https://github.com/thephpleague/config/releases.atom",
  1814. "source": "https://github.com/thephpleague/config"
  1815. },
  1816. "funding": [
  1817. {
  1818. "url": "https://www.colinodell.com/sponsor",
  1819. "type": "custom"
  1820. },
  1821. {
  1822. "url": "https://www.paypal.me/colinpodell/10.00",
  1823. "type": "custom"
  1824. },
  1825. {
  1826. "url": "https://github.com/colinodell",
  1827. "type": "github"
  1828. }
  1829. ],
  1830. "time": "2022-12-11T20:36:23+00:00"
  1831. },
  1832. {
  1833. "name": "league/flysystem",
  1834. "version": "3.15.1",
  1835. "source": {
  1836. "type": "git",
  1837. "url": "https://github.com/thephpleague/flysystem.git",
  1838. "reference": "a141d430414fcb8bf797a18716b09f759a385bed"
  1839. },
  1840. "dist": {
  1841. "type": "zip",
  1842. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed",
  1843. "reference": "a141d430414fcb8bf797a18716b09f759a385bed",
  1844. "shasum": ""
  1845. },
  1846. "require": {
  1847. "league/flysystem-local": "^3.0.0",
  1848. "league/mime-type-detection": "^1.0.0",
  1849. "php": "^8.0.2"
  1850. },
  1851. "conflict": {
  1852. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  1853. "guzzlehttp/guzzle": "<7.0",
  1854. "guzzlehttp/ringphp": "<1.1.1",
  1855. "phpseclib/phpseclib": "3.0.15",
  1856. "symfony/http-client": "<5.2"
  1857. },
  1858. "require-dev": {
  1859. "async-aws/s3": "^1.5",
  1860. "async-aws/simple-s3": "^1.1",
  1861. "aws/aws-sdk-php": "^3.220.0",
  1862. "composer/semver": "^3.0",
  1863. "ext-fileinfo": "*",
  1864. "ext-ftp": "*",
  1865. "ext-zip": "*",
  1866. "friendsofphp/php-cs-fixer": "^3.5",
  1867. "google/cloud-storage": "^1.23",
  1868. "microsoft/azure-storage-blob": "^1.1",
  1869. "phpseclib/phpseclib": "^3.0.14",
  1870. "phpstan/phpstan": "^0.12.26",
  1871. "phpunit/phpunit": "^9.5.11",
  1872. "sabre/dav": "^4.3.1"
  1873. },
  1874. "type": "library",
  1875. "autoload": {
  1876. "psr-4": {
  1877. "League\\Flysystem\\": "src"
  1878. }
  1879. },
  1880. "notification-url": "https://packagist.org/downloads/",
  1881. "license": [
  1882. "MIT"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "Frank de Jonge",
  1887. "email": "info@frankdejonge.nl"
  1888. }
  1889. ],
  1890. "description": "File storage abstraction for PHP",
  1891. "keywords": [
  1892. "WebDAV",
  1893. "aws",
  1894. "cloud",
  1895. "file",
  1896. "files",
  1897. "filesystem",
  1898. "filesystems",
  1899. "ftp",
  1900. "s3",
  1901. "sftp",
  1902. "storage"
  1903. ],
  1904. "support": {
  1905. "issues": "https://github.com/thephpleague/flysystem/issues",
  1906. "source": "https://github.com/thephpleague/flysystem/tree/3.15.1"
  1907. },
  1908. "funding": [
  1909. {
  1910. "url": "https://ecologi.com/frankdejonge",
  1911. "type": "custom"
  1912. },
  1913. {
  1914. "url": "https://github.com/frankdejonge",
  1915. "type": "github"
  1916. }
  1917. ],
  1918. "time": "2023-05-04T09:04:26+00:00"
  1919. },
  1920. {
  1921. "name": "league/flysystem-local",
  1922. "version": "3.15.0",
  1923. "source": {
  1924. "type": "git",
  1925. "url": "https://github.com/thephpleague/flysystem-local.git",
  1926. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3"
  1927. },
  1928. "dist": {
  1929. "type": "zip",
  1930. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3",
  1931. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3",
  1932. "shasum": ""
  1933. },
  1934. "require": {
  1935. "ext-fileinfo": "*",
  1936. "league/flysystem": "^3.0.0",
  1937. "league/mime-type-detection": "^1.0.0",
  1938. "php": "^8.0.2"
  1939. },
  1940. "type": "library",
  1941. "autoload": {
  1942. "psr-4": {
  1943. "League\\Flysystem\\Local\\": ""
  1944. }
  1945. },
  1946. "notification-url": "https://packagist.org/downloads/",
  1947. "license": [
  1948. "MIT"
  1949. ],
  1950. "authors": [
  1951. {
  1952. "name": "Frank de Jonge",
  1953. "email": "info@frankdejonge.nl"
  1954. }
  1955. ],
  1956. "description": "Local filesystem adapter for Flysystem.",
  1957. "keywords": [
  1958. "Flysystem",
  1959. "file",
  1960. "files",
  1961. "filesystem",
  1962. "local"
  1963. ],
  1964. "support": {
  1965. "issues": "https://github.com/thephpleague/flysystem-local/issues",
  1966. "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0"
  1967. },
  1968. "funding": [
  1969. {
  1970. "url": "https://ecologi.com/frankdejonge",
  1971. "type": "custom"
  1972. },
  1973. {
  1974. "url": "https://github.com/frankdejonge",
  1975. "type": "github"
  1976. }
  1977. ],
  1978. "time": "2023-05-02T20:02:14+00:00"
  1979. },
  1980. {
  1981. "name": "league/mime-type-detection",
  1982. "version": "1.11.0",
  1983. "source": {
  1984. "type": "git",
  1985. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1986. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  1987. },
  1988. "dist": {
  1989. "type": "zip",
  1990. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1991. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1992. "shasum": ""
  1993. },
  1994. "require": {
  1995. "ext-fileinfo": "*",
  1996. "php": "^7.2 || ^8.0"
  1997. },
  1998. "require-dev": {
  1999. "friendsofphp/php-cs-fixer": "^3.2",
  2000. "phpstan/phpstan": "^0.12.68",
  2001. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2002. },
  2003. "type": "library",
  2004. "autoload": {
  2005. "psr-4": {
  2006. "League\\MimeTypeDetection\\": "src"
  2007. }
  2008. },
  2009. "notification-url": "https://packagist.org/downloads/",
  2010. "license": [
  2011. "MIT"
  2012. ],
  2013. "authors": [
  2014. {
  2015. "name": "Frank de Jonge",
  2016. "email": "info@frankdejonge.nl"
  2017. }
  2018. ],
  2019. "description": "Mime-type detection for Flysystem",
  2020. "support": {
  2021. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2022. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2023. },
  2024. "funding": [
  2025. {
  2026. "url": "https://github.com/frankdejonge",
  2027. "type": "github"
  2028. },
  2029. {
  2030. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2031. "type": "tidelift"
  2032. }
  2033. ],
  2034. "time": "2022-04-17T13:12:02+00:00"
  2035. },
  2036. {
  2037. "name": "mobiledetect/mobiledetectlib",
  2038. "version": "2.8.41",
  2039. "source": {
  2040. "type": "git",
  2041. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2042. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1"
  2043. },
  2044. "dist": {
  2045. "type": "zip",
  2046. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  2047. "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1",
  2048. "shasum": ""
  2049. },
  2050. "require": {
  2051. "php": ">=5.0.0"
  2052. },
  2053. "require-dev": {
  2054. "phpunit/phpunit": "~4.8.35||~5.7"
  2055. },
  2056. "type": "library",
  2057. "autoload": {
  2058. "psr-0": {
  2059. "Detection": "namespaced/"
  2060. },
  2061. "classmap": [
  2062. "Mobile_Detect.php"
  2063. ]
  2064. },
  2065. "notification-url": "https://packagist.org/downloads/",
  2066. "license": [
  2067. "MIT"
  2068. ],
  2069. "authors": [
  2070. {
  2071. "name": "Serban Ghita",
  2072. "email": "serbanghita@gmail.com",
  2073. "homepage": "http://mobiledetect.net",
  2074. "role": "Developer"
  2075. }
  2076. ],
  2077. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  2078. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2079. "keywords": [
  2080. "detect mobile devices",
  2081. "mobile",
  2082. "mobile detect",
  2083. "mobile detector",
  2084. "php mobile detect"
  2085. ],
  2086. "support": {
  2087. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  2088. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.41"
  2089. },
  2090. "time": "2022-11-08T18:31:26+00:00"
  2091. },
  2092. {
  2093. "name": "monolog/monolog",
  2094. "version": "3.4.0",
  2095. "source": {
  2096. "type": "git",
  2097. "url": "https://github.com/Seldaek/monolog.git",
  2098. "reference": "e2392369686d420ca32df3803de28b5d6f76867d"
  2099. },
  2100. "dist": {
  2101. "type": "zip",
  2102. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e2392369686d420ca32df3803de28b5d6f76867d",
  2103. "reference": "e2392369686d420ca32df3803de28b5d6f76867d",
  2104. "shasum": ""
  2105. },
  2106. "require": {
  2107. "php": ">=8.1",
  2108. "psr/log": "^2.0 || ^3.0"
  2109. },
  2110. "provide": {
  2111. "psr/log-implementation": "3.0.0"
  2112. },
  2113. "require-dev": {
  2114. "aws/aws-sdk-php": "^3.0",
  2115. "doctrine/couchdb": "~1.0@dev",
  2116. "elasticsearch/elasticsearch": "^7 || ^8",
  2117. "ext-json": "*",
  2118. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2119. "guzzlehttp/guzzle": "^7.4.5",
  2120. "guzzlehttp/psr7": "^2.2",
  2121. "mongodb/mongodb": "^1.8",
  2122. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2123. "phpstan/phpstan": "^1.9",
  2124. "phpstan/phpstan-deprecation-rules": "^1.0",
  2125. "phpstan/phpstan-strict-rules": "^1.4",
  2126. "phpunit/phpunit": "^10.1",
  2127. "predis/predis": "^1.1 || ^2",
  2128. "ruflin/elastica": "^7",
  2129. "symfony/mailer": "^5.4 || ^6",
  2130. "symfony/mime": "^5.4 || ^6"
  2131. },
  2132. "suggest": {
  2133. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2134. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2135. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2136. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2137. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2138. "ext-mbstring": "Allow to work properly with unicode symbols",
  2139. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2140. "ext-openssl": "Required to send log messages using SSL",
  2141. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2142. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2143. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2144. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2145. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2146. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2147. },
  2148. "type": "library",
  2149. "extra": {
  2150. "branch-alias": {
  2151. "dev-main": "3.x-dev"
  2152. }
  2153. },
  2154. "autoload": {
  2155. "psr-4": {
  2156. "Monolog\\": "src/Monolog"
  2157. }
  2158. },
  2159. "notification-url": "https://packagist.org/downloads/",
  2160. "license": [
  2161. "MIT"
  2162. ],
  2163. "authors": [
  2164. {
  2165. "name": "Jordi Boggiano",
  2166. "email": "j.boggiano@seld.be",
  2167. "homepage": "https://seld.be"
  2168. }
  2169. ],
  2170. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2171. "homepage": "https://github.com/Seldaek/monolog",
  2172. "keywords": [
  2173. "log",
  2174. "logging",
  2175. "psr-3"
  2176. ],
  2177. "support": {
  2178. "issues": "https://github.com/Seldaek/monolog/issues",
  2179. "source": "https://github.com/Seldaek/monolog/tree/3.4.0"
  2180. },
  2181. "funding": [
  2182. {
  2183. "url": "https://github.com/Seldaek",
  2184. "type": "github"
  2185. },
  2186. {
  2187. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2188. "type": "tidelift"
  2189. }
  2190. ],
  2191. "time": "2023-06-21T08:46:11+00:00"
  2192. },
  2193. {
  2194. "name": "nesbot/carbon",
  2195. "version": "2.68.1",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/briannesbitt/Carbon.git",
  2199. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  2204. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "ext-json": "*",
  2209. "php": "^7.1.8 || ^8.0",
  2210. "symfony/polyfill-mbstring": "^1.0",
  2211. "symfony/polyfill-php80": "^1.16",
  2212. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2213. },
  2214. "require-dev": {
  2215. "doctrine/dbal": "^2.0 || ^3.1.4",
  2216. "doctrine/orm": "^2.7",
  2217. "friendsofphp/php-cs-fixer": "^3.0",
  2218. "kylekatarnls/multi-tester": "^2.0",
  2219. "ondrejmirtes/better-reflection": "*",
  2220. "phpmd/phpmd": "^2.9",
  2221. "phpstan/extension-installer": "^1.0",
  2222. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2223. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2224. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2225. "squizlabs/php_codesniffer": "^3.4"
  2226. },
  2227. "bin": [
  2228. "bin/carbon"
  2229. ],
  2230. "type": "library",
  2231. "extra": {
  2232. "branch-alias": {
  2233. "dev-3.x": "3.x-dev",
  2234. "dev-master": "2.x-dev"
  2235. },
  2236. "laravel": {
  2237. "providers": [
  2238. "Carbon\\Laravel\\ServiceProvider"
  2239. ]
  2240. },
  2241. "phpstan": {
  2242. "includes": [
  2243. "extension.neon"
  2244. ]
  2245. }
  2246. },
  2247. "autoload": {
  2248. "psr-4": {
  2249. "Carbon\\": "src/Carbon/"
  2250. }
  2251. },
  2252. "notification-url": "https://packagist.org/downloads/",
  2253. "license": [
  2254. "MIT"
  2255. ],
  2256. "authors": [
  2257. {
  2258. "name": "Brian Nesbitt",
  2259. "email": "brian@nesbot.com",
  2260. "homepage": "https://markido.com"
  2261. },
  2262. {
  2263. "name": "kylekatarnls",
  2264. "homepage": "https://github.com/kylekatarnls"
  2265. }
  2266. ],
  2267. "description": "An API extension for DateTime that supports 281 different languages.",
  2268. "homepage": "https://carbon.nesbot.com",
  2269. "keywords": [
  2270. "date",
  2271. "datetime",
  2272. "time"
  2273. ],
  2274. "support": {
  2275. "docs": "https://carbon.nesbot.com/docs",
  2276. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2277. "source": "https://github.com/briannesbitt/Carbon"
  2278. },
  2279. "funding": [
  2280. {
  2281. "url": "https://github.com/sponsors/kylekatarnls",
  2282. "type": "github"
  2283. },
  2284. {
  2285. "url": "https://opencollective.com/Carbon#sponsor",
  2286. "type": "opencollective"
  2287. },
  2288. {
  2289. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2290. "type": "tidelift"
  2291. }
  2292. ],
  2293. "time": "2023-06-20T18:29:04+00:00"
  2294. },
  2295. {
  2296. "name": "nette/schema",
  2297. "version": "v1.2.3",
  2298. "source": {
  2299. "type": "git",
  2300. "url": "https://github.com/nette/schema.git",
  2301. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  2302. },
  2303. "dist": {
  2304. "type": "zip",
  2305. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2306. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2307. "shasum": ""
  2308. },
  2309. "require": {
  2310. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2311. "php": ">=7.1 <8.3"
  2312. },
  2313. "require-dev": {
  2314. "nette/tester": "^2.3 || ^2.4",
  2315. "phpstan/phpstan-nette": "^1.0",
  2316. "tracy/tracy": "^2.7"
  2317. },
  2318. "type": "library",
  2319. "extra": {
  2320. "branch-alias": {
  2321. "dev-master": "1.2-dev"
  2322. }
  2323. },
  2324. "autoload": {
  2325. "classmap": [
  2326. "src/"
  2327. ]
  2328. },
  2329. "notification-url": "https://packagist.org/downloads/",
  2330. "license": [
  2331. "BSD-3-Clause",
  2332. "GPL-2.0-only",
  2333. "GPL-3.0-only"
  2334. ],
  2335. "authors": [
  2336. {
  2337. "name": "David Grudl",
  2338. "homepage": "https://davidgrudl.com"
  2339. },
  2340. {
  2341. "name": "Nette Community",
  2342. "homepage": "https://nette.org/contributors"
  2343. }
  2344. ],
  2345. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2346. "homepage": "https://nette.org",
  2347. "keywords": [
  2348. "config",
  2349. "nette"
  2350. ],
  2351. "support": {
  2352. "issues": "https://github.com/nette/schema/issues",
  2353. "source": "https://github.com/nette/schema/tree/v1.2.3"
  2354. },
  2355. "time": "2022-10-13T01:24:26+00:00"
  2356. },
  2357. {
  2358. "name": "nette/utils",
  2359. "version": "v4.0.0",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://github.com/nette/utils.git",
  2363. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2368. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2369. "shasum": ""
  2370. },
  2371. "require": {
  2372. "php": ">=8.0 <8.3"
  2373. },
  2374. "conflict": {
  2375. "nette/finder": "<3",
  2376. "nette/schema": "<1.2.2"
  2377. },
  2378. "require-dev": {
  2379. "jetbrains/phpstorm-attributes": "dev-master",
  2380. "nette/tester": "^2.4",
  2381. "phpstan/phpstan": "^1.0",
  2382. "tracy/tracy": "^2.9"
  2383. },
  2384. "suggest": {
  2385. "ext-gd": "to use Image",
  2386. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2387. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2388. "ext-json": "to use Nette\\Utils\\Json",
  2389. "ext-mbstring": "to use Strings::lower() etc...",
  2390. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2391. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2392. },
  2393. "type": "library",
  2394. "extra": {
  2395. "branch-alias": {
  2396. "dev-master": "4.0-dev"
  2397. }
  2398. },
  2399. "autoload": {
  2400. "classmap": [
  2401. "src/"
  2402. ]
  2403. },
  2404. "notification-url": "https://packagist.org/downloads/",
  2405. "license": [
  2406. "BSD-3-Clause",
  2407. "GPL-2.0-only",
  2408. "GPL-3.0-only"
  2409. ],
  2410. "authors": [
  2411. {
  2412. "name": "David Grudl",
  2413. "homepage": "https://davidgrudl.com"
  2414. },
  2415. {
  2416. "name": "Nette Community",
  2417. "homepage": "https://nette.org/contributors"
  2418. }
  2419. ],
  2420. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2421. "homepage": "https://nette.org",
  2422. "keywords": [
  2423. "array",
  2424. "core",
  2425. "datetime",
  2426. "images",
  2427. "json",
  2428. "nette",
  2429. "paginator",
  2430. "password",
  2431. "slugify",
  2432. "string",
  2433. "unicode",
  2434. "utf-8",
  2435. "utility",
  2436. "validation"
  2437. ],
  2438. "support": {
  2439. "issues": "https://github.com/nette/utils/issues",
  2440. "source": "https://github.com/nette/utils/tree/v4.0.0"
  2441. },
  2442. "time": "2023-02-02T10:41:53+00:00"
  2443. },
  2444. {
  2445. "name": "nikic/php-parser",
  2446. "version": "v4.16.0",
  2447. "source": {
  2448. "type": "git",
  2449. "url": "https://github.com/nikic/PHP-Parser.git",
  2450. "reference": "19526a33fb561ef417e822e85f08a00db4059c17"
  2451. },
  2452. "dist": {
  2453. "type": "zip",
  2454. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17",
  2455. "reference": "19526a33fb561ef417e822e85f08a00db4059c17",
  2456. "shasum": ""
  2457. },
  2458. "require": {
  2459. "ext-tokenizer": "*",
  2460. "php": ">=7.0"
  2461. },
  2462. "require-dev": {
  2463. "ircmaxell/php-yacc": "^0.0.7",
  2464. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2465. },
  2466. "bin": [
  2467. "bin/php-parse"
  2468. ],
  2469. "type": "library",
  2470. "extra": {
  2471. "branch-alias": {
  2472. "dev-master": "4.9-dev"
  2473. }
  2474. },
  2475. "autoload": {
  2476. "psr-4": {
  2477. "PhpParser\\": "lib/PhpParser"
  2478. }
  2479. },
  2480. "notification-url": "https://packagist.org/downloads/",
  2481. "license": [
  2482. "BSD-3-Clause"
  2483. ],
  2484. "authors": [
  2485. {
  2486. "name": "Nikita Popov"
  2487. }
  2488. ],
  2489. "description": "A PHP parser written in PHP",
  2490. "keywords": [
  2491. "parser",
  2492. "php"
  2493. ],
  2494. "support": {
  2495. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2496. "source": "https://github.com/nikic/PHP-Parser/tree/v4.16.0"
  2497. },
  2498. "time": "2023-06-25T14:52:30+00:00"
  2499. },
  2500. {
  2501. "name": "nunomaduro/termwind",
  2502. "version": "v1.15.1",
  2503. "source": {
  2504. "type": "git",
  2505. "url": "https://github.com/nunomaduro/termwind.git",
  2506. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  2507. },
  2508. "dist": {
  2509. "type": "zip",
  2510. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  2511. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  2512. "shasum": ""
  2513. },
  2514. "require": {
  2515. "ext-mbstring": "*",
  2516. "php": "^8.0",
  2517. "symfony/console": "^5.3.0|^6.0.0"
  2518. },
  2519. "require-dev": {
  2520. "ergebnis/phpstan-rules": "^1.0.",
  2521. "illuminate/console": "^8.0|^9.0",
  2522. "illuminate/support": "^8.0|^9.0",
  2523. "laravel/pint": "^1.0.0",
  2524. "pestphp/pest": "^1.21.0",
  2525. "pestphp/pest-plugin-mock": "^1.0",
  2526. "phpstan/phpstan": "^1.4.6",
  2527. "phpstan/phpstan-strict-rules": "^1.1.0",
  2528. "symfony/var-dumper": "^5.2.7|^6.0.0",
  2529. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  2530. },
  2531. "type": "library",
  2532. "extra": {
  2533. "laravel": {
  2534. "providers": [
  2535. "Termwind\\Laravel\\TermwindServiceProvider"
  2536. ]
  2537. }
  2538. },
  2539. "autoload": {
  2540. "files": [
  2541. "src/Functions.php"
  2542. ],
  2543. "psr-4": {
  2544. "Termwind\\": "src/"
  2545. }
  2546. },
  2547. "notification-url": "https://packagist.org/downloads/",
  2548. "license": [
  2549. "MIT"
  2550. ],
  2551. "authors": [
  2552. {
  2553. "name": "Nuno Maduro",
  2554. "email": "enunomaduro@gmail.com"
  2555. }
  2556. ],
  2557. "description": "Its like Tailwind CSS, but for the console.",
  2558. "keywords": [
  2559. "cli",
  2560. "console",
  2561. "css",
  2562. "package",
  2563. "php",
  2564. "style"
  2565. ],
  2566. "support": {
  2567. "issues": "https://github.com/nunomaduro/termwind/issues",
  2568. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  2569. },
  2570. "funding": [
  2571. {
  2572. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2573. "type": "custom"
  2574. },
  2575. {
  2576. "url": "https://github.com/nunomaduro",
  2577. "type": "github"
  2578. },
  2579. {
  2580. "url": "https://github.com/xiCO2k",
  2581. "type": "github"
  2582. }
  2583. ],
  2584. "time": "2023-02-08T01:06:31+00:00"
  2585. },
  2586. {
  2587. "name": "phpoption/phpoption",
  2588. "version": "1.9.1",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/schmittjoh/php-option.git",
  2592. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  2597. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  2598. "shasum": ""
  2599. },
  2600. "require": {
  2601. "php": "^7.2.5 || ^8.0"
  2602. },
  2603. "require-dev": {
  2604. "bamarni/composer-bin-plugin": "^1.8.2",
  2605. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  2606. },
  2607. "type": "library",
  2608. "extra": {
  2609. "bamarni-bin": {
  2610. "bin-links": true,
  2611. "forward-command": true
  2612. },
  2613. "branch-alias": {
  2614. "dev-master": "1.9-dev"
  2615. }
  2616. },
  2617. "autoload": {
  2618. "psr-4": {
  2619. "PhpOption\\": "src/PhpOption/"
  2620. }
  2621. },
  2622. "notification-url": "https://packagist.org/downloads/",
  2623. "license": [
  2624. "Apache-2.0"
  2625. ],
  2626. "authors": [
  2627. {
  2628. "name": "Johannes M. Schmitt",
  2629. "email": "schmittjoh@gmail.com",
  2630. "homepage": "https://github.com/schmittjoh"
  2631. },
  2632. {
  2633. "name": "Graham Campbell",
  2634. "email": "hello@gjcampbell.co.uk",
  2635. "homepage": "https://github.com/GrahamCampbell"
  2636. }
  2637. ],
  2638. "description": "Option Type for PHP",
  2639. "keywords": [
  2640. "language",
  2641. "option",
  2642. "php",
  2643. "type"
  2644. ],
  2645. "support": {
  2646. "issues": "https://github.com/schmittjoh/php-option/issues",
  2647. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  2648. },
  2649. "funding": [
  2650. {
  2651. "url": "https://github.com/GrahamCampbell",
  2652. "type": "github"
  2653. },
  2654. {
  2655. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2656. "type": "tidelift"
  2657. }
  2658. ],
  2659. "time": "2023-02-25T19:38:58+00:00"
  2660. },
  2661. {
  2662. "name": "psr/container",
  2663. "version": "2.0.2",
  2664. "source": {
  2665. "type": "git",
  2666. "url": "https://github.com/php-fig/container.git",
  2667. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2668. },
  2669. "dist": {
  2670. "type": "zip",
  2671. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2672. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2673. "shasum": ""
  2674. },
  2675. "require": {
  2676. "php": ">=7.4.0"
  2677. },
  2678. "type": "library",
  2679. "extra": {
  2680. "branch-alias": {
  2681. "dev-master": "2.0.x-dev"
  2682. }
  2683. },
  2684. "autoload": {
  2685. "psr-4": {
  2686. "Psr\\Container\\": "src/"
  2687. }
  2688. },
  2689. "notification-url": "https://packagist.org/downloads/",
  2690. "license": [
  2691. "MIT"
  2692. ],
  2693. "authors": [
  2694. {
  2695. "name": "PHP-FIG",
  2696. "homepage": "https://www.php-fig.org/"
  2697. }
  2698. ],
  2699. "description": "Common Container Interface (PHP FIG PSR-11)",
  2700. "homepage": "https://github.com/php-fig/container",
  2701. "keywords": [
  2702. "PSR-11",
  2703. "container",
  2704. "container-interface",
  2705. "container-interop",
  2706. "psr"
  2707. ],
  2708. "support": {
  2709. "issues": "https://github.com/php-fig/container/issues",
  2710. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2711. },
  2712. "time": "2021-11-05T16:47:00+00:00"
  2713. },
  2714. {
  2715. "name": "psr/event-dispatcher",
  2716. "version": "1.0.0",
  2717. "source": {
  2718. "type": "git",
  2719. "url": "https://github.com/php-fig/event-dispatcher.git",
  2720. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2721. },
  2722. "dist": {
  2723. "type": "zip",
  2724. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2725. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2726. "shasum": ""
  2727. },
  2728. "require": {
  2729. "php": ">=7.2.0"
  2730. },
  2731. "type": "library",
  2732. "extra": {
  2733. "branch-alias": {
  2734. "dev-master": "1.0.x-dev"
  2735. }
  2736. },
  2737. "autoload": {
  2738. "psr-4": {
  2739. "Psr\\EventDispatcher\\": "src/"
  2740. }
  2741. },
  2742. "notification-url": "https://packagist.org/downloads/",
  2743. "license": [
  2744. "MIT"
  2745. ],
  2746. "authors": [
  2747. {
  2748. "name": "PHP-FIG",
  2749. "homepage": "http://www.php-fig.org/"
  2750. }
  2751. ],
  2752. "description": "Standard interfaces for event handling.",
  2753. "keywords": [
  2754. "events",
  2755. "psr",
  2756. "psr-14"
  2757. ],
  2758. "support": {
  2759. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2760. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2761. },
  2762. "time": "2019-01-08T18:20:26+00:00"
  2763. },
  2764. {
  2765. "name": "psr/http-client",
  2766. "version": "1.0.2",
  2767. "source": {
  2768. "type": "git",
  2769. "url": "https://github.com/php-fig/http-client.git",
  2770. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  2771. },
  2772. "dist": {
  2773. "type": "zip",
  2774. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  2775. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  2776. "shasum": ""
  2777. },
  2778. "require": {
  2779. "php": "^7.0 || ^8.0",
  2780. "psr/http-message": "^1.0 || ^2.0"
  2781. },
  2782. "type": "library",
  2783. "extra": {
  2784. "branch-alias": {
  2785. "dev-master": "1.0.x-dev"
  2786. }
  2787. },
  2788. "autoload": {
  2789. "psr-4": {
  2790. "Psr\\Http\\Client\\": "src/"
  2791. }
  2792. },
  2793. "notification-url": "https://packagist.org/downloads/",
  2794. "license": [
  2795. "MIT"
  2796. ],
  2797. "authors": [
  2798. {
  2799. "name": "PHP-FIG",
  2800. "homepage": "https://www.php-fig.org/"
  2801. }
  2802. ],
  2803. "description": "Common interface for HTTP clients",
  2804. "homepage": "https://github.com/php-fig/http-client",
  2805. "keywords": [
  2806. "http",
  2807. "http-client",
  2808. "psr",
  2809. "psr-18"
  2810. ],
  2811. "support": {
  2812. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  2813. },
  2814. "time": "2023-04-10T20:12:12+00:00"
  2815. },
  2816. {
  2817. "name": "psr/http-factory",
  2818. "version": "1.0.2",
  2819. "source": {
  2820. "type": "git",
  2821. "url": "https://github.com/php-fig/http-factory.git",
  2822. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  2823. },
  2824. "dist": {
  2825. "type": "zip",
  2826. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  2827. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  2828. "shasum": ""
  2829. },
  2830. "require": {
  2831. "php": ">=7.0.0",
  2832. "psr/http-message": "^1.0 || ^2.0"
  2833. },
  2834. "type": "library",
  2835. "extra": {
  2836. "branch-alias": {
  2837. "dev-master": "1.0.x-dev"
  2838. }
  2839. },
  2840. "autoload": {
  2841. "psr-4": {
  2842. "Psr\\Http\\Message\\": "src/"
  2843. }
  2844. },
  2845. "notification-url": "https://packagist.org/downloads/",
  2846. "license": [
  2847. "MIT"
  2848. ],
  2849. "authors": [
  2850. {
  2851. "name": "PHP-FIG",
  2852. "homepage": "https://www.php-fig.org/"
  2853. }
  2854. ],
  2855. "description": "Common interfaces for PSR-7 HTTP message factories",
  2856. "keywords": [
  2857. "factory",
  2858. "http",
  2859. "message",
  2860. "psr",
  2861. "psr-17",
  2862. "psr-7",
  2863. "request",
  2864. "response"
  2865. ],
  2866. "support": {
  2867. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  2868. },
  2869. "time": "2023-04-10T20:10:41+00:00"
  2870. },
  2871. {
  2872. "name": "psr/http-message",
  2873. "version": "2.0",
  2874. "source": {
  2875. "type": "git",
  2876. "url": "https://github.com/php-fig/http-message.git",
  2877. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2878. },
  2879. "dist": {
  2880. "type": "zip",
  2881. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2882. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2883. "shasum": ""
  2884. },
  2885. "require": {
  2886. "php": "^7.2 || ^8.0"
  2887. },
  2888. "type": "library",
  2889. "extra": {
  2890. "branch-alias": {
  2891. "dev-master": "2.0.x-dev"
  2892. }
  2893. },
  2894. "autoload": {
  2895. "psr-4": {
  2896. "Psr\\Http\\Message\\": "src/"
  2897. }
  2898. },
  2899. "notification-url": "https://packagist.org/downloads/",
  2900. "license": [
  2901. "MIT"
  2902. ],
  2903. "authors": [
  2904. {
  2905. "name": "PHP-FIG",
  2906. "homepage": "https://www.php-fig.org/"
  2907. }
  2908. ],
  2909. "description": "Common interface for HTTP messages",
  2910. "homepage": "https://github.com/php-fig/http-message",
  2911. "keywords": [
  2912. "http",
  2913. "http-message",
  2914. "psr",
  2915. "psr-7",
  2916. "request",
  2917. "response"
  2918. ],
  2919. "support": {
  2920. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2921. },
  2922. "time": "2023-04-04T09:54:51+00:00"
  2923. },
  2924. {
  2925. "name": "psr/log",
  2926. "version": "3.0.0",
  2927. "source": {
  2928. "type": "git",
  2929. "url": "https://github.com/php-fig/log.git",
  2930. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  2931. },
  2932. "dist": {
  2933. "type": "zip",
  2934. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2935. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2936. "shasum": ""
  2937. },
  2938. "require": {
  2939. "php": ">=8.0.0"
  2940. },
  2941. "type": "library",
  2942. "extra": {
  2943. "branch-alias": {
  2944. "dev-master": "3.x-dev"
  2945. }
  2946. },
  2947. "autoload": {
  2948. "psr-4": {
  2949. "Psr\\Log\\": "src"
  2950. }
  2951. },
  2952. "notification-url": "https://packagist.org/downloads/",
  2953. "license": [
  2954. "MIT"
  2955. ],
  2956. "authors": [
  2957. {
  2958. "name": "PHP-FIG",
  2959. "homepage": "https://www.php-fig.org/"
  2960. }
  2961. ],
  2962. "description": "Common interface for logging libraries",
  2963. "homepage": "https://github.com/php-fig/log",
  2964. "keywords": [
  2965. "log",
  2966. "psr",
  2967. "psr-3"
  2968. ],
  2969. "support": {
  2970. "source": "https://github.com/php-fig/log/tree/3.0.0"
  2971. },
  2972. "time": "2021-07-14T16:46:02+00:00"
  2973. },
  2974. {
  2975. "name": "psr/simple-cache",
  2976. "version": "3.0.0",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://github.com/php-fig/simple-cache.git",
  2980. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2985. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2986. "shasum": ""
  2987. },
  2988. "require": {
  2989. "php": ">=8.0.0"
  2990. },
  2991. "type": "library",
  2992. "extra": {
  2993. "branch-alias": {
  2994. "dev-master": "3.0.x-dev"
  2995. }
  2996. },
  2997. "autoload": {
  2998. "psr-4": {
  2999. "Psr\\SimpleCache\\": "src/"
  3000. }
  3001. },
  3002. "notification-url": "https://packagist.org/downloads/",
  3003. "license": [
  3004. "MIT"
  3005. ],
  3006. "authors": [
  3007. {
  3008. "name": "PHP-FIG",
  3009. "homepage": "https://www.php-fig.org/"
  3010. }
  3011. ],
  3012. "description": "Common interfaces for simple caching",
  3013. "keywords": [
  3014. "cache",
  3015. "caching",
  3016. "psr",
  3017. "psr-16",
  3018. "simple-cache"
  3019. ],
  3020. "support": {
  3021. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3022. },
  3023. "time": "2021-10-29T13:26:27+00:00"
  3024. },
  3025. {
  3026. "name": "psy/psysh",
  3027. "version": "v0.11.19",
  3028. "source": {
  3029. "type": "git",
  3030. "url": "https://github.com/bobthecow/psysh.git",
  3031. "reference": "1724ceff278daeeac5a006744633bacbb2dc4706"
  3032. },
  3033. "dist": {
  3034. "type": "zip",
  3035. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1724ceff278daeeac5a006744633bacbb2dc4706",
  3036. "reference": "1724ceff278daeeac5a006744633bacbb2dc4706",
  3037. "shasum": ""
  3038. },
  3039. "require": {
  3040. "ext-json": "*",
  3041. "ext-tokenizer": "*",
  3042. "nikic/php-parser": "^4.0 || ^3.1",
  3043. "php": "^8.0 || ^7.0.8",
  3044. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  3045. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  3046. },
  3047. "conflict": {
  3048. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3049. },
  3050. "require-dev": {
  3051. "bamarni/composer-bin-plugin": "^1.2"
  3052. },
  3053. "suggest": {
  3054. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3055. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3056. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3057. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  3058. },
  3059. "bin": [
  3060. "bin/psysh"
  3061. ],
  3062. "type": "library",
  3063. "extra": {
  3064. "branch-alias": {
  3065. "dev-main": "0.11.x-dev"
  3066. }
  3067. },
  3068. "autoload": {
  3069. "files": [
  3070. "src/functions.php"
  3071. ],
  3072. "psr-4": {
  3073. "Psy\\": "src/"
  3074. }
  3075. },
  3076. "notification-url": "https://packagist.org/downloads/",
  3077. "license": [
  3078. "MIT"
  3079. ],
  3080. "authors": [
  3081. {
  3082. "name": "Justin Hileman",
  3083. "email": "justin@justinhileman.info",
  3084. "homepage": "http://justinhileman.com"
  3085. }
  3086. ],
  3087. "description": "An interactive shell for modern PHP.",
  3088. "homepage": "http://psysh.org",
  3089. "keywords": [
  3090. "REPL",
  3091. "console",
  3092. "interactive",
  3093. "shell"
  3094. ],
  3095. "support": {
  3096. "issues": "https://github.com/bobthecow/psysh/issues",
  3097. "source": "https://github.com/bobthecow/psysh/tree/v0.11.19"
  3098. },
  3099. "time": "2023-07-15T19:42:19+00:00"
  3100. },
  3101. {
  3102. "name": "ralouphie/getallheaders",
  3103. "version": "3.0.3",
  3104. "source": {
  3105. "type": "git",
  3106. "url": "https://github.com/ralouphie/getallheaders.git",
  3107. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3108. },
  3109. "dist": {
  3110. "type": "zip",
  3111. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3112. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3113. "shasum": ""
  3114. },
  3115. "require": {
  3116. "php": ">=5.6"
  3117. },
  3118. "require-dev": {
  3119. "php-coveralls/php-coveralls": "^2.1",
  3120. "phpunit/phpunit": "^5 || ^6.5"
  3121. },
  3122. "type": "library",
  3123. "autoload": {
  3124. "files": [
  3125. "src/getallheaders.php"
  3126. ]
  3127. },
  3128. "notification-url": "https://packagist.org/downloads/",
  3129. "license": [
  3130. "MIT"
  3131. ],
  3132. "authors": [
  3133. {
  3134. "name": "Ralph Khattar",
  3135. "email": "ralph.khattar@gmail.com"
  3136. }
  3137. ],
  3138. "description": "A polyfill for getallheaders.",
  3139. "support": {
  3140. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3141. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3142. },
  3143. "time": "2019-03-08T08:55:37+00:00"
  3144. },
  3145. {
  3146. "name": "ramsey/collection",
  3147. "version": "2.0.0",
  3148. "source": {
  3149. "type": "git",
  3150. "url": "https://github.com/ramsey/collection.git",
  3151. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  3152. },
  3153. "dist": {
  3154. "type": "zip",
  3155. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3156. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3157. "shasum": ""
  3158. },
  3159. "require": {
  3160. "php": "^8.1"
  3161. },
  3162. "require-dev": {
  3163. "captainhook/plugin-composer": "^5.3",
  3164. "ergebnis/composer-normalize": "^2.28.3",
  3165. "fakerphp/faker": "^1.21",
  3166. "hamcrest/hamcrest-php": "^2.0",
  3167. "jangregor/phpstan-prophecy": "^1.0",
  3168. "mockery/mockery": "^1.5",
  3169. "php-parallel-lint/php-console-highlighter": "^1.0",
  3170. "php-parallel-lint/php-parallel-lint": "^1.3",
  3171. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3172. "phpspec/prophecy-phpunit": "^2.0",
  3173. "phpstan/extension-installer": "^1.2",
  3174. "phpstan/phpstan": "^1.9",
  3175. "phpstan/phpstan-mockery": "^1.1",
  3176. "phpstan/phpstan-phpunit": "^1.3",
  3177. "phpunit/phpunit": "^9.5",
  3178. "psalm/plugin-mockery": "^1.1",
  3179. "psalm/plugin-phpunit": "^0.18.4",
  3180. "ramsey/coding-standard": "^2.0.3",
  3181. "ramsey/conventional-commits": "^1.3",
  3182. "vimeo/psalm": "^5.4"
  3183. },
  3184. "type": "library",
  3185. "extra": {
  3186. "captainhook": {
  3187. "force-install": true
  3188. },
  3189. "ramsey/conventional-commits": {
  3190. "configFile": "conventional-commits.json"
  3191. }
  3192. },
  3193. "autoload": {
  3194. "psr-4": {
  3195. "Ramsey\\Collection\\": "src/"
  3196. }
  3197. },
  3198. "notification-url": "https://packagist.org/downloads/",
  3199. "license": [
  3200. "MIT"
  3201. ],
  3202. "authors": [
  3203. {
  3204. "name": "Ben Ramsey",
  3205. "email": "ben@benramsey.com",
  3206. "homepage": "https://benramsey.com"
  3207. }
  3208. ],
  3209. "description": "A PHP library for representing and manipulating collections.",
  3210. "keywords": [
  3211. "array",
  3212. "collection",
  3213. "hash",
  3214. "map",
  3215. "queue",
  3216. "set"
  3217. ],
  3218. "support": {
  3219. "issues": "https://github.com/ramsey/collection/issues",
  3220. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  3221. },
  3222. "funding": [
  3223. {
  3224. "url": "https://github.com/ramsey",
  3225. "type": "github"
  3226. },
  3227. {
  3228. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  3229. "type": "tidelift"
  3230. }
  3231. ],
  3232. "time": "2022-12-31T21:50:55+00:00"
  3233. },
  3234. {
  3235. "name": "ramsey/uuid",
  3236. "version": "4.7.4",
  3237. "source": {
  3238. "type": "git",
  3239. "url": "https://github.com/ramsey/uuid.git",
  3240. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  3241. },
  3242. "dist": {
  3243. "type": "zip",
  3244. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  3245. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  3246. "shasum": ""
  3247. },
  3248. "require": {
  3249. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  3250. "ext-json": "*",
  3251. "php": "^8.0",
  3252. "ramsey/collection": "^1.2 || ^2.0"
  3253. },
  3254. "replace": {
  3255. "rhumsaa/uuid": "self.version"
  3256. },
  3257. "require-dev": {
  3258. "captainhook/captainhook": "^5.10",
  3259. "captainhook/plugin-composer": "^5.3",
  3260. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3261. "doctrine/annotations": "^1.8",
  3262. "ergebnis/composer-normalize": "^2.15",
  3263. "mockery/mockery": "^1.3",
  3264. "paragonie/random-lib": "^2",
  3265. "php-mock/php-mock": "^2.2",
  3266. "php-mock/php-mock-mockery": "^1.3",
  3267. "php-parallel-lint/php-parallel-lint": "^1.1",
  3268. "phpbench/phpbench": "^1.0",
  3269. "phpstan/extension-installer": "^1.1",
  3270. "phpstan/phpstan": "^1.8",
  3271. "phpstan/phpstan-mockery": "^1.1",
  3272. "phpstan/phpstan-phpunit": "^1.1",
  3273. "phpunit/phpunit": "^8.5 || ^9",
  3274. "ramsey/composer-repl": "^1.4",
  3275. "slevomat/coding-standard": "^8.4",
  3276. "squizlabs/php_codesniffer": "^3.5",
  3277. "vimeo/psalm": "^4.9"
  3278. },
  3279. "suggest": {
  3280. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3281. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3282. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3283. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3284. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3285. },
  3286. "type": "library",
  3287. "extra": {
  3288. "captainhook": {
  3289. "force-install": true
  3290. }
  3291. },
  3292. "autoload": {
  3293. "files": [
  3294. "src/functions.php"
  3295. ],
  3296. "psr-4": {
  3297. "Ramsey\\Uuid\\": "src/"
  3298. }
  3299. },
  3300. "notification-url": "https://packagist.org/downloads/",
  3301. "license": [
  3302. "MIT"
  3303. ],
  3304. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3305. "keywords": [
  3306. "guid",
  3307. "identifier",
  3308. "uuid"
  3309. ],
  3310. "support": {
  3311. "issues": "https://github.com/ramsey/uuid/issues",
  3312. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  3313. },
  3314. "funding": [
  3315. {
  3316. "url": "https://github.com/ramsey",
  3317. "type": "github"
  3318. },
  3319. {
  3320. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  3321. "type": "tidelift"
  3322. }
  3323. ],
  3324. "time": "2023-04-15T23:01:58+00:00"
  3325. },
  3326. {
  3327. "name": "shetabit/visitor",
  3328. "version": "v4.0.1",
  3329. "source": {
  3330. "type": "git",
  3331. "url": "https://github.com/shetabit/visitor.git",
  3332. "reference": "96f8977589d9028f8bee1330d79cad6b9250ba19"
  3333. },
  3334. "dist": {
  3335. "type": "zip",
  3336. "url": "https://api.github.com/repos/shetabit/visitor/zipball/96f8977589d9028f8bee1330d79cad6b9250ba19",
  3337. "reference": "96f8977589d9028f8bee1330d79cad6b9250ba19",
  3338. "shasum": ""
  3339. },
  3340. "require": {
  3341. "illuminate/support": "^5.1|6.*|7.*|8.*|9.*|10.*",
  3342. "jenssegers/agent": "^2.6",
  3343. "php": ">=7.2",
  3344. "ua-parser/uap-php": "^3.9"
  3345. },
  3346. "require-dev": {
  3347. "orchestra/testbench": "^4.0",
  3348. "phpunit/phpunit": ">=7.5",
  3349. "squizlabs/php_codesniffer": "^3.4"
  3350. },
  3351. "type": "library",
  3352. "extra": {
  3353. "laravel": {
  3354. "providers": [
  3355. "Shetabit\\Visitor\\Provider\\VisitorServiceProvider"
  3356. ],
  3357. "aliases": {
  3358. "Visitor": "Shetabit\\Visitor\\Facade\\Visitor"
  3359. }
  3360. }
  3361. },
  3362. "autoload": {
  3363. "files": [
  3364. "src/helpers.php"
  3365. ],
  3366. "psr-4": {
  3367. "Shetabit\\Visitor\\": "src"
  3368. }
  3369. },
  3370. "notification-url": "https://packagist.org/downloads/",
  3371. "license": [
  3372. "MIT"
  3373. ],
  3374. "authors": [
  3375. {
  3376. "name": "Mahdi Khanzadi",
  3377. "email": "khanzadimahdi@gmail.com",
  3378. "homepage": "https://github.com/khanzadimahdi",
  3379. "role": "Developer"
  3380. }
  3381. ],
  3382. "description": "Laravel visitor",
  3383. "homepage": "https://github.com/shetabit/visitor",
  3384. "keywords": [
  3385. "parse laravel user agents",
  3386. "shetabit",
  3387. "trace laravel visitors",
  3388. "track laravel visitors",
  3389. "visitor"
  3390. ],
  3391. "support": {
  3392. "issues": "https://github.com/shetabit/visitor/issues",
  3393. "source": "https://github.com/shetabit/visitor/tree/v4.0.1"
  3394. },
  3395. "time": "2023-06-17T15:27:37+00:00"
  3396. },
  3397. {
  3398. "name": "symfony/console",
  3399. "version": "v6.3.0",
  3400. "source": {
  3401. "type": "git",
  3402. "url": "https://github.com/symfony/console.git",
  3403. "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7"
  3404. },
  3405. "dist": {
  3406. "type": "zip",
  3407. "url": "https://api.github.com/repos/symfony/console/zipball/8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
  3408. "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
  3409. "shasum": ""
  3410. },
  3411. "require": {
  3412. "php": ">=8.1",
  3413. "symfony/deprecation-contracts": "^2.5|^3",
  3414. "symfony/polyfill-mbstring": "~1.0",
  3415. "symfony/service-contracts": "^2.5|^3",
  3416. "symfony/string": "^5.4|^6.0"
  3417. },
  3418. "conflict": {
  3419. "symfony/dependency-injection": "<5.4",
  3420. "symfony/dotenv": "<5.4",
  3421. "symfony/event-dispatcher": "<5.4",
  3422. "symfony/lock": "<5.4",
  3423. "symfony/process": "<5.4"
  3424. },
  3425. "provide": {
  3426. "psr/log-implementation": "1.0|2.0|3.0"
  3427. },
  3428. "require-dev": {
  3429. "psr/log": "^1|^2|^3",
  3430. "symfony/config": "^5.4|^6.0",
  3431. "symfony/dependency-injection": "^5.4|^6.0",
  3432. "symfony/event-dispatcher": "^5.4|^6.0",
  3433. "symfony/lock": "^5.4|^6.0",
  3434. "symfony/process": "^5.4|^6.0",
  3435. "symfony/var-dumper": "^5.4|^6.0"
  3436. },
  3437. "type": "library",
  3438. "autoload": {
  3439. "psr-4": {
  3440. "Symfony\\Component\\Console\\": ""
  3441. },
  3442. "exclude-from-classmap": [
  3443. "/Tests/"
  3444. ]
  3445. },
  3446. "notification-url": "https://packagist.org/downloads/",
  3447. "license": [
  3448. "MIT"
  3449. ],
  3450. "authors": [
  3451. {
  3452. "name": "Fabien Potencier",
  3453. "email": "fabien@symfony.com"
  3454. },
  3455. {
  3456. "name": "Symfony Community",
  3457. "homepage": "https://symfony.com/contributors"
  3458. }
  3459. ],
  3460. "description": "Eases the creation of beautiful and testable command line interfaces",
  3461. "homepage": "https://symfony.com",
  3462. "keywords": [
  3463. "cli",
  3464. "command-line",
  3465. "console",
  3466. "terminal"
  3467. ],
  3468. "support": {
  3469. "source": "https://github.com/symfony/console/tree/v6.3.0"
  3470. },
  3471. "funding": [
  3472. {
  3473. "url": "https://symfony.com/sponsor",
  3474. "type": "custom"
  3475. },
  3476. {
  3477. "url": "https://github.com/fabpot",
  3478. "type": "github"
  3479. },
  3480. {
  3481. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3482. "type": "tidelift"
  3483. }
  3484. ],
  3485. "time": "2023-05-29T12:49:39+00:00"
  3486. },
  3487. {
  3488. "name": "symfony/css-selector",
  3489. "version": "v6.3.0",
  3490. "source": {
  3491. "type": "git",
  3492. "url": "https://github.com/symfony/css-selector.git",
  3493. "reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf"
  3494. },
  3495. "dist": {
  3496. "type": "zip",
  3497. "url": "https://api.github.com/repos/symfony/css-selector/zipball/88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf",
  3498. "reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf",
  3499. "shasum": ""
  3500. },
  3501. "require": {
  3502. "php": ">=8.1"
  3503. },
  3504. "type": "library",
  3505. "autoload": {
  3506. "psr-4": {
  3507. "Symfony\\Component\\CssSelector\\": ""
  3508. },
  3509. "exclude-from-classmap": [
  3510. "/Tests/"
  3511. ]
  3512. },
  3513. "notification-url": "https://packagist.org/downloads/",
  3514. "license": [
  3515. "MIT"
  3516. ],
  3517. "authors": [
  3518. {
  3519. "name": "Fabien Potencier",
  3520. "email": "fabien@symfony.com"
  3521. },
  3522. {
  3523. "name": "Jean-François Simon",
  3524. "email": "jeanfrancois.simon@sensiolabs.com"
  3525. },
  3526. {
  3527. "name": "Symfony Community",
  3528. "homepage": "https://symfony.com/contributors"
  3529. }
  3530. ],
  3531. "description": "Converts CSS selectors to XPath expressions",
  3532. "homepage": "https://symfony.com",
  3533. "support": {
  3534. "source": "https://github.com/symfony/css-selector/tree/v6.3.0"
  3535. },
  3536. "funding": [
  3537. {
  3538. "url": "https://symfony.com/sponsor",
  3539. "type": "custom"
  3540. },
  3541. {
  3542. "url": "https://github.com/fabpot",
  3543. "type": "github"
  3544. },
  3545. {
  3546. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3547. "type": "tidelift"
  3548. }
  3549. ],
  3550. "time": "2023-03-20T16:43:42+00:00"
  3551. },
  3552. {
  3553. "name": "symfony/deprecation-contracts",
  3554. "version": "v3.3.0",
  3555. "source": {
  3556. "type": "git",
  3557. "url": "https://github.com/symfony/deprecation-contracts.git",
  3558. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  3559. },
  3560. "dist": {
  3561. "type": "zip",
  3562. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  3563. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  3564. "shasum": ""
  3565. },
  3566. "require": {
  3567. "php": ">=8.1"
  3568. },
  3569. "type": "library",
  3570. "extra": {
  3571. "branch-alias": {
  3572. "dev-main": "3.4-dev"
  3573. },
  3574. "thanks": {
  3575. "name": "symfony/contracts",
  3576. "url": "https://github.com/symfony/contracts"
  3577. }
  3578. },
  3579. "autoload": {
  3580. "files": [
  3581. "function.php"
  3582. ]
  3583. },
  3584. "notification-url": "https://packagist.org/downloads/",
  3585. "license": [
  3586. "MIT"
  3587. ],
  3588. "authors": [
  3589. {
  3590. "name": "Nicolas Grekas",
  3591. "email": "p@tchwork.com"
  3592. },
  3593. {
  3594. "name": "Symfony Community",
  3595. "homepage": "https://symfony.com/contributors"
  3596. }
  3597. ],
  3598. "description": "A generic function and convention to trigger deprecation notices",
  3599. "homepage": "https://symfony.com",
  3600. "support": {
  3601. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  3602. },
  3603. "funding": [
  3604. {
  3605. "url": "https://symfony.com/sponsor",
  3606. "type": "custom"
  3607. },
  3608. {
  3609. "url": "https://github.com/fabpot",
  3610. "type": "github"
  3611. },
  3612. {
  3613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3614. "type": "tidelift"
  3615. }
  3616. ],
  3617. "time": "2023-05-23T14:45:45+00:00"
  3618. },
  3619. {
  3620. "name": "symfony/error-handler",
  3621. "version": "v6.3.0",
  3622. "source": {
  3623. "type": "git",
  3624. "url": "https://github.com/symfony/error-handler.git",
  3625. "reference": "99d2d814a6351461af350ead4d963bd67451236f"
  3626. },
  3627. "dist": {
  3628. "type": "zip",
  3629. "url": "https://api.github.com/repos/symfony/error-handler/zipball/99d2d814a6351461af350ead4d963bd67451236f",
  3630. "reference": "99d2d814a6351461af350ead4d963bd67451236f",
  3631. "shasum": ""
  3632. },
  3633. "require": {
  3634. "php": ">=8.1",
  3635. "psr/log": "^1|^2|^3",
  3636. "symfony/var-dumper": "^5.4|^6.0"
  3637. },
  3638. "conflict": {
  3639. "symfony/deprecation-contracts": "<2.5"
  3640. },
  3641. "require-dev": {
  3642. "symfony/deprecation-contracts": "^2.5|^3",
  3643. "symfony/http-kernel": "^5.4|^6.0",
  3644. "symfony/serializer": "^5.4|^6.0"
  3645. },
  3646. "bin": [
  3647. "Resources/bin/patch-type-declarations"
  3648. ],
  3649. "type": "library",
  3650. "autoload": {
  3651. "psr-4": {
  3652. "Symfony\\Component\\ErrorHandler\\": ""
  3653. },
  3654. "exclude-from-classmap": [
  3655. "/Tests/"
  3656. ]
  3657. },
  3658. "notification-url": "https://packagist.org/downloads/",
  3659. "license": [
  3660. "MIT"
  3661. ],
  3662. "authors": [
  3663. {
  3664. "name": "Fabien Potencier",
  3665. "email": "fabien@symfony.com"
  3666. },
  3667. {
  3668. "name": "Symfony Community",
  3669. "homepage": "https://symfony.com/contributors"
  3670. }
  3671. ],
  3672. "description": "Provides tools to manage errors and ease debugging PHP code",
  3673. "homepage": "https://symfony.com",
  3674. "support": {
  3675. "source": "https://github.com/symfony/error-handler/tree/v6.3.0"
  3676. },
  3677. "funding": [
  3678. {
  3679. "url": "https://symfony.com/sponsor",
  3680. "type": "custom"
  3681. },
  3682. {
  3683. "url": "https://github.com/fabpot",
  3684. "type": "github"
  3685. },
  3686. {
  3687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3688. "type": "tidelift"
  3689. }
  3690. ],
  3691. "time": "2023-05-10T12:03:13+00:00"
  3692. },
  3693. {
  3694. "name": "symfony/event-dispatcher",
  3695. "version": "v6.3.0",
  3696. "source": {
  3697. "type": "git",
  3698. "url": "https://github.com/symfony/event-dispatcher.git",
  3699. "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa"
  3700. },
  3701. "dist": {
  3702. "type": "zip",
  3703. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa",
  3704. "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa",
  3705. "shasum": ""
  3706. },
  3707. "require": {
  3708. "php": ">=8.1",
  3709. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3710. },
  3711. "conflict": {
  3712. "symfony/dependency-injection": "<5.4",
  3713. "symfony/service-contracts": "<2.5"
  3714. },
  3715. "provide": {
  3716. "psr/event-dispatcher-implementation": "1.0",
  3717. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3718. },
  3719. "require-dev": {
  3720. "psr/log": "^1|^2|^3",
  3721. "symfony/config": "^5.4|^6.0",
  3722. "symfony/dependency-injection": "^5.4|^6.0",
  3723. "symfony/error-handler": "^5.4|^6.0",
  3724. "symfony/expression-language": "^5.4|^6.0",
  3725. "symfony/http-foundation": "^5.4|^6.0",
  3726. "symfony/service-contracts": "^2.5|^3",
  3727. "symfony/stopwatch": "^5.4|^6.0"
  3728. },
  3729. "type": "library",
  3730. "autoload": {
  3731. "psr-4": {
  3732. "Symfony\\Component\\EventDispatcher\\": ""
  3733. },
  3734. "exclude-from-classmap": [
  3735. "/Tests/"
  3736. ]
  3737. },
  3738. "notification-url": "https://packagist.org/downloads/",
  3739. "license": [
  3740. "MIT"
  3741. ],
  3742. "authors": [
  3743. {
  3744. "name": "Fabien Potencier",
  3745. "email": "fabien@symfony.com"
  3746. },
  3747. {
  3748. "name": "Symfony Community",
  3749. "homepage": "https://symfony.com/contributors"
  3750. }
  3751. ],
  3752. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3753. "homepage": "https://symfony.com",
  3754. "support": {
  3755. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.0"
  3756. },
  3757. "funding": [
  3758. {
  3759. "url": "https://symfony.com/sponsor",
  3760. "type": "custom"
  3761. },
  3762. {
  3763. "url": "https://github.com/fabpot",
  3764. "type": "github"
  3765. },
  3766. {
  3767. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3768. "type": "tidelift"
  3769. }
  3770. ],
  3771. "time": "2023-04-21T14:41:17+00:00"
  3772. },
  3773. {
  3774. "name": "symfony/event-dispatcher-contracts",
  3775. "version": "v3.3.0",
  3776. "source": {
  3777. "type": "git",
  3778. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3779. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  3780. },
  3781. "dist": {
  3782. "type": "zip",
  3783. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  3784. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  3785. "shasum": ""
  3786. },
  3787. "require": {
  3788. "php": ">=8.1",
  3789. "psr/event-dispatcher": "^1"
  3790. },
  3791. "type": "library",
  3792. "extra": {
  3793. "branch-alias": {
  3794. "dev-main": "3.4-dev"
  3795. },
  3796. "thanks": {
  3797. "name": "symfony/contracts",
  3798. "url": "https://github.com/symfony/contracts"
  3799. }
  3800. },
  3801. "autoload": {
  3802. "psr-4": {
  3803. "Symfony\\Contracts\\EventDispatcher\\": ""
  3804. }
  3805. },
  3806. "notification-url": "https://packagist.org/downloads/",
  3807. "license": [
  3808. "MIT"
  3809. ],
  3810. "authors": [
  3811. {
  3812. "name": "Nicolas Grekas",
  3813. "email": "p@tchwork.com"
  3814. },
  3815. {
  3816. "name": "Symfony Community",
  3817. "homepage": "https://symfony.com/contributors"
  3818. }
  3819. ],
  3820. "description": "Generic abstractions related to dispatching event",
  3821. "homepage": "https://symfony.com",
  3822. "keywords": [
  3823. "abstractions",
  3824. "contracts",
  3825. "decoupling",
  3826. "interfaces",
  3827. "interoperability",
  3828. "standards"
  3829. ],
  3830. "support": {
  3831. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  3832. },
  3833. "funding": [
  3834. {
  3835. "url": "https://symfony.com/sponsor",
  3836. "type": "custom"
  3837. },
  3838. {
  3839. "url": "https://github.com/fabpot",
  3840. "type": "github"
  3841. },
  3842. {
  3843. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3844. "type": "tidelift"
  3845. }
  3846. ],
  3847. "time": "2023-05-23T14:45:45+00:00"
  3848. },
  3849. {
  3850. "name": "symfony/finder",
  3851. "version": "v6.3.0",
  3852. "source": {
  3853. "type": "git",
  3854. "url": "https://github.com/symfony/finder.git",
  3855. "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2"
  3856. },
  3857. "dist": {
  3858. "type": "zip",
  3859. "url": "https://api.github.com/repos/symfony/finder/zipball/d9b01ba073c44cef617c7907ce2419f8d00d75e2",
  3860. "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2",
  3861. "shasum": ""
  3862. },
  3863. "require": {
  3864. "php": ">=8.1"
  3865. },
  3866. "require-dev": {
  3867. "symfony/filesystem": "^6.0"
  3868. },
  3869. "type": "library",
  3870. "autoload": {
  3871. "psr-4": {
  3872. "Symfony\\Component\\Finder\\": ""
  3873. },
  3874. "exclude-from-classmap": [
  3875. "/Tests/"
  3876. ]
  3877. },
  3878. "notification-url": "https://packagist.org/downloads/",
  3879. "license": [
  3880. "MIT"
  3881. ],
  3882. "authors": [
  3883. {
  3884. "name": "Fabien Potencier",
  3885. "email": "fabien@symfony.com"
  3886. },
  3887. {
  3888. "name": "Symfony Community",
  3889. "homepage": "https://symfony.com/contributors"
  3890. }
  3891. ],
  3892. "description": "Finds files and directories via an intuitive fluent interface",
  3893. "homepage": "https://symfony.com",
  3894. "support": {
  3895. "source": "https://github.com/symfony/finder/tree/v6.3.0"
  3896. },
  3897. "funding": [
  3898. {
  3899. "url": "https://symfony.com/sponsor",
  3900. "type": "custom"
  3901. },
  3902. {
  3903. "url": "https://github.com/fabpot",
  3904. "type": "github"
  3905. },
  3906. {
  3907. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3908. "type": "tidelift"
  3909. }
  3910. ],
  3911. "time": "2023-04-02T01:25:41+00:00"
  3912. },
  3913. {
  3914. "name": "symfony/http-foundation",
  3915. "version": "v6.3.1",
  3916. "source": {
  3917. "type": "git",
  3918. "url": "https://github.com/symfony/http-foundation.git",
  3919. "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66"
  3920. },
  3921. "dist": {
  3922. "type": "zip",
  3923. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e0ad0d153e1c20069250986cd9e9dd1ccebb0d66",
  3924. "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66",
  3925. "shasum": ""
  3926. },
  3927. "require": {
  3928. "php": ">=8.1",
  3929. "symfony/deprecation-contracts": "^2.5|^3",
  3930. "symfony/polyfill-mbstring": "~1.1",
  3931. "symfony/polyfill-php83": "^1.27"
  3932. },
  3933. "conflict": {
  3934. "symfony/cache": "<6.2"
  3935. },
  3936. "require-dev": {
  3937. "doctrine/dbal": "^2.13.1|^3.0",
  3938. "predis/predis": "^1.1|^2.0",
  3939. "symfony/cache": "^5.4|^6.0",
  3940. "symfony/dependency-injection": "^5.4|^6.0",
  3941. "symfony/expression-language": "^5.4|^6.0",
  3942. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  3943. "symfony/mime": "^5.4|^6.0",
  3944. "symfony/rate-limiter": "^5.2|^6.0"
  3945. },
  3946. "type": "library",
  3947. "autoload": {
  3948. "psr-4": {
  3949. "Symfony\\Component\\HttpFoundation\\": ""
  3950. },
  3951. "exclude-from-classmap": [
  3952. "/Tests/"
  3953. ]
  3954. },
  3955. "notification-url": "https://packagist.org/downloads/",
  3956. "license": [
  3957. "MIT"
  3958. ],
  3959. "authors": [
  3960. {
  3961. "name": "Fabien Potencier",
  3962. "email": "fabien@symfony.com"
  3963. },
  3964. {
  3965. "name": "Symfony Community",
  3966. "homepage": "https://symfony.com/contributors"
  3967. }
  3968. ],
  3969. "description": "Defines an object-oriented layer for the HTTP specification",
  3970. "homepage": "https://symfony.com",
  3971. "support": {
  3972. "source": "https://github.com/symfony/http-foundation/tree/v6.3.1"
  3973. },
  3974. "funding": [
  3975. {
  3976. "url": "https://symfony.com/sponsor",
  3977. "type": "custom"
  3978. },
  3979. {
  3980. "url": "https://github.com/fabpot",
  3981. "type": "github"
  3982. },
  3983. {
  3984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3985. "type": "tidelift"
  3986. }
  3987. ],
  3988. "time": "2023-06-24T11:51:27+00:00"
  3989. },
  3990. {
  3991. "name": "symfony/http-kernel",
  3992. "version": "v6.3.1",
  3993. "source": {
  3994. "type": "git",
  3995. "url": "https://github.com/symfony/http-kernel.git",
  3996. "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374"
  3997. },
  3998. "dist": {
  3999. "type": "zip",
  4000. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/161e16fd2e35fb4881a43bc8b383dfd5be4ac374",
  4001. "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374",
  4002. "shasum": ""
  4003. },
  4004. "require": {
  4005. "php": ">=8.1",
  4006. "psr/log": "^1|^2|^3",
  4007. "symfony/deprecation-contracts": "^2.5|^3",
  4008. "symfony/error-handler": "^6.3",
  4009. "symfony/event-dispatcher": "^5.4|^6.0",
  4010. "symfony/http-foundation": "^6.2.7",
  4011. "symfony/polyfill-ctype": "^1.8"
  4012. },
  4013. "conflict": {
  4014. "symfony/browser-kit": "<5.4",
  4015. "symfony/cache": "<5.4",
  4016. "symfony/config": "<6.1",
  4017. "symfony/console": "<5.4",
  4018. "symfony/dependency-injection": "<6.3",
  4019. "symfony/doctrine-bridge": "<5.4",
  4020. "symfony/form": "<5.4",
  4021. "symfony/http-client": "<5.4",
  4022. "symfony/http-client-contracts": "<2.5",
  4023. "symfony/mailer": "<5.4",
  4024. "symfony/messenger": "<5.4",
  4025. "symfony/translation": "<5.4",
  4026. "symfony/translation-contracts": "<2.5",
  4027. "symfony/twig-bridge": "<5.4",
  4028. "symfony/validator": "<5.4",
  4029. "symfony/var-dumper": "<6.3",
  4030. "twig/twig": "<2.13"
  4031. },
  4032. "provide": {
  4033. "psr/log-implementation": "1.0|2.0|3.0"
  4034. },
  4035. "require-dev": {
  4036. "psr/cache": "^1.0|^2.0|^3.0",
  4037. "symfony/browser-kit": "^5.4|^6.0",
  4038. "symfony/clock": "^6.2",
  4039. "symfony/config": "^6.1",
  4040. "symfony/console": "^5.4|^6.0",
  4041. "symfony/css-selector": "^5.4|^6.0",
  4042. "symfony/dependency-injection": "^6.3",
  4043. "symfony/dom-crawler": "^5.4|^6.0",
  4044. "symfony/expression-language": "^5.4|^6.0",
  4045. "symfony/finder": "^5.4|^6.0",
  4046. "symfony/http-client-contracts": "^2.5|^3",
  4047. "symfony/process": "^5.4|^6.0",
  4048. "symfony/property-access": "^5.4.5|^6.0.5",
  4049. "symfony/routing": "^5.4|^6.0",
  4050. "symfony/serializer": "^6.3",
  4051. "symfony/stopwatch": "^5.4|^6.0",
  4052. "symfony/translation": "^5.4|^6.0",
  4053. "symfony/translation-contracts": "^2.5|^3",
  4054. "symfony/uid": "^5.4|^6.0",
  4055. "symfony/validator": "^6.3",
  4056. "symfony/var-exporter": "^6.2",
  4057. "twig/twig": "^2.13|^3.0.4"
  4058. },
  4059. "type": "library",
  4060. "autoload": {
  4061. "psr-4": {
  4062. "Symfony\\Component\\HttpKernel\\": ""
  4063. },
  4064. "exclude-from-classmap": [
  4065. "/Tests/"
  4066. ]
  4067. },
  4068. "notification-url": "https://packagist.org/downloads/",
  4069. "license": [
  4070. "MIT"
  4071. ],
  4072. "authors": [
  4073. {
  4074. "name": "Fabien Potencier",
  4075. "email": "fabien@symfony.com"
  4076. },
  4077. {
  4078. "name": "Symfony Community",
  4079. "homepage": "https://symfony.com/contributors"
  4080. }
  4081. ],
  4082. "description": "Provides a structured process for converting a Request into a Response",
  4083. "homepage": "https://symfony.com",
  4084. "support": {
  4085. "source": "https://github.com/symfony/http-kernel/tree/v6.3.1"
  4086. },
  4087. "funding": [
  4088. {
  4089. "url": "https://symfony.com/sponsor",
  4090. "type": "custom"
  4091. },
  4092. {
  4093. "url": "https://github.com/fabpot",
  4094. "type": "github"
  4095. },
  4096. {
  4097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4098. "type": "tidelift"
  4099. }
  4100. ],
  4101. "time": "2023-06-26T06:07:32+00:00"
  4102. },
  4103. {
  4104. "name": "symfony/mailer",
  4105. "version": "v6.3.0",
  4106. "source": {
  4107. "type": "git",
  4108. "url": "https://github.com/symfony/mailer.git",
  4109. "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435"
  4110. },
  4111. "dist": {
  4112. "type": "zip",
  4113. "url": "https://api.github.com/repos/symfony/mailer/zipball/7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
  4114. "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
  4115. "shasum": ""
  4116. },
  4117. "require": {
  4118. "egulias/email-validator": "^2.1.10|^3|^4",
  4119. "php": ">=8.1",
  4120. "psr/event-dispatcher": "^1",
  4121. "psr/log": "^1|^2|^3",
  4122. "symfony/event-dispatcher": "^5.4|^6.0",
  4123. "symfony/mime": "^6.2",
  4124. "symfony/service-contracts": "^2.5|^3"
  4125. },
  4126. "conflict": {
  4127. "symfony/http-client-contracts": "<2.5",
  4128. "symfony/http-kernel": "<5.4",
  4129. "symfony/messenger": "<6.2",
  4130. "symfony/mime": "<6.2",
  4131. "symfony/twig-bridge": "<6.2.1"
  4132. },
  4133. "require-dev": {
  4134. "symfony/console": "^5.4|^6.0",
  4135. "symfony/http-client": "^5.4|^6.0",
  4136. "symfony/messenger": "^6.2",
  4137. "symfony/twig-bridge": "^6.2"
  4138. },
  4139. "type": "library",
  4140. "autoload": {
  4141. "psr-4": {
  4142. "Symfony\\Component\\Mailer\\": ""
  4143. },
  4144. "exclude-from-classmap": [
  4145. "/Tests/"
  4146. ]
  4147. },
  4148. "notification-url": "https://packagist.org/downloads/",
  4149. "license": [
  4150. "MIT"
  4151. ],
  4152. "authors": [
  4153. {
  4154. "name": "Fabien Potencier",
  4155. "email": "fabien@symfony.com"
  4156. },
  4157. {
  4158. "name": "Symfony Community",
  4159. "homepage": "https://symfony.com/contributors"
  4160. }
  4161. ],
  4162. "description": "Helps sending emails",
  4163. "homepage": "https://symfony.com",
  4164. "support": {
  4165. "source": "https://github.com/symfony/mailer/tree/v6.3.0"
  4166. },
  4167. "funding": [
  4168. {
  4169. "url": "https://symfony.com/sponsor",
  4170. "type": "custom"
  4171. },
  4172. {
  4173. "url": "https://github.com/fabpot",
  4174. "type": "github"
  4175. },
  4176. {
  4177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4178. "type": "tidelift"
  4179. }
  4180. ],
  4181. "time": "2023-05-29T12:49:39+00:00"
  4182. },
  4183. {
  4184. "name": "symfony/mime",
  4185. "version": "v6.3.0",
  4186. "source": {
  4187. "type": "git",
  4188. "url": "https://github.com/symfony/mime.git",
  4189. "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad"
  4190. },
  4191. "dist": {
  4192. "type": "zip",
  4193. "url": "https://api.github.com/repos/symfony/mime/zipball/7b5d2121858cd6efbed778abce9cfdd7ab1f62ad",
  4194. "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad",
  4195. "shasum": ""
  4196. },
  4197. "require": {
  4198. "php": ">=8.1",
  4199. "symfony/polyfill-intl-idn": "^1.10",
  4200. "symfony/polyfill-mbstring": "^1.0"
  4201. },
  4202. "conflict": {
  4203. "egulias/email-validator": "~3.0.0",
  4204. "phpdocumentor/reflection-docblock": "<3.2.2",
  4205. "phpdocumentor/type-resolver": "<1.4.0",
  4206. "symfony/mailer": "<5.4",
  4207. "symfony/serializer": "<6.2"
  4208. },
  4209. "require-dev": {
  4210. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4211. "league/html-to-markdown": "^5.0",
  4212. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4213. "symfony/dependency-injection": "^5.4|^6.0",
  4214. "symfony/property-access": "^5.4|^6.0",
  4215. "symfony/property-info": "^5.4|^6.0",
  4216. "symfony/serializer": "^6.2"
  4217. },
  4218. "type": "library",
  4219. "autoload": {
  4220. "psr-4": {
  4221. "Symfony\\Component\\Mime\\": ""
  4222. },
  4223. "exclude-from-classmap": [
  4224. "/Tests/"
  4225. ]
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "authors": [
  4232. {
  4233. "name": "Fabien Potencier",
  4234. "email": "fabien@symfony.com"
  4235. },
  4236. {
  4237. "name": "Symfony Community",
  4238. "homepage": "https://symfony.com/contributors"
  4239. }
  4240. ],
  4241. "description": "Allows manipulating MIME messages",
  4242. "homepage": "https://symfony.com",
  4243. "keywords": [
  4244. "mime",
  4245. "mime-type"
  4246. ],
  4247. "support": {
  4248. "source": "https://github.com/symfony/mime/tree/v6.3.0"
  4249. },
  4250. "funding": [
  4251. {
  4252. "url": "https://symfony.com/sponsor",
  4253. "type": "custom"
  4254. },
  4255. {
  4256. "url": "https://github.com/fabpot",
  4257. "type": "github"
  4258. },
  4259. {
  4260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4261. "type": "tidelift"
  4262. }
  4263. ],
  4264. "time": "2023-04-28T15:57:00+00:00"
  4265. },
  4266. {
  4267. "name": "symfony/polyfill-ctype",
  4268. "version": "v1.27.0",
  4269. "source": {
  4270. "type": "git",
  4271. "url": "https://github.com/symfony/polyfill-ctype.git",
  4272. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  4273. },
  4274. "dist": {
  4275. "type": "zip",
  4276. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  4277. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  4278. "shasum": ""
  4279. },
  4280. "require": {
  4281. "php": ">=7.1"
  4282. },
  4283. "provide": {
  4284. "ext-ctype": "*"
  4285. },
  4286. "suggest": {
  4287. "ext-ctype": "For best performance"
  4288. },
  4289. "type": "library",
  4290. "extra": {
  4291. "branch-alias": {
  4292. "dev-main": "1.27-dev"
  4293. },
  4294. "thanks": {
  4295. "name": "symfony/polyfill",
  4296. "url": "https://github.com/symfony/polyfill"
  4297. }
  4298. },
  4299. "autoload": {
  4300. "files": [
  4301. "bootstrap.php"
  4302. ],
  4303. "psr-4": {
  4304. "Symfony\\Polyfill\\Ctype\\": ""
  4305. }
  4306. },
  4307. "notification-url": "https://packagist.org/downloads/",
  4308. "license": [
  4309. "MIT"
  4310. ],
  4311. "authors": [
  4312. {
  4313. "name": "Gert de Pagter",
  4314. "email": "BackEndTea@gmail.com"
  4315. },
  4316. {
  4317. "name": "Symfony Community",
  4318. "homepage": "https://symfony.com/contributors"
  4319. }
  4320. ],
  4321. "description": "Symfony polyfill for ctype functions",
  4322. "homepage": "https://symfony.com",
  4323. "keywords": [
  4324. "compatibility",
  4325. "ctype",
  4326. "polyfill",
  4327. "portable"
  4328. ],
  4329. "support": {
  4330. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  4331. },
  4332. "funding": [
  4333. {
  4334. "url": "https://symfony.com/sponsor",
  4335. "type": "custom"
  4336. },
  4337. {
  4338. "url": "https://github.com/fabpot",
  4339. "type": "github"
  4340. },
  4341. {
  4342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4343. "type": "tidelift"
  4344. }
  4345. ],
  4346. "time": "2022-11-03T14:55:06+00:00"
  4347. },
  4348. {
  4349. "name": "symfony/polyfill-intl-grapheme",
  4350. "version": "v1.27.0",
  4351. "source": {
  4352. "type": "git",
  4353. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4354. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  4355. },
  4356. "dist": {
  4357. "type": "zip",
  4358. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  4359. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  4360. "shasum": ""
  4361. },
  4362. "require": {
  4363. "php": ">=7.1"
  4364. },
  4365. "suggest": {
  4366. "ext-intl": "For best performance"
  4367. },
  4368. "type": "library",
  4369. "extra": {
  4370. "branch-alias": {
  4371. "dev-main": "1.27-dev"
  4372. },
  4373. "thanks": {
  4374. "name": "symfony/polyfill",
  4375. "url": "https://github.com/symfony/polyfill"
  4376. }
  4377. },
  4378. "autoload": {
  4379. "files": [
  4380. "bootstrap.php"
  4381. ],
  4382. "psr-4": {
  4383. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4384. }
  4385. },
  4386. "notification-url": "https://packagist.org/downloads/",
  4387. "license": [
  4388. "MIT"
  4389. ],
  4390. "authors": [
  4391. {
  4392. "name": "Nicolas Grekas",
  4393. "email": "p@tchwork.com"
  4394. },
  4395. {
  4396. "name": "Symfony Community",
  4397. "homepage": "https://symfony.com/contributors"
  4398. }
  4399. ],
  4400. "description": "Symfony polyfill for intl's grapheme_* functions",
  4401. "homepage": "https://symfony.com",
  4402. "keywords": [
  4403. "compatibility",
  4404. "grapheme",
  4405. "intl",
  4406. "polyfill",
  4407. "portable",
  4408. "shim"
  4409. ],
  4410. "support": {
  4411. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  4412. },
  4413. "funding": [
  4414. {
  4415. "url": "https://symfony.com/sponsor",
  4416. "type": "custom"
  4417. },
  4418. {
  4419. "url": "https://github.com/fabpot",
  4420. "type": "github"
  4421. },
  4422. {
  4423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4424. "type": "tidelift"
  4425. }
  4426. ],
  4427. "time": "2022-11-03T14:55:06+00:00"
  4428. },
  4429. {
  4430. "name": "symfony/polyfill-intl-idn",
  4431. "version": "v1.27.0",
  4432. "source": {
  4433. "type": "git",
  4434. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4435. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  4436. },
  4437. "dist": {
  4438. "type": "zip",
  4439. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  4440. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  4441. "shasum": ""
  4442. },
  4443. "require": {
  4444. "php": ">=7.1",
  4445. "symfony/polyfill-intl-normalizer": "^1.10",
  4446. "symfony/polyfill-php72": "^1.10"
  4447. },
  4448. "suggest": {
  4449. "ext-intl": "For best performance"
  4450. },
  4451. "type": "library",
  4452. "extra": {
  4453. "branch-alias": {
  4454. "dev-main": "1.27-dev"
  4455. },
  4456. "thanks": {
  4457. "name": "symfony/polyfill",
  4458. "url": "https://github.com/symfony/polyfill"
  4459. }
  4460. },
  4461. "autoload": {
  4462. "files": [
  4463. "bootstrap.php"
  4464. ],
  4465. "psr-4": {
  4466. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4467. }
  4468. },
  4469. "notification-url": "https://packagist.org/downloads/",
  4470. "license": [
  4471. "MIT"
  4472. ],
  4473. "authors": [
  4474. {
  4475. "name": "Laurent Bassin",
  4476. "email": "laurent@bassin.info"
  4477. },
  4478. {
  4479. "name": "Trevor Rowbotham",
  4480. "email": "trevor.rowbotham@pm.me"
  4481. },
  4482. {
  4483. "name": "Symfony Community",
  4484. "homepage": "https://symfony.com/contributors"
  4485. }
  4486. ],
  4487. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4488. "homepage": "https://symfony.com",
  4489. "keywords": [
  4490. "compatibility",
  4491. "idn",
  4492. "intl",
  4493. "polyfill",
  4494. "portable",
  4495. "shim"
  4496. ],
  4497. "support": {
  4498. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  4499. },
  4500. "funding": [
  4501. {
  4502. "url": "https://symfony.com/sponsor",
  4503. "type": "custom"
  4504. },
  4505. {
  4506. "url": "https://github.com/fabpot",
  4507. "type": "github"
  4508. },
  4509. {
  4510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4511. "type": "tidelift"
  4512. }
  4513. ],
  4514. "time": "2022-11-03T14:55:06+00:00"
  4515. },
  4516. {
  4517. "name": "symfony/polyfill-intl-normalizer",
  4518. "version": "v1.27.0",
  4519. "source": {
  4520. "type": "git",
  4521. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4522. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  4523. },
  4524. "dist": {
  4525. "type": "zip",
  4526. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  4527. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  4528. "shasum": ""
  4529. },
  4530. "require": {
  4531. "php": ">=7.1"
  4532. },
  4533. "suggest": {
  4534. "ext-intl": "For best performance"
  4535. },
  4536. "type": "library",
  4537. "extra": {
  4538. "branch-alias": {
  4539. "dev-main": "1.27-dev"
  4540. },
  4541. "thanks": {
  4542. "name": "symfony/polyfill",
  4543. "url": "https://github.com/symfony/polyfill"
  4544. }
  4545. },
  4546. "autoload": {
  4547. "files": [
  4548. "bootstrap.php"
  4549. ],
  4550. "psr-4": {
  4551. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4552. },
  4553. "classmap": [
  4554. "Resources/stubs"
  4555. ]
  4556. },
  4557. "notification-url": "https://packagist.org/downloads/",
  4558. "license": [
  4559. "MIT"
  4560. ],
  4561. "authors": [
  4562. {
  4563. "name": "Nicolas Grekas",
  4564. "email": "p@tchwork.com"
  4565. },
  4566. {
  4567. "name": "Symfony Community",
  4568. "homepage": "https://symfony.com/contributors"
  4569. }
  4570. ],
  4571. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4572. "homepage": "https://symfony.com",
  4573. "keywords": [
  4574. "compatibility",
  4575. "intl",
  4576. "normalizer",
  4577. "polyfill",
  4578. "portable",
  4579. "shim"
  4580. ],
  4581. "support": {
  4582. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  4583. },
  4584. "funding": [
  4585. {
  4586. "url": "https://symfony.com/sponsor",
  4587. "type": "custom"
  4588. },
  4589. {
  4590. "url": "https://github.com/fabpot",
  4591. "type": "github"
  4592. },
  4593. {
  4594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4595. "type": "tidelift"
  4596. }
  4597. ],
  4598. "time": "2022-11-03T14:55:06+00:00"
  4599. },
  4600. {
  4601. "name": "symfony/polyfill-mbstring",
  4602. "version": "v1.27.0",
  4603. "source": {
  4604. "type": "git",
  4605. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4606. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  4607. },
  4608. "dist": {
  4609. "type": "zip",
  4610. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  4611. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  4612. "shasum": ""
  4613. },
  4614. "require": {
  4615. "php": ">=7.1"
  4616. },
  4617. "provide": {
  4618. "ext-mbstring": "*"
  4619. },
  4620. "suggest": {
  4621. "ext-mbstring": "For best performance"
  4622. },
  4623. "type": "library",
  4624. "extra": {
  4625. "branch-alias": {
  4626. "dev-main": "1.27-dev"
  4627. },
  4628. "thanks": {
  4629. "name": "symfony/polyfill",
  4630. "url": "https://github.com/symfony/polyfill"
  4631. }
  4632. },
  4633. "autoload": {
  4634. "files": [
  4635. "bootstrap.php"
  4636. ],
  4637. "psr-4": {
  4638. "Symfony\\Polyfill\\Mbstring\\": ""
  4639. }
  4640. },
  4641. "notification-url": "https://packagist.org/downloads/",
  4642. "license": [
  4643. "MIT"
  4644. ],
  4645. "authors": [
  4646. {
  4647. "name": "Nicolas Grekas",
  4648. "email": "p@tchwork.com"
  4649. },
  4650. {
  4651. "name": "Symfony Community",
  4652. "homepage": "https://symfony.com/contributors"
  4653. }
  4654. ],
  4655. "description": "Symfony polyfill for the Mbstring extension",
  4656. "homepage": "https://symfony.com",
  4657. "keywords": [
  4658. "compatibility",
  4659. "mbstring",
  4660. "polyfill",
  4661. "portable",
  4662. "shim"
  4663. ],
  4664. "support": {
  4665. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  4666. },
  4667. "funding": [
  4668. {
  4669. "url": "https://symfony.com/sponsor",
  4670. "type": "custom"
  4671. },
  4672. {
  4673. "url": "https://github.com/fabpot",
  4674. "type": "github"
  4675. },
  4676. {
  4677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4678. "type": "tidelift"
  4679. }
  4680. ],
  4681. "time": "2022-11-03T14:55:06+00:00"
  4682. },
  4683. {
  4684. "name": "symfony/polyfill-php72",
  4685. "version": "v1.27.0",
  4686. "source": {
  4687. "type": "git",
  4688. "url": "https://github.com/symfony/polyfill-php72.git",
  4689. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  4690. },
  4691. "dist": {
  4692. "type": "zip",
  4693. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  4694. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  4695. "shasum": ""
  4696. },
  4697. "require": {
  4698. "php": ">=7.1"
  4699. },
  4700. "type": "library",
  4701. "extra": {
  4702. "branch-alias": {
  4703. "dev-main": "1.27-dev"
  4704. },
  4705. "thanks": {
  4706. "name": "symfony/polyfill",
  4707. "url": "https://github.com/symfony/polyfill"
  4708. }
  4709. },
  4710. "autoload": {
  4711. "files": [
  4712. "bootstrap.php"
  4713. ],
  4714. "psr-4": {
  4715. "Symfony\\Polyfill\\Php72\\": ""
  4716. }
  4717. },
  4718. "notification-url": "https://packagist.org/downloads/",
  4719. "license": [
  4720. "MIT"
  4721. ],
  4722. "authors": [
  4723. {
  4724. "name": "Nicolas Grekas",
  4725. "email": "p@tchwork.com"
  4726. },
  4727. {
  4728. "name": "Symfony Community",
  4729. "homepage": "https://symfony.com/contributors"
  4730. }
  4731. ],
  4732. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4733. "homepage": "https://symfony.com",
  4734. "keywords": [
  4735. "compatibility",
  4736. "polyfill",
  4737. "portable",
  4738. "shim"
  4739. ],
  4740. "support": {
  4741. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  4742. },
  4743. "funding": [
  4744. {
  4745. "url": "https://symfony.com/sponsor",
  4746. "type": "custom"
  4747. },
  4748. {
  4749. "url": "https://github.com/fabpot",
  4750. "type": "github"
  4751. },
  4752. {
  4753. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4754. "type": "tidelift"
  4755. }
  4756. ],
  4757. "time": "2022-11-03T14:55:06+00:00"
  4758. },
  4759. {
  4760. "name": "symfony/polyfill-php80",
  4761. "version": "v1.27.0",
  4762. "source": {
  4763. "type": "git",
  4764. "url": "https://github.com/symfony/polyfill-php80.git",
  4765. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  4766. },
  4767. "dist": {
  4768. "type": "zip",
  4769. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4770. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4771. "shasum": ""
  4772. },
  4773. "require": {
  4774. "php": ">=7.1"
  4775. },
  4776. "type": "library",
  4777. "extra": {
  4778. "branch-alias": {
  4779. "dev-main": "1.27-dev"
  4780. },
  4781. "thanks": {
  4782. "name": "symfony/polyfill",
  4783. "url": "https://github.com/symfony/polyfill"
  4784. }
  4785. },
  4786. "autoload": {
  4787. "files": [
  4788. "bootstrap.php"
  4789. ],
  4790. "psr-4": {
  4791. "Symfony\\Polyfill\\Php80\\": ""
  4792. },
  4793. "classmap": [
  4794. "Resources/stubs"
  4795. ]
  4796. },
  4797. "notification-url": "https://packagist.org/downloads/",
  4798. "license": [
  4799. "MIT"
  4800. ],
  4801. "authors": [
  4802. {
  4803. "name": "Ion Bazan",
  4804. "email": "ion.bazan@gmail.com"
  4805. },
  4806. {
  4807. "name": "Nicolas Grekas",
  4808. "email": "p@tchwork.com"
  4809. },
  4810. {
  4811. "name": "Symfony Community",
  4812. "homepage": "https://symfony.com/contributors"
  4813. }
  4814. ],
  4815. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4816. "homepage": "https://symfony.com",
  4817. "keywords": [
  4818. "compatibility",
  4819. "polyfill",
  4820. "portable",
  4821. "shim"
  4822. ],
  4823. "support": {
  4824. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  4825. },
  4826. "funding": [
  4827. {
  4828. "url": "https://symfony.com/sponsor",
  4829. "type": "custom"
  4830. },
  4831. {
  4832. "url": "https://github.com/fabpot",
  4833. "type": "github"
  4834. },
  4835. {
  4836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4837. "type": "tidelift"
  4838. }
  4839. ],
  4840. "time": "2022-11-03T14:55:06+00:00"
  4841. },
  4842. {
  4843. "name": "symfony/polyfill-php83",
  4844. "version": "v1.27.0",
  4845. "source": {
  4846. "type": "git",
  4847. "url": "https://github.com/symfony/polyfill-php83.git",
  4848. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  4849. },
  4850. "dist": {
  4851. "type": "zip",
  4852. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  4853. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  4854. "shasum": ""
  4855. },
  4856. "require": {
  4857. "php": ">=7.1",
  4858. "symfony/polyfill-php80": "^1.14"
  4859. },
  4860. "type": "library",
  4861. "extra": {
  4862. "branch-alias": {
  4863. "dev-main": "1.27-dev"
  4864. },
  4865. "thanks": {
  4866. "name": "symfony/polyfill",
  4867. "url": "https://github.com/symfony/polyfill"
  4868. }
  4869. },
  4870. "autoload": {
  4871. "files": [
  4872. "bootstrap.php"
  4873. ],
  4874. "psr-4": {
  4875. "Symfony\\Polyfill\\Php83\\": ""
  4876. }
  4877. },
  4878. "notification-url": "https://packagist.org/downloads/",
  4879. "license": [
  4880. "MIT"
  4881. ],
  4882. "authors": [
  4883. {
  4884. "name": "Nicolas Grekas",
  4885. "email": "p@tchwork.com"
  4886. },
  4887. {
  4888. "name": "Symfony Community",
  4889. "homepage": "https://symfony.com/contributors"
  4890. }
  4891. ],
  4892. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  4893. "homepage": "https://symfony.com",
  4894. "keywords": [
  4895. "compatibility",
  4896. "polyfill",
  4897. "portable",
  4898. "shim"
  4899. ],
  4900. "support": {
  4901. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  4902. },
  4903. "funding": [
  4904. {
  4905. "url": "https://symfony.com/sponsor",
  4906. "type": "custom"
  4907. },
  4908. {
  4909. "url": "https://github.com/fabpot",
  4910. "type": "github"
  4911. },
  4912. {
  4913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4914. "type": "tidelift"
  4915. }
  4916. ],
  4917. "time": "2022-11-03T14:55:06+00:00"
  4918. },
  4919. {
  4920. "name": "symfony/polyfill-uuid",
  4921. "version": "v1.27.0",
  4922. "source": {
  4923. "type": "git",
  4924. "url": "https://github.com/symfony/polyfill-uuid.git",
  4925. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  4926. },
  4927. "dist": {
  4928. "type": "zip",
  4929. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  4930. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  4931. "shasum": ""
  4932. },
  4933. "require": {
  4934. "php": ">=7.1"
  4935. },
  4936. "provide": {
  4937. "ext-uuid": "*"
  4938. },
  4939. "suggest": {
  4940. "ext-uuid": "For best performance"
  4941. },
  4942. "type": "library",
  4943. "extra": {
  4944. "branch-alias": {
  4945. "dev-main": "1.27-dev"
  4946. },
  4947. "thanks": {
  4948. "name": "symfony/polyfill",
  4949. "url": "https://github.com/symfony/polyfill"
  4950. }
  4951. },
  4952. "autoload": {
  4953. "files": [
  4954. "bootstrap.php"
  4955. ],
  4956. "psr-4": {
  4957. "Symfony\\Polyfill\\Uuid\\": ""
  4958. }
  4959. },
  4960. "notification-url": "https://packagist.org/downloads/",
  4961. "license": [
  4962. "MIT"
  4963. ],
  4964. "authors": [
  4965. {
  4966. "name": "Grégoire Pineau",
  4967. "email": "lyrixx@lyrixx.info"
  4968. },
  4969. {
  4970. "name": "Symfony Community",
  4971. "homepage": "https://symfony.com/contributors"
  4972. }
  4973. ],
  4974. "description": "Symfony polyfill for uuid functions",
  4975. "homepage": "https://symfony.com",
  4976. "keywords": [
  4977. "compatibility",
  4978. "polyfill",
  4979. "portable",
  4980. "uuid"
  4981. ],
  4982. "support": {
  4983. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  4984. },
  4985. "funding": [
  4986. {
  4987. "url": "https://symfony.com/sponsor",
  4988. "type": "custom"
  4989. },
  4990. {
  4991. "url": "https://github.com/fabpot",
  4992. "type": "github"
  4993. },
  4994. {
  4995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4996. "type": "tidelift"
  4997. }
  4998. ],
  4999. "time": "2022-11-03T14:55:06+00:00"
  5000. },
  5001. {
  5002. "name": "symfony/process",
  5003. "version": "v6.3.0",
  5004. "source": {
  5005. "type": "git",
  5006. "url": "https://github.com/symfony/process.git",
  5007. "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628"
  5008. },
  5009. "dist": {
  5010. "type": "zip",
  5011. "url": "https://api.github.com/repos/symfony/process/zipball/8741e3ed7fe2e91ec099e02446fb86667a0f1628",
  5012. "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628",
  5013. "shasum": ""
  5014. },
  5015. "require": {
  5016. "php": ">=8.1"
  5017. },
  5018. "type": "library",
  5019. "autoload": {
  5020. "psr-4": {
  5021. "Symfony\\Component\\Process\\": ""
  5022. },
  5023. "exclude-from-classmap": [
  5024. "/Tests/"
  5025. ]
  5026. },
  5027. "notification-url": "https://packagist.org/downloads/",
  5028. "license": [
  5029. "MIT"
  5030. ],
  5031. "authors": [
  5032. {
  5033. "name": "Fabien Potencier",
  5034. "email": "fabien@symfony.com"
  5035. },
  5036. {
  5037. "name": "Symfony Community",
  5038. "homepage": "https://symfony.com/contributors"
  5039. }
  5040. ],
  5041. "description": "Executes commands in sub-processes",
  5042. "homepage": "https://symfony.com",
  5043. "support": {
  5044. "source": "https://github.com/symfony/process/tree/v6.3.0"
  5045. },
  5046. "funding": [
  5047. {
  5048. "url": "https://symfony.com/sponsor",
  5049. "type": "custom"
  5050. },
  5051. {
  5052. "url": "https://github.com/fabpot",
  5053. "type": "github"
  5054. },
  5055. {
  5056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5057. "type": "tidelift"
  5058. }
  5059. ],
  5060. "time": "2023-05-19T08:06:44+00:00"
  5061. },
  5062. {
  5063. "name": "symfony/routing",
  5064. "version": "v6.3.1",
  5065. "source": {
  5066. "type": "git",
  5067. "url": "https://github.com/symfony/routing.git",
  5068. "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5"
  5069. },
  5070. "dist": {
  5071. "type": "zip",
  5072. "url": "https://api.github.com/repos/symfony/routing/zipball/d37ad1779c38b8eb71996d17dc13030dcb7f9cf5",
  5073. "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5",
  5074. "shasum": ""
  5075. },
  5076. "require": {
  5077. "php": ">=8.1"
  5078. },
  5079. "conflict": {
  5080. "doctrine/annotations": "<1.12",
  5081. "symfony/config": "<6.2",
  5082. "symfony/dependency-injection": "<5.4",
  5083. "symfony/yaml": "<5.4"
  5084. },
  5085. "require-dev": {
  5086. "doctrine/annotations": "^1.12|^2",
  5087. "psr/log": "^1|^2|^3",
  5088. "symfony/config": "^6.2",
  5089. "symfony/dependency-injection": "^5.4|^6.0",
  5090. "symfony/expression-language": "^5.4|^6.0",
  5091. "symfony/http-foundation": "^5.4|^6.0",
  5092. "symfony/yaml": "^5.4|^6.0"
  5093. },
  5094. "type": "library",
  5095. "autoload": {
  5096. "psr-4": {
  5097. "Symfony\\Component\\Routing\\": ""
  5098. },
  5099. "exclude-from-classmap": [
  5100. "/Tests/"
  5101. ]
  5102. },
  5103. "notification-url": "https://packagist.org/downloads/",
  5104. "license": [
  5105. "MIT"
  5106. ],
  5107. "authors": [
  5108. {
  5109. "name": "Fabien Potencier",
  5110. "email": "fabien@symfony.com"
  5111. },
  5112. {
  5113. "name": "Symfony Community",
  5114. "homepage": "https://symfony.com/contributors"
  5115. }
  5116. ],
  5117. "description": "Maps an HTTP request to a set of configuration variables",
  5118. "homepage": "https://symfony.com",
  5119. "keywords": [
  5120. "router",
  5121. "routing",
  5122. "uri",
  5123. "url"
  5124. ],
  5125. "support": {
  5126. "source": "https://github.com/symfony/routing/tree/v6.3.1"
  5127. },
  5128. "funding": [
  5129. {
  5130. "url": "https://symfony.com/sponsor",
  5131. "type": "custom"
  5132. },
  5133. {
  5134. "url": "https://github.com/fabpot",
  5135. "type": "github"
  5136. },
  5137. {
  5138. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5139. "type": "tidelift"
  5140. }
  5141. ],
  5142. "time": "2023-06-05T15:30:22+00:00"
  5143. },
  5144. {
  5145. "name": "symfony/service-contracts",
  5146. "version": "v3.3.0",
  5147. "source": {
  5148. "type": "git",
  5149. "url": "https://github.com/symfony/service-contracts.git",
  5150. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  5151. },
  5152. "dist": {
  5153. "type": "zip",
  5154. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  5155. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  5156. "shasum": ""
  5157. },
  5158. "require": {
  5159. "php": ">=8.1",
  5160. "psr/container": "^2.0"
  5161. },
  5162. "conflict": {
  5163. "ext-psr": "<1.1|>=2"
  5164. },
  5165. "type": "library",
  5166. "extra": {
  5167. "branch-alias": {
  5168. "dev-main": "3.4-dev"
  5169. },
  5170. "thanks": {
  5171. "name": "symfony/contracts",
  5172. "url": "https://github.com/symfony/contracts"
  5173. }
  5174. },
  5175. "autoload": {
  5176. "psr-4": {
  5177. "Symfony\\Contracts\\Service\\": ""
  5178. },
  5179. "exclude-from-classmap": [
  5180. "/Test/"
  5181. ]
  5182. },
  5183. "notification-url": "https://packagist.org/downloads/",
  5184. "license": [
  5185. "MIT"
  5186. ],
  5187. "authors": [
  5188. {
  5189. "name": "Nicolas Grekas",
  5190. "email": "p@tchwork.com"
  5191. },
  5192. {
  5193. "name": "Symfony Community",
  5194. "homepage": "https://symfony.com/contributors"
  5195. }
  5196. ],
  5197. "description": "Generic abstractions related to writing services",
  5198. "homepage": "https://symfony.com",
  5199. "keywords": [
  5200. "abstractions",
  5201. "contracts",
  5202. "decoupling",
  5203. "interfaces",
  5204. "interoperability",
  5205. "standards"
  5206. ],
  5207. "support": {
  5208. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  5209. },
  5210. "funding": [
  5211. {
  5212. "url": "https://symfony.com/sponsor",
  5213. "type": "custom"
  5214. },
  5215. {
  5216. "url": "https://github.com/fabpot",
  5217. "type": "github"
  5218. },
  5219. {
  5220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5221. "type": "tidelift"
  5222. }
  5223. ],
  5224. "time": "2023-05-23T14:45:45+00:00"
  5225. },
  5226. {
  5227. "name": "symfony/string",
  5228. "version": "v6.3.0",
  5229. "source": {
  5230. "type": "git",
  5231. "url": "https://github.com/symfony/string.git",
  5232. "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f"
  5233. },
  5234. "dist": {
  5235. "type": "zip",
  5236. "url": "https://api.github.com/repos/symfony/string/zipball/f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
  5237. "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
  5238. "shasum": ""
  5239. },
  5240. "require": {
  5241. "php": ">=8.1",
  5242. "symfony/polyfill-ctype": "~1.8",
  5243. "symfony/polyfill-intl-grapheme": "~1.0",
  5244. "symfony/polyfill-intl-normalizer": "~1.0",
  5245. "symfony/polyfill-mbstring": "~1.0"
  5246. },
  5247. "conflict": {
  5248. "symfony/translation-contracts": "<2.5"
  5249. },
  5250. "require-dev": {
  5251. "symfony/error-handler": "^5.4|^6.0",
  5252. "symfony/http-client": "^5.4|^6.0",
  5253. "symfony/intl": "^6.2",
  5254. "symfony/translation-contracts": "^2.5|^3.0",
  5255. "symfony/var-exporter": "^5.4|^6.0"
  5256. },
  5257. "type": "library",
  5258. "autoload": {
  5259. "files": [
  5260. "Resources/functions.php"
  5261. ],
  5262. "psr-4": {
  5263. "Symfony\\Component\\String\\": ""
  5264. },
  5265. "exclude-from-classmap": [
  5266. "/Tests/"
  5267. ]
  5268. },
  5269. "notification-url": "https://packagist.org/downloads/",
  5270. "license": [
  5271. "MIT"
  5272. ],
  5273. "authors": [
  5274. {
  5275. "name": "Nicolas Grekas",
  5276. "email": "p@tchwork.com"
  5277. },
  5278. {
  5279. "name": "Symfony Community",
  5280. "homepage": "https://symfony.com/contributors"
  5281. }
  5282. ],
  5283. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  5284. "homepage": "https://symfony.com",
  5285. "keywords": [
  5286. "grapheme",
  5287. "i18n",
  5288. "string",
  5289. "unicode",
  5290. "utf-8",
  5291. "utf8"
  5292. ],
  5293. "support": {
  5294. "source": "https://github.com/symfony/string/tree/v6.3.0"
  5295. },
  5296. "funding": [
  5297. {
  5298. "url": "https://symfony.com/sponsor",
  5299. "type": "custom"
  5300. },
  5301. {
  5302. "url": "https://github.com/fabpot",
  5303. "type": "github"
  5304. },
  5305. {
  5306. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5307. "type": "tidelift"
  5308. }
  5309. ],
  5310. "time": "2023-03-21T21:06:29+00:00"
  5311. },
  5312. {
  5313. "name": "symfony/translation",
  5314. "version": "v6.3.0",
  5315. "source": {
  5316. "type": "git",
  5317. "url": "https://github.com/symfony/translation.git",
  5318. "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f"
  5319. },
  5320. "dist": {
  5321. "type": "zip",
  5322. "url": "https://api.github.com/repos/symfony/translation/zipball/f72b2cba8f79dd9d536f534f76874b58ad37876f",
  5323. "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f",
  5324. "shasum": ""
  5325. },
  5326. "require": {
  5327. "php": ">=8.1",
  5328. "symfony/polyfill-mbstring": "~1.0",
  5329. "symfony/translation-contracts": "^2.5|^3.0"
  5330. },
  5331. "conflict": {
  5332. "symfony/config": "<5.4",
  5333. "symfony/console": "<5.4",
  5334. "symfony/dependency-injection": "<5.4",
  5335. "symfony/http-client-contracts": "<2.5",
  5336. "symfony/http-kernel": "<5.4",
  5337. "symfony/service-contracts": "<2.5",
  5338. "symfony/twig-bundle": "<5.4",
  5339. "symfony/yaml": "<5.4"
  5340. },
  5341. "provide": {
  5342. "symfony/translation-implementation": "2.3|3.0"
  5343. },
  5344. "require-dev": {
  5345. "nikic/php-parser": "^4.13",
  5346. "psr/log": "^1|^2|^3",
  5347. "symfony/config": "^5.4|^6.0",
  5348. "symfony/console": "^5.4|^6.0",
  5349. "symfony/dependency-injection": "^5.4|^6.0",
  5350. "symfony/finder": "^5.4|^6.0",
  5351. "symfony/http-client-contracts": "^2.5|^3.0",
  5352. "symfony/http-kernel": "^5.4|^6.0",
  5353. "symfony/intl": "^5.4|^6.0",
  5354. "symfony/polyfill-intl-icu": "^1.21",
  5355. "symfony/routing": "^5.4|^6.0",
  5356. "symfony/service-contracts": "^2.5|^3",
  5357. "symfony/yaml": "^5.4|^6.0"
  5358. },
  5359. "type": "library",
  5360. "autoload": {
  5361. "files": [
  5362. "Resources/functions.php"
  5363. ],
  5364. "psr-4": {
  5365. "Symfony\\Component\\Translation\\": ""
  5366. },
  5367. "exclude-from-classmap": [
  5368. "/Tests/"
  5369. ]
  5370. },
  5371. "notification-url": "https://packagist.org/downloads/",
  5372. "license": [
  5373. "MIT"
  5374. ],
  5375. "authors": [
  5376. {
  5377. "name": "Fabien Potencier",
  5378. "email": "fabien@symfony.com"
  5379. },
  5380. {
  5381. "name": "Symfony Community",
  5382. "homepage": "https://symfony.com/contributors"
  5383. }
  5384. ],
  5385. "description": "Provides tools to internationalize your application",
  5386. "homepage": "https://symfony.com",
  5387. "support": {
  5388. "source": "https://github.com/symfony/translation/tree/v6.3.0"
  5389. },
  5390. "funding": [
  5391. {
  5392. "url": "https://symfony.com/sponsor",
  5393. "type": "custom"
  5394. },
  5395. {
  5396. "url": "https://github.com/fabpot",
  5397. "type": "github"
  5398. },
  5399. {
  5400. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5401. "type": "tidelift"
  5402. }
  5403. ],
  5404. "time": "2023-05-19T12:46:45+00:00"
  5405. },
  5406. {
  5407. "name": "symfony/translation-contracts",
  5408. "version": "v3.3.0",
  5409. "source": {
  5410. "type": "git",
  5411. "url": "https://github.com/symfony/translation-contracts.git",
  5412. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  5413. },
  5414. "dist": {
  5415. "type": "zip",
  5416. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  5417. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  5418. "shasum": ""
  5419. },
  5420. "require": {
  5421. "php": ">=8.1"
  5422. },
  5423. "type": "library",
  5424. "extra": {
  5425. "branch-alias": {
  5426. "dev-main": "3.4-dev"
  5427. },
  5428. "thanks": {
  5429. "name": "symfony/contracts",
  5430. "url": "https://github.com/symfony/contracts"
  5431. }
  5432. },
  5433. "autoload": {
  5434. "psr-4": {
  5435. "Symfony\\Contracts\\Translation\\": ""
  5436. },
  5437. "exclude-from-classmap": [
  5438. "/Test/"
  5439. ]
  5440. },
  5441. "notification-url": "https://packagist.org/downloads/",
  5442. "license": [
  5443. "MIT"
  5444. ],
  5445. "authors": [
  5446. {
  5447. "name": "Nicolas Grekas",
  5448. "email": "p@tchwork.com"
  5449. },
  5450. {
  5451. "name": "Symfony Community",
  5452. "homepage": "https://symfony.com/contributors"
  5453. }
  5454. ],
  5455. "description": "Generic abstractions related to translation",
  5456. "homepage": "https://symfony.com",
  5457. "keywords": [
  5458. "abstractions",
  5459. "contracts",
  5460. "decoupling",
  5461. "interfaces",
  5462. "interoperability",
  5463. "standards"
  5464. ],
  5465. "support": {
  5466. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  5467. },
  5468. "funding": [
  5469. {
  5470. "url": "https://symfony.com/sponsor",
  5471. "type": "custom"
  5472. },
  5473. {
  5474. "url": "https://github.com/fabpot",
  5475. "type": "github"
  5476. },
  5477. {
  5478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5479. "type": "tidelift"
  5480. }
  5481. ],
  5482. "time": "2023-05-30T17:17:10+00:00"
  5483. },
  5484. {
  5485. "name": "symfony/uid",
  5486. "version": "v6.3.0",
  5487. "source": {
  5488. "type": "git",
  5489. "url": "https://github.com/symfony/uid.git",
  5490. "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384"
  5491. },
  5492. "dist": {
  5493. "type": "zip",
  5494. "url": "https://api.github.com/repos/symfony/uid/zipball/01b0f20b1351d997711c56f1638f7a8c3061e384",
  5495. "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384",
  5496. "shasum": ""
  5497. },
  5498. "require": {
  5499. "php": ">=8.1",
  5500. "symfony/polyfill-uuid": "^1.15"
  5501. },
  5502. "require-dev": {
  5503. "symfony/console": "^5.4|^6.0"
  5504. },
  5505. "type": "library",
  5506. "autoload": {
  5507. "psr-4": {
  5508. "Symfony\\Component\\Uid\\": ""
  5509. },
  5510. "exclude-from-classmap": [
  5511. "/Tests/"
  5512. ]
  5513. },
  5514. "notification-url": "https://packagist.org/downloads/",
  5515. "license": [
  5516. "MIT"
  5517. ],
  5518. "authors": [
  5519. {
  5520. "name": "Grégoire Pineau",
  5521. "email": "lyrixx@lyrixx.info"
  5522. },
  5523. {
  5524. "name": "Nicolas Grekas",
  5525. "email": "p@tchwork.com"
  5526. },
  5527. {
  5528. "name": "Symfony Community",
  5529. "homepage": "https://symfony.com/contributors"
  5530. }
  5531. ],
  5532. "description": "Provides an object-oriented API to generate and represent UIDs",
  5533. "homepage": "https://symfony.com",
  5534. "keywords": [
  5535. "UID",
  5536. "ulid",
  5537. "uuid"
  5538. ],
  5539. "support": {
  5540. "source": "https://github.com/symfony/uid/tree/v6.3.0"
  5541. },
  5542. "funding": [
  5543. {
  5544. "url": "https://symfony.com/sponsor",
  5545. "type": "custom"
  5546. },
  5547. {
  5548. "url": "https://github.com/fabpot",
  5549. "type": "github"
  5550. },
  5551. {
  5552. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5553. "type": "tidelift"
  5554. }
  5555. ],
  5556. "time": "2023-04-08T07:25:02+00:00"
  5557. },
  5558. {
  5559. "name": "symfony/var-dumper",
  5560. "version": "v6.3.1",
  5561. "source": {
  5562. "type": "git",
  5563. "url": "https://github.com/symfony/var-dumper.git",
  5564. "reference": "c81268d6960ddb47af17391a27d222bd58cf0515"
  5565. },
  5566. "dist": {
  5567. "type": "zip",
  5568. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c81268d6960ddb47af17391a27d222bd58cf0515",
  5569. "reference": "c81268d6960ddb47af17391a27d222bd58cf0515",
  5570. "shasum": ""
  5571. },
  5572. "require": {
  5573. "php": ">=8.1",
  5574. "symfony/polyfill-mbstring": "~1.0"
  5575. },
  5576. "conflict": {
  5577. "symfony/console": "<5.4"
  5578. },
  5579. "require-dev": {
  5580. "ext-iconv": "*",
  5581. "symfony/console": "^5.4|^6.0",
  5582. "symfony/process": "^5.4|^6.0",
  5583. "symfony/uid": "^5.4|^6.0",
  5584. "twig/twig": "^2.13|^3.0.4"
  5585. },
  5586. "bin": [
  5587. "Resources/bin/var-dump-server"
  5588. ],
  5589. "type": "library",
  5590. "autoload": {
  5591. "files": [
  5592. "Resources/functions/dump.php"
  5593. ],
  5594. "psr-4": {
  5595. "Symfony\\Component\\VarDumper\\": ""
  5596. },
  5597. "exclude-from-classmap": [
  5598. "/Tests/"
  5599. ]
  5600. },
  5601. "notification-url": "https://packagist.org/downloads/",
  5602. "license": [
  5603. "MIT"
  5604. ],
  5605. "authors": [
  5606. {
  5607. "name": "Nicolas Grekas",
  5608. "email": "p@tchwork.com"
  5609. },
  5610. {
  5611. "name": "Symfony Community",
  5612. "homepage": "https://symfony.com/contributors"
  5613. }
  5614. ],
  5615. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5616. "homepage": "https://symfony.com",
  5617. "keywords": [
  5618. "debug",
  5619. "dump"
  5620. ],
  5621. "support": {
  5622. "source": "https://github.com/symfony/var-dumper/tree/v6.3.1"
  5623. },
  5624. "funding": [
  5625. {
  5626. "url": "https://symfony.com/sponsor",
  5627. "type": "custom"
  5628. },
  5629. {
  5630. "url": "https://github.com/fabpot",
  5631. "type": "github"
  5632. },
  5633. {
  5634. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5635. "type": "tidelift"
  5636. }
  5637. ],
  5638. "time": "2023-06-21T12:08:28+00:00"
  5639. },
  5640. {
  5641. "name": "tijsverkoyen/css-to-inline-styles",
  5642. "version": "2.2.6",
  5643. "source": {
  5644. "type": "git",
  5645. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5646. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  5647. },
  5648. "dist": {
  5649. "type": "zip",
  5650. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  5651. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  5652. "shasum": ""
  5653. },
  5654. "require": {
  5655. "ext-dom": "*",
  5656. "ext-libxml": "*",
  5657. "php": "^5.5 || ^7.0 || ^8.0",
  5658. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  5659. },
  5660. "require-dev": {
  5661. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5662. },
  5663. "type": "library",
  5664. "extra": {
  5665. "branch-alias": {
  5666. "dev-master": "2.2.x-dev"
  5667. }
  5668. },
  5669. "autoload": {
  5670. "psr-4": {
  5671. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5672. }
  5673. },
  5674. "notification-url": "https://packagist.org/downloads/",
  5675. "license": [
  5676. "BSD-3-Clause"
  5677. ],
  5678. "authors": [
  5679. {
  5680. "name": "Tijs Verkoyen",
  5681. "email": "css_to_inline_styles@verkoyen.eu",
  5682. "role": "Developer"
  5683. }
  5684. ],
  5685. "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.",
  5686. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5687. "support": {
  5688. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5689. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  5690. },
  5691. "time": "2023-01-03T09:29:04+00:00"
  5692. },
  5693. {
  5694. "name": "ua-parser/uap-php",
  5695. "version": "v3.9.14",
  5696. "source": {
  5697. "type": "git",
  5698. "url": "https://github.com/ua-parser/uap-php.git",
  5699. "reference": "b796c5ea5df588e65aeb4e2c6cce3811dec4fed6"
  5700. },
  5701. "dist": {
  5702. "type": "zip",
  5703. "url": "https://api.github.com/repos/ua-parser/uap-php/zipball/b796c5ea5df588e65aeb4e2c6cce3811dec4fed6",
  5704. "reference": "b796c5ea5df588e65aeb4e2c6cce3811dec4fed6",
  5705. "shasum": ""
  5706. },
  5707. "require": {
  5708. "composer/ca-bundle": "^1.1",
  5709. "php": "^7.2 || ^8.0"
  5710. },
  5711. "require-dev": {
  5712. "phpstan/phpstan": "^0.12.33",
  5713. "phpunit/phpunit": "^8 || ^9",
  5714. "symfony/console": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  5715. "symfony/filesystem": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  5716. "symfony/finder": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  5717. "symfony/yaml": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  5718. "vimeo/psalm": "^3.12"
  5719. },
  5720. "suggest": {
  5721. "symfony/console": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  5722. "symfony/filesystem": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  5723. "symfony/finder": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  5724. "symfony/yaml": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0"
  5725. },
  5726. "bin": [
  5727. "bin/uaparser"
  5728. ],
  5729. "type": "library",
  5730. "autoload": {
  5731. "psr-4": {
  5732. "UAParser\\": "src"
  5733. }
  5734. },
  5735. "notification-url": "https://packagist.org/downloads/",
  5736. "license": [
  5737. "MIT"
  5738. ],
  5739. "authors": [
  5740. {
  5741. "name": "Dave Olsen",
  5742. "email": "dmolsen@gmail.com"
  5743. },
  5744. {
  5745. "name": "Lars Strojny",
  5746. "email": "lars@strojny.net"
  5747. }
  5748. ],
  5749. "description": "A multi-language port of Browserscope's user agent parser.",
  5750. "support": {
  5751. "issues": "https://github.com/ua-parser/uap-php/issues",
  5752. "source": "https://github.com/ua-parser/uap-php/tree/v3.9.14"
  5753. },
  5754. "time": "2020-10-02T23:36:20+00:00"
  5755. },
  5756. {
  5757. "name": "vlucas/phpdotenv",
  5758. "version": "v5.5.0",
  5759. "source": {
  5760. "type": "git",
  5761. "url": "https://github.com/vlucas/phpdotenv.git",
  5762. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  5763. },
  5764. "dist": {
  5765. "type": "zip",
  5766. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  5767. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  5768. "shasum": ""
  5769. },
  5770. "require": {
  5771. "ext-pcre": "*",
  5772. "graham-campbell/result-type": "^1.0.2",
  5773. "php": "^7.1.3 || ^8.0",
  5774. "phpoption/phpoption": "^1.8",
  5775. "symfony/polyfill-ctype": "^1.23",
  5776. "symfony/polyfill-mbstring": "^1.23.1",
  5777. "symfony/polyfill-php80": "^1.23.1"
  5778. },
  5779. "require-dev": {
  5780. "bamarni/composer-bin-plugin": "^1.4.1",
  5781. "ext-filter": "*",
  5782. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  5783. },
  5784. "suggest": {
  5785. "ext-filter": "Required to use the boolean validator."
  5786. },
  5787. "type": "library",
  5788. "extra": {
  5789. "bamarni-bin": {
  5790. "bin-links": true,
  5791. "forward-command": true
  5792. },
  5793. "branch-alias": {
  5794. "dev-master": "5.5-dev"
  5795. }
  5796. },
  5797. "autoload": {
  5798. "psr-4": {
  5799. "Dotenv\\": "src/"
  5800. }
  5801. },
  5802. "notification-url": "https://packagist.org/downloads/",
  5803. "license": [
  5804. "BSD-3-Clause"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "Graham Campbell",
  5809. "email": "hello@gjcampbell.co.uk",
  5810. "homepage": "https://github.com/GrahamCampbell"
  5811. },
  5812. {
  5813. "name": "Vance Lucas",
  5814. "email": "vance@vancelucas.com",
  5815. "homepage": "https://github.com/vlucas"
  5816. }
  5817. ],
  5818. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5819. "keywords": [
  5820. "dotenv",
  5821. "env",
  5822. "environment"
  5823. ],
  5824. "support": {
  5825. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5826. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  5827. },
  5828. "funding": [
  5829. {
  5830. "url": "https://github.com/GrahamCampbell",
  5831. "type": "github"
  5832. },
  5833. {
  5834. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5835. "type": "tidelift"
  5836. }
  5837. ],
  5838. "time": "2022-10-16T01:01:54+00:00"
  5839. },
  5840. {
  5841. "name": "voku/portable-ascii",
  5842. "version": "2.0.1",
  5843. "source": {
  5844. "type": "git",
  5845. "url": "https://github.com/voku/portable-ascii.git",
  5846. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  5847. },
  5848. "dist": {
  5849. "type": "zip",
  5850. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  5851. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  5852. "shasum": ""
  5853. },
  5854. "require": {
  5855. "php": ">=7.0.0"
  5856. },
  5857. "require-dev": {
  5858. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5859. },
  5860. "suggest": {
  5861. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5862. },
  5863. "type": "library",
  5864. "autoload": {
  5865. "psr-4": {
  5866. "voku\\": "src/voku/"
  5867. }
  5868. },
  5869. "notification-url": "https://packagist.org/downloads/",
  5870. "license": [
  5871. "MIT"
  5872. ],
  5873. "authors": [
  5874. {
  5875. "name": "Lars Moelleken",
  5876. "homepage": "http://www.moelleken.org/"
  5877. }
  5878. ],
  5879. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5880. "homepage": "https://github.com/voku/portable-ascii",
  5881. "keywords": [
  5882. "ascii",
  5883. "clean",
  5884. "php"
  5885. ],
  5886. "support": {
  5887. "issues": "https://github.com/voku/portable-ascii/issues",
  5888. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  5889. },
  5890. "funding": [
  5891. {
  5892. "url": "https://www.paypal.me/moelleken",
  5893. "type": "custom"
  5894. },
  5895. {
  5896. "url": "https://github.com/voku",
  5897. "type": "github"
  5898. },
  5899. {
  5900. "url": "https://opencollective.com/portable-ascii",
  5901. "type": "open_collective"
  5902. },
  5903. {
  5904. "url": "https://www.patreon.com/voku",
  5905. "type": "patreon"
  5906. },
  5907. {
  5908. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5909. "type": "tidelift"
  5910. }
  5911. ],
  5912. "time": "2022-03-08T17:03:00+00:00"
  5913. },
  5914. {
  5915. "name": "webmozart/assert",
  5916. "version": "1.11.0",
  5917. "source": {
  5918. "type": "git",
  5919. "url": "https://github.com/webmozarts/assert.git",
  5920. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  5921. },
  5922. "dist": {
  5923. "type": "zip",
  5924. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  5925. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  5926. "shasum": ""
  5927. },
  5928. "require": {
  5929. "ext-ctype": "*",
  5930. "php": "^7.2 || ^8.0"
  5931. },
  5932. "conflict": {
  5933. "phpstan/phpstan": "<0.12.20",
  5934. "vimeo/psalm": "<4.6.1 || 4.6.2"
  5935. },
  5936. "require-dev": {
  5937. "phpunit/phpunit": "^8.5.13"
  5938. },
  5939. "type": "library",
  5940. "extra": {
  5941. "branch-alias": {
  5942. "dev-master": "1.10-dev"
  5943. }
  5944. },
  5945. "autoload": {
  5946. "psr-4": {
  5947. "Webmozart\\Assert\\": "src/"
  5948. }
  5949. },
  5950. "notification-url": "https://packagist.org/downloads/",
  5951. "license": [
  5952. "MIT"
  5953. ],
  5954. "authors": [
  5955. {
  5956. "name": "Bernhard Schussek",
  5957. "email": "bschussek@gmail.com"
  5958. }
  5959. ],
  5960. "description": "Assertions to validate method input/output with nice error messages.",
  5961. "keywords": [
  5962. "assert",
  5963. "check",
  5964. "validate"
  5965. ],
  5966. "support": {
  5967. "issues": "https://github.com/webmozarts/assert/issues",
  5968. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  5969. },
  5970. "time": "2022-06-03T18:03:27+00:00"
  5971. }
  5972. ],
  5973. "packages-dev": [
  5974. {
  5975. "name": "fakerphp/faker",
  5976. "version": "v1.23.0",
  5977. "source": {
  5978. "type": "git",
  5979. "url": "https://github.com/FakerPHP/Faker.git",
  5980. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  5981. },
  5982. "dist": {
  5983. "type": "zip",
  5984. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  5985. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  5986. "shasum": ""
  5987. },
  5988. "require": {
  5989. "php": "^7.4 || ^8.0",
  5990. "psr/container": "^1.0 || ^2.0",
  5991. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5992. },
  5993. "conflict": {
  5994. "fzaninotto/faker": "*"
  5995. },
  5996. "require-dev": {
  5997. "bamarni/composer-bin-plugin": "^1.4.1",
  5998. "doctrine/persistence": "^1.3 || ^2.0",
  5999. "ext-intl": "*",
  6000. "phpunit/phpunit": "^9.5.26",
  6001. "symfony/phpunit-bridge": "^5.4.16"
  6002. },
  6003. "suggest": {
  6004. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  6005. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  6006. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  6007. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  6008. "ext-mbstring": "Required for multibyte Unicode string functionality."
  6009. },
  6010. "type": "library",
  6011. "extra": {
  6012. "branch-alias": {
  6013. "dev-main": "v1.21-dev"
  6014. }
  6015. },
  6016. "autoload": {
  6017. "psr-4": {
  6018. "Faker\\": "src/Faker/"
  6019. }
  6020. },
  6021. "notification-url": "https://packagist.org/downloads/",
  6022. "license": [
  6023. "MIT"
  6024. ],
  6025. "authors": [
  6026. {
  6027. "name": "François Zaninotto"
  6028. }
  6029. ],
  6030. "description": "Faker is a PHP library that generates fake data for you.",
  6031. "keywords": [
  6032. "data",
  6033. "faker",
  6034. "fixtures"
  6035. ],
  6036. "support": {
  6037. "issues": "https://github.com/FakerPHP/Faker/issues",
  6038. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  6039. },
  6040. "time": "2023-06-12T08:44:38+00:00"
  6041. },
  6042. {
  6043. "name": "filp/whoops",
  6044. "version": "2.15.3",
  6045. "source": {
  6046. "type": "git",
  6047. "url": "https://github.com/filp/whoops.git",
  6048. "reference": "c83e88a30524f9360b11f585f71e6b17313b7187"
  6049. },
  6050. "dist": {
  6051. "type": "zip",
  6052. "url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187",
  6053. "reference": "c83e88a30524f9360b11f585f71e6b17313b7187",
  6054. "shasum": ""
  6055. },
  6056. "require": {
  6057. "php": "^5.5.9 || ^7.0 || ^8.0",
  6058. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  6059. },
  6060. "require-dev": {
  6061. "mockery/mockery": "^0.9 || ^1.0",
  6062. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  6063. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  6064. },
  6065. "suggest": {
  6066. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6067. "whoops/soap": "Formats errors as SOAP responses"
  6068. },
  6069. "type": "library",
  6070. "extra": {
  6071. "branch-alias": {
  6072. "dev-master": "2.7-dev"
  6073. }
  6074. },
  6075. "autoload": {
  6076. "psr-4": {
  6077. "Whoops\\": "src/Whoops/"
  6078. }
  6079. },
  6080. "notification-url": "https://packagist.org/downloads/",
  6081. "license": [
  6082. "MIT"
  6083. ],
  6084. "authors": [
  6085. {
  6086. "name": "Filipe Dobreira",
  6087. "homepage": "https://github.com/filp",
  6088. "role": "Developer"
  6089. }
  6090. ],
  6091. "description": "php error handling for cool kids",
  6092. "homepage": "https://filp.github.io/whoops/",
  6093. "keywords": [
  6094. "error",
  6095. "exception",
  6096. "handling",
  6097. "library",
  6098. "throwable",
  6099. "whoops"
  6100. ],
  6101. "support": {
  6102. "issues": "https://github.com/filp/whoops/issues",
  6103. "source": "https://github.com/filp/whoops/tree/2.15.3"
  6104. },
  6105. "funding": [
  6106. {
  6107. "url": "https://github.com/denis-sokolov",
  6108. "type": "github"
  6109. }
  6110. ],
  6111. "time": "2023-07-13T12:00:00+00:00"
  6112. },
  6113. {
  6114. "name": "hamcrest/hamcrest-php",
  6115. "version": "v2.0.1",
  6116. "source": {
  6117. "type": "git",
  6118. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6119. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  6120. },
  6121. "dist": {
  6122. "type": "zip",
  6123. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6124. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6125. "shasum": ""
  6126. },
  6127. "require": {
  6128. "php": "^5.3|^7.0|^8.0"
  6129. },
  6130. "replace": {
  6131. "cordoval/hamcrest-php": "*",
  6132. "davedevelopment/hamcrest-php": "*",
  6133. "kodova/hamcrest-php": "*"
  6134. },
  6135. "require-dev": {
  6136. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6137. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6138. },
  6139. "type": "library",
  6140. "extra": {
  6141. "branch-alias": {
  6142. "dev-master": "2.1-dev"
  6143. }
  6144. },
  6145. "autoload": {
  6146. "classmap": [
  6147. "hamcrest"
  6148. ]
  6149. },
  6150. "notification-url": "https://packagist.org/downloads/",
  6151. "license": [
  6152. "BSD-3-Clause"
  6153. ],
  6154. "description": "This is the PHP port of Hamcrest Matchers",
  6155. "keywords": [
  6156. "test"
  6157. ],
  6158. "support": {
  6159. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  6160. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  6161. },
  6162. "time": "2020-07-09T08:09:16+00:00"
  6163. },
  6164. {
  6165. "name": "laravel/pint",
  6166. "version": "v1.10.5",
  6167. "source": {
  6168. "type": "git",
  6169. "url": "https://github.com/laravel/pint.git",
  6170. "reference": "a458fb057bfa2f5a09888a8aa349610be807b0c3"
  6171. },
  6172. "dist": {
  6173. "type": "zip",
  6174. "url": "https://api.github.com/repos/laravel/pint/zipball/a458fb057bfa2f5a09888a8aa349610be807b0c3",
  6175. "reference": "a458fb057bfa2f5a09888a8aa349610be807b0c3",
  6176. "shasum": ""
  6177. },
  6178. "require": {
  6179. "ext-json": "*",
  6180. "ext-mbstring": "*",
  6181. "ext-tokenizer": "*",
  6182. "ext-xml": "*",
  6183. "php": "^8.1.0"
  6184. },
  6185. "require-dev": {
  6186. "friendsofphp/php-cs-fixer": "^3.21.1",
  6187. "illuminate/view": "^10.5.1",
  6188. "laravel-zero/framework": "^10.1.1",
  6189. "mockery/mockery": "^1.5.1",
  6190. "nunomaduro/larastan": "^2.5.1",
  6191. "nunomaduro/termwind": "^1.15.1",
  6192. "pestphp/pest": "^2.4.0"
  6193. },
  6194. "bin": [
  6195. "builds/pint"
  6196. ],
  6197. "type": "project",
  6198. "autoload": {
  6199. "psr-4": {
  6200. "App\\": "app/",
  6201. "Database\\Seeders\\": "database/seeders/",
  6202. "Database\\Factories\\": "database/factories/"
  6203. }
  6204. },
  6205. "notification-url": "https://packagist.org/downloads/",
  6206. "license": [
  6207. "MIT"
  6208. ],
  6209. "authors": [
  6210. {
  6211. "name": "Nuno Maduro",
  6212. "email": "enunomaduro@gmail.com"
  6213. }
  6214. ],
  6215. "description": "An opinionated code formatter for PHP.",
  6216. "homepage": "https://laravel.com",
  6217. "keywords": [
  6218. "format",
  6219. "formatter",
  6220. "lint",
  6221. "linter",
  6222. "php"
  6223. ],
  6224. "support": {
  6225. "issues": "https://github.com/laravel/pint/issues",
  6226. "source": "https://github.com/laravel/pint"
  6227. },
  6228. "time": "2023-07-14T10:26:01+00:00"
  6229. },
  6230. {
  6231. "name": "laravel/sail",
  6232. "version": "v1.23.1",
  6233. "source": {
  6234. "type": "git",
  6235. "url": "https://github.com/laravel/sail.git",
  6236. "reference": "62582606f80466aa81fba40b193b289106902853"
  6237. },
  6238. "dist": {
  6239. "type": "zip",
  6240. "url": "https://api.github.com/repos/laravel/sail/zipball/62582606f80466aa81fba40b193b289106902853",
  6241. "reference": "62582606f80466aa81fba40b193b289106902853",
  6242. "shasum": ""
  6243. },
  6244. "require": {
  6245. "illuminate/console": "^8.0|^9.0|^10.0",
  6246. "illuminate/contracts": "^8.0|^9.0|^10.0",
  6247. "illuminate/support": "^8.0|^9.0|^10.0",
  6248. "php": "^8.0",
  6249. "symfony/yaml": "^6.0"
  6250. },
  6251. "require-dev": {
  6252. "orchestra/testbench": "^6.0|^7.0|^8.0",
  6253. "phpstan/phpstan": "^1.10"
  6254. },
  6255. "bin": [
  6256. "bin/sail"
  6257. ],
  6258. "type": "library",
  6259. "extra": {
  6260. "branch-alias": {
  6261. "dev-master": "1.x-dev"
  6262. },
  6263. "laravel": {
  6264. "providers": [
  6265. "Laravel\\Sail\\SailServiceProvider"
  6266. ]
  6267. }
  6268. },
  6269. "autoload": {
  6270. "psr-4": {
  6271. "Laravel\\Sail\\": "src/"
  6272. }
  6273. },
  6274. "notification-url": "https://packagist.org/downloads/",
  6275. "license": [
  6276. "MIT"
  6277. ],
  6278. "authors": [
  6279. {
  6280. "name": "Taylor Otwell",
  6281. "email": "taylor@laravel.com"
  6282. }
  6283. ],
  6284. "description": "Docker files for running a basic Laravel application.",
  6285. "keywords": [
  6286. "docker",
  6287. "laravel"
  6288. ],
  6289. "support": {
  6290. "issues": "https://github.com/laravel/sail/issues",
  6291. "source": "https://github.com/laravel/sail"
  6292. },
  6293. "time": "2023-06-28T18:31:28+00:00"
  6294. },
  6295. {
  6296. "name": "mockery/mockery",
  6297. "version": "1.6.2",
  6298. "source": {
  6299. "type": "git",
  6300. "url": "https://github.com/mockery/mockery.git",
  6301. "reference": "13a7fa2642c76c58fa2806ef7f565344c817a191"
  6302. },
  6303. "dist": {
  6304. "type": "zip",
  6305. "url": "https://api.github.com/repos/mockery/mockery/zipball/13a7fa2642c76c58fa2806ef7f565344c817a191",
  6306. "reference": "13a7fa2642c76c58fa2806ef7f565344c817a191",
  6307. "shasum": ""
  6308. },
  6309. "require": {
  6310. "hamcrest/hamcrest-php": "^2.0.1",
  6311. "lib-pcre": ">=7.0",
  6312. "php": "^7.4 || ^8.0"
  6313. },
  6314. "conflict": {
  6315. "phpunit/phpunit": "<8.0"
  6316. },
  6317. "require-dev": {
  6318. "phpunit/phpunit": "^8.5 || ^9.3",
  6319. "psalm/plugin-phpunit": "^0.18",
  6320. "vimeo/psalm": "^5.9"
  6321. },
  6322. "type": "library",
  6323. "extra": {
  6324. "branch-alias": {
  6325. "dev-main": "1.6.x-dev"
  6326. }
  6327. },
  6328. "autoload": {
  6329. "files": [
  6330. "library/helpers.php",
  6331. "library/Mockery.php"
  6332. ],
  6333. "psr-4": {
  6334. "Mockery\\": "library/Mockery"
  6335. }
  6336. },
  6337. "notification-url": "https://packagist.org/downloads/",
  6338. "license": [
  6339. "BSD-3-Clause"
  6340. ],
  6341. "authors": [
  6342. {
  6343. "name": "Pádraic Brady",
  6344. "email": "padraic.brady@gmail.com",
  6345. "homepage": "http://blog.astrumfutura.com"
  6346. },
  6347. {
  6348. "name": "Dave Marshall",
  6349. "email": "dave.marshall@atstsolutions.co.uk",
  6350. "homepage": "http://davedevelopment.co.uk"
  6351. }
  6352. ],
  6353. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6354. "homepage": "https://github.com/mockery/mockery",
  6355. "keywords": [
  6356. "BDD",
  6357. "TDD",
  6358. "library",
  6359. "mock",
  6360. "mock objects",
  6361. "mockery",
  6362. "stub",
  6363. "test",
  6364. "test double",
  6365. "testing"
  6366. ],
  6367. "support": {
  6368. "issues": "https://github.com/mockery/mockery/issues",
  6369. "source": "https://github.com/mockery/mockery/tree/1.6.2"
  6370. },
  6371. "time": "2023-06-07T09:07:52+00:00"
  6372. },
  6373. {
  6374. "name": "myclabs/deep-copy",
  6375. "version": "1.11.1",
  6376. "source": {
  6377. "type": "git",
  6378. "url": "https://github.com/myclabs/DeepCopy.git",
  6379. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  6380. },
  6381. "dist": {
  6382. "type": "zip",
  6383. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  6384. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  6385. "shasum": ""
  6386. },
  6387. "require": {
  6388. "php": "^7.1 || ^8.0"
  6389. },
  6390. "conflict": {
  6391. "doctrine/collections": "<1.6.8",
  6392. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  6393. },
  6394. "require-dev": {
  6395. "doctrine/collections": "^1.6.8",
  6396. "doctrine/common": "^2.13.3 || ^3.2.2",
  6397. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  6398. },
  6399. "type": "library",
  6400. "autoload": {
  6401. "files": [
  6402. "src/DeepCopy/deep_copy.php"
  6403. ],
  6404. "psr-4": {
  6405. "DeepCopy\\": "src/DeepCopy/"
  6406. }
  6407. },
  6408. "notification-url": "https://packagist.org/downloads/",
  6409. "license": [
  6410. "MIT"
  6411. ],
  6412. "description": "Create deep copies (clones) of your objects",
  6413. "keywords": [
  6414. "clone",
  6415. "copy",
  6416. "duplicate",
  6417. "object",
  6418. "object graph"
  6419. ],
  6420. "support": {
  6421. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6422. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  6423. },
  6424. "funding": [
  6425. {
  6426. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6427. "type": "tidelift"
  6428. }
  6429. ],
  6430. "time": "2023-03-08T13:26:56+00:00"
  6431. },
  6432. {
  6433. "name": "nunomaduro/collision",
  6434. "version": "v7.7.0",
  6435. "source": {
  6436. "type": "git",
  6437. "url": "https://github.com/nunomaduro/collision.git",
  6438. "reference": "69a07197d055456d29911116fca3bc2c985f524b"
  6439. },
  6440. "dist": {
  6441. "type": "zip",
  6442. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/69a07197d055456d29911116fca3bc2c985f524b",
  6443. "reference": "69a07197d055456d29911116fca3bc2c985f524b",
  6444. "shasum": ""
  6445. },
  6446. "require": {
  6447. "filp/whoops": "^2.15.2",
  6448. "nunomaduro/termwind": "^1.15.1",
  6449. "php": "^8.1.0",
  6450. "symfony/console": "^6.3.0"
  6451. },
  6452. "conflict": {
  6453. "phpunit/phpunit": "<10.1.2"
  6454. },
  6455. "require-dev": {
  6456. "brianium/paratest": "^7.2.2",
  6457. "laravel/framework": "^10.14.1",
  6458. "laravel/pint": "^1.10.3",
  6459. "laravel/sail": "^1.23.0",
  6460. "laravel/sanctum": "^3.2.5",
  6461. "laravel/tinker": "^2.8.1",
  6462. "nunomaduro/larastan": "^2.6.3",
  6463. "orchestra/testbench-core": "^8.5.8",
  6464. "pestphp/pest": "^2.8.1",
  6465. "phpunit/phpunit": "^10.2.2",
  6466. "sebastian/environment": "^6.0.1",
  6467. "spatie/laravel-ignition": "^2.2.0"
  6468. },
  6469. "type": "library",
  6470. "extra": {
  6471. "laravel": {
  6472. "providers": [
  6473. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6474. ]
  6475. }
  6476. },
  6477. "autoload": {
  6478. "files": [
  6479. "./src/Adapters/Phpunit/Autoload.php"
  6480. ],
  6481. "psr-4": {
  6482. "NunoMaduro\\Collision\\": "src/"
  6483. }
  6484. },
  6485. "notification-url": "https://packagist.org/downloads/",
  6486. "license": [
  6487. "MIT"
  6488. ],
  6489. "authors": [
  6490. {
  6491. "name": "Nuno Maduro",
  6492. "email": "enunomaduro@gmail.com"
  6493. }
  6494. ],
  6495. "description": "Cli error handling for console/command-line PHP applications.",
  6496. "keywords": [
  6497. "artisan",
  6498. "cli",
  6499. "command-line",
  6500. "console",
  6501. "error",
  6502. "handling",
  6503. "laravel",
  6504. "laravel-zero",
  6505. "php",
  6506. "symfony"
  6507. ],
  6508. "support": {
  6509. "issues": "https://github.com/nunomaduro/collision/issues",
  6510. "source": "https://github.com/nunomaduro/collision"
  6511. },
  6512. "funding": [
  6513. {
  6514. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6515. "type": "custom"
  6516. },
  6517. {
  6518. "url": "https://github.com/nunomaduro",
  6519. "type": "github"
  6520. },
  6521. {
  6522. "url": "https://www.patreon.com/nunomaduro",
  6523. "type": "patreon"
  6524. }
  6525. ],
  6526. "time": "2023-06-29T09:10:16+00:00"
  6527. },
  6528. {
  6529. "name": "phar-io/manifest",
  6530. "version": "2.0.3",
  6531. "source": {
  6532. "type": "git",
  6533. "url": "https://github.com/phar-io/manifest.git",
  6534. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  6535. },
  6536. "dist": {
  6537. "type": "zip",
  6538. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  6539. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  6540. "shasum": ""
  6541. },
  6542. "require": {
  6543. "ext-dom": "*",
  6544. "ext-phar": "*",
  6545. "ext-xmlwriter": "*",
  6546. "phar-io/version": "^3.0.1",
  6547. "php": "^7.2 || ^8.0"
  6548. },
  6549. "type": "library",
  6550. "extra": {
  6551. "branch-alias": {
  6552. "dev-master": "2.0.x-dev"
  6553. }
  6554. },
  6555. "autoload": {
  6556. "classmap": [
  6557. "src/"
  6558. ]
  6559. },
  6560. "notification-url": "https://packagist.org/downloads/",
  6561. "license": [
  6562. "BSD-3-Clause"
  6563. ],
  6564. "authors": [
  6565. {
  6566. "name": "Arne Blankerts",
  6567. "email": "arne@blankerts.de",
  6568. "role": "Developer"
  6569. },
  6570. {
  6571. "name": "Sebastian Heuer",
  6572. "email": "sebastian@phpeople.de",
  6573. "role": "Developer"
  6574. },
  6575. {
  6576. "name": "Sebastian Bergmann",
  6577. "email": "sebastian@phpunit.de",
  6578. "role": "Developer"
  6579. }
  6580. ],
  6581. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6582. "support": {
  6583. "issues": "https://github.com/phar-io/manifest/issues",
  6584. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  6585. },
  6586. "time": "2021-07-20T11:28:43+00:00"
  6587. },
  6588. {
  6589. "name": "phar-io/version",
  6590. "version": "3.2.1",
  6591. "source": {
  6592. "type": "git",
  6593. "url": "https://github.com/phar-io/version.git",
  6594. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  6595. },
  6596. "dist": {
  6597. "type": "zip",
  6598. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6599. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6600. "shasum": ""
  6601. },
  6602. "require": {
  6603. "php": "^7.2 || ^8.0"
  6604. },
  6605. "type": "library",
  6606. "autoload": {
  6607. "classmap": [
  6608. "src/"
  6609. ]
  6610. },
  6611. "notification-url": "https://packagist.org/downloads/",
  6612. "license": [
  6613. "BSD-3-Clause"
  6614. ],
  6615. "authors": [
  6616. {
  6617. "name": "Arne Blankerts",
  6618. "email": "arne@blankerts.de",
  6619. "role": "Developer"
  6620. },
  6621. {
  6622. "name": "Sebastian Heuer",
  6623. "email": "sebastian@phpeople.de",
  6624. "role": "Developer"
  6625. },
  6626. {
  6627. "name": "Sebastian Bergmann",
  6628. "email": "sebastian@phpunit.de",
  6629. "role": "Developer"
  6630. }
  6631. ],
  6632. "description": "Library for handling version information and constraints",
  6633. "support": {
  6634. "issues": "https://github.com/phar-io/version/issues",
  6635. "source": "https://github.com/phar-io/version/tree/3.2.1"
  6636. },
  6637. "time": "2022-02-21T01:04:05+00:00"
  6638. },
  6639. {
  6640. "name": "phpunit/php-code-coverage",
  6641. "version": "10.1.2",
  6642. "source": {
  6643. "type": "git",
  6644. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6645. "reference": "db1497ec8dd382e82c962f7abbe0320e4882ee4e"
  6646. },
  6647. "dist": {
  6648. "type": "zip",
  6649. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/db1497ec8dd382e82c962f7abbe0320e4882ee4e",
  6650. "reference": "db1497ec8dd382e82c962f7abbe0320e4882ee4e",
  6651. "shasum": ""
  6652. },
  6653. "require": {
  6654. "ext-dom": "*",
  6655. "ext-libxml": "*",
  6656. "ext-xmlwriter": "*",
  6657. "nikic/php-parser": "^4.15",
  6658. "php": ">=8.1",
  6659. "phpunit/php-file-iterator": "^4.0",
  6660. "phpunit/php-text-template": "^3.0",
  6661. "sebastian/code-unit-reverse-lookup": "^3.0",
  6662. "sebastian/complexity": "^3.0",
  6663. "sebastian/environment": "^6.0",
  6664. "sebastian/lines-of-code": "^2.0",
  6665. "sebastian/version": "^4.0",
  6666. "theseer/tokenizer": "^1.2.0"
  6667. },
  6668. "require-dev": {
  6669. "phpunit/phpunit": "^10.1"
  6670. },
  6671. "suggest": {
  6672. "ext-pcov": "PHP extension that provides line coverage",
  6673. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  6674. },
  6675. "type": "library",
  6676. "extra": {
  6677. "branch-alias": {
  6678. "dev-main": "10.1-dev"
  6679. }
  6680. },
  6681. "autoload": {
  6682. "classmap": [
  6683. "src/"
  6684. ]
  6685. },
  6686. "notification-url": "https://packagist.org/downloads/",
  6687. "license": [
  6688. "BSD-3-Clause"
  6689. ],
  6690. "authors": [
  6691. {
  6692. "name": "Sebastian Bergmann",
  6693. "email": "sebastian@phpunit.de",
  6694. "role": "lead"
  6695. }
  6696. ],
  6697. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6698. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6699. "keywords": [
  6700. "coverage",
  6701. "testing",
  6702. "xunit"
  6703. ],
  6704. "support": {
  6705. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6706. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  6707. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.2"
  6708. },
  6709. "funding": [
  6710. {
  6711. "url": "https://github.com/sebastianbergmann",
  6712. "type": "github"
  6713. }
  6714. ],
  6715. "time": "2023-05-22T09:04:27+00:00"
  6716. },
  6717. {
  6718. "name": "phpunit/php-file-iterator",
  6719. "version": "4.0.2",
  6720. "source": {
  6721. "type": "git",
  6722. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6723. "reference": "5647d65443818959172645e7ed999217360654b6"
  6724. },
  6725. "dist": {
  6726. "type": "zip",
  6727. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/5647d65443818959172645e7ed999217360654b6",
  6728. "reference": "5647d65443818959172645e7ed999217360654b6",
  6729. "shasum": ""
  6730. },
  6731. "require": {
  6732. "php": ">=8.1"
  6733. },
  6734. "require-dev": {
  6735. "phpunit/phpunit": "^10.0"
  6736. },
  6737. "type": "library",
  6738. "extra": {
  6739. "branch-alias": {
  6740. "dev-main": "4.0-dev"
  6741. }
  6742. },
  6743. "autoload": {
  6744. "classmap": [
  6745. "src/"
  6746. ]
  6747. },
  6748. "notification-url": "https://packagist.org/downloads/",
  6749. "license": [
  6750. "BSD-3-Clause"
  6751. ],
  6752. "authors": [
  6753. {
  6754. "name": "Sebastian Bergmann",
  6755. "email": "sebastian@phpunit.de",
  6756. "role": "lead"
  6757. }
  6758. ],
  6759. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6760. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6761. "keywords": [
  6762. "filesystem",
  6763. "iterator"
  6764. ],
  6765. "support": {
  6766. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6767. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  6768. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.0.2"
  6769. },
  6770. "funding": [
  6771. {
  6772. "url": "https://github.com/sebastianbergmann",
  6773. "type": "github"
  6774. }
  6775. ],
  6776. "time": "2023-05-07T09:13:23+00:00"
  6777. },
  6778. {
  6779. "name": "phpunit/php-invoker",
  6780. "version": "4.0.0",
  6781. "source": {
  6782. "type": "git",
  6783. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6784. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  6785. },
  6786. "dist": {
  6787. "type": "zip",
  6788. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  6789. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  6790. "shasum": ""
  6791. },
  6792. "require": {
  6793. "php": ">=8.1"
  6794. },
  6795. "require-dev": {
  6796. "ext-pcntl": "*",
  6797. "phpunit/phpunit": "^10.0"
  6798. },
  6799. "suggest": {
  6800. "ext-pcntl": "*"
  6801. },
  6802. "type": "library",
  6803. "extra": {
  6804. "branch-alias": {
  6805. "dev-main": "4.0-dev"
  6806. }
  6807. },
  6808. "autoload": {
  6809. "classmap": [
  6810. "src/"
  6811. ]
  6812. },
  6813. "notification-url": "https://packagist.org/downloads/",
  6814. "license": [
  6815. "BSD-3-Clause"
  6816. ],
  6817. "authors": [
  6818. {
  6819. "name": "Sebastian Bergmann",
  6820. "email": "sebastian@phpunit.de",
  6821. "role": "lead"
  6822. }
  6823. ],
  6824. "description": "Invoke callables with a timeout",
  6825. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6826. "keywords": [
  6827. "process"
  6828. ],
  6829. "support": {
  6830. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6831. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  6832. },
  6833. "funding": [
  6834. {
  6835. "url": "https://github.com/sebastianbergmann",
  6836. "type": "github"
  6837. }
  6838. ],
  6839. "time": "2023-02-03T06:56:09+00:00"
  6840. },
  6841. {
  6842. "name": "phpunit/php-text-template",
  6843. "version": "3.0.0",
  6844. "source": {
  6845. "type": "git",
  6846. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6847. "reference": "9f3d3709577a527025f55bcf0f7ab8052c8bb37d"
  6848. },
  6849. "dist": {
  6850. "type": "zip",
  6851. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/9f3d3709577a527025f55bcf0f7ab8052c8bb37d",
  6852. "reference": "9f3d3709577a527025f55bcf0f7ab8052c8bb37d",
  6853. "shasum": ""
  6854. },
  6855. "require": {
  6856. "php": ">=8.1"
  6857. },
  6858. "require-dev": {
  6859. "phpunit/phpunit": "^10.0"
  6860. },
  6861. "type": "library",
  6862. "extra": {
  6863. "branch-alias": {
  6864. "dev-main": "3.0-dev"
  6865. }
  6866. },
  6867. "autoload": {
  6868. "classmap": [
  6869. "src/"
  6870. ]
  6871. },
  6872. "notification-url": "https://packagist.org/downloads/",
  6873. "license": [
  6874. "BSD-3-Clause"
  6875. ],
  6876. "authors": [
  6877. {
  6878. "name": "Sebastian Bergmann",
  6879. "email": "sebastian@phpunit.de",
  6880. "role": "lead"
  6881. }
  6882. ],
  6883. "description": "Simple template engine.",
  6884. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6885. "keywords": [
  6886. "template"
  6887. ],
  6888. "support": {
  6889. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6890. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.0"
  6891. },
  6892. "funding": [
  6893. {
  6894. "url": "https://github.com/sebastianbergmann",
  6895. "type": "github"
  6896. }
  6897. ],
  6898. "time": "2023-02-03T06:56:46+00:00"
  6899. },
  6900. {
  6901. "name": "phpunit/php-timer",
  6902. "version": "6.0.0",
  6903. "source": {
  6904. "type": "git",
  6905. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6906. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  6907. },
  6908. "dist": {
  6909. "type": "zip",
  6910. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  6911. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  6912. "shasum": ""
  6913. },
  6914. "require": {
  6915. "php": ">=8.1"
  6916. },
  6917. "require-dev": {
  6918. "phpunit/phpunit": "^10.0"
  6919. },
  6920. "type": "library",
  6921. "extra": {
  6922. "branch-alias": {
  6923. "dev-main": "6.0-dev"
  6924. }
  6925. },
  6926. "autoload": {
  6927. "classmap": [
  6928. "src/"
  6929. ]
  6930. },
  6931. "notification-url": "https://packagist.org/downloads/",
  6932. "license": [
  6933. "BSD-3-Clause"
  6934. ],
  6935. "authors": [
  6936. {
  6937. "name": "Sebastian Bergmann",
  6938. "email": "sebastian@phpunit.de",
  6939. "role": "lead"
  6940. }
  6941. ],
  6942. "description": "Utility class for timing",
  6943. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6944. "keywords": [
  6945. "timer"
  6946. ],
  6947. "support": {
  6948. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6949. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  6950. },
  6951. "funding": [
  6952. {
  6953. "url": "https://github.com/sebastianbergmann",
  6954. "type": "github"
  6955. }
  6956. ],
  6957. "time": "2023-02-03T06:57:52+00:00"
  6958. },
  6959. {
  6960. "name": "phpunit/phpunit",
  6961. "version": "10.2.6",
  6962. "source": {
  6963. "type": "git",
  6964. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6965. "reference": "1c17815c129f133f3019cc18e8d0c8622e6d9bcd"
  6966. },
  6967. "dist": {
  6968. "type": "zip",
  6969. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1c17815c129f133f3019cc18e8d0c8622e6d9bcd",
  6970. "reference": "1c17815c129f133f3019cc18e8d0c8622e6d9bcd",
  6971. "shasum": ""
  6972. },
  6973. "require": {
  6974. "ext-dom": "*",
  6975. "ext-json": "*",
  6976. "ext-libxml": "*",
  6977. "ext-mbstring": "*",
  6978. "ext-xml": "*",
  6979. "ext-xmlwriter": "*",
  6980. "myclabs/deep-copy": "^1.10.1",
  6981. "phar-io/manifest": "^2.0.3",
  6982. "phar-io/version": "^3.0.2",
  6983. "php": ">=8.1",
  6984. "phpunit/php-code-coverage": "^10.1.1",
  6985. "phpunit/php-file-iterator": "^4.0",
  6986. "phpunit/php-invoker": "^4.0",
  6987. "phpunit/php-text-template": "^3.0",
  6988. "phpunit/php-timer": "^6.0",
  6989. "sebastian/cli-parser": "^2.0",
  6990. "sebastian/code-unit": "^2.0",
  6991. "sebastian/comparator": "^5.0",
  6992. "sebastian/diff": "^5.0",
  6993. "sebastian/environment": "^6.0",
  6994. "sebastian/exporter": "^5.0",
  6995. "sebastian/global-state": "^6.0",
  6996. "sebastian/object-enumerator": "^5.0",
  6997. "sebastian/recursion-context": "^5.0",
  6998. "sebastian/type": "^4.0",
  6999. "sebastian/version": "^4.0"
  7000. },
  7001. "suggest": {
  7002. "ext-soap": "To be able to generate mocks based on WSDL files"
  7003. },
  7004. "bin": [
  7005. "phpunit"
  7006. ],
  7007. "type": "library",
  7008. "extra": {
  7009. "branch-alias": {
  7010. "dev-main": "10.2-dev"
  7011. }
  7012. },
  7013. "autoload": {
  7014. "files": [
  7015. "src/Framework/Assert/Functions.php"
  7016. ],
  7017. "classmap": [
  7018. "src/"
  7019. ]
  7020. },
  7021. "notification-url": "https://packagist.org/downloads/",
  7022. "license": [
  7023. "BSD-3-Clause"
  7024. ],
  7025. "authors": [
  7026. {
  7027. "name": "Sebastian Bergmann",
  7028. "email": "sebastian@phpunit.de",
  7029. "role": "lead"
  7030. }
  7031. ],
  7032. "description": "The PHP Unit Testing framework.",
  7033. "homepage": "https://phpunit.de/",
  7034. "keywords": [
  7035. "phpunit",
  7036. "testing",
  7037. "xunit"
  7038. ],
  7039. "support": {
  7040. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7041. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  7042. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.2.6"
  7043. },
  7044. "funding": [
  7045. {
  7046. "url": "https://phpunit.de/sponsors.html",
  7047. "type": "custom"
  7048. },
  7049. {
  7050. "url": "https://github.com/sebastianbergmann",
  7051. "type": "github"
  7052. },
  7053. {
  7054. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  7055. "type": "tidelift"
  7056. }
  7057. ],
  7058. "time": "2023-07-17T12:08:28+00:00"
  7059. },
  7060. {
  7061. "name": "sebastian/cli-parser",
  7062. "version": "2.0.0",
  7063. "source": {
  7064. "type": "git",
  7065. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  7066. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae"
  7067. },
  7068. "dist": {
  7069. "type": "zip",
  7070. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae",
  7071. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  7072. "shasum": ""
  7073. },
  7074. "require": {
  7075. "php": ">=8.1"
  7076. },
  7077. "require-dev": {
  7078. "phpunit/phpunit": "^10.0"
  7079. },
  7080. "type": "library",
  7081. "extra": {
  7082. "branch-alias": {
  7083. "dev-main": "2.0-dev"
  7084. }
  7085. },
  7086. "autoload": {
  7087. "classmap": [
  7088. "src/"
  7089. ]
  7090. },
  7091. "notification-url": "https://packagist.org/downloads/",
  7092. "license": [
  7093. "BSD-3-Clause"
  7094. ],
  7095. "authors": [
  7096. {
  7097. "name": "Sebastian Bergmann",
  7098. "email": "sebastian@phpunit.de",
  7099. "role": "lead"
  7100. }
  7101. ],
  7102. "description": "Library for parsing CLI options",
  7103. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  7104. "support": {
  7105. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  7106. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0"
  7107. },
  7108. "funding": [
  7109. {
  7110. "url": "https://github.com/sebastianbergmann",
  7111. "type": "github"
  7112. }
  7113. ],
  7114. "time": "2023-02-03T06:58:15+00:00"
  7115. },
  7116. {
  7117. "name": "sebastian/code-unit",
  7118. "version": "2.0.0",
  7119. "source": {
  7120. "type": "git",
  7121. "url": "https://github.com/sebastianbergmann/code-unit.git",
  7122. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  7123. },
  7124. "dist": {
  7125. "type": "zip",
  7126. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  7127. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  7128. "shasum": ""
  7129. },
  7130. "require": {
  7131. "php": ">=8.1"
  7132. },
  7133. "require-dev": {
  7134. "phpunit/phpunit": "^10.0"
  7135. },
  7136. "type": "library",
  7137. "extra": {
  7138. "branch-alias": {
  7139. "dev-main": "2.0-dev"
  7140. }
  7141. },
  7142. "autoload": {
  7143. "classmap": [
  7144. "src/"
  7145. ]
  7146. },
  7147. "notification-url": "https://packagist.org/downloads/",
  7148. "license": [
  7149. "BSD-3-Clause"
  7150. ],
  7151. "authors": [
  7152. {
  7153. "name": "Sebastian Bergmann",
  7154. "email": "sebastian@phpunit.de",
  7155. "role": "lead"
  7156. }
  7157. ],
  7158. "description": "Collection of value objects that represent the PHP code units",
  7159. "homepage": "https://github.com/sebastianbergmann/code-unit",
  7160. "support": {
  7161. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  7162. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  7163. },
  7164. "funding": [
  7165. {
  7166. "url": "https://github.com/sebastianbergmann",
  7167. "type": "github"
  7168. }
  7169. ],
  7170. "time": "2023-02-03T06:58:43+00:00"
  7171. },
  7172. {
  7173. "name": "sebastian/code-unit-reverse-lookup",
  7174. "version": "3.0.0",
  7175. "source": {
  7176. "type": "git",
  7177. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7178. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  7179. },
  7180. "dist": {
  7181. "type": "zip",
  7182. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  7183. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  7184. "shasum": ""
  7185. },
  7186. "require": {
  7187. "php": ">=8.1"
  7188. },
  7189. "require-dev": {
  7190. "phpunit/phpunit": "^10.0"
  7191. },
  7192. "type": "library",
  7193. "extra": {
  7194. "branch-alias": {
  7195. "dev-main": "3.0-dev"
  7196. }
  7197. },
  7198. "autoload": {
  7199. "classmap": [
  7200. "src/"
  7201. ]
  7202. },
  7203. "notification-url": "https://packagist.org/downloads/",
  7204. "license": [
  7205. "BSD-3-Clause"
  7206. ],
  7207. "authors": [
  7208. {
  7209. "name": "Sebastian Bergmann",
  7210. "email": "sebastian@phpunit.de"
  7211. }
  7212. ],
  7213. "description": "Looks up which function or method a line of code belongs to",
  7214. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7215. "support": {
  7216. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7217. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  7218. },
  7219. "funding": [
  7220. {
  7221. "url": "https://github.com/sebastianbergmann",
  7222. "type": "github"
  7223. }
  7224. ],
  7225. "time": "2023-02-03T06:59:15+00:00"
  7226. },
  7227. {
  7228. "name": "sebastian/comparator",
  7229. "version": "5.0.0",
  7230. "source": {
  7231. "type": "git",
  7232. "url": "https://github.com/sebastianbergmann/comparator.git",
  7233. "reference": "72f01e6586e0caf6af81297897bd112eb7e9627c"
  7234. },
  7235. "dist": {
  7236. "type": "zip",
  7237. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/72f01e6586e0caf6af81297897bd112eb7e9627c",
  7238. "reference": "72f01e6586e0caf6af81297897bd112eb7e9627c",
  7239. "shasum": ""
  7240. },
  7241. "require": {
  7242. "ext-dom": "*",
  7243. "ext-mbstring": "*",
  7244. "php": ">=8.1",
  7245. "sebastian/diff": "^5.0",
  7246. "sebastian/exporter": "^5.0"
  7247. },
  7248. "require-dev": {
  7249. "phpunit/phpunit": "^10.0"
  7250. },
  7251. "type": "library",
  7252. "extra": {
  7253. "branch-alias": {
  7254. "dev-main": "5.0-dev"
  7255. }
  7256. },
  7257. "autoload": {
  7258. "classmap": [
  7259. "src/"
  7260. ]
  7261. },
  7262. "notification-url": "https://packagist.org/downloads/",
  7263. "license": [
  7264. "BSD-3-Clause"
  7265. ],
  7266. "authors": [
  7267. {
  7268. "name": "Sebastian Bergmann",
  7269. "email": "sebastian@phpunit.de"
  7270. },
  7271. {
  7272. "name": "Jeff Welch",
  7273. "email": "whatthejeff@gmail.com"
  7274. },
  7275. {
  7276. "name": "Volker Dusch",
  7277. "email": "github@wallbash.com"
  7278. },
  7279. {
  7280. "name": "Bernhard Schussek",
  7281. "email": "bschussek@2bepublished.at"
  7282. }
  7283. ],
  7284. "description": "Provides the functionality to compare PHP values for equality",
  7285. "homepage": "https://github.com/sebastianbergmann/comparator",
  7286. "keywords": [
  7287. "comparator",
  7288. "compare",
  7289. "equality"
  7290. ],
  7291. "support": {
  7292. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7293. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.0"
  7294. },
  7295. "funding": [
  7296. {
  7297. "url": "https://github.com/sebastianbergmann",
  7298. "type": "github"
  7299. }
  7300. ],
  7301. "time": "2023-02-03T07:07:16+00:00"
  7302. },
  7303. {
  7304. "name": "sebastian/complexity",
  7305. "version": "3.0.0",
  7306. "source": {
  7307. "type": "git",
  7308. "url": "https://github.com/sebastianbergmann/complexity.git",
  7309. "reference": "e67d240970c9dc7ea7b2123a6d520e334dd61dc6"
  7310. },
  7311. "dist": {
  7312. "type": "zip",
  7313. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/e67d240970c9dc7ea7b2123a6d520e334dd61dc6",
  7314. "reference": "e67d240970c9dc7ea7b2123a6d520e334dd61dc6",
  7315. "shasum": ""
  7316. },
  7317. "require": {
  7318. "nikic/php-parser": "^4.10",
  7319. "php": ">=8.1"
  7320. },
  7321. "require-dev": {
  7322. "phpunit/phpunit": "^10.0"
  7323. },
  7324. "type": "library",
  7325. "extra": {
  7326. "branch-alias": {
  7327. "dev-main": "3.0-dev"
  7328. }
  7329. },
  7330. "autoload": {
  7331. "classmap": [
  7332. "src/"
  7333. ]
  7334. },
  7335. "notification-url": "https://packagist.org/downloads/",
  7336. "license": [
  7337. "BSD-3-Clause"
  7338. ],
  7339. "authors": [
  7340. {
  7341. "name": "Sebastian Bergmann",
  7342. "email": "sebastian@phpunit.de",
  7343. "role": "lead"
  7344. }
  7345. ],
  7346. "description": "Library for calculating the complexity of PHP code units",
  7347. "homepage": "https://github.com/sebastianbergmann/complexity",
  7348. "support": {
  7349. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  7350. "source": "https://github.com/sebastianbergmann/complexity/tree/3.0.0"
  7351. },
  7352. "funding": [
  7353. {
  7354. "url": "https://github.com/sebastianbergmann",
  7355. "type": "github"
  7356. }
  7357. ],
  7358. "time": "2023-02-03T06:59:47+00:00"
  7359. },
  7360. {
  7361. "name": "sebastian/diff",
  7362. "version": "5.0.3",
  7363. "source": {
  7364. "type": "git",
  7365. "url": "https://github.com/sebastianbergmann/diff.git",
  7366. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b"
  7367. },
  7368. "dist": {
  7369. "type": "zip",
  7370. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  7371. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  7372. "shasum": ""
  7373. },
  7374. "require": {
  7375. "php": ">=8.1"
  7376. },
  7377. "require-dev": {
  7378. "phpunit/phpunit": "^10.0",
  7379. "symfony/process": "^4.2 || ^5"
  7380. },
  7381. "type": "library",
  7382. "extra": {
  7383. "branch-alias": {
  7384. "dev-main": "5.0-dev"
  7385. }
  7386. },
  7387. "autoload": {
  7388. "classmap": [
  7389. "src/"
  7390. ]
  7391. },
  7392. "notification-url": "https://packagist.org/downloads/",
  7393. "license": [
  7394. "BSD-3-Clause"
  7395. ],
  7396. "authors": [
  7397. {
  7398. "name": "Sebastian Bergmann",
  7399. "email": "sebastian@phpunit.de"
  7400. },
  7401. {
  7402. "name": "Kore Nordmann",
  7403. "email": "mail@kore-nordmann.de"
  7404. }
  7405. ],
  7406. "description": "Diff implementation",
  7407. "homepage": "https://github.com/sebastianbergmann/diff",
  7408. "keywords": [
  7409. "diff",
  7410. "udiff",
  7411. "unidiff",
  7412. "unified diff"
  7413. ],
  7414. "support": {
  7415. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7416. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  7417. "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3"
  7418. },
  7419. "funding": [
  7420. {
  7421. "url": "https://github.com/sebastianbergmann",
  7422. "type": "github"
  7423. }
  7424. ],
  7425. "time": "2023-05-01T07:48:21+00:00"
  7426. },
  7427. {
  7428. "name": "sebastian/environment",
  7429. "version": "6.0.1",
  7430. "source": {
  7431. "type": "git",
  7432. "url": "https://github.com/sebastianbergmann/environment.git",
  7433. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951"
  7434. },
  7435. "dist": {
  7436. "type": "zip",
  7437. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951",
  7438. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  7439. "shasum": ""
  7440. },
  7441. "require": {
  7442. "php": ">=8.1"
  7443. },
  7444. "require-dev": {
  7445. "phpunit/phpunit": "^10.0"
  7446. },
  7447. "suggest": {
  7448. "ext-posix": "*"
  7449. },
  7450. "type": "library",
  7451. "extra": {
  7452. "branch-alias": {
  7453. "dev-main": "6.0-dev"
  7454. }
  7455. },
  7456. "autoload": {
  7457. "classmap": [
  7458. "src/"
  7459. ]
  7460. },
  7461. "notification-url": "https://packagist.org/downloads/",
  7462. "license": [
  7463. "BSD-3-Clause"
  7464. ],
  7465. "authors": [
  7466. {
  7467. "name": "Sebastian Bergmann",
  7468. "email": "sebastian@phpunit.de"
  7469. }
  7470. ],
  7471. "description": "Provides functionality to handle HHVM/PHP environments",
  7472. "homepage": "https://github.com/sebastianbergmann/environment",
  7473. "keywords": [
  7474. "Xdebug",
  7475. "environment",
  7476. "hhvm"
  7477. ],
  7478. "support": {
  7479. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7480. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  7481. "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1"
  7482. },
  7483. "funding": [
  7484. {
  7485. "url": "https://github.com/sebastianbergmann",
  7486. "type": "github"
  7487. }
  7488. ],
  7489. "time": "2023-04-11T05:39:26+00:00"
  7490. },
  7491. {
  7492. "name": "sebastian/exporter",
  7493. "version": "5.0.0",
  7494. "source": {
  7495. "type": "git",
  7496. "url": "https://github.com/sebastianbergmann/exporter.git",
  7497. "reference": "f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0"
  7498. },
  7499. "dist": {
  7500. "type": "zip",
  7501. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0",
  7502. "reference": "f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0",
  7503. "shasum": ""
  7504. },
  7505. "require": {
  7506. "ext-mbstring": "*",
  7507. "php": ">=8.1",
  7508. "sebastian/recursion-context": "^5.0"
  7509. },
  7510. "require-dev": {
  7511. "phpunit/phpunit": "^10.0"
  7512. },
  7513. "type": "library",
  7514. "extra": {
  7515. "branch-alias": {
  7516. "dev-main": "5.0-dev"
  7517. }
  7518. },
  7519. "autoload": {
  7520. "classmap": [
  7521. "src/"
  7522. ]
  7523. },
  7524. "notification-url": "https://packagist.org/downloads/",
  7525. "license": [
  7526. "BSD-3-Clause"
  7527. ],
  7528. "authors": [
  7529. {
  7530. "name": "Sebastian Bergmann",
  7531. "email": "sebastian@phpunit.de"
  7532. },
  7533. {
  7534. "name": "Jeff Welch",
  7535. "email": "whatthejeff@gmail.com"
  7536. },
  7537. {
  7538. "name": "Volker Dusch",
  7539. "email": "github@wallbash.com"
  7540. },
  7541. {
  7542. "name": "Adam Harvey",
  7543. "email": "aharvey@php.net"
  7544. },
  7545. {
  7546. "name": "Bernhard Schussek",
  7547. "email": "bschussek@gmail.com"
  7548. }
  7549. ],
  7550. "description": "Provides the functionality to export PHP variables for visualization",
  7551. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  7552. "keywords": [
  7553. "export",
  7554. "exporter"
  7555. ],
  7556. "support": {
  7557. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7558. "source": "https://github.com/sebastianbergmann/exporter/tree/5.0.0"
  7559. },
  7560. "funding": [
  7561. {
  7562. "url": "https://github.com/sebastianbergmann",
  7563. "type": "github"
  7564. }
  7565. ],
  7566. "time": "2023-02-03T07:06:49+00:00"
  7567. },
  7568. {
  7569. "name": "sebastian/global-state",
  7570. "version": "6.0.0",
  7571. "source": {
  7572. "type": "git",
  7573. "url": "https://github.com/sebastianbergmann/global-state.git",
  7574. "reference": "aab257c712de87b90194febd52e4d184551c2d44"
  7575. },
  7576. "dist": {
  7577. "type": "zip",
  7578. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/aab257c712de87b90194febd52e4d184551c2d44",
  7579. "reference": "aab257c712de87b90194febd52e4d184551c2d44",
  7580. "shasum": ""
  7581. },
  7582. "require": {
  7583. "php": ">=8.1",
  7584. "sebastian/object-reflector": "^3.0",
  7585. "sebastian/recursion-context": "^5.0"
  7586. },
  7587. "require-dev": {
  7588. "ext-dom": "*",
  7589. "phpunit/phpunit": "^10.0"
  7590. },
  7591. "type": "library",
  7592. "extra": {
  7593. "branch-alias": {
  7594. "dev-main": "6.0-dev"
  7595. }
  7596. },
  7597. "autoload": {
  7598. "classmap": [
  7599. "src/"
  7600. ]
  7601. },
  7602. "notification-url": "https://packagist.org/downloads/",
  7603. "license": [
  7604. "BSD-3-Clause"
  7605. ],
  7606. "authors": [
  7607. {
  7608. "name": "Sebastian Bergmann",
  7609. "email": "sebastian@phpunit.de"
  7610. }
  7611. ],
  7612. "description": "Snapshotting of global state",
  7613. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7614. "keywords": [
  7615. "global state"
  7616. ],
  7617. "support": {
  7618. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7619. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.0"
  7620. },
  7621. "funding": [
  7622. {
  7623. "url": "https://github.com/sebastianbergmann",
  7624. "type": "github"
  7625. }
  7626. ],
  7627. "time": "2023-02-03T07:07:38+00:00"
  7628. },
  7629. {
  7630. "name": "sebastian/lines-of-code",
  7631. "version": "2.0.0",
  7632. "source": {
  7633. "type": "git",
  7634. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7635. "reference": "17c4d940ecafb3d15d2cf916f4108f664e28b130"
  7636. },
  7637. "dist": {
  7638. "type": "zip",
  7639. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/17c4d940ecafb3d15d2cf916f4108f664e28b130",
  7640. "reference": "17c4d940ecafb3d15d2cf916f4108f664e28b130",
  7641. "shasum": ""
  7642. },
  7643. "require": {
  7644. "nikic/php-parser": "^4.10",
  7645. "php": ">=8.1"
  7646. },
  7647. "require-dev": {
  7648. "phpunit/phpunit": "^10.0"
  7649. },
  7650. "type": "library",
  7651. "extra": {
  7652. "branch-alias": {
  7653. "dev-main": "2.0-dev"
  7654. }
  7655. },
  7656. "autoload": {
  7657. "classmap": [
  7658. "src/"
  7659. ]
  7660. },
  7661. "notification-url": "https://packagist.org/downloads/",
  7662. "license": [
  7663. "BSD-3-Clause"
  7664. ],
  7665. "authors": [
  7666. {
  7667. "name": "Sebastian Bergmann",
  7668. "email": "sebastian@phpunit.de",
  7669. "role": "lead"
  7670. }
  7671. ],
  7672. "description": "Library for counting the lines of code in PHP source code",
  7673. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7674. "support": {
  7675. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7676. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.0"
  7677. },
  7678. "funding": [
  7679. {
  7680. "url": "https://github.com/sebastianbergmann",
  7681. "type": "github"
  7682. }
  7683. ],
  7684. "time": "2023-02-03T07:08:02+00:00"
  7685. },
  7686. {
  7687. "name": "sebastian/object-enumerator",
  7688. "version": "5.0.0",
  7689. "source": {
  7690. "type": "git",
  7691. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7692. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  7693. },
  7694. "dist": {
  7695. "type": "zip",
  7696. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  7697. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  7698. "shasum": ""
  7699. },
  7700. "require": {
  7701. "php": ">=8.1",
  7702. "sebastian/object-reflector": "^3.0",
  7703. "sebastian/recursion-context": "^5.0"
  7704. },
  7705. "require-dev": {
  7706. "phpunit/phpunit": "^10.0"
  7707. },
  7708. "type": "library",
  7709. "extra": {
  7710. "branch-alias": {
  7711. "dev-main": "5.0-dev"
  7712. }
  7713. },
  7714. "autoload": {
  7715. "classmap": [
  7716. "src/"
  7717. ]
  7718. },
  7719. "notification-url": "https://packagist.org/downloads/",
  7720. "license": [
  7721. "BSD-3-Clause"
  7722. ],
  7723. "authors": [
  7724. {
  7725. "name": "Sebastian Bergmann",
  7726. "email": "sebastian@phpunit.de"
  7727. }
  7728. ],
  7729. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7730. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7731. "support": {
  7732. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7733. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  7734. },
  7735. "funding": [
  7736. {
  7737. "url": "https://github.com/sebastianbergmann",
  7738. "type": "github"
  7739. }
  7740. ],
  7741. "time": "2023-02-03T07:08:32+00:00"
  7742. },
  7743. {
  7744. "name": "sebastian/object-reflector",
  7745. "version": "3.0.0",
  7746. "source": {
  7747. "type": "git",
  7748. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7749. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  7750. },
  7751. "dist": {
  7752. "type": "zip",
  7753. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  7754. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  7755. "shasum": ""
  7756. },
  7757. "require": {
  7758. "php": ">=8.1"
  7759. },
  7760. "require-dev": {
  7761. "phpunit/phpunit": "^10.0"
  7762. },
  7763. "type": "library",
  7764. "extra": {
  7765. "branch-alias": {
  7766. "dev-main": "3.0-dev"
  7767. }
  7768. },
  7769. "autoload": {
  7770. "classmap": [
  7771. "src/"
  7772. ]
  7773. },
  7774. "notification-url": "https://packagist.org/downloads/",
  7775. "license": [
  7776. "BSD-3-Clause"
  7777. ],
  7778. "authors": [
  7779. {
  7780. "name": "Sebastian Bergmann",
  7781. "email": "sebastian@phpunit.de"
  7782. }
  7783. ],
  7784. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7785. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7786. "support": {
  7787. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7788. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  7789. },
  7790. "funding": [
  7791. {
  7792. "url": "https://github.com/sebastianbergmann",
  7793. "type": "github"
  7794. }
  7795. ],
  7796. "time": "2023-02-03T07:06:18+00:00"
  7797. },
  7798. {
  7799. "name": "sebastian/recursion-context",
  7800. "version": "5.0.0",
  7801. "source": {
  7802. "type": "git",
  7803. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7804. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  7805. },
  7806. "dist": {
  7807. "type": "zip",
  7808. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  7809. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  7810. "shasum": ""
  7811. },
  7812. "require": {
  7813. "php": ">=8.1"
  7814. },
  7815. "require-dev": {
  7816. "phpunit/phpunit": "^10.0"
  7817. },
  7818. "type": "library",
  7819. "extra": {
  7820. "branch-alias": {
  7821. "dev-main": "5.0-dev"
  7822. }
  7823. },
  7824. "autoload": {
  7825. "classmap": [
  7826. "src/"
  7827. ]
  7828. },
  7829. "notification-url": "https://packagist.org/downloads/",
  7830. "license": [
  7831. "BSD-3-Clause"
  7832. ],
  7833. "authors": [
  7834. {
  7835. "name": "Sebastian Bergmann",
  7836. "email": "sebastian@phpunit.de"
  7837. },
  7838. {
  7839. "name": "Jeff Welch",
  7840. "email": "whatthejeff@gmail.com"
  7841. },
  7842. {
  7843. "name": "Adam Harvey",
  7844. "email": "aharvey@php.net"
  7845. }
  7846. ],
  7847. "description": "Provides functionality to recursively process PHP variables",
  7848. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  7849. "support": {
  7850. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7851. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  7852. },
  7853. "funding": [
  7854. {
  7855. "url": "https://github.com/sebastianbergmann",
  7856. "type": "github"
  7857. }
  7858. ],
  7859. "time": "2023-02-03T07:05:40+00:00"
  7860. },
  7861. {
  7862. "name": "sebastian/type",
  7863. "version": "4.0.0",
  7864. "source": {
  7865. "type": "git",
  7866. "url": "https://github.com/sebastianbergmann/type.git",
  7867. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  7868. },
  7869. "dist": {
  7870. "type": "zip",
  7871. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  7872. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  7873. "shasum": ""
  7874. },
  7875. "require": {
  7876. "php": ">=8.1"
  7877. },
  7878. "require-dev": {
  7879. "phpunit/phpunit": "^10.0"
  7880. },
  7881. "type": "library",
  7882. "extra": {
  7883. "branch-alias": {
  7884. "dev-main": "4.0-dev"
  7885. }
  7886. },
  7887. "autoload": {
  7888. "classmap": [
  7889. "src/"
  7890. ]
  7891. },
  7892. "notification-url": "https://packagist.org/downloads/",
  7893. "license": [
  7894. "BSD-3-Clause"
  7895. ],
  7896. "authors": [
  7897. {
  7898. "name": "Sebastian Bergmann",
  7899. "email": "sebastian@phpunit.de",
  7900. "role": "lead"
  7901. }
  7902. ],
  7903. "description": "Collection of value objects that represent the types of the PHP type system",
  7904. "homepage": "https://github.com/sebastianbergmann/type",
  7905. "support": {
  7906. "issues": "https://github.com/sebastianbergmann/type/issues",
  7907. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  7908. },
  7909. "funding": [
  7910. {
  7911. "url": "https://github.com/sebastianbergmann",
  7912. "type": "github"
  7913. }
  7914. ],
  7915. "time": "2023-02-03T07:10:45+00:00"
  7916. },
  7917. {
  7918. "name": "sebastian/version",
  7919. "version": "4.0.1",
  7920. "source": {
  7921. "type": "git",
  7922. "url": "https://github.com/sebastianbergmann/version.git",
  7923. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  7924. },
  7925. "dist": {
  7926. "type": "zip",
  7927. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  7928. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  7929. "shasum": ""
  7930. },
  7931. "require": {
  7932. "php": ">=8.1"
  7933. },
  7934. "type": "library",
  7935. "extra": {
  7936. "branch-alias": {
  7937. "dev-main": "4.0-dev"
  7938. }
  7939. },
  7940. "autoload": {
  7941. "classmap": [
  7942. "src/"
  7943. ]
  7944. },
  7945. "notification-url": "https://packagist.org/downloads/",
  7946. "license": [
  7947. "BSD-3-Clause"
  7948. ],
  7949. "authors": [
  7950. {
  7951. "name": "Sebastian Bergmann",
  7952. "email": "sebastian@phpunit.de",
  7953. "role": "lead"
  7954. }
  7955. ],
  7956. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7957. "homepage": "https://github.com/sebastianbergmann/version",
  7958. "support": {
  7959. "issues": "https://github.com/sebastianbergmann/version/issues",
  7960. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  7961. },
  7962. "funding": [
  7963. {
  7964. "url": "https://github.com/sebastianbergmann",
  7965. "type": "github"
  7966. }
  7967. ],
  7968. "time": "2023-02-07T11:34:05+00:00"
  7969. },
  7970. {
  7971. "name": "spatie/backtrace",
  7972. "version": "1.5.3",
  7973. "source": {
  7974. "type": "git",
  7975. "url": "https://github.com/spatie/backtrace.git",
  7976. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab"
  7977. },
  7978. "dist": {
  7979. "type": "zip",
  7980. "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab",
  7981. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab",
  7982. "shasum": ""
  7983. },
  7984. "require": {
  7985. "php": "^7.3|^8.0"
  7986. },
  7987. "require-dev": {
  7988. "ext-json": "*",
  7989. "phpunit/phpunit": "^9.3",
  7990. "spatie/phpunit-snapshot-assertions": "^4.2",
  7991. "symfony/var-dumper": "^5.1"
  7992. },
  7993. "type": "library",
  7994. "autoload": {
  7995. "psr-4": {
  7996. "Spatie\\Backtrace\\": "src"
  7997. }
  7998. },
  7999. "notification-url": "https://packagist.org/downloads/",
  8000. "license": [
  8001. "MIT"
  8002. ],
  8003. "authors": [
  8004. {
  8005. "name": "Freek Van de Herten",
  8006. "email": "freek@spatie.be",
  8007. "homepage": "https://spatie.be",
  8008. "role": "Developer"
  8009. }
  8010. ],
  8011. "description": "A better backtrace",
  8012. "homepage": "https://github.com/spatie/backtrace",
  8013. "keywords": [
  8014. "Backtrace",
  8015. "spatie"
  8016. ],
  8017. "support": {
  8018. "source": "https://github.com/spatie/backtrace/tree/1.5.3"
  8019. },
  8020. "funding": [
  8021. {
  8022. "url": "https://github.com/sponsors/spatie",
  8023. "type": "github"
  8024. },
  8025. {
  8026. "url": "https://spatie.be/open-source/support-us",
  8027. "type": "other"
  8028. }
  8029. ],
  8030. "time": "2023-06-28T12:59:17+00:00"
  8031. },
  8032. {
  8033. "name": "spatie/flare-client-php",
  8034. "version": "1.4.1",
  8035. "source": {
  8036. "type": "git",
  8037. "url": "https://github.com/spatie/flare-client-php.git",
  8038. "reference": "943894c6a6b00501365ac0b91ae0dce56f2226fa"
  8039. },
  8040. "dist": {
  8041. "type": "zip",
  8042. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/943894c6a6b00501365ac0b91ae0dce56f2226fa",
  8043. "reference": "943894c6a6b00501365ac0b91ae0dce56f2226fa",
  8044. "shasum": ""
  8045. },
  8046. "require": {
  8047. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  8048. "nesbot/carbon": "^2.62.1",
  8049. "php": "^8.0",
  8050. "spatie/backtrace": "^1.5.2",
  8051. "symfony/http-foundation": "^5.0|^6.0",
  8052. "symfony/mime": "^5.2|^6.0",
  8053. "symfony/process": "^5.2|^6.0",
  8054. "symfony/var-dumper": "^5.2|^6.0"
  8055. },
  8056. "require-dev": {
  8057. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  8058. "pestphp/pest": "^1.20",
  8059. "phpstan/extension-installer": "^1.1",
  8060. "phpstan/phpstan-deprecation-rules": "^1.0",
  8061. "phpstan/phpstan-phpunit": "^1.0",
  8062. "spatie/phpunit-snapshot-assertions": "^4.0"
  8063. },
  8064. "type": "library",
  8065. "extra": {
  8066. "branch-alias": {
  8067. "dev-main": "1.3.x-dev"
  8068. }
  8069. },
  8070. "autoload": {
  8071. "files": [
  8072. "src/helpers.php"
  8073. ],
  8074. "psr-4": {
  8075. "Spatie\\FlareClient\\": "src"
  8076. }
  8077. },
  8078. "notification-url": "https://packagist.org/downloads/",
  8079. "license": [
  8080. "MIT"
  8081. ],
  8082. "description": "Send PHP errors to Flare",
  8083. "homepage": "https://github.com/spatie/flare-client-php",
  8084. "keywords": [
  8085. "exception",
  8086. "flare",
  8087. "reporting",
  8088. "spatie"
  8089. ],
  8090. "support": {
  8091. "issues": "https://github.com/spatie/flare-client-php/issues",
  8092. "source": "https://github.com/spatie/flare-client-php/tree/1.4.1"
  8093. },
  8094. "funding": [
  8095. {
  8096. "url": "https://github.com/spatie",
  8097. "type": "github"
  8098. }
  8099. ],
  8100. "time": "2023-07-06T09:29:49+00:00"
  8101. },
  8102. {
  8103. "name": "spatie/ignition",
  8104. "version": "1.9.0",
  8105. "source": {
  8106. "type": "git",
  8107. "url": "https://github.com/spatie/ignition.git",
  8108. "reference": "de24ff1e01814d5043bd6eb4ab36a5a852a04973"
  8109. },
  8110. "dist": {
  8111. "type": "zip",
  8112. "url": "https://api.github.com/repos/spatie/ignition/zipball/de24ff1e01814d5043bd6eb4ab36a5a852a04973",
  8113. "reference": "de24ff1e01814d5043bd6eb4ab36a5a852a04973",
  8114. "shasum": ""
  8115. },
  8116. "require": {
  8117. "ext-json": "*",
  8118. "ext-mbstring": "*",
  8119. "php": "^8.0",
  8120. "spatie/backtrace": "^1.5.3",
  8121. "spatie/flare-client-php": "^1.4.0",
  8122. "symfony/console": "^5.4|^6.0",
  8123. "symfony/var-dumper": "^5.4|^6.0"
  8124. },
  8125. "require-dev": {
  8126. "illuminate/cache": "^9.52",
  8127. "mockery/mockery": "^1.4",
  8128. "pestphp/pest": "^1.20",
  8129. "phpstan/extension-installer": "^1.1",
  8130. "phpstan/phpstan-deprecation-rules": "^1.0",
  8131. "phpstan/phpstan-phpunit": "^1.0",
  8132. "psr/simple-cache-implementation": "*",
  8133. "symfony/cache": "^6.0",
  8134. "symfony/process": "^5.4|^6.0",
  8135. "vlucas/phpdotenv": "^5.5"
  8136. },
  8137. "suggest": {
  8138. "openai-php/client": "Require get solutions from OpenAI",
  8139. "simple-cache-implementation": "To cache solutions from OpenAI"
  8140. },
  8141. "type": "library",
  8142. "extra": {
  8143. "branch-alias": {
  8144. "dev-main": "1.5.x-dev"
  8145. }
  8146. },
  8147. "autoload": {
  8148. "psr-4": {
  8149. "Spatie\\Ignition\\": "src"
  8150. }
  8151. },
  8152. "notification-url": "https://packagist.org/downloads/",
  8153. "license": [
  8154. "MIT"
  8155. ],
  8156. "authors": [
  8157. {
  8158. "name": "Spatie",
  8159. "email": "info@spatie.be",
  8160. "role": "Developer"
  8161. }
  8162. ],
  8163. "description": "A beautiful error page for PHP applications.",
  8164. "homepage": "https://flareapp.io/ignition",
  8165. "keywords": [
  8166. "error",
  8167. "flare",
  8168. "laravel",
  8169. "page"
  8170. ],
  8171. "support": {
  8172. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8173. "forum": "https://twitter.com/flareappio",
  8174. "issues": "https://github.com/spatie/ignition/issues",
  8175. "source": "https://github.com/spatie/ignition"
  8176. },
  8177. "funding": [
  8178. {
  8179. "url": "https://github.com/spatie",
  8180. "type": "github"
  8181. }
  8182. ],
  8183. "time": "2023-06-28T13:24:59+00:00"
  8184. },
  8185. {
  8186. "name": "spatie/laravel-ignition",
  8187. "version": "2.2.0",
  8188. "source": {
  8189. "type": "git",
  8190. "url": "https://github.com/spatie/laravel-ignition.git",
  8191. "reference": "dd15fbe82ef5392798941efae93c49395a87d943"
  8192. },
  8193. "dist": {
  8194. "type": "zip",
  8195. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/dd15fbe82ef5392798941efae93c49395a87d943",
  8196. "reference": "dd15fbe82ef5392798941efae93c49395a87d943",
  8197. "shasum": ""
  8198. },
  8199. "require": {
  8200. "ext-curl": "*",
  8201. "ext-json": "*",
  8202. "ext-mbstring": "*",
  8203. "illuminate/support": "^10.0",
  8204. "php": "^8.1",
  8205. "spatie/flare-client-php": "^1.3.5",
  8206. "spatie/ignition": "^1.9",
  8207. "symfony/console": "^6.2.3",
  8208. "symfony/var-dumper": "^6.2.3"
  8209. },
  8210. "require-dev": {
  8211. "livewire/livewire": "^2.11",
  8212. "mockery/mockery": "^1.5.1",
  8213. "openai-php/client": "^0.3.4",
  8214. "orchestra/testbench": "^8.0",
  8215. "pestphp/pest": "^1.22.3",
  8216. "phpstan/extension-installer": "^1.2",
  8217. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  8218. "phpstan/phpstan-phpunit": "^1.3.3",
  8219. "vlucas/phpdotenv": "^5.5"
  8220. },
  8221. "suggest": {
  8222. "openai-php/client": "Require get solutions from OpenAI",
  8223. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  8224. },
  8225. "type": "library",
  8226. "extra": {
  8227. "laravel": {
  8228. "providers": [
  8229. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  8230. ],
  8231. "aliases": {
  8232. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  8233. }
  8234. }
  8235. },
  8236. "autoload": {
  8237. "files": [
  8238. "src/helpers.php"
  8239. ],
  8240. "psr-4": {
  8241. "Spatie\\LaravelIgnition\\": "src"
  8242. }
  8243. },
  8244. "notification-url": "https://packagist.org/downloads/",
  8245. "license": [
  8246. "MIT"
  8247. ],
  8248. "authors": [
  8249. {
  8250. "name": "Spatie",
  8251. "email": "info@spatie.be",
  8252. "role": "Developer"
  8253. }
  8254. ],
  8255. "description": "A beautiful error page for Laravel applications.",
  8256. "homepage": "https://flareapp.io/ignition",
  8257. "keywords": [
  8258. "error",
  8259. "flare",
  8260. "laravel",
  8261. "page"
  8262. ],
  8263. "support": {
  8264. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8265. "forum": "https://twitter.com/flareappio",
  8266. "issues": "https://github.com/spatie/laravel-ignition/issues",
  8267. "source": "https://github.com/spatie/laravel-ignition"
  8268. },
  8269. "funding": [
  8270. {
  8271. "url": "https://github.com/spatie",
  8272. "type": "github"
  8273. }
  8274. ],
  8275. "time": "2023-06-28T13:51:52+00:00"
  8276. },
  8277. {
  8278. "name": "symfony/yaml",
  8279. "version": "v6.3.0",
  8280. "source": {
  8281. "type": "git",
  8282. "url": "https://github.com/symfony/yaml.git",
  8283. "reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927"
  8284. },
  8285. "dist": {
  8286. "type": "zip",
  8287. "url": "https://api.github.com/repos/symfony/yaml/zipball/a9a8337aa641ef2aa39c3e028f9107ec391e5927",
  8288. "reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927",
  8289. "shasum": ""
  8290. },
  8291. "require": {
  8292. "php": ">=8.1",
  8293. "symfony/polyfill-ctype": "^1.8"
  8294. },
  8295. "conflict": {
  8296. "symfony/console": "<5.4"
  8297. },
  8298. "require-dev": {
  8299. "symfony/console": "^5.4|^6.0"
  8300. },
  8301. "bin": [
  8302. "Resources/bin/yaml-lint"
  8303. ],
  8304. "type": "library",
  8305. "autoload": {
  8306. "psr-4": {
  8307. "Symfony\\Component\\Yaml\\": ""
  8308. },
  8309. "exclude-from-classmap": [
  8310. "/Tests/"
  8311. ]
  8312. },
  8313. "notification-url": "https://packagist.org/downloads/",
  8314. "license": [
  8315. "MIT"
  8316. ],
  8317. "authors": [
  8318. {
  8319. "name": "Fabien Potencier",
  8320. "email": "fabien@symfony.com"
  8321. },
  8322. {
  8323. "name": "Symfony Community",
  8324. "homepage": "https://symfony.com/contributors"
  8325. }
  8326. ],
  8327. "description": "Loads and dumps YAML files",
  8328. "homepage": "https://symfony.com",
  8329. "support": {
  8330. "source": "https://github.com/symfony/yaml/tree/v6.3.0"
  8331. },
  8332. "funding": [
  8333. {
  8334. "url": "https://symfony.com/sponsor",
  8335. "type": "custom"
  8336. },
  8337. {
  8338. "url": "https://github.com/fabpot",
  8339. "type": "github"
  8340. },
  8341. {
  8342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8343. "type": "tidelift"
  8344. }
  8345. ],
  8346. "time": "2023-04-28T13:28:14+00:00"
  8347. },
  8348. {
  8349. "name": "theseer/tokenizer",
  8350. "version": "1.2.1",
  8351. "source": {
  8352. "type": "git",
  8353. "url": "https://github.com/theseer/tokenizer.git",
  8354. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  8355. },
  8356. "dist": {
  8357. "type": "zip",
  8358. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  8359. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  8360. "shasum": ""
  8361. },
  8362. "require": {
  8363. "ext-dom": "*",
  8364. "ext-tokenizer": "*",
  8365. "ext-xmlwriter": "*",
  8366. "php": "^7.2 || ^8.0"
  8367. },
  8368. "type": "library",
  8369. "autoload": {
  8370. "classmap": [
  8371. "src/"
  8372. ]
  8373. },
  8374. "notification-url": "https://packagist.org/downloads/",
  8375. "license": [
  8376. "BSD-3-Clause"
  8377. ],
  8378. "authors": [
  8379. {
  8380. "name": "Arne Blankerts",
  8381. "email": "arne@blankerts.de",
  8382. "role": "Developer"
  8383. }
  8384. ],
  8385. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8386. "support": {
  8387. "issues": "https://github.com/theseer/tokenizer/issues",
  8388. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  8389. },
  8390. "funding": [
  8391. {
  8392. "url": "https://github.com/theseer",
  8393. "type": "github"
  8394. }
  8395. ],
  8396. "time": "2021-07-28T10:34:58+00:00"
  8397. }
  8398. ],
  8399. "aliases": [],
  8400. "minimum-stability": "stable",
  8401. "stability-flags": [],
  8402. "prefer-stable": true,
  8403. "prefer-lowest": false,
  8404. "platform": {
  8405. "php": "^8.1"
  8406. },
  8407. "platform-dev": [],
  8408. "plugin-api-version": "2.3.0"
  8409. }