composer.lock 346 KB

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