composer.lock 315 KB

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