composer.lock 303 KB

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