composer.lock 373 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354
  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": "73e33a3fb94ef20d8acfd663e2eea0c5",
  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.382.1",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/aws/aws-sdk-php.git",
  69. "reference": "d506bdaab8e29b18d31a46be4fe4314af5945432"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/d506bdaab8e29b18d31a46be4fe4314af5945432",
  74. "reference": "d506bdaab8e29b18d31a46be4fe4314af5945432",
  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.382.1"
  157. },
  158. "time": "2026-05-26T18:24:13+00:00"
  159. },
  160. {
  161. "name": "beste/clock",
  162. "version": "3.0.0",
  163. "source": {
  164. "type": "git",
  165. "url": "https://github.com/beste/clock.git",
  166. "reference": "7004b55fcd54737b539886244b3a3b2188181974"
  167. },
  168. "dist": {
  169. "type": "zip",
  170. "url": "https://api.github.com/repos/beste/clock/zipball/7004b55fcd54737b539886244b3a3b2188181974",
  171. "reference": "7004b55fcd54737b539886244b3a3b2188181974",
  172. "shasum": ""
  173. },
  174. "require": {
  175. "php": "^8.0",
  176. "psr/clock": "^1.0"
  177. },
  178. "provide": {
  179. "psr/clock-implementation": "1.0"
  180. },
  181. "require-dev": {
  182. "phpstan/extension-installer": "^1.2",
  183. "phpstan/phpstan": "^1.9.1",
  184. "phpstan/phpstan-phpunit": "^1.2.2",
  185. "phpstan/phpstan-strict-rules": "^1.4.4",
  186. "phpunit/phpunit": "^9.5.26",
  187. "psalm/plugin-phpunit": "^0.16.1",
  188. "vimeo/psalm": "^4.29"
  189. },
  190. "type": "library",
  191. "autoload": {
  192. "files": [
  193. "src/Clock.php"
  194. ],
  195. "psr-4": {
  196. "Beste\\Clock\\": "src/Clock"
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "MIT"
  202. ],
  203. "authors": [
  204. {
  205. "name": "Jérôme Gamez",
  206. "email": "jerome@gamez.name"
  207. }
  208. ],
  209. "description": "A collection of Clock implementations",
  210. "keywords": [
  211. "clock",
  212. "clock-interface",
  213. "psr-20",
  214. "psr20"
  215. ],
  216. "support": {
  217. "issues": "https://github.com/beste/clock/issues",
  218. "source": "https://github.com/beste/clock/tree/3.0.0"
  219. },
  220. "funding": [
  221. {
  222. "url": "https://github.com/jeromegamez",
  223. "type": "github"
  224. }
  225. ],
  226. "time": "2022-11-26T18:03:05+00:00"
  227. },
  228. {
  229. "name": "beste/in-memory-cache",
  230. "version": "1.5.0",
  231. "source": {
  232. "type": "git",
  233. "url": "https://github.com/beste/in-memory-cache-php.git",
  234. "reference": "d6991967b05e820cb1bcd2d31ca11ea8b1ca3f77"
  235. },
  236. "dist": {
  237. "type": "zip",
  238. "url": "https://api.github.com/repos/beste/in-memory-cache-php/zipball/d6991967b05e820cb1bcd2d31ca11ea8b1ca3f77",
  239. "reference": "d6991967b05e820cb1bcd2d31ca11ea8b1ca3f77",
  240. "shasum": ""
  241. },
  242. "require": {
  243. "php": "~8.3.0 || ~8.4.0 || ~8.5.0",
  244. "psr/cache": "^2.0 || ^3.0",
  245. "psr/clock": "^1.0"
  246. },
  247. "provide": {
  248. "psr/cache-implementation": "2.0 || 3.0"
  249. },
  250. "require-dev": {
  251. "beste/clock": "^3.0",
  252. "friendsofphp/php-cs-fixer": "^3.95.1",
  253. "phpstan/extension-installer": "^1.4.3",
  254. "phpstan/phpstan": "^2.1.51",
  255. "phpstan/phpstan-deprecation-rules": "^2.0.4",
  256. "phpstan/phpstan-phpunit": "^2.0.16",
  257. "phpstan/phpstan-strict-rules": "^2.0.10",
  258. "phpunit/phpunit": "^12.5.23",
  259. "symfony/var-dumper": "^7.4.8 || ^v8.0.8"
  260. },
  261. "suggest": {
  262. "psr/clock-implementation": "Allows injecting a Clock, for example a frozen clock for testing"
  263. },
  264. "type": "library",
  265. "autoload": {
  266. "psr-4": {
  267. "Beste\\Cache\\": "src"
  268. }
  269. },
  270. "notification-url": "https://packagist.org/downloads/",
  271. "license": [
  272. "MIT"
  273. ],
  274. "authors": [
  275. {
  276. "name": "Jérôme Gamez",
  277. "email": "jerome@gamez.name"
  278. }
  279. ],
  280. "description": "A PSR-6 In-Memory cache that can be used as a fallback implementation and/or in tests.",
  281. "keywords": [
  282. "beste",
  283. "cache",
  284. "psr-6"
  285. ],
  286. "support": {
  287. "issues": "https://github.com/beste/in-memory-cache-php/issues",
  288. "source": "https://github.com/beste/in-memory-cache-php/tree/1.5.0"
  289. },
  290. "time": "2026-04-27T12:29:41+00:00"
  291. },
  292. {
  293. "name": "beste/json",
  294. "version": "1.7.0",
  295. "source": {
  296. "type": "git",
  297. "url": "https://github.com/beste/json.git",
  298. "reference": "976525f1ce2323a4e044364269d60b402603e216"
  299. },
  300. "dist": {
  301. "type": "zip",
  302. "url": "https://api.github.com/repos/beste/json/zipball/976525f1ce2323a4e044364269d60b402603e216",
  303. "reference": "976525f1ce2323a4e044364269d60b402603e216",
  304. "shasum": ""
  305. },
  306. "require": {
  307. "ext-json": "*",
  308. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  309. },
  310. "require-dev": {
  311. "phpstan/extension-installer": "^1.3",
  312. "phpstan/phpstan": "^2.0.4",
  313. "phpstan/phpstan-phpunit": "^2.0.2",
  314. "phpstan/phpstan-strict-rules": "^2.0.1",
  315. "phpunit/phpunit": "^10.4.2",
  316. "rector/rector": "^2.0.3"
  317. },
  318. "type": "library",
  319. "autoload": {
  320. "files": [
  321. "src/Json.php"
  322. ]
  323. },
  324. "notification-url": "https://packagist.org/downloads/",
  325. "license": [
  326. "MIT"
  327. ],
  328. "authors": [
  329. {
  330. "name": "Jérôme Gamez",
  331. "email": "jerome@gamez.name"
  332. }
  333. ],
  334. "description": "A simple JSON helper to decode and encode JSON",
  335. "keywords": [
  336. "helper",
  337. "json"
  338. ],
  339. "support": {
  340. "issues": "https://github.com/beste/json/issues",
  341. "source": "https://github.com/beste/json/tree/1.7.0"
  342. },
  343. "funding": [
  344. {
  345. "url": "https://github.com/jeromegamez",
  346. "type": "github"
  347. },
  348. {
  349. "url": "https://tidelift.com/funding/github/packagist/beste/json",
  350. "type": "tidelift"
  351. }
  352. ],
  353. "time": "2025-09-11T23:36:19+00:00"
  354. },
  355. {
  356. "name": "brick/math",
  357. "version": "0.13.1",
  358. "source": {
  359. "type": "git",
  360. "url": "https://github.com/brick/math.git",
  361. "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04"
  362. },
  363. "dist": {
  364. "type": "zip",
  365. "url": "https://api.github.com/repos/brick/math/zipball/fc7ed316430118cc7836bf45faff18d5dfc8de04",
  366. "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04",
  367. "shasum": ""
  368. },
  369. "require": {
  370. "php": "^8.1"
  371. },
  372. "require-dev": {
  373. "php-coveralls/php-coveralls": "^2.2",
  374. "phpunit/phpunit": "^10.1",
  375. "vimeo/psalm": "6.8.8"
  376. },
  377. "type": "library",
  378. "autoload": {
  379. "psr-4": {
  380. "Brick\\Math\\": "src/"
  381. }
  382. },
  383. "notification-url": "https://packagist.org/downloads/",
  384. "license": [
  385. "MIT"
  386. ],
  387. "description": "Arbitrary-precision arithmetic library",
  388. "keywords": [
  389. "Arbitrary-precision",
  390. "BigInteger",
  391. "BigRational",
  392. "arithmetic",
  393. "bigdecimal",
  394. "bignum",
  395. "bignumber",
  396. "brick",
  397. "decimal",
  398. "integer",
  399. "math",
  400. "mathematics",
  401. "rational"
  402. ],
  403. "support": {
  404. "issues": "https://github.com/brick/math/issues",
  405. "source": "https://github.com/brick/math/tree/0.13.1"
  406. },
  407. "funding": [
  408. {
  409. "url": "https://github.com/BenMorel",
  410. "type": "github"
  411. }
  412. ],
  413. "time": "2025-03-29T13:50:30+00:00"
  414. },
  415. {
  416. "name": "carbonphp/carbon-doctrine-types",
  417. "version": "3.2.0",
  418. "source": {
  419. "type": "git",
  420. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  421. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  422. },
  423. "dist": {
  424. "type": "zip",
  425. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  426. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  427. "shasum": ""
  428. },
  429. "require": {
  430. "php": "^8.1"
  431. },
  432. "conflict": {
  433. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  434. },
  435. "require-dev": {
  436. "doctrine/dbal": "^4.0.0",
  437. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  438. "phpunit/phpunit": "^10.3"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "KyleKatarn",
  453. "email": "kylekatarnls@gmail.com"
  454. }
  455. ],
  456. "description": "Types to use Carbon in Doctrine",
  457. "keywords": [
  458. "carbon",
  459. "date",
  460. "datetime",
  461. "doctrine",
  462. "time"
  463. ],
  464. "support": {
  465. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  466. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  467. },
  468. "funding": [
  469. {
  470. "url": "https://github.com/kylekatarnls",
  471. "type": "github"
  472. },
  473. {
  474. "url": "https://opencollective.com/Carbon",
  475. "type": "open_collective"
  476. },
  477. {
  478. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  479. "type": "tidelift"
  480. }
  481. ],
  482. "time": "2024-02-09T16:56:22+00:00"
  483. },
  484. {
  485. "name": "cuyz/valinor",
  486. "version": "2.4.0",
  487. "source": {
  488. "type": "git",
  489. "url": "https://github.com/CuyZ/Valinor.git",
  490. "reference": "3b0afa3a287ed7f3a69aab223726cf1139454c34"
  491. },
  492. "dist": {
  493. "type": "zip",
  494. "url": "https://api.github.com/repos/CuyZ/Valinor/zipball/3b0afa3a287ed7f3a69aab223726cf1139454c34",
  495. "reference": "3b0afa3a287ed7f3a69aab223726cf1139454c34",
  496. "shasum": ""
  497. },
  498. "require": {
  499. "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  500. },
  501. "conflict": {
  502. "phpstan/phpstan": "<1.0 || >= 3.0",
  503. "vimeo/psalm": "<5.0 || >=7.0"
  504. },
  505. "require-dev": {
  506. "friendsofphp/php-cs-fixer": "^3.91",
  507. "infection/infection": "^0.32",
  508. "marcocesarato/php-conventional-changelog": "^1.12",
  509. "mikey179/vfsstream": "^1.6.10",
  510. "phpbench/phpbench": "^1.3",
  511. "phpstan/phpstan": "^2.0",
  512. "phpstan/phpstan-phpunit": "^2.0",
  513. "phpstan/phpstan-strict-rules": "^2.0",
  514. "phpunit/phpunit": "^11.5",
  515. "psr/http-message": "^2.0",
  516. "rector/rector": "^2.0",
  517. "vimeo/psalm": "^6.0"
  518. },
  519. "type": "library",
  520. "autoload": {
  521. "psr-4": {
  522. "CuyZ\\Valinor\\": "src"
  523. }
  524. },
  525. "notification-url": "https://packagist.org/downloads/",
  526. "license": [
  527. "MIT"
  528. ],
  529. "authors": [
  530. {
  531. "name": "Romain Canon",
  532. "email": "romain.hydrocanon@gmail.com",
  533. "homepage": "https://github.com/romm"
  534. }
  535. ],
  536. "description": "Dependency free PHP library that helps to map any input into a strongly-typed structure.",
  537. "homepage": "https://github.com/CuyZ/Valinor",
  538. "keywords": [
  539. "array",
  540. "conversion",
  541. "hydrator",
  542. "json",
  543. "mapper",
  544. "mapping",
  545. "object",
  546. "tree",
  547. "yaml"
  548. ],
  549. "support": {
  550. "issues": "https://github.com/CuyZ/Valinor/issues",
  551. "source": "https://github.com/CuyZ/Valinor/tree/2.4.0"
  552. },
  553. "funding": [
  554. {
  555. "url": "https://github.com/romm",
  556. "type": "github"
  557. }
  558. ],
  559. "time": "2026-03-23T17:38:05+00:00"
  560. },
  561. {
  562. "name": "dflydev/dot-access-data",
  563. "version": "v3.0.3",
  564. "source": {
  565. "type": "git",
  566. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  567. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  568. },
  569. "dist": {
  570. "type": "zip",
  571. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  572. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  573. "shasum": ""
  574. },
  575. "require": {
  576. "php": "^7.1 || ^8.0"
  577. },
  578. "require-dev": {
  579. "phpstan/phpstan": "^0.12.42",
  580. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  581. "scrutinizer/ocular": "1.6.0",
  582. "squizlabs/php_codesniffer": "^3.5",
  583. "vimeo/psalm": "^4.0.0"
  584. },
  585. "type": "library",
  586. "extra": {
  587. "branch-alias": {
  588. "dev-main": "3.x-dev"
  589. }
  590. },
  591. "autoload": {
  592. "psr-4": {
  593. "Dflydev\\DotAccessData\\": "src/"
  594. }
  595. },
  596. "notification-url": "https://packagist.org/downloads/",
  597. "license": [
  598. "MIT"
  599. ],
  600. "authors": [
  601. {
  602. "name": "Dragonfly Development Inc.",
  603. "email": "info@dflydev.com",
  604. "homepage": "http://dflydev.com"
  605. },
  606. {
  607. "name": "Beau Simensen",
  608. "email": "beau@dflydev.com",
  609. "homepage": "http://beausimensen.com"
  610. },
  611. {
  612. "name": "Carlos Frutos",
  613. "email": "carlos@kiwing.it",
  614. "homepage": "https://github.com/cfrutos"
  615. },
  616. {
  617. "name": "Colin O'Dell",
  618. "email": "colinodell@gmail.com",
  619. "homepage": "https://www.colinodell.com"
  620. }
  621. ],
  622. "description": "Given a deep data structure, access data by dot notation.",
  623. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  624. "keywords": [
  625. "access",
  626. "data",
  627. "dot",
  628. "notation"
  629. ],
  630. "support": {
  631. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  632. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  633. },
  634. "time": "2024-07-08T12:26:09+00:00"
  635. },
  636. {
  637. "name": "doctrine/inflector",
  638. "version": "2.0.10",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/doctrine/inflector.git",
  642. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  647. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.2 || ^8.0"
  652. },
  653. "require-dev": {
  654. "doctrine/coding-standard": "^11.0",
  655. "phpstan/phpstan": "^1.8",
  656. "phpstan/phpstan-phpunit": "^1.1",
  657. "phpstan/phpstan-strict-rules": "^1.3",
  658. "phpunit/phpunit": "^8.5 || ^9.5",
  659. "vimeo/psalm": "^4.25 || ^5.4"
  660. },
  661. "type": "library",
  662. "autoload": {
  663. "psr-4": {
  664. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  665. }
  666. },
  667. "notification-url": "https://packagist.org/downloads/",
  668. "license": [
  669. "MIT"
  670. ],
  671. "authors": [
  672. {
  673. "name": "Guilherme Blanco",
  674. "email": "guilhermeblanco@gmail.com"
  675. },
  676. {
  677. "name": "Roman Borschel",
  678. "email": "roman@code-factory.org"
  679. },
  680. {
  681. "name": "Benjamin Eberlei",
  682. "email": "kontakt@beberlei.de"
  683. },
  684. {
  685. "name": "Jonathan Wage",
  686. "email": "jonwage@gmail.com"
  687. },
  688. {
  689. "name": "Johannes Schmitt",
  690. "email": "schmittjoh@gmail.com"
  691. }
  692. ],
  693. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  694. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  695. "keywords": [
  696. "inflection",
  697. "inflector",
  698. "lowercase",
  699. "manipulation",
  700. "php",
  701. "plural",
  702. "singular",
  703. "strings",
  704. "uppercase",
  705. "words"
  706. ],
  707. "support": {
  708. "issues": "https://github.com/doctrine/inflector/issues",
  709. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  710. },
  711. "funding": [
  712. {
  713. "url": "https://www.doctrine-project.org/sponsorship.html",
  714. "type": "custom"
  715. },
  716. {
  717. "url": "https://www.patreon.com/phpdoctrine",
  718. "type": "patreon"
  719. },
  720. {
  721. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  722. "type": "tidelift"
  723. }
  724. ],
  725. "time": "2024-02-18T20:23:39+00:00"
  726. },
  727. {
  728. "name": "doctrine/lexer",
  729. "version": "3.0.1",
  730. "source": {
  731. "type": "git",
  732. "url": "https://github.com/doctrine/lexer.git",
  733. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  734. },
  735. "dist": {
  736. "type": "zip",
  737. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  738. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  739. "shasum": ""
  740. },
  741. "require": {
  742. "php": "^8.1"
  743. },
  744. "require-dev": {
  745. "doctrine/coding-standard": "^12",
  746. "phpstan/phpstan": "^1.10",
  747. "phpunit/phpunit": "^10.5",
  748. "psalm/plugin-phpunit": "^0.18.3",
  749. "vimeo/psalm": "^5.21"
  750. },
  751. "type": "library",
  752. "autoload": {
  753. "psr-4": {
  754. "Doctrine\\Common\\Lexer\\": "src"
  755. }
  756. },
  757. "notification-url": "https://packagist.org/downloads/",
  758. "license": [
  759. "MIT"
  760. ],
  761. "authors": [
  762. {
  763. "name": "Guilherme Blanco",
  764. "email": "guilhermeblanco@gmail.com"
  765. },
  766. {
  767. "name": "Roman Borschel",
  768. "email": "roman@code-factory.org"
  769. },
  770. {
  771. "name": "Johannes Schmitt",
  772. "email": "schmittjoh@gmail.com"
  773. }
  774. ],
  775. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  776. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  777. "keywords": [
  778. "annotations",
  779. "docblock",
  780. "lexer",
  781. "parser",
  782. "php"
  783. ],
  784. "support": {
  785. "issues": "https://github.com/doctrine/lexer/issues",
  786. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  787. },
  788. "funding": [
  789. {
  790. "url": "https://www.doctrine-project.org/sponsorship.html",
  791. "type": "custom"
  792. },
  793. {
  794. "url": "https://www.patreon.com/phpdoctrine",
  795. "type": "patreon"
  796. },
  797. {
  798. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  799. "type": "tidelift"
  800. }
  801. ],
  802. "time": "2024-02-05T11:56:58+00:00"
  803. },
  804. {
  805. "name": "dragonmantank/cron-expression",
  806. "version": "v3.4.0",
  807. "source": {
  808. "type": "git",
  809. "url": "https://github.com/dragonmantank/cron-expression.git",
  810. "reference": "8c784d071debd117328803d86b2097615b457500"
  811. },
  812. "dist": {
  813. "type": "zip",
  814. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  815. "reference": "8c784d071debd117328803d86b2097615b457500",
  816. "shasum": ""
  817. },
  818. "require": {
  819. "php": "^7.2|^8.0",
  820. "webmozart/assert": "^1.0"
  821. },
  822. "replace": {
  823. "mtdowling/cron-expression": "^1.0"
  824. },
  825. "require-dev": {
  826. "phpstan/extension-installer": "^1.0",
  827. "phpstan/phpstan": "^1.0",
  828. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  829. },
  830. "type": "library",
  831. "extra": {
  832. "branch-alias": {
  833. "dev-master": "3.x-dev"
  834. }
  835. },
  836. "autoload": {
  837. "psr-4": {
  838. "Cron\\": "src/Cron/"
  839. }
  840. },
  841. "notification-url": "https://packagist.org/downloads/",
  842. "license": [
  843. "MIT"
  844. ],
  845. "authors": [
  846. {
  847. "name": "Chris Tankersley",
  848. "email": "chris@ctankersley.com",
  849. "homepage": "https://github.com/dragonmantank"
  850. }
  851. ],
  852. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  853. "keywords": [
  854. "cron",
  855. "schedule"
  856. ],
  857. "support": {
  858. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  859. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  860. },
  861. "funding": [
  862. {
  863. "url": "https://github.com/dragonmantank",
  864. "type": "github"
  865. }
  866. ],
  867. "time": "2024-10-09T13:47:03+00:00"
  868. },
  869. {
  870. "name": "egulias/email-validator",
  871. "version": "4.0.4",
  872. "source": {
  873. "type": "git",
  874. "url": "https://github.com/egulias/EmailValidator.git",
  875. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  876. },
  877. "dist": {
  878. "type": "zip",
  879. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  880. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  881. "shasum": ""
  882. },
  883. "require": {
  884. "doctrine/lexer": "^2.0 || ^3.0",
  885. "php": ">=8.1",
  886. "symfony/polyfill-intl-idn": "^1.26"
  887. },
  888. "require-dev": {
  889. "phpunit/phpunit": "^10.2",
  890. "vimeo/psalm": "^5.12"
  891. },
  892. "suggest": {
  893. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  894. },
  895. "type": "library",
  896. "extra": {
  897. "branch-alias": {
  898. "dev-master": "4.0.x-dev"
  899. }
  900. },
  901. "autoload": {
  902. "psr-4": {
  903. "Egulias\\EmailValidator\\": "src"
  904. }
  905. },
  906. "notification-url": "https://packagist.org/downloads/",
  907. "license": [
  908. "MIT"
  909. ],
  910. "authors": [
  911. {
  912. "name": "Eduardo Gulias Davis"
  913. }
  914. ],
  915. "description": "A library for validating emails against several RFCs",
  916. "homepage": "https://github.com/egulias/EmailValidator",
  917. "keywords": [
  918. "email",
  919. "emailvalidation",
  920. "emailvalidator",
  921. "validation",
  922. "validator"
  923. ],
  924. "support": {
  925. "issues": "https://github.com/egulias/EmailValidator/issues",
  926. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  927. },
  928. "funding": [
  929. {
  930. "url": "https://github.com/egulias",
  931. "type": "github"
  932. }
  933. ],
  934. "time": "2025-03-06T22:45:56+00:00"
  935. },
  936. {
  937. "name": "fig/http-message-util",
  938. "version": "1.1.5",
  939. "source": {
  940. "type": "git",
  941. "url": "https://github.com/php-fig/http-message-util.git",
  942. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  943. },
  944. "dist": {
  945. "type": "zip",
  946. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  947. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  948. "shasum": ""
  949. },
  950. "require": {
  951. "php": "^5.3 || ^7.0 || ^8.0"
  952. },
  953. "suggest": {
  954. "psr/http-message": "The package containing the PSR-7 interfaces"
  955. },
  956. "type": "library",
  957. "extra": {
  958. "branch-alias": {
  959. "dev-master": "1.1.x-dev"
  960. }
  961. },
  962. "autoload": {
  963. "psr-4": {
  964. "Fig\\Http\\Message\\": "src/"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "MIT"
  970. ],
  971. "authors": [
  972. {
  973. "name": "PHP-FIG",
  974. "homepage": "https://www.php-fig.org/"
  975. }
  976. ],
  977. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  978. "keywords": [
  979. "http",
  980. "http-message",
  981. "psr",
  982. "psr-7",
  983. "request",
  984. "response"
  985. ],
  986. "support": {
  987. "issues": "https://github.com/php-fig/http-message-util/issues",
  988. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  989. },
  990. "time": "2020-11-24T22:02:12+00:00"
  991. },
  992. {
  993. "name": "firebase/php-jwt",
  994. "version": "v7.0.5",
  995. "source": {
  996. "type": "git",
  997. "url": "https://github.com/googleapis/php-jwt.git",
  998. "reference": "47ad26bab5e7c70ae8a6f08ed25ff83631121380"
  999. },
  1000. "dist": {
  1001. "type": "zip",
  1002. "url": "https://api.github.com/repos/googleapis/php-jwt/zipball/47ad26bab5e7c70ae8a6f08ed25ff83631121380",
  1003. "reference": "47ad26bab5e7c70ae8a6f08ed25ff83631121380",
  1004. "shasum": ""
  1005. },
  1006. "require": {
  1007. "php": "^8.0"
  1008. },
  1009. "require-dev": {
  1010. "guzzlehttp/guzzle": "^7.4",
  1011. "phpfastcache/phpfastcache": "^9.2",
  1012. "phpspec/prophecy-phpunit": "^2.0",
  1013. "phpunit/phpunit": "^9.5",
  1014. "psr/cache": "^2.0||^3.0",
  1015. "psr/http-client": "^1.0",
  1016. "psr/http-factory": "^1.0"
  1017. },
  1018. "suggest": {
  1019. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1020. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1021. },
  1022. "type": "library",
  1023. "autoload": {
  1024. "psr-4": {
  1025. "Firebase\\JWT\\": "src"
  1026. }
  1027. },
  1028. "notification-url": "https://packagist.org/downloads/",
  1029. "license": [
  1030. "BSD-3-Clause"
  1031. ],
  1032. "authors": [
  1033. {
  1034. "name": "Neuman Vong",
  1035. "email": "neuman+pear@twilio.com",
  1036. "role": "Developer"
  1037. },
  1038. {
  1039. "name": "Anant Narayanan",
  1040. "email": "anant@php.net",
  1041. "role": "Developer"
  1042. }
  1043. ],
  1044. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1045. "homepage": "https://github.com/firebase/php-jwt",
  1046. "keywords": [
  1047. "jwt",
  1048. "php"
  1049. ],
  1050. "support": {
  1051. "issues": "https://github.com/googleapis/php-jwt/issues",
  1052. "source": "https://github.com/googleapis/php-jwt/tree/v7.0.5"
  1053. },
  1054. "time": "2026-04-01T20:38:03+00:00"
  1055. },
  1056. {
  1057. "name": "fruitcake/php-cors",
  1058. "version": "v1.3.0",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/fruitcake/php-cors.git",
  1062. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  1067. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "php": "^7.4|^8.0",
  1072. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  1073. },
  1074. "require-dev": {
  1075. "phpstan/phpstan": "^1.4",
  1076. "phpunit/phpunit": "^9",
  1077. "squizlabs/php_codesniffer": "^3.5"
  1078. },
  1079. "type": "library",
  1080. "extra": {
  1081. "branch-alias": {
  1082. "dev-master": "1.2-dev"
  1083. }
  1084. },
  1085. "autoload": {
  1086. "psr-4": {
  1087. "Fruitcake\\Cors\\": "src/"
  1088. }
  1089. },
  1090. "notification-url": "https://packagist.org/downloads/",
  1091. "license": [
  1092. "MIT"
  1093. ],
  1094. "authors": [
  1095. {
  1096. "name": "Fruitcake",
  1097. "homepage": "https://fruitcake.nl"
  1098. },
  1099. {
  1100. "name": "Barryvdh",
  1101. "email": "barryvdh@gmail.com"
  1102. }
  1103. ],
  1104. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1105. "homepage": "https://github.com/fruitcake/php-cors",
  1106. "keywords": [
  1107. "cors",
  1108. "laravel",
  1109. "symfony"
  1110. ],
  1111. "support": {
  1112. "issues": "https://github.com/fruitcake/php-cors/issues",
  1113. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  1114. },
  1115. "funding": [
  1116. {
  1117. "url": "https://fruitcake.nl",
  1118. "type": "custom"
  1119. },
  1120. {
  1121. "url": "https://github.com/barryvdh",
  1122. "type": "github"
  1123. }
  1124. ],
  1125. "time": "2023-10-12T05:21:21+00:00"
  1126. },
  1127. {
  1128. "name": "google/auth",
  1129. "version": "v1.50.1",
  1130. "source": {
  1131. "type": "git",
  1132. "url": "https://github.com/googleapis/google-auth-library-php.git",
  1133. "reference": "870c17ee3a1d73338d39a9ffa77a700ba77f5a83"
  1134. },
  1135. "dist": {
  1136. "type": "zip",
  1137. "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/870c17ee3a1d73338d39a9ffa77a700ba77f5a83",
  1138. "reference": "870c17ee3a1d73338d39a9ffa77a700ba77f5a83",
  1139. "shasum": ""
  1140. },
  1141. "require": {
  1142. "firebase/php-jwt": "^6.0||^7.0",
  1143. "guzzlehttp/guzzle": "^7.4.5",
  1144. "guzzlehttp/psr7": "^2.4.5",
  1145. "php": "^8.1",
  1146. "psr/cache": "^2.0||^3.0",
  1147. "psr/http-message": "^1.1||^2.0",
  1148. "psr/log": "^2.0||^3.0"
  1149. },
  1150. "require-dev": {
  1151. "guzzlehttp/promises": "^2.0",
  1152. "kelvinmo/simplejwt": "^1.1.0",
  1153. "phpseclib/phpseclib": "^3.0.35",
  1154. "phpspec/prophecy-phpunit": "^2.1",
  1155. "phpunit/phpunit": "^9.6",
  1156. "sebastian/comparator": ">=1.2.3",
  1157. "squizlabs/php_codesniffer": "^4.0",
  1158. "symfony/filesystem": "^6.3||^7.3",
  1159. "symfony/process": "^6.0||^7.0",
  1160. "webmozart/assert": "^1.11||^2.0"
  1161. },
  1162. "suggest": {
  1163. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  1164. },
  1165. "type": "library",
  1166. "autoload": {
  1167. "psr-4": {
  1168. "Google\\Auth\\": "src"
  1169. }
  1170. },
  1171. "notification-url": "https://packagist.org/downloads/",
  1172. "license": [
  1173. "Apache-2.0"
  1174. ],
  1175. "description": "Google Auth Library for PHP",
  1176. "homepage": "https://github.com/google/google-auth-library-php",
  1177. "keywords": [
  1178. "Authentication",
  1179. "google",
  1180. "oauth2"
  1181. ],
  1182. "support": {
  1183. "docs": "https://cloud.google.com/php/docs/reference/auth/latest",
  1184. "issues": "https://github.com/googleapis/google-auth-library-php/issues",
  1185. "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.50.1"
  1186. },
  1187. "time": "2026-03-18T20:03:29+00:00"
  1188. },
  1189. {
  1190. "name": "google/cloud-core",
  1191. "version": "v1.72.1",
  1192. "source": {
  1193. "type": "git",
  1194. "url": "https://github.com/googleapis/google-cloud-php-core.git",
  1195. "reference": "aa7869016cb9e87e95071bb92579fd22146ababb"
  1196. },
  1197. "dist": {
  1198. "type": "zip",
  1199. "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/aa7869016cb9e87e95071bb92579fd22146ababb",
  1200. "reference": "aa7869016cb9e87e95071bb92579fd22146ababb",
  1201. "shasum": ""
  1202. },
  1203. "require": {
  1204. "google/auth": "^1.34",
  1205. "google/gax": "^1.38.0",
  1206. "guzzlehttp/guzzle": "^6.5.8||^7.4.4",
  1207. "guzzlehttp/promises": "^1.4||^2.0",
  1208. "guzzlehttp/psr7": "^2.6",
  1209. "monolog/monolog": "^2.9||^3.0",
  1210. "php": "^8.1",
  1211. "psr/http-message": "^1.0||^2.0",
  1212. "rize/uri-template": "~0.3||~0.4"
  1213. },
  1214. "require-dev": {
  1215. "erusev/parsedown": "^1.6",
  1216. "google/cloud-common-protos": "~0.5||^1.0",
  1217. "nikic/php-parser": "^5.6",
  1218. "opis/closure": "^3.7|^4.0",
  1219. "phpdocumentor/reflection": "^6.0",
  1220. "phpdocumentor/reflection-docblock": "^5.3.3||^6.0",
  1221. "phpspec/prophecy-phpunit": "^2.0",
  1222. "phpunit/phpunit": "^9.0",
  1223. "squizlabs/php_codesniffer": "2.*"
  1224. },
  1225. "suggest": {
  1226. "opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
  1227. "symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: 3.3.x-dev#1ba6ac9"
  1228. },
  1229. "bin": [
  1230. "bin/google-cloud-batch"
  1231. ],
  1232. "type": "library",
  1233. "extra": {
  1234. "component": {
  1235. "id": "cloud-core",
  1236. "path": "Core",
  1237. "entry": "src/ServiceBuilder.php",
  1238. "target": "googleapis/google-cloud-php-core.git"
  1239. }
  1240. },
  1241. "autoload": {
  1242. "psr-4": {
  1243. "Google\\Cloud\\Core\\": "src"
  1244. }
  1245. },
  1246. "notification-url": "https://packagist.org/downloads/",
  1247. "license": [
  1248. "Apache-2.0"
  1249. ],
  1250. "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.",
  1251. "support": {
  1252. "source": "https://github.com/googleapis/google-cloud-php-core/tree/v1.72.1"
  1253. },
  1254. "time": "2026-05-12T19:06:48+00:00"
  1255. },
  1256. {
  1257. "name": "google/cloud-storage",
  1258. "version": "v1.51.0",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/googleapis/google-cloud-php-storage.git",
  1262. "reference": "9ba3d5e8cbd53bf67fab644b5be310e719533def"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/9ba3d5e8cbd53bf67fab644b5be310e719533def",
  1267. "reference": "9ba3d5e8cbd53bf67fab644b5be310e719533def",
  1268. "shasum": ""
  1269. },
  1270. "require": {
  1271. "google/cloud-core": "^1.72.0",
  1272. "php": "^8.1",
  1273. "ramsey/uuid": "^4.2.3"
  1274. },
  1275. "require-dev": {
  1276. "erusev/parsedown": "^1.6",
  1277. "google/cloud-pubsub": "^2.0",
  1278. "nikic/php-parser": "^5",
  1279. "phpdocumentor/reflection": "^6.0",
  1280. "phpdocumentor/reflection-docblock": "^5.3.3",
  1281. "phpseclib/phpseclib": "^2.0||^3.0",
  1282. "phpspec/prophecy-phpunit": "^2.0",
  1283. "phpunit/phpunit": "^9.0",
  1284. "squizlabs/php_codesniffer": "2.*"
  1285. },
  1286. "suggest": {
  1287. "google/cloud-pubsub": "May be used to register a topic to receive bucket notifications.",
  1288. "phpseclib/phpseclib": "May be used in place of OpenSSL for creating signed Cloud Storage URLs. Please require version ^2."
  1289. },
  1290. "type": "library",
  1291. "extra": {
  1292. "component": {
  1293. "id": "cloud-storage",
  1294. "path": "Storage",
  1295. "entry": "src/StorageClient.php",
  1296. "target": "googleapis/google-cloud-php-storage.git"
  1297. }
  1298. },
  1299. "autoload": {
  1300. "psr-4": {
  1301. "Google\\Cloud\\Storage\\": "src"
  1302. }
  1303. },
  1304. "notification-url": "https://packagist.org/downloads/",
  1305. "license": [
  1306. "Apache-2.0"
  1307. ],
  1308. "description": "Cloud Storage Client for PHP",
  1309. "support": {
  1310. "source": "https://github.com/googleapis/google-cloud-php-storage/tree/v1.51.0"
  1311. },
  1312. "time": "2026-04-09T21:01:46+00:00"
  1313. },
  1314. {
  1315. "name": "google/common-protos",
  1316. "version": "4.14.0",
  1317. "source": {
  1318. "type": "git",
  1319. "url": "https://github.com/googleapis/common-protos-php.git",
  1320. "reference": "f8e72f7b581702e7c3ee0776144f4974da172428"
  1321. },
  1322. "dist": {
  1323. "type": "zip",
  1324. "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/f8e72f7b581702e7c3ee0776144f4974da172428",
  1325. "reference": "f8e72f7b581702e7c3ee0776144f4974da172428",
  1326. "shasum": ""
  1327. },
  1328. "require": {
  1329. "google/protobuf": "^4.31||^5.0",
  1330. "php": "^8.1"
  1331. },
  1332. "require-dev": {
  1333. "phpunit/phpunit": "^9.6"
  1334. },
  1335. "type": "library",
  1336. "extra": {
  1337. "component": {
  1338. "id": "common-protos",
  1339. "path": "CommonProtos",
  1340. "entry": "README.md",
  1341. "target": "googleapis/common-protos-php.git"
  1342. }
  1343. },
  1344. "autoload": {
  1345. "psr-4": {
  1346. "Google\\Api\\": "src/Api",
  1347. "Google\\Iam\\": "src/Iam",
  1348. "Google\\Rpc\\": "src/Rpc",
  1349. "Google\\Type\\": "src/Type",
  1350. "Google\\Cloud\\": "src/Cloud",
  1351. "GPBMetadata\\Google\\Api\\": "metadata/Api",
  1352. "GPBMetadata\\Google\\Iam\\": "metadata/Iam",
  1353. "GPBMetadata\\Google\\Rpc\\": "metadata/Rpc",
  1354. "GPBMetadata\\Google\\Type\\": "metadata/Type",
  1355. "GPBMetadata\\Google\\Cloud\\": "metadata/Cloud",
  1356. "GPBMetadata\\Google\\Logging\\": "metadata/Logging"
  1357. }
  1358. },
  1359. "notification-url": "https://packagist.org/downloads/",
  1360. "license": [
  1361. "Apache-2.0"
  1362. ],
  1363. "description": "Google API Common Protos for PHP",
  1364. "homepage": "https://github.com/googleapis/common-protos-php",
  1365. "keywords": [
  1366. "google"
  1367. ],
  1368. "support": {
  1369. "source": "https://github.com/googleapis/common-protos-php/tree/v4.14.0"
  1370. },
  1371. "time": "2026-04-09T21:01:46+00:00"
  1372. },
  1373. {
  1374. "name": "google/gax",
  1375. "version": "v1.42.4",
  1376. "source": {
  1377. "type": "git",
  1378. "url": "https://github.com/googleapis/gax-php.git",
  1379. "reference": "9b1f5fb68960a9020e34fdb88583bcd43779e4fd"
  1380. },
  1381. "dist": {
  1382. "type": "zip",
  1383. "url": "https://api.github.com/repos/googleapis/gax-php/zipball/9b1f5fb68960a9020e34fdb88583bcd43779e4fd",
  1384. "reference": "9b1f5fb68960a9020e34fdb88583bcd43779e4fd",
  1385. "shasum": ""
  1386. },
  1387. "require": {
  1388. "google/auth": "^1.49",
  1389. "google/common-protos": "^4.4",
  1390. "google/grpc-gcp": "^0.4",
  1391. "google/longrunning": "~0.4",
  1392. "google/protobuf": "^4.31||^5.34",
  1393. "grpc/grpc": "^1.13",
  1394. "guzzlehttp/promises": "^2.0",
  1395. "guzzlehttp/psr7": "^2.0",
  1396. "php": "^8.1",
  1397. "ramsey/uuid": "^4.0"
  1398. },
  1399. "conflict": {
  1400. "ext-protobuf": "<4.31.0"
  1401. },
  1402. "require-dev": {
  1403. "google/cloud-tools": "^0.16.1",
  1404. "phpspec/prophecy-phpunit": "^2.1",
  1405. "phpstan/phpstan": "^2.0",
  1406. "phpunit/phpunit": "^9.6"
  1407. },
  1408. "type": "library",
  1409. "autoload": {
  1410. "psr-4": {
  1411. "Google\\ApiCore\\": "src",
  1412. "GPBMetadata\\ApiCore\\": "metadata/ApiCore"
  1413. }
  1414. },
  1415. "notification-url": "https://packagist.org/downloads/",
  1416. "license": [
  1417. "BSD-3-Clause"
  1418. ],
  1419. "description": "Google API Core for PHP",
  1420. "homepage": "https://github.com/googleapis/gax-php",
  1421. "keywords": [
  1422. "google"
  1423. ],
  1424. "support": {
  1425. "issues": "https://github.com/googleapis/gax-php/issues",
  1426. "source": "https://github.com/googleapis/gax-php/tree/v1.42.4"
  1427. },
  1428. "time": "2026-05-11T17:49:55+00:00"
  1429. },
  1430. {
  1431. "name": "google/grpc-gcp",
  1432. "version": "0.4.2",
  1433. "source": {
  1434. "type": "git",
  1435. "url": "https://github.com/GoogleCloudPlatform/grpc-gcp-php.git",
  1436. "reference": "1049c0c15b6a1789fdeb52af688a94d540932469"
  1437. },
  1438. "dist": {
  1439. "type": "zip",
  1440. "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/1049c0c15b6a1789fdeb52af688a94d540932469",
  1441. "reference": "1049c0c15b6a1789fdeb52af688a94d540932469",
  1442. "shasum": ""
  1443. },
  1444. "require": {
  1445. "google/auth": "^1.3",
  1446. "google/protobuf": "^v3.25.3||^4.26.1||^5.0",
  1447. "grpc/grpc": "^v1.13.0",
  1448. "php": "^8.0",
  1449. "psr/cache": "^1.0.1||^2.0.0||^3.0.0"
  1450. },
  1451. "require-dev": {
  1452. "google/cloud-spanner": "^1.7",
  1453. "phpunit/phpunit": "^9.0"
  1454. },
  1455. "type": "library",
  1456. "autoload": {
  1457. "psr-4": {
  1458. "Grpc\\Gcp\\": "src/"
  1459. },
  1460. "classmap": [
  1461. "src/generated/"
  1462. ]
  1463. },
  1464. "notification-url": "https://packagist.org/downloads/",
  1465. "license": [
  1466. "Apache-2.0"
  1467. ],
  1468. "description": "gRPC GCP library for channel management",
  1469. "support": {
  1470. "issues": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/issues",
  1471. "source": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/tree/v0.4.2"
  1472. },
  1473. "time": "2026-03-12T22:56:09+00:00"
  1474. },
  1475. {
  1476. "name": "google/longrunning",
  1477. "version": "0.7.1",
  1478. "source": {
  1479. "type": "git",
  1480. "url": "https://github.com/googleapis/php-longrunning.git",
  1481. "reference": "cac9bedf199239ae2b1acd4a8e4ea2276bd9f55a"
  1482. },
  1483. "dist": {
  1484. "type": "zip",
  1485. "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/cac9bedf199239ae2b1acd4a8e4ea2276bd9f55a",
  1486. "reference": "cac9bedf199239ae2b1acd4a8e4ea2276bd9f55a",
  1487. "shasum": ""
  1488. },
  1489. "require-dev": {
  1490. "google/gax": "^1.38.0",
  1491. "phpunit/phpunit": "^9.0"
  1492. },
  1493. "type": "library",
  1494. "extra": {
  1495. "component": {
  1496. "id": "longrunning",
  1497. "path": "LongRunning",
  1498. "entry": null,
  1499. "target": "googleapis/php-longrunning"
  1500. }
  1501. },
  1502. "autoload": {
  1503. "psr-4": {
  1504. "Google\\LongRunning\\": "src/LongRunning",
  1505. "Google\\ApiCore\\LongRunning\\": "src/ApiCore/LongRunning",
  1506. "GPBMetadata\\Google\\Longrunning\\": "metadata/Longrunning"
  1507. }
  1508. },
  1509. "notification-url": "https://packagist.org/downloads/",
  1510. "license": [
  1511. "Apache-2.0"
  1512. ],
  1513. "description": "Google LongRunning Client for PHP",
  1514. "support": {
  1515. "source": "https://github.com/googleapis/php-longrunning/tree/v0.7.1"
  1516. },
  1517. "time": "2026-03-31T19:52:22+00:00"
  1518. },
  1519. {
  1520. "name": "google/protobuf",
  1521. "version": "v5.35.0",
  1522. "source": {
  1523. "type": "git",
  1524. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  1525. "reference": "d96ed77c7edaff3cd576a74173aa0b0655c87b1a"
  1526. },
  1527. "dist": {
  1528. "type": "zip",
  1529. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/d96ed77c7edaff3cd576a74173aa0b0655c87b1a",
  1530. "reference": "d96ed77c7edaff3cd576a74173aa0b0655c87b1a",
  1531. "shasum": ""
  1532. },
  1533. "require": {
  1534. "php": ">=8.2.0"
  1535. },
  1536. "require-dev": {
  1537. "phpunit/phpunit": ">=11.5.0 <12.0.0"
  1538. },
  1539. "suggest": {
  1540. "ext-bcmath": "Need to support JSON deserialization"
  1541. },
  1542. "type": "library",
  1543. "autoload": {
  1544. "psr-4": {
  1545. "Google\\Protobuf\\": "src/Google/Protobuf",
  1546. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  1547. }
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "BSD-3-Clause"
  1552. ],
  1553. "description": "proto library for PHP",
  1554. "homepage": "https://developers.google.com/protocol-buffers/",
  1555. "keywords": [
  1556. "proto"
  1557. ],
  1558. "support": {
  1559. "source": "https://github.com/protocolbuffers/protobuf-php/tree/v5.35.0"
  1560. },
  1561. "time": "2026-05-19T22:13:40+00:00"
  1562. },
  1563. {
  1564. "name": "graham-campbell/result-type",
  1565. "version": "v1.1.3",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1569. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1574. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1575. "shasum": ""
  1576. },
  1577. "require": {
  1578. "php": "^7.2.5 || ^8.0",
  1579. "phpoption/phpoption": "^1.9.3"
  1580. },
  1581. "require-dev": {
  1582. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1583. },
  1584. "type": "library",
  1585. "autoload": {
  1586. "psr-4": {
  1587. "GrahamCampbell\\ResultType\\": "src/"
  1588. }
  1589. },
  1590. "notification-url": "https://packagist.org/downloads/",
  1591. "license": [
  1592. "MIT"
  1593. ],
  1594. "authors": [
  1595. {
  1596. "name": "Graham Campbell",
  1597. "email": "hello@gjcampbell.co.uk",
  1598. "homepage": "https://github.com/GrahamCampbell"
  1599. }
  1600. ],
  1601. "description": "An Implementation Of The Result Type",
  1602. "keywords": [
  1603. "Graham Campbell",
  1604. "GrahamCampbell",
  1605. "Result Type",
  1606. "Result-Type",
  1607. "result"
  1608. ],
  1609. "support": {
  1610. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1611. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  1612. },
  1613. "funding": [
  1614. {
  1615. "url": "https://github.com/GrahamCampbell",
  1616. "type": "github"
  1617. },
  1618. {
  1619. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1620. "type": "tidelift"
  1621. }
  1622. ],
  1623. "time": "2024-07-20T21:45:45+00:00"
  1624. },
  1625. {
  1626. "name": "grpc/grpc",
  1627. "version": "1.80.0",
  1628. "source": {
  1629. "type": "git",
  1630. "url": "https://github.com/grpc/grpc-php.git",
  1631. "reference": "a0dc463d5d5064cdd7ff344f13f61d7e233f9b5a"
  1632. },
  1633. "dist": {
  1634. "type": "zip",
  1635. "url": "https://api.github.com/repos/grpc/grpc-php/zipball/a0dc463d5d5064cdd7ff344f13f61d7e233f9b5a",
  1636. "reference": "a0dc463d5d5064cdd7ff344f13f61d7e233f9b5a",
  1637. "shasum": ""
  1638. },
  1639. "require": {
  1640. "php": ">=7.1.0"
  1641. },
  1642. "require-dev": {
  1643. "google/auth": "^v1.3.0"
  1644. },
  1645. "suggest": {
  1646. "ext-protobuf": "For better performance, install the protobuf C extension.",
  1647. "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
  1648. },
  1649. "type": "library",
  1650. "autoload": {
  1651. "psr-4": {
  1652. "Grpc\\": "src/lib/"
  1653. }
  1654. },
  1655. "notification-url": "https://packagist.org/downloads/",
  1656. "license": [
  1657. "Apache-2.0"
  1658. ],
  1659. "description": "gRPC library for PHP",
  1660. "homepage": "https://grpc.io",
  1661. "keywords": [
  1662. "rpc"
  1663. ],
  1664. "support": {
  1665. "source": "https://github.com/grpc/grpc-php/tree/v1.80.0"
  1666. },
  1667. "time": "2026-03-30T09:22:39+00:00"
  1668. },
  1669. {
  1670. "name": "guzzlehttp/guzzle",
  1671. "version": "7.9.3",
  1672. "source": {
  1673. "type": "git",
  1674. "url": "https://github.com/guzzle/guzzle.git",
  1675. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  1676. },
  1677. "dist": {
  1678. "type": "zip",
  1679. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  1680. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  1681. "shasum": ""
  1682. },
  1683. "require": {
  1684. "ext-json": "*",
  1685. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1686. "guzzlehttp/psr7": "^2.7.0",
  1687. "php": "^7.2.5 || ^8.0",
  1688. "psr/http-client": "^1.0",
  1689. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1690. },
  1691. "provide": {
  1692. "psr/http-client-implementation": "1.0"
  1693. },
  1694. "require-dev": {
  1695. "bamarni/composer-bin-plugin": "^1.8.2",
  1696. "ext-curl": "*",
  1697. "guzzle/client-integration-tests": "3.0.2",
  1698. "php-http/message-factory": "^1.1",
  1699. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1700. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1701. },
  1702. "suggest": {
  1703. "ext-curl": "Required for CURL handler support",
  1704. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1705. "psr/log": "Required for using the Log middleware"
  1706. },
  1707. "type": "library",
  1708. "extra": {
  1709. "bamarni-bin": {
  1710. "bin-links": true,
  1711. "forward-command": false
  1712. }
  1713. },
  1714. "autoload": {
  1715. "files": [
  1716. "src/functions_include.php"
  1717. ],
  1718. "psr-4": {
  1719. "GuzzleHttp\\": "src/"
  1720. }
  1721. },
  1722. "notification-url": "https://packagist.org/downloads/",
  1723. "license": [
  1724. "MIT"
  1725. ],
  1726. "authors": [
  1727. {
  1728. "name": "Graham Campbell",
  1729. "email": "hello@gjcampbell.co.uk",
  1730. "homepage": "https://github.com/GrahamCampbell"
  1731. },
  1732. {
  1733. "name": "Michael Dowling",
  1734. "email": "mtdowling@gmail.com",
  1735. "homepage": "https://github.com/mtdowling"
  1736. },
  1737. {
  1738. "name": "Jeremy Lindblom",
  1739. "email": "jeremeamia@gmail.com",
  1740. "homepage": "https://github.com/jeremeamia"
  1741. },
  1742. {
  1743. "name": "George Mponos",
  1744. "email": "gmponos@gmail.com",
  1745. "homepage": "https://github.com/gmponos"
  1746. },
  1747. {
  1748. "name": "Tobias Nyholm",
  1749. "email": "tobias.nyholm@gmail.com",
  1750. "homepage": "https://github.com/Nyholm"
  1751. },
  1752. {
  1753. "name": "Márk Sági-Kazár",
  1754. "email": "mark.sagikazar@gmail.com",
  1755. "homepage": "https://github.com/sagikazarmark"
  1756. },
  1757. {
  1758. "name": "Tobias Schultze",
  1759. "email": "webmaster@tubo-world.de",
  1760. "homepage": "https://github.com/Tobion"
  1761. }
  1762. ],
  1763. "description": "Guzzle is a PHP HTTP client library",
  1764. "keywords": [
  1765. "client",
  1766. "curl",
  1767. "framework",
  1768. "http",
  1769. "http client",
  1770. "psr-18",
  1771. "psr-7",
  1772. "rest",
  1773. "web service"
  1774. ],
  1775. "support": {
  1776. "issues": "https://github.com/guzzle/guzzle/issues",
  1777. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  1778. },
  1779. "funding": [
  1780. {
  1781. "url": "https://github.com/GrahamCampbell",
  1782. "type": "github"
  1783. },
  1784. {
  1785. "url": "https://github.com/Nyholm",
  1786. "type": "github"
  1787. },
  1788. {
  1789. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1790. "type": "tidelift"
  1791. }
  1792. ],
  1793. "time": "2025-03-27T13:37:11+00:00"
  1794. },
  1795. {
  1796. "name": "guzzlehttp/promises",
  1797. "version": "2.2.0",
  1798. "source": {
  1799. "type": "git",
  1800. "url": "https://github.com/guzzle/promises.git",
  1801. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  1802. },
  1803. "dist": {
  1804. "type": "zip",
  1805. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  1806. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  1807. "shasum": ""
  1808. },
  1809. "require": {
  1810. "php": "^7.2.5 || ^8.0"
  1811. },
  1812. "require-dev": {
  1813. "bamarni/composer-bin-plugin": "^1.8.2",
  1814. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1815. },
  1816. "type": "library",
  1817. "extra": {
  1818. "bamarni-bin": {
  1819. "bin-links": true,
  1820. "forward-command": false
  1821. }
  1822. },
  1823. "autoload": {
  1824. "psr-4": {
  1825. "GuzzleHttp\\Promise\\": "src/"
  1826. }
  1827. },
  1828. "notification-url": "https://packagist.org/downloads/",
  1829. "license": [
  1830. "MIT"
  1831. ],
  1832. "authors": [
  1833. {
  1834. "name": "Graham Campbell",
  1835. "email": "hello@gjcampbell.co.uk",
  1836. "homepage": "https://github.com/GrahamCampbell"
  1837. },
  1838. {
  1839. "name": "Michael Dowling",
  1840. "email": "mtdowling@gmail.com",
  1841. "homepage": "https://github.com/mtdowling"
  1842. },
  1843. {
  1844. "name": "Tobias Nyholm",
  1845. "email": "tobias.nyholm@gmail.com",
  1846. "homepage": "https://github.com/Nyholm"
  1847. },
  1848. {
  1849. "name": "Tobias Schultze",
  1850. "email": "webmaster@tubo-world.de",
  1851. "homepage": "https://github.com/Tobion"
  1852. }
  1853. ],
  1854. "description": "Guzzle promises library",
  1855. "keywords": [
  1856. "promise"
  1857. ],
  1858. "support": {
  1859. "issues": "https://github.com/guzzle/promises/issues",
  1860. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  1861. },
  1862. "funding": [
  1863. {
  1864. "url": "https://github.com/GrahamCampbell",
  1865. "type": "github"
  1866. },
  1867. {
  1868. "url": "https://github.com/Nyholm",
  1869. "type": "github"
  1870. },
  1871. {
  1872. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1873. "type": "tidelift"
  1874. }
  1875. ],
  1876. "time": "2025-03-27T13:27:01+00:00"
  1877. },
  1878. {
  1879. "name": "guzzlehttp/psr7",
  1880. "version": "2.7.1",
  1881. "source": {
  1882. "type": "git",
  1883. "url": "https://github.com/guzzle/psr7.git",
  1884. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  1885. },
  1886. "dist": {
  1887. "type": "zip",
  1888. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  1889. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  1890. "shasum": ""
  1891. },
  1892. "require": {
  1893. "php": "^7.2.5 || ^8.0",
  1894. "psr/http-factory": "^1.0",
  1895. "psr/http-message": "^1.1 || ^2.0",
  1896. "ralouphie/getallheaders": "^3.0"
  1897. },
  1898. "provide": {
  1899. "psr/http-factory-implementation": "1.0",
  1900. "psr/http-message-implementation": "1.0"
  1901. },
  1902. "require-dev": {
  1903. "bamarni/composer-bin-plugin": "^1.8.2",
  1904. "http-interop/http-factory-tests": "0.9.0",
  1905. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1906. },
  1907. "suggest": {
  1908. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1909. },
  1910. "type": "library",
  1911. "extra": {
  1912. "bamarni-bin": {
  1913. "bin-links": true,
  1914. "forward-command": false
  1915. }
  1916. },
  1917. "autoload": {
  1918. "psr-4": {
  1919. "GuzzleHttp\\Psr7\\": "src/"
  1920. }
  1921. },
  1922. "notification-url": "https://packagist.org/downloads/",
  1923. "license": [
  1924. "MIT"
  1925. ],
  1926. "authors": [
  1927. {
  1928. "name": "Graham Campbell",
  1929. "email": "hello@gjcampbell.co.uk",
  1930. "homepage": "https://github.com/GrahamCampbell"
  1931. },
  1932. {
  1933. "name": "Michael Dowling",
  1934. "email": "mtdowling@gmail.com",
  1935. "homepage": "https://github.com/mtdowling"
  1936. },
  1937. {
  1938. "name": "George Mponos",
  1939. "email": "gmponos@gmail.com",
  1940. "homepage": "https://github.com/gmponos"
  1941. },
  1942. {
  1943. "name": "Tobias Nyholm",
  1944. "email": "tobias.nyholm@gmail.com",
  1945. "homepage": "https://github.com/Nyholm"
  1946. },
  1947. {
  1948. "name": "Márk Sági-Kazár",
  1949. "email": "mark.sagikazar@gmail.com",
  1950. "homepage": "https://github.com/sagikazarmark"
  1951. },
  1952. {
  1953. "name": "Tobias Schultze",
  1954. "email": "webmaster@tubo-world.de",
  1955. "homepage": "https://github.com/Tobion"
  1956. },
  1957. {
  1958. "name": "Márk Sági-Kazár",
  1959. "email": "mark.sagikazar@gmail.com",
  1960. "homepage": "https://sagikazarmark.hu"
  1961. }
  1962. ],
  1963. "description": "PSR-7 message implementation that also provides common utility methods",
  1964. "keywords": [
  1965. "http",
  1966. "message",
  1967. "psr-7",
  1968. "request",
  1969. "response",
  1970. "stream",
  1971. "uri",
  1972. "url"
  1973. ],
  1974. "support": {
  1975. "issues": "https://github.com/guzzle/psr7/issues",
  1976. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  1977. },
  1978. "funding": [
  1979. {
  1980. "url": "https://github.com/GrahamCampbell",
  1981. "type": "github"
  1982. },
  1983. {
  1984. "url": "https://github.com/Nyholm",
  1985. "type": "github"
  1986. },
  1987. {
  1988. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1989. "type": "tidelift"
  1990. }
  1991. ],
  1992. "time": "2025-03-27T12:30:47+00:00"
  1993. },
  1994. {
  1995. "name": "guzzlehttp/uri-template",
  1996. "version": "v1.0.4",
  1997. "source": {
  1998. "type": "git",
  1999. "url": "https://github.com/guzzle/uri-template.git",
  2000. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2"
  2001. },
  2002. "dist": {
  2003. "type": "zip",
  2004. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2",
  2005. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2",
  2006. "shasum": ""
  2007. },
  2008. "require": {
  2009. "php": "^7.2.5 || ^8.0",
  2010. "symfony/polyfill-php80": "^1.24"
  2011. },
  2012. "require-dev": {
  2013. "bamarni/composer-bin-plugin": "^1.8.2",
  2014. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2015. "uri-template/tests": "1.0.0"
  2016. },
  2017. "type": "library",
  2018. "extra": {
  2019. "bamarni-bin": {
  2020. "bin-links": true,
  2021. "forward-command": false
  2022. }
  2023. },
  2024. "autoload": {
  2025. "psr-4": {
  2026. "GuzzleHttp\\UriTemplate\\": "src"
  2027. }
  2028. },
  2029. "notification-url": "https://packagist.org/downloads/",
  2030. "license": [
  2031. "MIT"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "Graham Campbell",
  2036. "email": "hello@gjcampbell.co.uk",
  2037. "homepage": "https://github.com/GrahamCampbell"
  2038. },
  2039. {
  2040. "name": "Michael Dowling",
  2041. "email": "mtdowling@gmail.com",
  2042. "homepage": "https://github.com/mtdowling"
  2043. },
  2044. {
  2045. "name": "George Mponos",
  2046. "email": "gmponos@gmail.com",
  2047. "homepage": "https://github.com/gmponos"
  2048. },
  2049. {
  2050. "name": "Tobias Nyholm",
  2051. "email": "tobias.nyholm@gmail.com",
  2052. "homepage": "https://github.com/Nyholm"
  2053. }
  2054. ],
  2055. "description": "A polyfill class for uri_template of PHP",
  2056. "keywords": [
  2057. "guzzlehttp",
  2058. "uri-template"
  2059. ],
  2060. "support": {
  2061. "issues": "https://github.com/guzzle/uri-template/issues",
  2062. "source": "https://github.com/guzzle/uri-template/tree/v1.0.4"
  2063. },
  2064. "funding": [
  2065. {
  2066. "url": "https://github.com/GrahamCampbell",
  2067. "type": "github"
  2068. },
  2069. {
  2070. "url": "https://github.com/Nyholm",
  2071. "type": "github"
  2072. },
  2073. {
  2074. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2075. "type": "tidelift"
  2076. }
  2077. ],
  2078. "time": "2025-02-03T10:55:03+00:00"
  2079. },
  2080. {
  2081. "name": "kalnoy/nestedset",
  2082. "version": "v6.0.6",
  2083. "source": {
  2084. "type": "git",
  2085. "url": "https://github.com/lazychaser/laravel-nestedset.git",
  2086. "reference": "3cfc56a9759fb592bc903056166bfc0867f9e679"
  2087. },
  2088. "dist": {
  2089. "type": "zip",
  2090. "url": "https://api.github.com/repos/lazychaser/laravel-nestedset/zipball/3cfc56a9759fb592bc903056166bfc0867f9e679",
  2091. "reference": "3cfc56a9759fb592bc903056166bfc0867f9e679",
  2092. "shasum": ""
  2093. },
  2094. "require": {
  2095. "illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2096. "illuminate/events": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2097. "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2098. "php": "^8.0"
  2099. },
  2100. "require-dev": {
  2101. "phpunit/phpunit": "7.*|8.*|9.*|^10.5"
  2102. },
  2103. "type": "library",
  2104. "extra": {
  2105. "laravel": {
  2106. "providers": [
  2107. "Kalnoy\\Nestedset\\NestedSetServiceProvider"
  2108. ]
  2109. },
  2110. "branch-alias": {
  2111. "dev-master": "v5.0.x-dev"
  2112. }
  2113. },
  2114. "autoload": {
  2115. "psr-4": {
  2116. "Kalnoy\\Nestedset\\": "src/"
  2117. }
  2118. },
  2119. "notification-url": "https://packagist.org/downloads/",
  2120. "license": [
  2121. "MIT"
  2122. ],
  2123. "authors": [
  2124. {
  2125. "name": "Alexander Kalnoy",
  2126. "email": "lazychaser@gmail.com"
  2127. }
  2128. ],
  2129. "description": "Nested Set Model for Laravel 5.7 and up",
  2130. "keywords": [
  2131. "database",
  2132. "hierarchy",
  2133. "laravel",
  2134. "nested sets",
  2135. "nsm"
  2136. ],
  2137. "support": {
  2138. "issues": "https://github.com/lazychaser/laravel-nestedset/issues",
  2139. "source": "https://github.com/lazychaser/laravel-nestedset/tree/v6.0.6"
  2140. },
  2141. "time": "2025-04-22T19:38:02+00:00"
  2142. },
  2143. {
  2144. "name": "kreait/firebase-php",
  2145. "version": "8.2.0",
  2146. "source": {
  2147. "type": "git",
  2148. "url": "https://github.com/beste/firebase-php.git",
  2149. "reference": "7a1007c8151e1bf7be9f6b0f9a1e37b1f734f59e"
  2150. },
  2151. "dist": {
  2152. "type": "zip",
  2153. "url": "https://api.github.com/repos/beste/firebase-php/zipball/7a1007c8151e1bf7be9f6b0f9a1e37b1f734f59e",
  2154. "reference": "7a1007c8151e1bf7be9f6b0f9a1e37b1f734f59e",
  2155. "shasum": ""
  2156. },
  2157. "require": {
  2158. "beste/clock": "^3.0",
  2159. "beste/in-memory-cache": "^1.3.1",
  2160. "beste/json": "^1.5.1",
  2161. "cuyz/valinor": "^2.2.1",
  2162. "ext-ctype": "*",
  2163. "ext-filter": "*",
  2164. "ext-json": "*",
  2165. "ext-mbstring": "*",
  2166. "fig/http-message-util": "^1.1.5",
  2167. "firebase/php-jwt": "^6.10.2 || ^7.0.2",
  2168. "google/auth": "^1.45",
  2169. "google/cloud-storage": "^1.48.7",
  2170. "guzzlehttp/guzzle": "^7.9.2",
  2171. "guzzlehttp/promises": "^2.0.4",
  2172. "guzzlehttp/psr7": "^2.7",
  2173. "kreait/firebase-tokens": "^5.2",
  2174. "lcobucci/jwt": "^5.3",
  2175. "mtdowling/jmespath.php": "^2.8.0",
  2176. "php": "~8.3.0 || ~8.4.0 || ~8.5.0",
  2177. "psr/cache": "^2.0 || ^3.0",
  2178. "psr/clock": "^1.0",
  2179. "psr/http-client": "^1.0.3",
  2180. "psr/http-factory": "^1.1",
  2181. "psr/http-message": "^1.1 || ^2.0"
  2182. },
  2183. "require-dev": {
  2184. "google/cloud-firestore": "^1.55.0",
  2185. "psr/log": "^3.0.2",
  2186. "symfony/var-dumper": "^7.4.4 || ^8.0.4",
  2187. "vlucas/phpdotenv": "^5.6.3"
  2188. },
  2189. "suggest": {
  2190. "google/cloud-firestore": "^1.0 to use the Firestore component"
  2191. },
  2192. "type": "library",
  2193. "extra": {
  2194. "branch-alias": {
  2195. "dev-7.x": "7.x-dev",
  2196. "dev-8.x": "8.x-dev"
  2197. }
  2198. },
  2199. "autoload": {
  2200. "psr-4": {
  2201. "Kreait\\Firebase\\": "src"
  2202. }
  2203. },
  2204. "notification-url": "https://packagist.org/downloads/",
  2205. "license": [
  2206. "MIT"
  2207. ],
  2208. "authors": [
  2209. {
  2210. "name": "Jérôme Gamez",
  2211. "homepage": "https://github.com/jeromegamez"
  2212. }
  2213. ],
  2214. "description": "Firebase Admin SDK",
  2215. "homepage": "https://github.com/beste/firebase-php",
  2216. "keywords": [
  2217. "api",
  2218. "database",
  2219. "firebase",
  2220. "google",
  2221. "sdk"
  2222. ],
  2223. "support": {
  2224. "docs": "https://firebase-php.readthedocs.io",
  2225. "issues": "https://github.com/beste/firebase-php/issues",
  2226. "source": "https://github.com/beste/firebase-php"
  2227. },
  2228. "funding": [
  2229. {
  2230. "url": "https://github.com/sponsors/jeromegamez",
  2231. "type": "github"
  2232. }
  2233. ],
  2234. "time": "2026-03-04T12:06:19+00:00"
  2235. },
  2236. {
  2237. "name": "kreait/firebase-tokens",
  2238. "version": "5.3.0",
  2239. "source": {
  2240. "type": "git",
  2241. "url": "https://github.com/beste/firebase-tokens-php.git",
  2242. "reference": "5dc119c8c29fcab1fb3a35ed5164dee0d33e4430"
  2243. },
  2244. "dist": {
  2245. "type": "zip",
  2246. "url": "https://api.github.com/repos/beste/firebase-tokens-php/zipball/5dc119c8c29fcab1fb3a35ed5164dee0d33e4430",
  2247. "reference": "5dc119c8c29fcab1fb3a35ed5164dee0d33e4430",
  2248. "shasum": ""
  2249. },
  2250. "require": {
  2251. "beste/clock": "^3.0",
  2252. "ext-json": "*",
  2253. "ext-openssl": "*",
  2254. "fig/http-message-util": "^1.1.5",
  2255. "guzzlehttp/guzzle": "^7.8",
  2256. "lcobucci/jwt": "^5.2",
  2257. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  2258. "psr/cache": "^1.0|^2.0|^3.0"
  2259. },
  2260. "require-dev": {
  2261. "friendsofphp/php-cs-fixer": "^3.62.0",
  2262. "phpstan/extension-installer": "^1.4.1",
  2263. "phpstan/phpstan": "^2.1",
  2264. "phpstan/phpstan-phpunit": "^2.0",
  2265. "phpunit/phpunit": "^10.5.30",
  2266. "rector/rector": "^2.1",
  2267. "symfony/cache": "^6.4.3 || ^7.1.3",
  2268. "symfony/var-dumper": "^6.4.3 || ^7.1.3"
  2269. },
  2270. "suggest": {
  2271. "psr/cache-implementation": "to cache fetched remote public keys"
  2272. },
  2273. "type": "library",
  2274. "autoload": {
  2275. "psr-4": {
  2276. "Kreait\\Firebase\\JWT\\": "src/JWT"
  2277. }
  2278. },
  2279. "notification-url": "https://packagist.org/downloads/",
  2280. "license": [
  2281. "MIT"
  2282. ],
  2283. "authors": [
  2284. {
  2285. "name": "Jérôme Gamez",
  2286. "homepage": "https://github.com/jeromegamez"
  2287. }
  2288. ],
  2289. "description": "A library to work with Firebase tokens",
  2290. "homepage": "https://github.com/kreait/firebase-token-php",
  2291. "keywords": [
  2292. "Authentication",
  2293. "auth",
  2294. "firebase",
  2295. "google",
  2296. "token"
  2297. ],
  2298. "support": {
  2299. "issues": "https://github.com/beste/firebase-tokens-php/issues",
  2300. "source": "https://github.com/beste/firebase-tokens-php/tree/5.3.0"
  2301. },
  2302. "funding": [
  2303. {
  2304. "url": "https://github.com/sponsors/jeromegamez",
  2305. "type": "github"
  2306. }
  2307. ],
  2308. "time": "2025-09-11T23:24:49+00:00"
  2309. },
  2310. {
  2311. "name": "kreait/laravel-firebase",
  2312. "version": "7.2.1",
  2313. "source": {
  2314. "type": "git",
  2315. "url": "https://github.com/beste/laravel-firebase.git",
  2316. "reference": "a9f63c54089c9a5aa7bce5cabd9a57b2dcbeed64"
  2317. },
  2318. "dist": {
  2319. "type": "zip",
  2320. "url": "https://api.github.com/repos/beste/laravel-firebase/zipball/a9f63c54089c9a5aa7bce5cabd9a57b2dcbeed64",
  2321. "reference": "a9f63c54089c9a5aa7bce5cabd9a57b2dcbeed64",
  2322. "shasum": ""
  2323. },
  2324. "require": {
  2325. "illuminate/contracts": "^11.0 || ^12.0 || ^13.0",
  2326. "illuminate/notifications": "^11.0 || ^12.0 || ^13.0",
  2327. "illuminate/support": "^11.0 || ^12.0 || ^13.0",
  2328. "kreait/firebase-php": "^8.0",
  2329. "php": "~8.3.0 || ~8.4.0 || ~8.5.0",
  2330. "symfony/cache": "^6.1.2 || ^7.0.3 || ^8.0.8"
  2331. },
  2332. "require-dev": {
  2333. "laravel/pint": "^1.22.1",
  2334. "orchestra/testbench": "^9.0 || ^10.4 || ^11.0",
  2335. "phpunit/phpunit": "^12.5.17 || ^13.1.1"
  2336. },
  2337. "type": "library",
  2338. "extra": {
  2339. "laravel": {
  2340. "aliases": {
  2341. "Firebase": "Kreait\\Laravel\\Firebase\\Facades\\Firebase"
  2342. },
  2343. "providers": [
  2344. "Kreait\\Laravel\\Firebase\\ServiceProvider"
  2345. ]
  2346. }
  2347. },
  2348. "autoload": {
  2349. "psr-4": {
  2350. "Kreait\\Laravel\\Firebase\\": "src"
  2351. }
  2352. },
  2353. "notification-url": "https://packagist.org/downloads/",
  2354. "license": [
  2355. "MIT"
  2356. ],
  2357. "authors": [
  2358. {
  2359. "name": "Jérôme Gamez",
  2360. "email": "jerome@gamez.name"
  2361. }
  2362. ],
  2363. "description": "A Laravel package for the Firebase PHP Admin SDK",
  2364. "keywords": [
  2365. "FCM",
  2366. "api",
  2367. "database",
  2368. "firebase",
  2369. "gcm",
  2370. "laravel",
  2371. "sdk"
  2372. ],
  2373. "support": {
  2374. "issues": "https://github.com/beste/laravel-firebase/issues",
  2375. "source": "https://github.com/beste/laravel-firebase/tree/7.2.1"
  2376. },
  2377. "funding": [
  2378. {
  2379. "url": "https://github.com/sponsors/jeromegamez",
  2380. "type": "github"
  2381. }
  2382. ],
  2383. "time": "2026-05-07T13:39:14+00:00"
  2384. },
  2385. {
  2386. "name": "laravel/framework",
  2387. "version": "v12.20.0",
  2388. "source": {
  2389. "type": "git",
  2390. "url": "https://github.com/laravel/framework.git",
  2391. "reference": "1b9a00f8caf5503c92aa436279172beae1a484ff"
  2392. },
  2393. "dist": {
  2394. "type": "zip",
  2395. "url": "https://api.github.com/repos/laravel/framework/zipball/1b9a00f8caf5503c92aa436279172beae1a484ff",
  2396. "reference": "1b9a00f8caf5503c92aa436279172beae1a484ff",
  2397. "shasum": ""
  2398. },
  2399. "require": {
  2400. "brick/math": "^0.11|^0.12|^0.13",
  2401. "composer-runtime-api": "^2.2",
  2402. "doctrine/inflector": "^2.0.5",
  2403. "dragonmantank/cron-expression": "^3.4",
  2404. "egulias/email-validator": "^3.2.1|^4.0",
  2405. "ext-ctype": "*",
  2406. "ext-filter": "*",
  2407. "ext-hash": "*",
  2408. "ext-mbstring": "*",
  2409. "ext-openssl": "*",
  2410. "ext-session": "*",
  2411. "ext-tokenizer": "*",
  2412. "fruitcake/php-cors": "^1.3",
  2413. "guzzlehttp/guzzle": "^7.8.2",
  2414. "guzzlehttp/uri-template": "^1.0",
  2415. "laravel/prompts": "^0.3.0",
  2416. "laravel/serializable-closure": "^1.3|^2.0",
  2417. "league/commonmark": "^2.7",
  2418. "league/flysystem": "^3.25.1",
  2419. "league/flysystem-local": "^3.25.1",
  2420. "league/uri": "^7.5.1",
  2421. "monolog/monolog": "^3.0",
  2422. "nesbot/carbon": "^3.8.4",
  2423. "nunomaduro/termwind": "^2.0",
  2424. "php": "^8.2",
  2425. "psr/container": "^1.1.1|^2.0.1",
  2426. "psr/log": "^1.0|^2.0|^3.0",
  2427. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2428. "ramsey/uuid": "^4.7",
  2429. "symfony/console": "^7.2.0",
  2430. "symfony/error-handler": "^7.2.0",
  2431. "symfony/finder": "^7.2.0",
  2432. "symfony/http-foundation": "^7.2.0",
  2433. "symfony/http-kernel": "^7.2.0",
  2434. "symfony/mailer": "^7.2.0",
  2435. "symfony/mime": "^7.2.0",
  2436. "symfony/polyfill-php83": "^1.31",
  2437. "symfony/process": "^7.2.0",
  2438. "symfony/routing": "^7.2.0",
  2439. "symfony/uid": "^7.2.0",
  2440. "symfony/var-dumper": "^7.2.0",
  2441. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2442. "vlucas/phpdotenv": "^5.6.1",
  2443. "voku/portable-ascii": "^2.0.2"
  2444. },
  2445. "conflict": {
  2446. "tightenco/collect": "<5.5.33"
  2447. },
  2448. "provide": {
  2449. "psr/container-implementation": "1.1|2.0",
  2450. "psr/log-implementation": "1.0|2.0|3.0",
  2451. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2452. },
  2453. "replace": {
  2454. "illuminate/auth": "self.version",
  2455. "illuminate/broadcasting": "self.version",
  2456. "illuminate/bus": "self.version",
  2457. "illuminate/cache": "self.version",
  2458. "illuminate/collections": "self.version",
  2459. "illuminate/concurrency": "self.version",
  2460. "illuminate/conditionable": "self.version",
  2461. "illuminate/config": "self.version",
  2462. "illuminate/console": "self.version",
  2463. "illuminate/container": "self.version",
  2464. "illuminate/contracts": "self.version",
  2465. "illuminate/cookie": "self.version",
  2466. "illuminate/database": "self.version",
  2467. "illuminate/encryption": "self.version",
  2468. "illuminate/events": "self.version",
  2469. "illuminate/filesystem": "self.version",
  2470. "illuminate/hashing": "self.version",
  2471. "illuminate/http": "self.version",
  2472. "illuminate/log": "self.version",
  2473. "illuminate/macroable": "self.version",
  2474. "illuminate/mail": "self.version",
  2475. "illuminate/notifications": "self.version",
  2476. "illuminate/pagination": "self.version",
  2477. "illuminate/pipeline": "self.version",
  2478. "illuminate/process": "self.version",
  2479. "illuminate/queue": "self.version",
  2480. "illuminate/redis": "self.version",
  2481. "illuminate/routing": "self.version",
  2482. "illuminate/session": "self.version",
  2483. "illuminate/support": "self.version",
  2484. "illuminate/testing": "self.version",
  2485. "illuminate/translation": "self.version",
  2486. "illuminate/validation": "self.version",
  2487. "illuminate/view": "self.version",
  2488. "spatie/once": "*"
  2489. },
  2490. "require-dev": {
  2491. "ably/ably-php": "^1.0",
  2492. "aws/aws-sdk-php": "^3.322.9",
  2493. "ext-gmp": "*",
  2494. "fakerphp/faker": "^1.24",
  2495. "guzzlehttp/promises": "^2.0.3",
  2496. "guzzlehttp/psr7": "^2.4",
  2497. "laravel/pint": "^1.18",
  2498. "league/flysystem-aws-s3-v3": "^3.25.1",
  2499. "league/flysystem-ftp": "^3.25.1",
  2500. "league/flysystem-path-prefixing": "^3.25.1",
  2501. "league/flysystem-read-only": "^3.25.1",
  2502. "league/flysystem-sftp-v3": "^3.25.1",
  2503. "mockery/mockery": "^1.6.10",
  2504. "orchestra/testbench-core": "^10.0.0",
  2505. "pda/pheanstalk": "^5.0.6|^7.0.0",
  2506. "php-http/discovery": "^1.15",
  2507. "phpstan/phpstan": "^2.0",
  2508. "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1",
  2509. "predis/predis": "^2.3|^3.0",
  2510. "resend/resend-php": "^0.10.0",
  2511. "symfony/cache": "^7.2.0",
  2512. "symfony/http-client": "^7.2.0",
  2513. "symfony/psr-http-message-bridge": "^7.2.0",
  2514. "symfony/translation": "^7.2.0"
  2515. },
  2516. "suggest": {
  2517. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2518. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  2519. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  2520. "ext-apcu": "Required to use the APC cache driver.",
  2521. "ext-fileinfo": "Required to use the Filesystem class.",
  2522. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2523. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2524. "ext-memcached": "Required to use the memcache cache driver.",
  2525. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2526. "ext-pdo": "Required to use all database features.",
  2527. "ext-posix": "Required to use all features of the queue worker.",
  2528. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  2529. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2530. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2531. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2532. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  2533. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  2534. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  2535. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  2536. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  2537. "mockery/mockery": "Required to use mocking (^1.6).",
  2538. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  2539. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  2540. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).",
  2541. "predis/predis": "Required to use the predis connector (^2.3|^3.0).",
  2542. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2543. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2544. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  2545. "symfony/cache": "Required to PSR-6 cache bridge (^7.2).",
  2546. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).",
  2547. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).",
  2548. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).",
  2549. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).",
  2550. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)."
  2551. },
  2552. "type": "library",
  2553. "extra": {
  2554. "branch-alias": {
  2555. "dev-master": "12.x-dev"
  2556. }
  2557. },
  2558. "autoload": {
  2559. "files": [
  2560. "src/Illuminate/Collections/functions.php",
  2561. "src/Illuminate/Collections/helpers.php",
  2562. "src/Illuminate/Events/functions.php",
  2563. "src/Illuminate/Filesystem/functions.php",
  2564. "src/Illuminate/Foundation/helpers.php",
  2565. "src/Illuminate/Log/functions.php",
  2566. "src/Illuminate/Support/functions.php",
  2567. "src/Illuminate/Support/helpers.php"
  2568. ],
  2569. "psr-4": {
  2570. "Illuminate\\": "src/Illuminate/",
  2571. "Illuminate\\Support\\": [
  2572. "src/Illuminate/Macroable/",
  2573. "src/Illuminate/Collections/",
  2574. "src/Illuminate/Conditionable/"
  2575. ]
  2576. }
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "MIT"
  2581. ],
  2582. "authors": [
  2583. {
  2584. "name": "Taylor Otwell",
  2585. "email": "taylor@laravel.com"
  2586. }
  2587. ],
  2588. "description": "The Laravel Framework.",
  2589. "homepage": "https://laravel.com",
  2590. "keywords": [
  2591. "framework",
  2592. "laravel"
  2593. ],
  2594. "support": {
  2595. "issues": "https://github.com/laravel/framework/issues",
  2596. "source": "https://github.com/laravel/framework"
  2597. },
  2598. "time": "2025-07-08T15:02:21+00:00"
  2599. },
  2600. {
  2601. "name": "laravel/prompts",
  2602. "version": "v0.3.6",
  2603. "source": {
  2604. "type": "git",
  2605. "url": "https://github.com/laravel/prompts.git",
  2606. "reference": "86a8b692e8661d0fb308cec64f3d176821323077"
  2607. },
  2608. "dist": {
  2609. "type": "zip",
  2610. "url": "https://api.github.com/repos/laravel/prompts/zipball/86a8b692e8661d0fb308cec64f3d176821323077",
  2611. "reference": "86a8b692e8661d0fb308cec64f3d176821323077",
  2612. "shasum": ""
  2613. },
  2614. "require": {
  2615. "composer-runtime-api": "^2.2",
  2616. "ext-mbstring": "*",
  2617. "php": "^8.1",
  2618. "symfony/console": "^6.2|^7.0"
  2619. },
  2620. "conflict": {
  2621. "illuminate/console": ">=10.17.0 <10.25.0",
  2622. "laravel/framework": ">=10.17.0 <10.25.0"
  2623. },
  2624. "require-dev": {
  2625. "illuminate/collections": "^10.0|^11.0|^12.0",
  2626. "mockery/mockery": "^1.5",
  2627. "pestphp/pest": "^2.3|^3.4",
  2628. "phpstan/phpstan": "^1.11",
  2629. "phpstan/phpstan-mockery": "^1.1"
  2630. },
  2631. "suggest": {
  2632. "ext-pcntl": "Required for the spinner to be animated."
  2633. },
  2634. "type": "library",
  2635. "extra": {
  2636. "branch-alias": {
  2637. "dev-main": "0.3.x-dev"
  2638. }
  2639. },
  2640. "autoload": {
  2641. "files": [
  2642. "src/helpers.php"
  2643. ],
  2644. "psr-4": {
  2645. "Laravel\\Prompts\\": "src/"
  2646. }
  2647. },
  2648. "notification-url": "https://packagist.org/downloads/",
  2649. "license": [
  2650. "MIT"
  2651. ],
  2652. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  2653. "support": {
  2654. "issues": "https://github.com/laravel/prompts/issues",
  2655. "source": "https://github.com/laravel/prompts/tree/v0.3.6"
  2656. },
  2657. "time": "2025-07-07T14:17:42+00:00"
  2658. },
  2659. {
  2660. "name": "laravel/sanctum",
  2661. "version": "v4.1.2",
  2662. "source": {
  2663. "type": "git",
  2664. "url": "https://github.com/laravel/sanctum.git",
  2665. "reference": "e4c09e69aecd5a383e0c1b85a6bb501c997d7491"
  2666. },
  2667. "dist": {
  2668. "type": "zip",
  2669. "url": "https://api.github.com/repos/laravel/sanctum/zipball/e4c09e69aecd5a383e0c1b85a6bb501c997d7491",
  2670. "reference": "e4c09e69aecd5a383e0c1b85a6bb501c997d7491",
  2671. "shasum": ""
  2672. },
  2673. "require": {
  2674. "ext-json": "*",
  2675. "illuminate/console": "^11.0|^12.0",
  2676. "illuminate/contracts": "^11.0|^12.0",
  2677. "illuminate/database": "^11.0|^12.0",
  2678. "illuminate/support": "^11.0|^12.0",
  2679. "php": "^8.2",
  2680. "symfony/console": "^7.0"
  2681. },
  2682. "require-dev": {
  2683. "mockery/mockery": "^1.6",
  2684. "orchestra/testbench": "^9.0|^10.0",
  2685. "phpstan/phpstan": "^1.10",
  2686. "phpunit/phpunit": "^11.3"
  2687. },
  2688. "type": "library",
  2689. "extra": {
  2690. "laravel": {
  2691. "providers": [
  2692. "Laravel\\Sanctum\\SanctumServiceProvider"
  2693. ]
  2694. }
  2695. },
  2696. "autoload": {
  2697. "psr-4": {
  2698. "Laravel\\Sanctum\\": "src/"
  2699. }
  2700. },
  2701. "notification-url": "https://packagist.org/downloads/",
  2702. "license": [
  2703. "MIT"
  2704. ],
  2705. "authors": [
  2706. {
  2707. "name": "Taylor Otwell",
  2708. "email": "taylor@laravel.com"
  2709. }
  2710. ],
  2711. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2712. "keywords": [
  2713. "auth",
  2714. "laravel",
  2715. "sanctum"
  2716. ],
  2717. "support": {
  2718. "issues": "https://github.com/laravel/sanctum/issues",
  2719. "source": "https://github.com/laravel/sanctum"
  2720. },
  2721. "time": "2025-07-01T15:49:32+00:00"
  2722. },
  2723. {
  2724. "name": "laravel/serializable-closure",
  2725. "version": "v2.0.4",
  2726. "source": {
  2727. "type": "git",
  2728. "url": "https://github.com/laravel/serializable-closure.git",
  2729. "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841"
  2730. },
  2731. "dist": {
  2732. "type": "zip",
  2733. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
  2734. "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
  2735. "shasum": ""
  2736. },
  2737. "require": {
  2738. "php": "^8.1"
  2739. },
  2740. "require-dev": {
  2741. "illuminate/support": "^10.0|^11.0|^12.0",
  2742. "nesbot/carbon": "^2.67|^3.0",
  2743. "pestphp/pest": "^2.36|^3.0",
  2744. "phpstan/phpstan": "^2.0",
  2745. "symfony/var-dumper": "^6.2.0|^7.0.0"
  2746. },
  2747. "type": "library",
  2748. "extra": {
  2749. "branch-alias": {
  2750. "dev-master": "2.x-dev"
  2751. }
  2752. },
  2753. "autoload": {
  2754. "psr-4": {
  2755. "Laravel\\SerializableClosure\\": "src/"
  2756. }
  2757. },
  2758. "notification-url": "https://packagist.org/downloads/",
  2759. "license": [
  2760. "MIT"
  2761. ],
  2762. "authors": [
  2763. {
  2764. "name": "Taylor Otwell",
  2765. "email": "taylor@laravel.com"
  2766. },
  2767. {
  2768. "name": "Nuno Maduro",
  2769. "email": "nuno@laravel.com"
  2770. }
  2771. ],
  2772. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2773. "keywords": [
  2774. "closure",
  2775. "laravel",
  2776. "serializable"
  2777. ],
  2778. "support": {
  2779. "issues": "https://github.com/laravel/serializable-closure/issues",
  2780. "source": "https://github.com/laravel/serializable-closure"
  2781. },
  2782. "time": "2025-03-19T13:51:03+00:00"
  2783. },
  2784. {
  2785. "name": "laravel/tinker",
  2786. "version": "v2.10.1",
  2787. "source": {
  2788. "type": "git",
  2789. "url": "https://github.com/laravel/tinker.git",
  2790. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  2791. },
  2792. "dist": {
  2793. "type": "zip",
  2794. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  2795. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  2796. "shasum": ""
  2797. },
  2798. "require": {
  2799. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2800. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2801. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2802. "php": "^7.2.5|^8.0",
  2803. "psy/psysh": "^0.11.1|^0.12.0",
  2804. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2805. },
  2806. "require-dev": {
  2807. "mockery/mockery": "~1.3.3|^1.4.2",
  2808. "phpstan/phpstan": "^1.10",
  2809. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  2810. },
  2811. "suggest": {
  2812. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  2813. },
  2814. "type": "library",
  2815. "extra": {
  2816. "laravel": {
  2817. "providers": [
  2818. "Laravel\\Tinker\\TinkerServiceProvider"
  2819. ]
  2820. }
  2821. },
  2822. "autoload": {
  2823. "psr-4": {
  2824. "Laravel\\Tinker\\": "src/"
  2825. }
  2826. },
  2827. "notification-url": "https://packagist.org/downloads/",
  2828. "license": [
  2829. "MIT"
  2830. ],
  2831. "authors": [
  2832. {
  2833. "name": "Taylor Otwell",
  2834. "email": "taylor@laravel.com"
  2835. }
  2836. ],
  2837. "description": "Powerful REPL for the Laravel framework.",
  2838. "keywords": [
  2839. "REPL",
  2840. "Tinker",
  2841. "laravel",
  2842. "psysh"
  2843. ],
  2844. "support": {
  2845. "issues": "https://github.com/laravel/tinker/issues",
  2846. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  2847. },
  2848. "time": "2025-01-27T14:24:01+00:00"
  2849. },
  2850. {
  2851. "name": "lcobucci/jwt",
  2852. "version": "5.6.0",
  2853. "source": {
  2854. "type": "git",
  2855. "url": "https://github.com/lcobucci/jwt.git",
  2856. "reference": "bb3e9f21e4196e8afc41def81ef649c164bca25e"
  2857. },
  2858. "dist": {
  2859. "type": "zip",
  2860. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/bb3e9f21e4196e8afc41def81ef649c164bca25e",
  2861. "reference": "bb3e9f21e4196e8afc41def81ef649c164bca25e",
  2862. "shasum": ""
  2863. },
  2864. "require": {
  2865. "ext-openssl": "*",
  2866. "ext-sodium": "*",
  2867. "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  2868. "psr/clock": "^1.0"
  2869. },
  2870. "require-dev": {
  2871. "infection/infection": "^0.29",
  2872. "lcobucci/clock": "^3.2",
  2873. "lcobucci/coding-standard": "^11.0",
  2874. "phpbench/phpbench": "^1.2",
  2875. "phpstan/extension-installer": "^1.2",
  2876. "phpstan/phpstan": "^1.10.7",
  2877. "phpstan/phpstan-deprecation-rules": "^1.1.3",
  2878. "phpstan/phpstan-phpunit": "^1.3.10",
  2879. "phpstan/phpstan-strict-rules": "^1.5.0",
  2880. "phpunit/phpunit": "^11.1"
  2881. },
  2882. "suggest": {
  2883. "lcobucci/clock": ">= 3.2"
  2884. },
  2885. "type": "library",
  2886. "autoload": {
  2887. "psr-4": {
  2888. "Lcobucci\\JWT\\": "src"
  2889. }
  2890. },
  2891. "notification-url": "https://packagist.org/downloads/",
  2892. "license": [
  2893. "BSD-3-Clause"
  2894. ],
  2895. "authors": [
  2896. {
  2897. "name": "Luís Cobucci",
  2898. "email": "lcobucci@gmail.com",
  2899. "role": "Developer"
  2900. }
  2901. ],
  2902. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2903. "keywords": [
  2904. "JWS",
  2905. "jwt"
  2906. ],
  2907. "support": {
  2908. "issues": "https://github.com/lcobucci/jwt/issues",
  2909. "source": "https://github.com/lcobucci/jwt/tree/5.6.0"
  2910. },
  2911. "funding": [
  2912. {
  2913. "url": "https://github.com/lcobucci",
  2914. "type": "github"
  2915. },
  2916. {
  2917. "url": "https://www.patreon.com/lcobucci",
  2918. "type": "patreon"
  2919. }
  2920. ],
  2921. "time": "2025-10-17T11:30:53+00:00"
  2922. },
  2923. {
  2924. "name": "league/commonmark",
  2925. "version": "2.7.0",
  2926. "source": {
  2927. "type": "git",
  2928. "url": "https://github.com/thephpleague/commonmark.git",
  2929. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405"
  2930. },
  2931. "dist": {
  2932. "type": "zip",
  2933. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  2934. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  2935. "shasum": ""
  2936. },
  2937. "require": {
  2938. "ext-mbstring": "*",
  2939. "league/config": "^1.1.1",
  2940. "php": "^7.4 || ^8.0",
  2941. "psr/event-dispatcher": "^1.0",
  2942. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2943. "symfony/polyfill-php80": "^1.16"
  2944. },
  2945. "require-dev": {
  2946. "cebe/markdown": "^1.0",
  2947. "commonmark/cmark": "0.31.1",
  2948. "commonmark/commonmark.js": "0.31.1",
  2949. "composer/package-versions-deprecated": "^1.8",
  2950. "embed/embed": "^4.4",
  2951. "erusev/parsedown": "^1.0",
  2952. "ext-json": "*",
  2953. "github/gfm": "0.29.0",
  2954. "michelf/php-markdown": "^1.4 || ^2.0",
  2955. "nyholm/psr7": "^1.5",
  2956. "phpstan/phpstan": "^1.8.2",
  2957. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2958. "scrutinizer/ocular": "^1.8.1",
  2959. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2960. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2961. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2962. "unleashedtech/php-coding-standard": "^3.1.1",
  2963. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2964. },
  2965. "suggest": {
  2966. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2967. },
  2968. "type": "library",
  2969. "extra": {
  2970. "branch-alias": {
  2971. "dev-main": "2.8-dev"
  2972. }
  2973. },
  2974. "autoload": {
  2975. "psr-4": {
  2976. "League\\CommonMark\\": "src"
  2977. }
  2978. },
  2979. "notification-url": "https://packagist.org/downloads/",
  2980. "license": [
  2981. "BSD-3-Clause"
  2982. ],
  2983. "authors": [
  2984. {
  2985. "name": "Colin O'Dell",
  2986. "email": "colinodell@gmail.com",
  2987. "homepage": "https://www.colinodell.com",
  2988. "role": "Lead Developer"
  2989. }
  2990. ],
  2991. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2992. "homepage": "https://commonmark.thephpleague.com",
  2993. "keywords": [
  2994. "commonmark",
  2995. "flavored",
  2996. "gfm",
  2997. "github",
  2998. "github-flavored",
  2999. "markdown",
  3000. "md",
  3001. "parser"
  3002. ],
  3003. "support": {
  3004. "docs": "https://commonmark.thephpleague.com/",
  3005. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3006. "issues": "https://github.com/thephpleague/commonmark/issues",
  3007. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3008. "source": "https://github.com/thephpleague/commonmark"
  3009. },
  3010. "funding": [
  3011. {
  3012. "url": "https://www.colinodell.com/sponsor",
  3013. "type": "custom"
  3014. },
  3015. {
  3016. "url": "https://www.paypal.me/colinpodell/10.00",
  3017. "type": "custom"
  3018. },
  3019. {
  3020. "url": "https://github.com/colinodell",
  3021. "type": "github"
  3022. },
  3023. {
  3024. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3025. "type": "tidelift"
  3026. }
  3027. ],
  3028. "time": "2025-05-05T12:20:28+00:00"
  3029. },
  3030. {
  3031. "name": "league/config",
  3032. "version": "v1.2.0",
  3033. "source": {
  3034. "type": "git",
  3035. "url": "https://github.com/thephpleague/config.git",
  3036. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3037. },
  3038. "dist": {
  3039. "type": "zip",
  3040. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3041. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3042. "shasum": ""
  3043. },
  3044. "require": {
  3045. "dflydev/dot-access-data": "^3.0.1",
  3046. "nette/schema": "^1.2",
  3047. "php": "^7.4 || ^8.0"
  3048. },
  3049. "require-dev": {
  3050. "phpstan/phpstan": "^1.8.2",
  3051. "phpunit/phpunit": "^9.5.5",
  3052. "scrutinizer/ocular": "^1.8.1",
  3053. "unleashedtech/php-coding-standard": "^3.1",
  3054. "vimeo/psalm": "^4.7.3"
  3055. },
  3056. "type": "library",
  3057. "extra": {
  3058. "branch-alias": {
  3059. "dev-main": "1.2-dev"
  3060. }
  3061. },
  3062. "autoload": {
  3063. "psr-4": {
  3064. "League\\Config\\": "src"
  3065. }
  3066. },
  3067. "notification-url": "https://packagist.org/downloads/",
  3068. "license": [
  3069. "BSD-3-Clause"
  3070. ],
  3071. "authors": [
  3072. {
  3073. "name": "Colin O'Dell",
  3074. "email": "colinodell@gmail.com",
  3075. "homepage": "https://www.colinodell.com",
  3076. "role": "Lead Developer"
  3077. }
  3078. ],
  3079. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3080. "homepage": "https://config.thephpleague.com",
  3081. "keywords": [
  3082. "array",
  3083. "config",
  3084. "configuration",
  3085. "dot",
  3086. "dot-access",
  3087. "nested",
  3088. "schema"
  3089. ],
  3090. "support": {
  3091. "docs": "https://config.thephpleague.com/",
  3092. "issues": "https://github.com/thephpleague/config/issues",
  3093. "rss": "https://github.com/thephpleague/config/releases.atom",
  3094. "source": "https://github.com/thephpleague/config"
  3095. },
  3096. "funding": [
  3097. {
  3098. "url": "https://www.colinodell.com/sponsor",
  3099. "type": "custom"
  3100. },
  3101. {
  3102. "url": "https://www.paypal.me/colinpodell/10.00",
  3103. "type": "custom"
  3104. },
  3105. {
  3106. "url": "https://github.com/colinodell",
  3107. "type": "github"
  3108. }
  3109. ],
  3110. "time": "2022-12-11T20:36:23+00:00"
  3111. },
  3112. {
  3113. "name": "league/flysystem",
  3114. "version": "3.30.0",
  3115. "source": {
  3116. "type": "git",
  3117. "url": "https://github.com/thephpleague/flysystem.git",
  3118. "reference": "2203e3151755d874bb2943649dae1eb8533ac93e"
  3119. },
  3120. "dist": {
  3121. "type": "zip",
  3122. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2203e3151755d874bb2943649dae1eb8533ac93e",
  3123. "reference": "2203e3151755d874bb2943649dae1eb8533ac93e",
  3124. "shasum": ""
  3125. },
  3126. "require": {
  3127. "league/flysystem-local": "^3.0.0",
  3128. "league/mime-type-detection": "^1.0.0",
  3129. "php": "^8.0.2"
  3130. },
  3131. "conflict": {
  3132. "async-aws/core": "<1.19.0",
  3133. "async-aws/s3": "<1.14.0",
  3134. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3135. "guzzlehttp/guzzle": "<7.0",
  3136. "guzzlehttp/ringphp": "<1.1.1",
  3137. "phpseclib/phpseclib": "3.0.15",
  3138. "symfony/http-client": "<5.2"
  3139. },
  3140. "require-dev": {
  3141. "async-aws/s3": "^1.5 || ^2.0",
  3142. "async-aws/simple-s3": "^1.1 || ^2.0",
  3143. "aws/aws-sdk-php": "^3.295.10",
  3144. "composer/semver": "^3.0",
  3145. "ext-fileinfo": "*",
  3146. "ext-ftp": "*",
  3147. "ext-mongodb": "^1.3|^2",
  3148. "ext-zip": "*",
  3149. "friendsofphp/php-cs-fixer": "^3.5",
  3150. "google/cloud-storage": "^1.23",
  3151. "guzzlehttp/psr7": "^2.6",
  3152. "microsoft/azure-storage-blob": "^1.1",
  3153. "mongodb/mongodb": "^1.2|^2",
  3154. "phpseclib/phpseclib": "^3.0.36",
  3155. "phpstan/phpstan": "^1.10",
  3156. "phpunit/phpunit": "^9.5.11|^10.0",
  3157. "sabre/dav": "^4.6.0"
  3158. },
  3159. "type": "library",
  3160. "autoload": {
  3161. "psr-4": {
  3162. "League\\Flysystem\\": "src"
  3163. }
  3164. },
  3165. "notification-url": "https://packagist.org/downloads/",
  3166. "license": [
  3167. "MIT"
  3168. ],
  3169. "authors": [
  3170. {
  3171. "name": "Frank de Jonge",
  3172. "email": "info@frankdejonge.nl"
  3173. }
  3174. ],
  3175. "description": "File storage abstraction for PHP",
  3176. "keywords": [
  3177. "WebDAV",
  3178. "aws",
  3179. "cloud",
  3180. "file",
  3181. "files",
  3182. "filesystem",
  3183. "filesystems",
  3184. "ftp",
  3185. "s3",
  3186. "sftp",
  3187. "storage"
  3188. ],
  3189. "support": {
  3190. "issues": "https://github.com/thephpleague/flysystem/issues",
  3191. "source": "https://github.com/thephpleague/flysystem/tree/3.30.0"
  3192. },
  3193. "time": "2025-06-25T13:29:59+00:00"
  3194. },
  3195. {
  3196. "name": "league/flysystem-aws-s3-v3",
  3197. "version": "3.34.0",
  3198. "source": {
  3199. "type": "git",
  3200. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  3201. "reference": "0c62fdac907791d8649ad3c61cb7a77628344fb8"
  3202. },
  3203. "dist": {
  3204. "type": "zip",
  3205. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/0c62fdac907791d8649ad3c61cb7a77628344fb8",
  3206. "reference": "0c62fdac907791d8649ad3c61cb7a77628344fb8",
  3207. "shasum": ""
  3208. },
  3209. "require": {
  3210. "aws/aws-sdk-php": "^3.371.5",
  3211. "league/flysystem": "^3.10.0",
  3212. "league/mime-type-detection": "^1.0.0",
  3213. "php": "^8.0.2"
  3214. },
  3215. "conflict": {
  3216. "guzzlehttp/guzzle": "<7.0",
  3217. "guzzlehttp/ringphp": "<1.1.1"
  3218. },
  3219. "type": "library",
  3220. "autoload": {
  3221. "psr-4": {
  3222. "League\\Flysystem\\AwsS3V3\\": ""
  3223. }
  3224. },
  3225. "notification-url": "https://packagist.org/downloads/",
  3226. "license": [
  3227. "MIT"
  3228. ],
  3229. "authors": [
  3230. {
  3231. "name": "Frank de Jonge",
  3232. "email": "info@frankdejonge.nl"
  3233. }
  3234. ],
  3235. "description": "AWS S3 filesystem adapter for Flysystem.",
  3236. "keywords": [
  3237. "Flysystem",
  3238. "aws",
  3239. "file",
  3240. "files",
  3241. "filesystem",
  3242. "s3",
  3243. "storage"
  3244. ],
  3245. "support": {
  3246. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.34.0"
  3247. },
  3248. "time": "2026-05-04T08:24:00+00:00"
  3249. },
  3250. {
  3251. "name": "league/flysystem-local",
  3252. "version": "3.30.0",
  3253. "source": {
  3254. "type": "git",
  3255. "url": "https://github.com/thephpleague/flysystem-local.git",
  3256. "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10"
  3257. },
  3258. "dist": {
  3259. "type": "zip",
  3260. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/6691915f77c7fb69adfb87dcd550052dc184ee10",
  3261. "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10",
  3262. "shasum": ""
  3263. },
  3264. "require": {
  3265. "ext-fileinfo": "*",
  3266. "league/flysystem": "^3.0.0",
  3267. "league/mime-type-detection": "^1.0.0",
  3268. "php": "^8.0.2"
  3269. },
  3270. "type": "library",
  3271. "autoload": {
  3272. "psr-4": {
  3273. "League\\Flysystem\\Local\\": ""
  3274. }
  3275. },
  3276. "notification-url": "https://packagist.org/downloads/",
  3277. "license": [
  3278. "MIT"
  3279. ],
  3280. "authors": [
  3281. {
  3282. "name": "Frank de Jonge",
  3283. "email": "info@frankdejonge.nl"
  3284. }
  3285. ],
  3286. "description": "Local filesystem adapter for Flysystem.",
  3287. "keywords": [
  3288. "Flysystem",
  3289. "file",
  3290. "files",
  3291. "filesystem",
  3292. "local"
  3293. ],
  3294. "support": {
  3295. "source": "https://github.com/thephpleague/flysystem-local/tree/3.30.0"
  3296. },
  3297. "time": "2025-05-21T10:34:19+00:00"
  3298. },
  3299. {
  3300. "name": "league/mime-type-detection",
  3301. "version": "1.16.0",
  3302. "source": {
  3303. "type": "git",
  3304. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3305. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  3306. },
  3307. "dist": {
  3308. "type": "zip",
  3309. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  3310. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  3311. "shasum": ""
  3312. },
  3313. "require": {
  3314. "ext-fileinfo": "*",
  3315. "php": "^7.4 || ^8.0"
  3316. },
  3317. "require-dev": {
  3318. "friendsofphp/php-cs-fixer": "^3.2",
  3319. "phpstan/phpstan": "^0.12.68",
  3320. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3321. },
  3322. "type": "library",
  3323. "autoload": {
  3324. "psr-4": {
  3325. "League\\MimeTypeDetection\\": "src"
  3326. }
  3327. },
  3328. "notification-url": "https://packagist.org/downloads/",
  3329. "license": [
  3330. "MIT"
  3331. ],
  3332. "authors": [
  3333. {
  3334. "name": "Frank de Jonge",
  3335. "email": "info@frankdejonge.nl"
  3336. }
  3337. ],
  3338. "description": "Mime-type detection for Flysystem",
  3339. "support": {
  3340. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3341. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  3342. },
  3343. "funding": [
  3344. {
  3345. "url": "https://github.com/frankdejonge",
  3346. "type": "github"
  3347. },
  3348. {
  3349. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3350. "type": "tidelift"
  3351. }
  3352. ],
  3353. "time": "2024-09-21T08:32:55+00:00"
  3354. },
  3355. {
  3356. "name": "league/uri",
  3357. "version": "7.5.1",
  3358. "source": {
  3359. "type": "git",
  3360. "url": "https://github.com/thephpleague/uri.git",
  3361. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  3362. },
  3363. "dist": {
  3364. "type": "zip",
  3365. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  3366. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  3367. "shasum": ""
  3368. },
  3369. "require": {
  3370. "league/uri-interfaces": "^7.5",
  3371. "php": "^8.1"
  3372. },
  3373. "conflict": {
  3374. "league/uri-schemes": "^1.0"
  3375. },
  3376. "suggest": {
  3377. "ext-bcmath": "to improve IPV4 host parsing",
  3378. "ext-fileinfo": "to create Data URI from file contennts",
  3379. "ext-gmp": "to improve IPV4 host parsing",
  3380. "ext-intl": "to handle IDN host with the best performance",
  3381. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  3382. "league/uri-components": "Needed to easily manipulate URI objects components",
  3383. "php-64bit": "to improve IPV4 host parsing",
  3384. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3385. },
  3386. "type": "library",
  3387. "extra": {
  3388. "branch-alias": {
  3389. "dev-master": "7.x-dev"
  3390. }
  3391. },
  3392. "autoload": {
  3393. "psr-4": {
  3394. "League\\Uri\\": ""
  3395. }
  3396. },
  3397. "notification-url": "https://packagist.org/downloads/",
  3398. "license": [
  3399. "MIT"
  3400. ],
  3401. "authors": [
  3402. {
  3403. "name": "Ignace Nyamagana Butera",
  3404. "email": "nyamsprod@gmail.com",
  3405. "homepage": "https://nyamsprod.com"
  3406. }
  3407. ],
  3408. "description": "URI manipulation library",
  3409. "homepage": "https://uri.thephpleague.com",
  3410. "keywords": [
  3411. "data-uri",
  3412. "file-uri",
  3413. "ftp",
  3414. "hostname",
  3415. "http",
  3416. "https",
  3417. "middleware",
  3418. "parse_str",
  3419. "parse_url",
  3420. "psr-7",
  3421. "query-string",
  3422. "querystring",
  3423. "rfc3986",
  3424. "rfc3987",
  3425. "rfc6570",
  3426. "uri",
  3427. "uri-template",
  3428. "url",
  3429. "ws"
  3430. ],
  3431. "support": {
  3432. "docs": "https://uri.thephpleague.com",
  3433. "forum": "https://thephpleague.slack.com",
  3434. "issues": "https://github.com/thephpleague/uri-src/issues",
  3435. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  3436. },
  3437. "funding": [
  3438. {
  3439. "url": "https://github.com/sponsors/nyamsprod",
  3440. "type": "github"
  3441. }
  3442. ],
  3443. "time": "2024-12-08T08:40:02+00:00"
  3444. },
  3445. {
  3446. "name": "league/uri-interfaces",
  3447. "version": "7.5.0",
  3448. "source": {
  3449. "type": "git",
  3450. "url": "https://github.com/thephpleague/uri-interfaces.git",
  3451. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  3452. },
  3453. "dist": {
  3454. "type": "zip",
  3455. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  3456. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  3457. "shasum": ""
  3458. },
  3459. "require": {
  3460. "ext-filter": "*",
  3461. "php": "^8.1",
  3462. "psr/http-factory": "^1",
  3463. "psr/http-message": "^1.1 || ^2.0"
  3464. },
  3465. "suggest": {
  3466. "ext-bcmath": "to improve IPV4 host parsing",
  3467. "ext-gmp": "to improve IPV4 host parsing",
  3468. "ext-intl": "to handle IDN host with the best performance",
  3469. "php-64bit": "to improve IPV4 host parsing",
  3470. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3471. },
  3472. "type": "library",
  3473. "extra": {
  3474. "branch-alias": {
  3475. "dev-master": "7.x-dev"
  3476. }
  3477. },
  3478. "autoload": {
  3479. "psr-4": {
  3480. "League\\Uri\\": ""
  3481. }
  3482. },
  3483. "notification-url": "https://packagist.org/downloads/",
  3484. "license": [
  3485. "MIT"
  3486. ],
  3487. "authors": [
  3488. {
  3489. "name": "Ignace Nyamagana Butera",
  3490. "email": "nyamsprod@gmail.com",
  3491. "homepage": "https://nyamsprod.com"
  3492. }
  3493. ],
  3494. "description": "Common interfaces and classes for URI representation and interaction",
  3495. "homepage": "https://uri.thephpleague.com",
  3496. "keywords": [
  3497. "data-uri",
  3498. "file-uri",
  3499. "ftp",
  3500. "hostname",
  3501. "http",
  3502. "https",
  3503. "parse_str",
  3504. "parse_url",
  3505. "psr-7",
  3506. "query-string",
  3507. "querystring",
  3508. "rfc3986",
  3509. "rfc3987",
  3510. "rfc6570",
  3511. "uri",
  3512. "url",
  3513. "ws"
  3514. ],
  3515. "support": {
  3516. "docs": "https://uri.thephpleague.com",
  3517. "forum": "https://thephpleague.slack.com",
  3518. "issues": "https://github.com/thephpleague/uri-src/issues",
  3519. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  3520. },
  3521. "funding": [
  3522. {
  3523. "url": "https://github.com/sponsors/nyamsprod",
  3524. "type": "github"
  3525. }
  3526. ],
  3527. "time": "2024-12-08T08:18:47+00:00"
  3528. },
  3529. {
  3530. "name": "monolog/monolog",
  3531. "version": "3.9.0",
  3532. "source": {
  3533. "type": "git",
  3534. "url": "https://github.com/Seldaek/monolog.git",
  3535. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  3536. },
  3537. "dist": {
  3538. "type": "zip",
  3539. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  3540. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  3541. "shasum": ""
  3542. },
  3543. "require": {
  3544. "php": ">=8.1",
  3545. "psr/log": "^2.0 || ^3.0"
  3546. },
  3547. "provide": {
  3548. "psr/log-implementation": "3.0.0"
  3549. },
  3550. "require-dev": {
  3551. "aws/aws-sdk-php": "^3.0",
  3552. "doctrine/couchdb": "~1.0@dev",
  3553. "elasticsearch/elasticsearch": "^7 || ^8",
  3554. "ext-json": "*",
  3555. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  3556. "guzzlehttp/guzzle": "^7.4.5",
  3557. "guzzlehttp/psr7": "^2.2",
  3558. "mongodb/mongodb": "^1.8",
  3559. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3560. "php-console/php-console": "^3.1.8",
  3561. "phpstan/phpstan": "^2",
  3562. "phpstan/phpstan-deprecation-rules": "^2",
  3563. "phpstan/phpstan-strict-rules": "^2",
  3564. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  3565. "predis/predis": "^1.1 || ^2",
  3566. "rollbar/rollbar": "^4.0",
  3567. "ruflin/elastica": "^7 || ^8",
  3568. "symfony/mailer": "^5.4 || ^6",
  3569. "symfony/mime": "^5.4 || ^6"
  3570. },
  3571. "suggest": {
  3572. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3573. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3574. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3575. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3576. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3577. "ext-mbstring": "Allow to work properly with unicode symbols",
  3578. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3579. "ext-openssl": "Required to send log messages using SSL",
  3580. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3581. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3582. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3583. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3584. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3585. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3586. },
  3587. "type": "library",
  3588. "extra": {
  3589. "branch-alias": {
  3590. "dev-main": "3.x-dev"
  3591. }
  3592. },
  3593. "autoload": {
  3594. "psr-4": {
  3595. "Monolog\\": "src/Monolog"
  3596. }
  3597. },
  3598. "notification-url": "https://packagist.org/downloads/",
  3599. "license": [
  3600. "MIT"
  3601. ],
  3602. "authors": [
  3603. {
  3604. "name": "Jordi Boggiano",
  3605. "email": "j.boggiano@seld.be",
  3606. "homepage": "https://seld.be"
  3607. }
  3608. ],
  3609. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3610. "homepage": "https://github.com/Seldaek/monolog",
  3611. "keywords": [
  3612. "log",
  3613. "logging",
  3614. "psr-3"
  3615. ],
  3616. "support": {
  3617. "issues": "https://github.com/Seldaek/monolog/issues",
  3618. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  3619. },
  3620. "funding": [
  3621. {
  3622. "url": "https://github.com/Seldaek",
  3623. "type": "github"
  3624. },
  3625. {
  3626. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3627. "type": "tidelift"
  3628. }
  3629. ],
  3630. "time": "2025-03-24T10:02:05+00:00"
  3631. },
  3632. {
  3633. "name": "mtdowling/jmespath.php",
  3634. "version": "2.8.0",
  3635. "source": {
  3636. "type": "git",
  3637. "url": "https://github.com/jmespath/jmespath.php.git",
  3638. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  3639. },
  3640. "dist": {
  3641. "type": "zip",
  3642. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  3643. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  3644. "shasum": ""
  3645. },
  3646. "require": {
  3647. "php": "^7.2.5 || ^8.0",
  3648. "symfony/polyfill-mbstring": "^1.17"
  3649. },
  3650. "require-dev": {
  3651. "composer/xdebug-handler": "^3.0.3",
  3652. "phpunit/phpunit": "^8.5.33"
  3653. },
  3654. "bin": [
  3655. "bin/jp.php"
  3656. ],
  3657. "type": "library",
  3658. "extra": {
  3659. "branch-alias": {
  3660. "dev-master": "2.8-dev"
  3661. }
  3662. },
  3663. "autoload": {
  3664. "files": [
  3665. "src/JmesPath.php"
  3666. ],
  3667. "psr-4": {
  3668. "JmesPath\\": "src/"
  3669. }
  3670. },
  3671. "notification-url": "https://packagist.org/downloads/",
  3672. "license": [
  3673. "MIT"
  3674. ],
  3675. "authors": [
  3676. {
  3677. "name": "Graham Campbell",
  3678. "email": "hello@gjcampbell.co.uk",
  3679. "homepage": "https://github.com/GrahamCampbell"
  3680. },
  3681. {
  3682. "name": "Michael Dowling",
  3683. "email": "mtdowling@gmail.com",
  3684. "homepage": "https://github.com/mtdowling"
  3685. }
  3686. ],
  3687. "description": "Declaratively specify how to extract elements from a JSON document",
  3688. "keywords": [
  3689. "json",
  3690. "jsonpath"
  3691. ],
  3692. "support": {
  3693. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3694. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  3695. },
  3696. "time": "2024-09-04T18:46:31+00:00"
  3697. },
  3698. {
  3699. "name": "nesbot/carbon",
  3700. "version": "3.10.1",
  3701. "source": {
  3702. "type": "git",
  3703. "url": "https://github.com/CarbonPHP/carbon.git",
  3704. "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00"
  3705. },
  3706. "dist": {
  3707. "type": "zip",
  3708. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/1fd1935b2d90aef2f093c5e35f7ae1257c448d00",
  3709. "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00",
  3710. "shasum": ""
  3711. },
  3712. "require": {
  3713. "carbonphp/carbon-doctrine-types": "<100.0",
  3714. "ext-json": "*",
  3715. "php": "^8.1",
  3716. "psr/clock": "^1.0",
  3717. "symfony/clock": "^6.3.12 || ^7.0",
  3718. "symfony/polyfill-mbstring": "^1.0",
  3719. "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0"
  3720. },
  3721. "provide": {
  3722. "psr/clock-implementation": "1.0"
  3723. },
  3724. "require-dev": {
  3725. "doctrine/dbal": "^3.6.3 || ^4.0",
  3726. "doctrine/orm": "^2.15.2 || ^3.0",
  3727. "friendsofphp/php-cs-fixer": "^3.75.0",
  3728. "kylekatarnls/multi-tester": "^2.5.3",
  3729. "phpmd/phpmd": "^2.15.0",
  3730. "phpstan/extension-installer": "^1.4.3",
  3731. "phpstan/phpstan": "^2.1.17",
  3732. "phpunit/phpunit": "^10.5.46",
  3733. "squizlabs/php_codesniffer": "^3.13.0"
  3734. },
  3735. "bin": [
  3736. "bin/carbon"
  3737. ],
  3738. "type": "library",
  3739. "extra": {
  3740. "laravel": {
  3741. "providers": [
  3742. "Carbon\\Laravel\\ServiceProvider"
  3743. ]
  3744. },
  3745. "phpstan": {
  3746. "includes": [
  3747. "extension.neon"
  3748. ]
  3749. },
  3750. "branch-alias": {
  3751. "dev-2.x": "2.x-dev",
  3752. "dev-master": "3.x-dev"
  3753. }
  3754. },
  3755. "autoload": {
  3756. "psr-4": {
  3757. "Carbon\\": "src/Carbon/"
  3758. }
  3759. },
  3760. "notification-url": "https://packagist.org/downloads/",
  3761. "license": [
  3762. "MIT"
  3763. ],
  3764. "authors": [
  3765. {
  3766. "name": "Brian Nesbitt",
  3767. "email": "brian@nesbot.com",
  3768. "homepage": "https://markido.com"
  3769. },
  3770. {
  3771. "name": "kylekatarnls",
  3772. "homepage": "https://github.com/kylekatarnls"
  3773. }
  3774. ],
  3775. "description": "An API extension for DateTime that supports 281 different languages.",
  3776. "homepage": "https://carbon.nesbot.com",
  3777. "keywords": [
  3778. "date",
  3779. "datetime",
  3780. "time"
  3781. ],
  3782. "support": {
  3783. "docs": "https://carbon.nesbot.com/docs",
  3784. "issues": "https://github.com/CarbonPHP/carbon/issues",
  3785. "source": "https://github.com/CarbonPHP/carbon"
  3786. },
  3787. "funding": [
  3788. {
  3789. "url": "https://github.com/sponsors/kylekatarnls",
  3790. "type": "github"
  3791. },
  3792. {
  3793. "url": "https://opencollective.com/Carbon#sponsor",
  3794. "type": "opencollective"
  3795. },
  3796. {
  3797. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3798. "type": "tidelift"
  3799. }
  3800. ],
  3801. "time": "2025-06-21T15:19:35+00:00"
  3802. },
  3803. {
  3804. "name": "nette/schema",
  3805. "version": "v1.3.2",
  3806. "source": {
  3807. "type": "git",
  3808. "url": "https://github.com/nette/schema.git",
  3809. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  3810. },
  3811. "dist": {
  3812. "type": "zip",
  3813. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  3814. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  3815. "shasum": ""
  3816. },
  3817. "require": {
  3818. "nette/utils": "^4.0",
  3819. "php": "8.1 - 8.4"
  3820. },
  3821. "require-dev": {
  3822. "nette/tester": "^2.5.2",
  3823. "phpstan/phpstan-nette": "^1.0",
  3824. "tracy/tracy": "^2.8"
  3825. },
  3826. "type": "library",
  3827. "extra": {
  3828. "branch-alias": {
  3829. "dev-master": "1.3-dev"
  3830. }
  3831. },
  3832. "autoload": {
  3833. "classmap": [
  3834. "src/"
  3835. ]
  3836. },
  3837. "notification-url": "https://packagist.org/downloads/",
  3838. "license": [
  3839. "BSD-3-Clause",
  3840. "GPL-2.0-only",
  3841. "GPL-3.0-only"
  3842. ],
  3843. "authors": [
  3844. {
  3845. "name": "David Grudl",
  3846. "homepage": "https://davidgrudl.com"
  3847. },
  3848. {
  3849. "name": "Nette Community",
  3850. "homepage": "https://nette.org/contributors"
  3851. }
  3852. ],
  3853. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3854. "homepage": "https://nette.org",
  3855. "keywords": [
  3856. "config",
  3857. "nette"
  3858. ],
  3859. "support": {
  3860. "issues": "https://github.com/nette/schema/issues",
  3861. "source": "https://github.com/nette/schema/tree/v1.3.2"
  3862. },
  3863. "time": "2024-10-06T23:10:23+00:00"
  3864. },
  3865. {
  3866. "name": "nette/utils",
  3867. "version": "v4.0.7",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://github.com/nette/utils.git",
  3871. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2"
  3872. },
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://api.github.com/repos/nette/utils/zipball/e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  3876. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  3877. "shasum": ""
  3878. },
  3879. "require": {
  3880. "php": "8.0 - 8.4"
  3881. },
  3882. "conflict": {
  3883. "nette/finder": "<3",
  3884. "nette/schema": "<1.2.2"
  3885. },
  3886. "require-dev": {
  3887. "jetbrains/phpstorm-attributes": "dev-master",
  3888. "nette/tester": "^2.5",
  3889. "phpstan/phpstan": "^1.0",
  3890. "tracy/tracy": "^2.9"
  3891. },
  3892. "suggest": {
  3893. "ext-gd": "to use Image",
  3894. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3895. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3896. "ext-json": "to use Nette\\Utils\\Json",
  3897. "ext-mbstring": "to use Strings::lower() etc...",
  3898. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3899. },
  3900. "type": "library",
  3901. "extra": {
  3902. "branch-alias": {
  3903. "dev-master": "4.0-dev"
  3904. }
  3905. },
  3906. "autoload": {
  3907. "classmap": [
  3908. "src/"
  3909. ]
  3910. },
  3911. "notification-url": "https://packagist.org/downloads/",
  3912. "license": [
  3913. "BSD-3-Clause",
  3914. "GPL-2.0-only",
  3915. "GPL-3.0-only"
  3916. ],
  3917. "authors": [
  3918. {
  3919. "name": "David Grudl",
  3920. "homepage": "https://davidgrudl.com"
  3921. },
  3922. {
  3923. "name": "Nette Community",
  3924. "homepage": "https://nette.org/contributors"
  3925. }
  3926. ],
  3927. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3928. "homepage": "https://nette.org",
  3929. "keywords": [
  3930. "array",
  3931. "core",
  3932. "datetime",
  3933. "images",
  3934. "json",
  3935. "nette",
  3936. "paginator",
  3937. "password",
  3938. "slugify",
  3939. "string",
  3940. "unicode",
  3941. "utf-8",
  3942. "utility",
  3943. "validation"
  3944. ],
  3945. "support": {
  3946. "issues": "https://github.com/nette/utils/issues",
  3947. "source": "https://github.com/nette/utils/tree/v4.0.7"
  3948. },
  3949. "time": "2025-06-03T04:55:08+00:00"
  3950. },
  3951. {
  3952. "name": "nikic/php-parser",
  3953. "version": "v5.5.0",
  3954. "source": {
  3955. "type": "git",
  3956. "url": "https://github.com/nikic/PHP-Parser.git",
  3957. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  3958. },
  3959. "dist": {
  3960. "type": "zip",
  3961. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  3962. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  3963. "shasum": ""
  3964. },
  3965. "require": {
  3966. "ext-ctype": "*",
  3967. "ext-json": "*",
  3968. "ext-tokenizer": "*",
  3969. "php": ">=7.4"
  3970. },
  3971. "require-dev": {
  3972. "ircmaxell/php-yacc": "^0.0.7",
  3973. "phpunit/phpunit": "^9.0"
  3974. },
  3975. "bin": [
  3976. "bin/php-parse"
  3977. ],
  3978. "type": "library",
  3979. "extra": {
  3980. "branch-alias": {
  3981. "dev-master": "5.0-dev"
  3982. }
  3983. },
  3984. "autoload": {
  3985. "psr-4": {
  3986. "PhpParser\\": "lib/PhpParser"
  3987. }
  3988. },
  3989. "notification-url": "https://packagist.org/downloads/",
  3990. "license": [
  3991. "BSD-3-Clause"
  3992. ],
  3993. "authors": [
  3994. {
  3995. "name": "Nikita Popov"
  3996. }
  3997. ],
  3998. "description": "A PHP parser written in PHP",
  3999. "keywords": [
  4000. "parser",
  4001. "php"
  4002. ],
  4003. "support": {
  4004. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4005. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  4006. },
  4007. "time": "2025-05-31T08:24:38+00:00"
  4008. },
  4009. {
  4010. "name": "nunomaduro/termwind",
  4011. "version": "v2.3.1",
  4012. "source": {
  4013. "type": "git",
  4014. "url": "https://github.com/nunomaduro/termwind.git",
  4015. "reference": "dfa08f390e509967a15c22493dc0bac5733d9123"
  4016. },
  4017. "dist": {
  4018. "type": "zip",
  4019. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dfa08f390e509967a15c22493dc0bac5733d9123",
  4020. "reference": "dfa08f390e509967a15c22493dc0bac5733d9123",
  4021. "shasum": ""
  4022. },
  4023. "require": {
  4024. "ext-mbstring": "*",
  4025. "php": "^8.2",
  4026. "symfony/console": "^7.2.6"
  4027. },
  4028. "require-dev": {
  4029. "illuminate/console": "^11.44.7",
  4030. "laravel/pint": "^1.22.0",
  4031. "mockery/mockery": "^1.6.12",
  4032. "pestphp/pest": "^2.36.0 || ^3.8.2",
  4033. "phpstan/phpstan": "^1.12.25",
  4034. "phpstan/phpstan-strict-rules": "^1.6.2",
  4035. "symfony/var-dumper": "^7.2.6",
  4036. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  4037. },
  4038. "type": "library",
  4039. "extra": {
  4040. "laravel": {
  4041. "providers": [
  4042. "Termwind\\Laravel\\TermwindServiceProvider"
  4043. ]
  4044. },
  4045. "branch-alias": {
  4046. "dev-2.x": "2.x-dev"
  4047. }
  4048. },
  4049. "autoload": {
  4050. "files": [
  4051. "src/Functions.php"
  4052. ],
  4053. "psr-4": {
  4054. "Termwind\\": "src/"
  4055. }
  4056. },
  4057. "notification-url": "https://packagist.org/downloads/",
  4058. "license": [
  4059. "MIT"
  4060. ],
  4061. "authors": [
  4062. {
  4063. "name": "Nuno Maduro",
  4064. "email": "enunomaduro@gmail.com"
  4065. }
  4066. ],
  4067. "description": "Its like Tailwind CSS, but for the console.",
  4068. "keywords": [
  4069. "cli",
  4070. "console",
  4071. "css",
  4072. "package",
  4073. "php",
  4074. "style"
  4075. ],
  4076. "support": {
  4077. "issues": "https://github.com/nunomaduro/termwind/issues",
  4078. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.1"
  4079. },
  4080. "funding": [
  4081. {
  4082. "url": "https://www.paypal.com/paypalme/enunomaduro",
  4083. "type": "custom"
  4084. },
  4085. {
  4086. "url": "https://github.com/nunomaduro",
  4087. "type": "github"
  4088. },
  4089. {
  4090. "url": "https://github.com/xiCO2k",
  4091. "type": "github"
  4092. }
  4093. ],
  4094. "time": "2025-05-08T08:14:37+00:00"
  4095. },
  4096. {
  4097. "name": "phpoption/phpoption",
  4098. "version": "1.9.3",
  4099. "source": {
  4100. "type": "git",
  4101. "url": "https://github.com/schmittjoh/php-option.git",
  4102. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  4103. },
  4104. "dist": {
  4105. "type": "zip",
  4106. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4107. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4108. "shasum": ""
  4109. },
  4110. "require": {
  4111. "php": "^7.2.5 || ^8.0"
  4112. },
  4113. "require-dev": {
  4114. "bamarni/composer-bin-plugin": "^1.8.2",
  4115. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  4116. },
  4117. "type": "library",
  4118. "extra": {
  4119. "bamarni-bin": {
  4120. "bin-links": true,
  4121. "forward-command": false
  4122. },
  4123. "branch-alias": {
  4124. "dev-master": "1.9-dev"
  4125. }
  4126. },
  4127. "autoload": {
  4128. "psr-4": {
  4129. "PhpOption\\": "src/PhpOption/"
  4130. }
  4131. },
  4132. "notification-url": "https://packagist.org/downloads/",
  4133. "license": [
  4134. "Apache-2.0"
  4135. ],
  4136. "authors": [
  4137. {
  4138. "name": "Johannes M. Schmitt",
  4139. "email": "schmittjoh@gmail.com",
  4140. "homepage": "https://github.com/schmittjoh"
  4141. },
  4142. {
  4143. "name": "Graham Campbell",
  4144. "email": "hello@gjcampbell.co.uk",
  4145. "homepage": "https://github.com/GrahamCampbell"
  4146. }
  4147. ],
  4148. "description": "Option Type for PHP",
  4149. "keywords": [
  4150. "language",
  4151. "option",
  4152. "php",
  4153. "type"
  4154. ],
  4155. "support": {
  4156. "issues": "https://github.com/schmittjoh/php-option/issues",
  4157. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  4158. },
  4159. "funding": [
  4160. {
  4161. "url": "https://github.com/GrahamCampbell",
  4162. "type": "github"
  4163. },
  4164. {
  4165. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4166. "type": "tidelift"
  4167. }
  4168. ],
  4169. "time": "2024-07-20T21:41:07+00:00"
  4170. },
  4171. {
  4172. "name": "psr/cache",
  4173. "version": "3.0.0",
  4174. "source": {
  4175. "type": "git",
  4176. "url": "https://github.com/php-fig/cache.git",
  4177. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4178. },
  4179. "dist": {
  4180. "type": "zip",
  4181. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4182. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4183. "shasum": ""
  4184. },
  4185. "require": {
  4186. "php": ">=8.0.0"
  4187. },
  4188. "type": "library",
  4189. "extra": {
  4190. "branch-alias": {
  4191. "dev-master": "1.0.x-dev"
  4192. }
  4193. },
  4194. "autoload": {
  4195. "psr-4": {
  4196. "Psr\\Cache\\": "src/"
  4197. }
  4198. },
  4199. "notification-url": "https://packagist.org/downloads/",
  4200. "license": [
  4201. "MIT"
  4202. ],
  4203. "authors": [
  4204. {
  4205. "name": "PHP-FIG",
  4206. "homepage": "https://www.php-fig.org/"
  4207. }
  4208. ],
  4209. "description": "Common interface for caching libraries",
  4210. "keywords": [
  4211. "cache",
  4212. "psr",
  4213. "psr-6"
  4214. ],
  4215. "support": {
  4216. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4217. },
  4218. "time": "2021-02-03T23:26:27+00:00"
  4219. },
  4220. {
  4221. "name": "psr/clock",
  4222. "version": "1.0.0",
  4223. "source": {
  4224. "type": "git",
  4225. "url": "https://github.com/php-fig/clock.git",
  4226. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4227. },
  4228. "dist": {
  4229. "type": "zip",
  4230. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4231. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4232. "shasum": ""
  4233. },
  4234. "require": {
  4235. "php": "^7.0 || ^8.0"
  4236. },
  4237. "type": "library",
  4238. "autoload": {
  4239. "psr-4": {
  4240. "Psr\\Clock\\": "src/"
  4241. }
  4242. },
  4243. "notification-url": "https://packagist.org/downloads/",
  4244. "license": [
  4245. "MIT"
  4246. ],
  4247. "authors": [
  4248. {
  4249. "name": "PHP-FIG",
  4250. "homepage": "https://www.php-fig.org/"
  4251. }
  4252. ],
  4253. "description": "Common interface for reading the clock.",
  4254. "homepage": "https://github.com/php-fig/clock",
  4255. "keywords": [
  4256. "clock",
  4257. "now",
  4258. "psr",
  4259. "psr-20",
  4260. "time"
  4261. ],
  4262. "support": {
  4263. "issues": "https://github.com/php-fig/clock/issues",
  4264. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4265. },
  4266. "time": "2022-11-25T14:36:26+00:00"
  4267. },
  4268. {
  4269. "name": "psr/container",
  4270. "version": "2.0.2",
  4271. "source": {
  4272. "type": "git",
  4273. "url": "https://github.com/php-fig/container.git",
  4274. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4275. },
  4276. "dist": {
  4277. "type": "zip",
  4278. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4279. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4280. "shasum": ""
  4281. },
  4282. "require": {
  4283. "php": ">=7.4.0"
  4284. },
  4285. "type": "library",
  4286. "extra": {
  4287. "branch-alias": {
  4288. "dev-master": "2.0.x-dev"
  4289. }
  4290. },
  4291. "autoload": {
  4292. "psr-4": {
  4293. "Psr\\Container\\": "src/"
  4294. }
  4295. },
  4296. "notification-url": "https://packagist.org/downloads/",
  4297. "license": [
  4298. "MIT"
  4299. ],
  4300. "authors": [
  4301. {
  4302. "name": "PHP-FIG",
  4303. "homepage": "https://www.php-fig.org/"
  4304. }
  4305. ],
  4306. "description": "Common Container Interface (PHP FIG PSR-11)",
  4307. "homepage": "https://github.com/php-fig/container",
  4308. "keywords": [
  4309. "PSR-11",
  4310. "container",
  4311. "container-interface",
  4312. "container-interop",
  4313. "psr"
  4314. ],
  4315. "support": {
  4316. "issues": "https://github.com/php-fig/container/issues",
  4317. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4318. },
  4319. "time": "2021-11-05T16:47:00+00:00"
  4320. },
  4321. {
  4322. "name": "psr/event-dispatcher",
  4323. "version": "1.0.0",
  4324. "source": {
  4325. "type": "git",
  4326. "url": "https://github.com/php-fig/event-dispatcher.git",
  4327. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4328. },
  4329. "dist": {
  4330. "type": "zip",
  4331. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4332. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4333. "shasum": ""
  4334. },
  4335. "require": {
  4336. "php": ">=7.2.0"
  4337. },
  4338. "type": "library",
  4339. "extra": {
  4340. "branch-alias": {
  4341. "dev-master": "1.0.x-dev"
  4342. }
  4343. },
  4344. "autoload": {
  4345. "psr-4": {
  4346. "Psr\\EventDispatcher\\": "src/"
  4347. }
  4348. },
  4349. "notification-url": "https://packagist.org/downloads/",
  4350. "license": [
  4351. "MIT"
  4352. ],
  4353. "authors": [
  4354. {
  4355. "name": "PHP-FIG",
  4356. "homepage": "http://www.php-fig.org/"
  4357. }
  4358. ],
  4359. "description": "Standard interfaces for event handling.",
  4360. "keywords": [
  4361. "events",
  4362. "psr",
  4363. "psr-14"
  4364. ],
  4365. "support": {
  4366. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4367. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4368. },
  4369. "time": "2019-01-08T18:20:26+00:00"
  4370. },
  4371. {
  4372. "name": "psr/http-client",
  4373. "version": "1.0.3",
  4374. "source": {
  4375. "type": "git",
  4376. "url": "https://github.com/php-fig/http-client.git",
  4377. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4378. },
  4379. "dist": {
  4380. "type": "zip",
  4381. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4382. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4383. "shasum": ""
  4384. },
  4385. "require": {
  4386. "php": "^7.0 || ^8.0",
  4387. "psr/http-message": "^1.0 || ^2.0"
  4388. },
  4389. "type": "library",
  4390. "extra": {
  4391. "branch-alias": {
  4392. "dev-master": "1.0.x-dev"
  4393. }
  4394. },
  4395. "autoload": {
  4396. "psr-4": {
  4397. "Psr\\Http\\Client\\": "src/"
  4398. }
  4399. },
  4400. "notification-url": "https://packagist.org/downloads/",
  4401. "license": [
  4402. "MIT"
  4403. ],
  4404. "authors": [
  4405. {
  4406. "name": "PHP-FIG",
  4407. "homepage": "https://www.php-fig.org/"
  4408. }
  4409. ],
  4410. "description": "Common interface for HTTP clients",
  4411. "homepage": "https://github.com/php-fig/http-client",
  4412. "keywords": [
  4413. "http",
  4414. "http-client",
  4415. "psr",
  4416. "psr-18"
  4417. ],
  4418. "support": {
  4419. "source": "https://github.com/php-fig/http-client"
  4420. },
  4421. "time": "2023-09-23T14:17:50+00:00"
  4422. },
  4423. {
  4424. "name": "psr/http-factory",
  4425. "version": "1.1.0",
  4426. "source": {
  4427. "type": "git",
  4428. "url": "https://github.com/php-fig/http-factory.git",
  4429. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  4430. },
  4431. "dist": {
  4432. "type": "zip",
  4433. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4434. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4435. "shasum": ""
  4436. },
  4437. "require": {
  4438. "php": ">=7.1",
  4439. "psr/http-message": "^1.0 || ^2.0"
  4440. },
  4441. "type": "library",
  4442. "extra": {
  4443. "branch-alias": {
  4444. "dev-master": "1.0.x-dev"
  4445. }
  4446. },
  4447. "autoload": {
  4448. "psr-4": {
  4449. "Psr\\Http\\Message\\": "src/"
  4450. }
  4451. },
  4452. "notification-url": "https://packagist.org/downloads/",
  4453. "license": [
  4454. "MIT"
  4455. ],
  4456. "authors": [
  4457. {
  4458. "name": "PHP-FIG",
  4459. "homepage": "https://www.php-fig.org/"
  4460. }
  4461. ],
  4462. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  4463. "keywords": [
  4464. "factory",
  4465. "http",
  4466. "message",
  4467. "psr",
  4468. "psr-17",
  4469. "psr-7",
  4470. "request",
  4471. "response"
  4472. ],
  4473. "support": {
  4474. "source": "https://github.com/php-fig/http-factory"
  4475. },
  4476. "time": "2024-04-15T12:06:14+00:00"
  4477. },
  4478. {
  4479. "name": "psr/http-message",
  4480. "version": "2.0",
  4481. "source": {
  4482. "type": "git",
  4483. "url": "https://github.com/php-fig/http-message.git",
  4484. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4485. },
  4486. "dist": {
  4487. "type": "zip",
  4488. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4489. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4490. "shasum": ""
  4491. },
  4492. "require": {
  4493. "php": "^7.2 || ^8.0"
  4494. },
  4495. "type": "library",
  4496. "extra": {
  4497. "branch-alias": {
  4498. "dev-master": "2.0.x-dev"
  4499. }
  4500. },
  4501. "autoload": {
  4502. "psr-4": {
  4503. "Psr\\Http\\Message\\": "src/"
  4504. }
  4505. },
  4506. "notification-url": "https://packagist.org/downloads/",
  4507. "license": [
  4508. "MIT"
  4509. ],
  4510. "authors": [
  4511. {
  4512. "name": "PHP-FIG",
  4513. "homepage": "https://www.php-fig.org/"
  4514. }
  4515. ],
  4516. "description": "Common interface for HTTP messages",
  4517. "homepage": "https://github.com/php-fig/http-message",
  4518. "keywords": [
  4519. "http",
  4520. "http-message",
  4521. "psr",
  4522. "psr-7",
  4523. "request",
  4524. "response"
  4525. ],
  4526. "support": {
  4527. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4528. },
  4529. "time": "2023-04-04T09:54:51+00:00"
  4530. },
  4531. {
  4532. "name": "psr/log",
  4533. "version": "3.0.2",
  4534. "source": {
  4535. "type": "git",
  4536. "url": "https://github.com/php-fig/log.git",
  4537. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  4538. },
  4539. "dist": {
  4540. "type": "zip",
  4541. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4542. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4543. "shasum": ""
  4544. },
  4545. "require": {
  4546. "php": ">=8.0.0"
  4547. },
  4548. "type": "library",
  4549. "extra": {
  4550. "branch-alias": {
  4551. "dev-master": "3.x-dev"
  4552. }
  4553. },
  4554. "autoload": {
  4555. "psr-4": {
  4556. "Psr\\Log\\": "src"
  4557. }
  4558. },
  4559. "notification-url": "https://packagist.org/downloads/",
  4560. "license": [
  4561. "MIT"
  4562. ],
  4563. "authors": [
  4564. {
  4565. "name": "PHP-FIG",
  4566. "homepage": "https://www.php-fig.org/"
  4567. }
  4568. ],
  4569. "description": "Common interface for logging libraries",
  4570. "homepage": "https://github.com/php-fig/log",
  4571. "keywords": [
  4572. "log",
  4573. "psr",
  4574. "psr-3"
  4575. ],
  4576. "support": {
  4577. "source": "https://github.com/php-fig/log/tree/3.0.2"
  4578. },
  4579. "time": "2024-09-11T13:17:53+00:00"
  4580. },
  4581. {
  4582. "name": "psr/simple-cache",
  4583. "version": "3.0.0",
  4584. "source": {
  4585. "type": "git",
  4586. "url": "https://github.com/php-fig/simple-cache.git",
  4587. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4588. },
  4589. "dist": {
  4590. "type": "zip",
  4591. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4592. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4593. "shasum": ""
  4594. },
  4595. "require": {
  4596. "php": ">=8.0.0"
  4597. },
  4598. "type": "library",
  4599. "extra": {
  4600. "branch-alias": {
  4601. "dev-master": "3.0.x-dev"
  4602. }
  4603. },
  4604. "autoload": {
  4605. "psr-4": {
  4606. "Psr\\SimpleCache\\": "src/"
  4607. }
  4608. },
  4609. "notification-url": "https://packagist.org/downloads/",
  4610. "license": [
  4611. "MIT"
  4612. ],
  4613. "authors": [
  4614. {
  4615. "name": "PHP-FIG",
  4616. "homepage": "https://www.php-fig.org/"
  4617. }
  4618. ],
  4619. "description": "Common interfaces for simple caching",
  4620. "keywords": [
  4621. "cache",
  4622. "caching",
  4623. "psr",
  4624. "psr-16",
  4625. "simple-cache"
  4626. ],
  4627. "support": {
  4628. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4629. },
  4630. "time": "2021-10-29T13:26:27+00:00"
  4631. },
  4632. {
  4633. "name": "psy/psysh",
  4634. "version": "v0.12.9",
  4635. "source": {
  4636. "type": "git",
  4637. "url": "https://github.com/bobthecow/psysh.git",
  4638. "reference": "1b801844becfe648985372cb4b12ad6840245ace"
  4639. },
  4640. "dist": {
  4641. "type": "zip",
  4642. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace",
  4643. "reference": "1b801844becfe648985372cb4b12ad6840245ace",
  4644. "shasum": ""
  4645. },
  4646. "require": {
  4647. "ext-json": "*",
  4648. "ext-tokenizer": "*",
  4649. "nikic/php-parser": "^5.0 || ^4.0",
  4650. "php": "^8.0 || ^7.4",
  4651. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4652. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4653. },
  4654. "conflict": {
  4655. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4656. },
  4657. "require-dev": {
  4658. "bamarni/composer-bin-plugin": "^1.2"
  4659. },
  4660. "suggest": {
  4661. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4662. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4663. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4664. },
  4665. "bin": [
  4666. "bin/psysh"
  4667. ],
  4668. "type": "library",
  4669. "extra": {
  4670. "bamarni-bin": {
  4671. "bin-links": false,
  4672. "forward-command": false
  4673. },
  4674. "branch-alias": {
  4675. "dev-main": "0.12.x-dev"
  4676. }
  4677. },
  4678. "autoload": {
  4679. "files": [
  4680. "src/functions.php"
  4681. ],
  4682. "psr-4": {
  4683. "Psy\\": "src/"
  4684. }
  4685. },
  4686. "notification-url": "https://packagist.org/downloads/",
  4687. "license": [
  4688. "MIT"
  4689. ],
  4690. "authors": [
  4691. {
  4692. "name": "Justin Hileman",
  4693. "email": "justin@justinhileman.info",
  4694. "homepage": "http://justinhileman.com"
  4695. }
  4696. ],
  4697. "description": "An interactive shell for modern PHP.",
  4698. "homepage": "http://psysh.org",
  4699. "keywords": [
  4700. "REPL",
  4701. "console",
  4702. "interactive",
  4703. "shell"
  4704. ],
  4705. "support": {
  4706. "issues": "https://github.com/bobthecow/psysh/issues",
  4707. "source": "https://github.com/bobthecow/psysh/tree/v0.12.9"
  4708. },
  4709. "time": "2025-06-23T02:35:06+00:00"
  4710. },
  4711. {
  4712. "name": "ralouphie/getallheaders",
  4713. "version": "3.0.3",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://github.com/ralouphie/getallheaders.git",
  4717. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4722. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4723. "shasum": ""
  4724. },
  4725. "require": {
  4726. "php": ">=5.6"
  4727. },
  4728. "require-dev": {
  4729. "php-coveralls/php-coveralls": "^2.1",
  4730. "phpunit/phpunit": "^5 || ^6.5"
  4731. },
  4732. "type": "library",
  4733. "autoload": {
  4734. "files": [
  4735. "src/getallheaders.php"
  4736. ]
  4737. },
  4738. "notification-url": "https://packagist.org/downloads/",
  4739. "license": [
  4740. "MIT"
  4741. ],
  4742. "authors": [
  4743. {
  4744. "name": "Ralph Khattar",
  4745. "email": "ralph.khattar@gmail.com"
  4746. }
  4747. ],
  4748. "description": "A polyfill for getallheaders.",
  4749. "support": {
  4750. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4751. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4752. },
  4753. "time": "2019-03-08T08:55:37+00:00"
  4754. },
  4755. {
  4756. "name": "ramsey/collection",
  4757. "version": "2.1.1",
  4758. "source": {
  4759. "type": "git",
  4760. "url": "https://github.com/ramsey/collection.git",
  4761. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  4762. },
  4763. "dist": {
  4764. "type": "zip",
  4765. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  4766. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  4767. "shasum": ""
  4768. },
  4769. "require": {
  4770. "php": "^8.1"
  4771. },
  4772. "require-dev": {
  4773. "captainhook/plugin-composer": "^5.3",
  4774. "ergebnis/composer-normalize": "^2.45",
  4775. "fakerphp/faker": "^1.24",
  4776. "hamcrest/hamcrest-php": "^2.0",
  4777. "jangregor/phpstan-prophecy": "^2.1",
  4778. "mockery/mockery": "^1.6",
  4779. "php-parallel-lint/php-console-highlighter": "^1.0",
  4780. "php-parallel-lint/php-parallel-lint": "^1.4",
  4781. "phpspec/prophecy-phpunit": "^2.3",
  4782. "phpstan/extension-installer": "^1.4",
  4783. "phpstan/phpstan": "^2.1",
  4784. "phpstan/phpstan-mockery": "^2.0",
  4785. "phpstan/phpstan-phpunit": "^2.0",
  4786. "phpunit/phpunit": "^10.5",
  4787. "ramsey/coding-standard": "^2.3",
  4788. "ramsey/conventional-commits": "^1.6",
  4789. "roave/security-advisories": "dev-latest"
  4790. },
  4791. "type": "library",
  4792. "extra": {
  4793. "captainhook": {
  4794. "force-install": true
  4795. },
  4796. "ramsey/conventional-commits": {
  4797. "configFile": "conventional-commits.json"
  4798. }
  4799. },
  4800. "autoload": {
  4801. "psr-4": {
  4802. "Ramsey\\Collection\\": "src/"
  4803. }
  4804. },
  4805. "notification-url": "https://packagist.org/downloads/",
  4806. "license": [
  4807. "MIT"
  4808. ],
  4809. "authors": [
  4810. {
  4811. "name": "Ben Ramsey",
  4812. "email": "ben@benramsey.com",
  4813. "homepage": "https://benramsey.com"
  4814. }
  4815. ],
  4816. "description": "A PHP library for representing and manipulating collections.",
  4817. "keywords": [
  4818. "array",
  4819. "collection",
  4820. "hash",
  4821. "map",
  4822. "queue",
  4823. "set"
  4824. ],
  4825. "support": {
  4826. "issues": "https://github.com/ramsey/collection/issues",
  4827. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  4828. },
  4829. "time": "2025-03-22T05:38:12+00:00"
  4830. },
  4831. {
  4832. "name": "ramsey/uuid",
  4833. "version": "4.9.0",
  4834. "source": {
  4835. "type": "git",
  4836. "url": "https://github.com/ramsey/uuid.git",
  4837. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4838. },
  4839. "dist": {
  4840. "type": "zip",
  4841. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4842. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4843. "shasum": ""
  4844. },
  4845. "require": {
  4846. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4847. "php": "^8.0",
  4848. "ramsey/collection": "^1.2 || ^2.0"
  4849. },
  4850. "replace": {
  4851. "rhumsaa/uuid": "self.version"
  4852. },
  4853. "require-dev": {
  4854. "captainhook/captainhook": "^5.25",
  4855. "captainhook/plugin-composer": "^5.3",
  4856. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4857. "ergebnis/composer-normalize": "^2.47",
  4858. "mockery/mockery": "^1.6",
  4859. "paragonie/random-lib": "^2",
  4860. "php-mock/php-mock": "^2.6",
  4861. "php-mock/php-mock-mockery": "^1.5",
  4862. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4863. "phpbench/phpbench": "^1.2.14",
  4864. "phpstan/extension-installer": "^1.4",
  4865. "phpstan/phpstan": "^2.1",
  4866. "phpstan/phpstan-mockery": "^2.0",
  4867. "phpstan/phpstan-phpunit": "^2.0",
  4868. "phpunit/phpunit": "^9.6",
  4869. "slevomat/coding-standard": "^8.18",
  4870. "squizlabs/php_codesniffer": "^3.13"
  4871. },
  4872. "suggest": {
  4873. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4874. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4875. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4876. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4877. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4878. },
  4879. "type": "library",
  4880. "extra": {
  4881. "captainhook": {
  4882. "force-install": true
  4883. }
  4884. },
  4885. "autoload": {
  4886. "files": [
  4887. "src/functions.php"
  4888. ],
  4889. "psr-4": {
  4890. "Ramsey\\Uuid\\": "src/"
  4891. }
  4892. },
  4893. "notification-url": "https://packagist.org/downloads/",
  4894. "license": [
  4895. "MIT"
  4896. ],
  4897. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4898. "keywords": [
  4899. "guid",
  4900. "identifier",
  4901. "uuid"
  4902. ],
  4903. "support": {
  4904. "issues": "https://github.com/ramsey/uuid/issues",
  4905. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  4906. },
  4907. "time": "2025-06-25T14:20:11+00:00"
  4908. },
  4909. {
  4910. "name": "rize/uri-template",
  4911. "version": "0.4.2",
  4912. "source": {
  4913. "type": "git",
  4914. "url": "https://github.com/rize/UriTemplate.git",
  4915. "reference": "7ad22944daede547b4542e1c977ec4a81aa20832"
  4916. },
  4917. "dist": {
  4918. "type": "zip",
  4919. "url": "https://api.github.com/repos/rize/UriTemplate/zipball/7ad22944daede547b4542e1c977ec4a81aa20832",
  4920. "reference": "7ad22944daede547b4542e1c977ec4a81aa20832",
  4921. "shasum": ""
  4922. },
  4923. "require": {
  4924. "php": ">=8.1"
  4925. },
  4926. "require-dev": {
  4927. "friendsofphp/php-cs-fixer": "^3.63",
  4928. "phpstan/phpstan": "^1.12",
  4929. "phpunit/phpunit": "~10.0"
  4930. },
  4931. "type": "library",
  4932. "autoload": {
  4933. "psr-4": {
  4934. "Rize\\": "src/Rize"
  4935. }
  4936. },
  4937. "notification-url": "https://packagist.org/downloads/",
  4938. "license": [
  4939. "MIT"
  4940. ],
  4941. "authors": [
  4942. {
  4943. "name": "Marut K",
  4944. "homepage": "http://twitter.com/rezigned"
  4945. }
  4946. ],
  4947. "description": "PHP URI Template (RFC 6570) supports both expansion & extraction",
  4948. "keywords": [
  4949. "RFC 6570",
  4950. "template",
  4951. "uri"
  4952. ],
  4953. "support": {
  4954. "issues": "https://github.com/rize/UriTemplate/issues",
  4955. "source": "https://github.com/rize/UriTemplate/tree/0.4.2"
  4956. },
  4957. "funding": [
  4958. {
  4959. "url": "https://www.paypal.me/rezigned",
  4960. "type": "custom"
  4961. },
  4962. {
  4963. "url": "https://github.com/rezigned",
  4964. "type": "github"
  4965. },
  4966. {
  4967. "url": "https://opencollective.com/rize-uri-template",
  4968. "type": "open_collective"
  4969. }
  4970. ],
  4971. "time": "2026-05-07T15:30:40+00:00"
  4972. },
  4973. {
  4974. "name": "symfony/cache",
  4975. "version": "v7.4.13",
  4976. "source": {
  4977. "type": "git",
  4978. "url": "https://github.com/symfony/cache.git",
  4979. "reference": "4c09e18a92cce126cc0d1155825279fca8cd0673"
  4980. },
  4981. "dist": {
  4982. "type": "zip",
  4983. "url": "https://api.github.com/repos/symfony/cache/zipball/4c09e18a92cce126cc0d1155825279fca8cd0673",
  4984. "reference": "4c09e18a92cce126cc0d1155825279fca8cd0673",
  4985. "shasum": ""
  4986. },
  4987. "require": {
  4988. "php": ">=8.2",
  4989. "psr/cache": "^2.0|^3.0",
  4990. "psr/log": "^1.1|^2|^3",
  4991. "symfony/cache-contracts": "^3.6",
  4992. "symfony/deprecation-contracts": "^2.5|^3",
  4993. "symfony/service-contracts": "^2.5|^3",
  4994. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  4995. },
  4996. "conflict": {
  4997. "doctrine/dbal": "<3.6",
  4998. "ext-redis": "<6.1",
  4999. "ext-relay": "<0.12.1",
  5000. "symfony/dependency-injection": "<6.4",
  5001. "symfony/http-kernel": "<6.4",
  5002. "symfony/var-dumper": "<6.4"
  5003. },
  5004. "provide": {
  5005. "psr/cache-implementation": "2.0|3.0",
  5006. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  5007. "symfony/cache-implementation": "1.1|2.0|3.0"
  5008. },
  5009. "require-dev": {
  5010. "cache/integration-tests": "dev-master",
  5011. "doctrine/dbal": "^3.6|^4",
  5012. "predis/predis": "^1.1|^2.0",
  5013. "psr/simple-cache": "^1.0|^2.0|^3.0",
  5014. "symfony/clock": "^6.4|^7.0|^8.0",
  5015. "symfony/config": "^6.4|^7.0|^8.0",
  5016. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  5017. "symfony/filesystem": "^6.4|^7.0|^8.0",
  5018. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  5019. "symfony/messenger": "^6.4|^7.0|^8.0",
  5020. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  5021. },
  5022. "type": "library",
  5023. "autoload": {
  5024. "psr-4": {
  5025. "Symfony\\Component\\Cache\\": ""
  5026. },
  5027. "classmap": [
  5028. "Traits/ValueWrapper.php"
  5029. ],
  5030. "exclude-from-classmap": [
  5031. "/Tests/"
  5032. ]
  5033. },
  5034. "notification-url": "https://packagist.org/downloads/",
  5035. "license": [
  5036. "MIT"
  5037. ],
  5038. "authors": [
  5039. {
  5040. "name": "Nicolas Grekas",
  5041. "email": "p@tchwork.com"
  5042. },
  5043. {
  5044. "name": "Symfony Community",
  5045. "homepage": "https://symfony.com/contributors"
  5046. }
  5047. ],
  5048. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5049. "homepage": "https://symfony.com",
  5050. "keywords": [
  5051. "caching",
  5052. "psr6"
  5053. ],
  5054. "support": {
  5055. "source": "https://github.com/symfony/cache/tree/v7.4.13"
  5056. },
  5057. "funding": [
  5058. {
  5059. "url": "https://symfony.com/sponsor",
  5060. "type": "custom"
  5061. },
  5062. {
  5063. "url": "https://github.com/fabpot",
  5064. "type": "github"
  5065. },
  5066. {
  5067. "url": "https://github.com/nicolas-grekas",
  5068. "type": "github"
  5069. },
  5070. {
  5071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5072. "type": "tidelift"
  5073. }
  5074. ],
  5075. "time": "2026-05-24T08:43:14+00:00"
  5076. },
  5077. {
  5078. "name": "symfony/cache-contracts",
  5079. "version": "v3.7.0",
  5080. "source": {
  5081. "type": "git",
  5082. "url": "https://github.com/symfony/cache-contracts.git",
  5083. "reference": "225e8a254166bd3442e370c6f50145465db63831"
  5084. },
  5085. "dist": {
  5086. "type": "zip",
  5087. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/225e8a254166bd3442e370c6f50145465db63831",
  5088. "reference": "225e8a254166bd3442e370c6f50145465db63831",
  5089. "shasum": ""
  5090. },
  5091. "require": {
  5092. "php": ">=8.1",
  5093. "psr/cache": "^3.0"
  5094. },
  5095. "type": "library",
  5096. "extra": {
  5097. "thanks": {
  5098. "url": "https://github.com/symfony/contracts",
  5099. "name": "symfony/contracts"
  5100. },
  5101. "branch-alias": {
  5102. "dev-main": "3.7-dev"
  5103. }
  5104. },
  5105. "autoload": {
  5106. "psr-4": {
  5107. "Symfony\\Contracts\\Cache\\": ""
  5108. }
  5109. },
  5110. "notification-url": "https://packagist.org/downloads/",
  5111. "license": [
  5112. "MIT"
  5113. ],
  5114. "authors": [
  5115. {
  5116. "name": "Nicolas Grekas",
  5117. "email": "p@tchwork.com"
  5118. },
  5119. {
  5120. "name": "Symfony Community",
  5121. "homepage": "https://symfony.com/contributors"
  5122. }
  5123. ],
  5124. "description": "Generic abstractions related to caching",
  5125. "homepage": "https://symfony.com",
  5126. "keywords": [
  5127. "abstractions",
  5128. "contracts",
  5129. "decoupling",
  5130. "interfaces",
  5131. "interoperability",
  5132. "standards"
  5133. ],
  5134. "support": {
  5135. "source": "https://github.com/symfony/cache-contracts/tree/v3.7.0"
  5136. },
  5137. "funding": [
  5138. {
  5139. "url": "https://symfony.com/sponsor",
  5140. "type": "custom"
  5141. },
  5142. {
  5143. "url": "https://github.com/fabpot",
  5144. "type": "github"
  5145. },
  5146. {
  5147. "url": "https://github.com/nicolas-grekas",
  5148. "type": "github"
  5149. },
  5150. {
  5151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5152. "type": "tidelift"
  5153. }
  5154. ],
  5155. "time": "2026-05-05T15:33:14+00:00"
  5156. },
  5157. {
  5158. "name": "symfony/clock",
  5159. "version": "v7.3.0",
  5160. "source": {
  5161. "type": "git",
  5162. "url": "https://github.com/symfony/clock.git",
  5163. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  5164. },
  5165. "dist": {
  5166. "type": "zip",
  5167. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  5168. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  5169. "shasum": ""
  5170. },
  5171. "require": {
  5172. "php": ">=8.2",
  5173. "psr/clock": "^1.0",
  5174. "symfony/polyfill-php83": "^1.28"
  5175. },
  5176. "provide": {
  5177. "psr/clock-implementation": "1.0"
  5178. },
  5179. "type": "library",
  5180. "autoload": {
  5181. "files": [
  5182. "Resources/now.php"
  5183. ],
  5184. "psr-4": {
  5185. "Symfony\\Component\\Clock\\": ""
  5186. },
  5187. "exclude-from-classmap": [
  5188. "/Tests/"
  5189. ]
  5190. },
  5191. "notification-url": "https://packagist.org/downloads/",
  5192. "license": [
  5193. "MIT"
  5194. ],
  5195. "authors": [
  5196. {
  5197. "name": "Nicolas Grekas",
  5198. "email": "p@tchwork.com"
  5199. },
  5200. {
  5201. "name": "Symfony Community",
  5202. "homepage": "https://symfony.com/contributors"
  5203. }
  5204. ],
  5205. "description": "Decouples applications from the system clock",
  5206. "homepage": "https://symfony.com",
  5207. "keywords": [
  5208. "clock",
  5209. "psr20",
  5210. "time"
  5211. ],
  5212. "support": {
  5213. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  5214. },
  5215. "funding": [
  5216. {
  5217. "url": "https://symfony.com/sponsor",
  5218. "type": "custom"
  5219. },
  5220. {
  5221. "url": "https://github.com/fabpot",
  5222. "type": "github"
  5223. },
  5224. {
  5225. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5226. "type": "tidelift"
  5227. }
  5228. ],
  5229. "time": "2024-09-25T14:21:43+00:00"
  5230. },
  5231. {
  5232. "name": "symfony/console",
  5233. "version": "v7.3.1",
  5234. "source": {
  5235. "type": "git",
  5236. "url": "https://github.com/symfony/console.git",
  5237. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101"
  5238. },
  5239. "dist": {
  5240. "type": "zip",
  5241. "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101",
  5242. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101",
  5243. "shasum": ""
  5244. },
  5245. "require": {
  5246. "php": ">=8.2",
  5247. "symfony/deprecation-contracts": "^2.5|^3",
  5248. "symfony/polyfill-mbstring": "~1.0",
  5249. "symfony/service-contracts": "^2.5|^3",
  5250. "symfony/string": "^7.2"
  5251. },
  5252. "conflict": {
  5253. "symfony/dependency-injection": "<6.4",
  5254. "symfony/dotenv": "<6.4",
  5255. "symfony/event-dispatcher": "<6.4",
  5256. "symfony/lock": "<6.4",
  5257. "symfony/process": "<6.4"
  5258. },
  5259. "provide": {
  5260. "psr/log-implementation": "1.0|2.0|3.0"
  5261. },
  5262. "require-dev": {
  5263. "psr/log": "^1|^2|^3",
  5264. "symfony/config": "^6.4|^7.0",
  5265. "symfony/dependency-injection": "^6.4|^7.0",
  5266. "symfony/event-dispatcher": "^6.4|^7.0",
  5267. "symfony/http-foundation": "^6.4|^7.0",
  5268. "symfony/http-kernel": "^6.4|^7.0",
  5269. "symfony/lock": "^6.4|^7.0",
  5270. "symfony/messenger": "^6.4|^7.0",
  5271. "symfony/process": "^6.4|^7.0",
  5272. "symfony/stopwatch": "^6.4|^7.0",
  5273. "symfony/var-dumper": "^6.4|^7.0"
  5274. },
  5275. "type": "library",
  5276. "autoload": {
  5277. "psr-4": {
  5278. "Symfony\\Component\\Console\\": ""
  5279. },
  5280. "exclude-from-classmap": [
  5281. "/Tests/"
  5282. ]
  5283. },
  5284. "notification-url": "https://packagist.org/downloads/",
  5285. "license": [
  5286. "MIT"
  5287. ],
  5288. "authors": [
  5289. {
  5290. "name": "Fabien Potencier",
  5291. "email": "fabien@symfony.com"
  5292. },
  5293. {
  5294. "name": "Symfony Community",
  5295. "homepage": "https://symfony.com/contributors"
  5296. }
  5297. ],
  5298. "description": "Eases the creation of beautiful and testable command line interfaces",
  5299. "homepage": "https://symfony.com",
  5300. "keywords": [
  5301. "cli",
  5302. "command-line",
  5303. "console",
  5304. "terminal"
  5305. ],
  5306. "support": {
  5307. "source": "https://github.com/symfony/console/tree/v7.3.1"
  5308. },
  5309. "funding": [
  5310. {
  5311. "url": "https://symfony.com/sponsor",
  5312. "type": "custom"
  5313. },
  5314. {
  5315. "url": "https://github.com/fabpot",
  5316. "type": "github"
  5317. },
  5318. {
  5319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5320. "type": "tidelift"
  5321. }
  5322. ],
  5323. "time": "2025-06-27T19:55:54+00:00"
  5324. },
  5325. {
  5326. "name": "symfony/css-selector",
  5327. "version": "v7.3.0",
  5328. "source": {
  5329. "type": "git",
  5330. "url": "https://github.com/symfony/css-selector.git",
  5331. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  5332. },
  5333. "dist": {
  5334. "type": "zip",
  5335. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  5336. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  5337. "shasum": ""
  5338. },
  5339. "require": {
  5340. "php": ">=8.2"
  5341. },
  5342. "type": "library",
  5343. "autoload": {
  5344. "psr-4": {
  5345. "Symfony\\Component\\CssSelector\\": ""
  5346. },
  5347. "exclude-from-classmap": [
  5348. "/Tests/"
  5349. ]
  5350. },
  5351. "notification-url": "https://packagist.org/downloads/",
  5352. "license": [
  5353. "MIT"
  5354. ],
  5355. "authors": [
  5356. {
  5357. "name": "Fabien Potencier",
  5358. "email": "fabien@symfony.com"
  5359. },
  5360. {
  5361. "name": "Jean-François Simon",
  5362. "email": "jeanfrancois.simon@sensiolabs.com"
  5363. },
  5364. {
  5365. "name": "Symfony Community",
  5366. "homepage": "https://symfony.com/contributors"
  5367. }
  5368. ],
  5369. "description": "Converts CSS selectors to XPath expressions",
  5370. "homepage": "https://symfony.com",
  5371. "support": {
  5372. "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
  5373. },
  5374. "funding": [
  5375. {
  5376. "url": "https://symfony.com/sponsor",
  5377. "type": "custom"
  5378. },
  5379. {
  5380. "url": "https://github.com/fabpot",
  5381. "type": "github"
  5382. },
  5383. {
  5384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5385. "type": "tidelift"
  5386. }
  5387. ],
  5388. "time": "2024-09-25T14:21:43+00:00"
  5389. },
  5390. {
  5391. "name": "symfony/deprecation-contracts",
  5392. "version": "v3.6.0",
  5393. "source": {
  5394. "type": "git",
  5395. "url": "https://github.com/symfony/deprecation-contracts.git",
  5396. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  5397. },
  5398. "dist": {
  5399. "type": "zip",
  5400. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  5401. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  5402. "shasum": ""
  5403. },
  5404. "require": {
  5405. "php": ">=8.1"
  5406. },
  5407. "type": "library",
  5408. "extra": {
  5409. "thanks": {
  5410. "url": "https://github.com/symfony/contracts",
  5411. "name": "symfony/contracts"
  5412. },
  5413. "branch-alias": {
  5414. "dev-main": "3.6-dev"
  5415. }
  5416. },
  5417. "autoload": {
  5418. "files": [
  5419. "function.php"
  5420. ]
  5421. },
  5422. "notification-url": "https://packagist.org/downloads/",
  5423. "license": [
  5424. "MIT"
  5425. ],
  5426. "authors": [
  5427. {
  5428. "name": "Nicolas Grekas",
  5429. "email": "p@tchwork.com"
  5430. },
  5431. {
  5432. "name": "Symfony Community",
  5433. "homepage": "https://symfony.com/contributors"
  5434. }
  5435. ],
  5436. "description": "A generic function and convention to trigger deprecation notices",
  5437. "homepage": "https://symfony.com",
  5438. "support": {
  5439. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  5440. },
  5441. "funding": [
  5442. {
  5443. "url": "https://symfony.com/sponsor",
  5444. "type": "custom"
  5445. },
  5446. {
  5447. "url": "https://github.com/fabpot",
  5448. "type": "github"
  5449. },
  5450. {
  5451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5452. "type": "tidelift"
  5453. }
  5454. ],
  5455. "time": "2024-09-25T14:21:43+00:00"
  5456. },
  5457. {
  5458. "name": "symfony/error-handler",
  5459. "version": "v7.3.1",
  5460. "source": {
  5461. "type": "git",
  5462. "url": "https://github.com/symfony/error-handler.git",
  5463. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235"
  5464. },
  5465. "dist": {
  5466. "type": "zip",
  5467. "url": "https://api.github.com/repos/symfony/error-handler/zipball/35b55b166f6752d6aaf21aa042fc5ed280fce235",
  5468. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235",
  5469. "shasum": ""
  5470. },
  5471. "require": {
  5472. "php": ">=8.2",
  5473. "psr/log": "^1|^2|^3",
  5474. "symfony/var-dumper": "^6.4|^7.0"
  5475. },
  5476. "conflict": {
  5477. "symfony/deprecation-contracts": "<2.5",
  5478. "symfony/http-kernel": "<6.4"
  5479. },
  5480. "require-dev": {
  5481. "symfony/console": "^6.4|^7.0",
  5482. "symfony/deprecation-contracts": "^2.5|^3",
  5483. "symfony/http-kernel": "^6.4|^7.0",
  5484. "symfony/serializer": "^6.4|^7.0",
  5485. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  5486. },
  5487. "bin": [
  5488. "Resources/bin/patch-type-declarations"
  5489. ],
  5490. "type": "library",
  5491. "autoload": {
  5492. "psr-4": {
  5493. "Symfony\\Component\\ErrorHandler\\": ""
  5494. },
  5495. "exclude-from-classmap": [
  5496. "/Tests/"
  5497. ]
  5498. },
  5499. "notification-url": "https://packagist.org/downloads/",
  5500. "license": [
  5501. "MIT"
  5502. ],
  5503. "authors": [
  5504. {
  5505. "name": "Fabien Potencier",
  5506. "email": "fabien@symfony.com"
  5507. },
  5508. {
  5509. "name": "Symfony Community",
  5510. "homepage": "https://symfony.com/contributors"
  5511. }
  5512. ],
  5513. "description": "Provides tools to manage errors and ease debugging PHP code",
  5514. "homepage": "https://symfony.com",
  5515. "support": {
  5516. "source": "https://github.com/symfony/error-handler/tree/v7.3.1"
  5517. },
  5518. "funding": [
  5519. {
  5520. "url": "https://symfony.com/sponsor",
  5521. "type": "custom"
  5522. },
  5523. {
  5524. "url": "https://github.com/fabpot",
  5525. "type": "github"
  5526. },
  5527. {
  5528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5529. "type": "tidelift"
  5530. }
  5531. ],
  5532. "time": "2025-06-13T07:48:40+00:00"
  5533. },
  5534. {
  5535. "name": "symfony/event-dispatcher",
  5536. "version": "v7.3.0",
  5537. "source": {
  5538. "type": "git",
  5539. "url": "https://github.com/symfony/event-dispatcher.git",
  5540. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
  5541. },
  5542. "dist": {
  5543. "type": "zip",
  5544. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
  5545. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
  5546. "shasum": ""
  5547. },
  5548. "require": {
  5549. "php": ">=8.2",
  5550. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5551. },
  5552. "conflict": {
  5553. "symfony/dependency-injection": "<6.4",
  5554. "symfony/service-contracts": "<2.5"
  5555. },
  5556. "provide": {
  5557. "psr/event-dispatcher-implementation": "1.0",
  5558. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5559. },
  5560. "require-dev": {
  5561. "psr/log": "^1|^2|^3",
  5562. "symfony/config": "^6.4|^7.0",
  5563. "symfony/dependency-injection": "^6.4|^7.0",
  5564. "symfony/error-handler": "^6.4|^7.0",
  5565. "symfony/expression-language": "^6.4|^7.0",
  5566. "symfony/http-foundation": "^6.4|^7.0",
  5567. "symfony/service-contracts": "^2.5|^3",
  5568. "symfony/stopwatch": "^6.4|^7.0"
  5569. },
  5570. "type": "library",
  5571. "autoload": {
  5572. "psr-4": {
  5573. "Symfony\\Component\\EventDispatcher\\": ""
  5574. },
  5575. "exclude-from-classmap": [
  5576. "/Tests/"
  5577. ]
  5578. },
  5579. "notification-url": "https://packagist.org/downloads/",
  5580. "license": [
  5581. "MIT"
  5582. ],
  5583. "authors": [
  5584. {
  5585. "name": "Fabien Potencier",
  5586. "email": "fabien@symfony.com"
  5587. },
  5588. {
  5589. "name": "Symfony Community",
  5590. "homepage": "https://symfony.com/contributors"
  5591. }
  5592. ],
  5593. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5594. "homepage": "https://symfony.com",
  5595. "support": {
  5596. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
  5597. },
  5598. "funding": [
  5599. {
  5600. "url": "https://symfony.com/sponsor",
  5601. "type": "custom"
  5602. },
  5603. {
  5604. "url": "https://github.com/fabpot",
  5605. "type": "github"
  5606. },
  5607. {
  5608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5609. "type": "tidelift"
  5610. }
  5611. ],
  5612. "time": "2025-04-22T09:11:45+00:00"
  5613. },
  5614. {
  5615. "name": "symfony/event-dispatcher-contracts",
  5616. "version": "v3.6.0",
  5617. "source": {
  5618. "type": "git",
  5619. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5620. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  5621. },
  5622. "dist": {
  5623. "type": "zip",
  5624. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  5625. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  5626. "shasum": ""
  5627. },
  5628. "require": {
  5629. "php": ">=8.1",
  5630. "psr/event-dispatcher": "^1"
  5631. },
  5632. "type": "library",
  5633. "extra": {
  5634. "thanks": {
  5635. "url": "https://github.com/symfony/contracts",
  5636. "name": "symfony/contracts"
  5637. },
  5638. "branch-alias": {
  5639. "dev-main": "3.6-dev"
  5640. }
  5641. },
  5642. "autoload": {
  5643. "psr-4": {
  5644. "Symfony\\Contracts\\EventDispatcher\\": ""
  5645. }
  5646. },
  5647. "notification-url": "https://packagist.org/downloads/",
  5648. "license": [
  5649. "MIT"
  5650. ],
  5651. "authors": [
  5652. {
  5653. "name": "Nicolas Grekas",
  5654. "email": "p@tchwork.com"
  5655. },
  5656. {
  5657. "name": "Symfony Community",
  5658. "homepage": "https://symfony.com/contributors"
  5659. }
  5660. ],
  5661. "description": "Generic abstractions related to dispatching event",
  5662. "homepage": "https://symfony.com",
  5663. "keywords": [
  5664. "abstractions",
  5665. "contracts",
  5666. "decoupling",
  5667. "interfaces",
  5668. "interoperability",
  5669. "standards"
  5670. ],
  5671. "support": {
  5672. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  5673. },
  5674. "funding": [
  5675. {
  5676. "url": "https://symfony.com/sponsor",
  5677. "type": "custom"
  5678. },
  5679. {
  5680. "url": "https://github.com/fabpot",
  5681. "type": "github"
  5682. },
  5683. {
  5684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5685. "type": "tidelift"
  5686. }
  5687. ],
  5688. "time": "2024-09-25T14:21:43+00:00"
  5689. },
  5690. {
  5691. "name": "symfony/filesystem",
  5692. "version": "v7.4.11",
  5693. "source": {
  5694. "type": "git",
  5695. "url": "https://github.com/symfony/filesystem.git",
  5696. "reference": "d721ea61b4a5fba8c5b6e7c1feda19efea144b50"
  5697. },
  5698. "dist": {
  5699. "type": "zip",
  5700. "url": "https://api.github.com/repos/symfony/filesystem/zipball/d721ea61b4a5fba8c5b6e7c1feda19efea144b50",
  5701. "reference": "d721ea61b4a5fba8c5b6e7c1feda19efea144b50",
  5702. "shasum": ""
  5703. },
  5704. "require": {
  5705. "php": ">=8.2",
  5706. "symfony/polyfill-ctype": "~1.8",
  5707. "symfony/polyfill-mbstring": "~1.8"
  5708. },
  5709. "require-dev": {
  5710. "symfony/process": "^6.4|^7.0|^8.0"
  5711. },
  5712. "type": "library",
  5713. "autoload": {
  5714. "psr-4": {
  5715. "Symfony\\Component\\Filesystem\\": ""
  5716. },
  5717. "exclude-from-classmap": [
  5718. "/Tests/"
  5719. ]
  5720. },
  5721. "notification-url": "https://packagist.org/downloads/",
  5722. "license": [
  5723. "MIT"
  5724. ],
  5725. "authors": [
  5726. {
  5727. "name": "Fabien Potencier",
  5728. "email": "fabien@symfony.com"
  5729. },
  5730. {
  5731. "name": "Symfony Community",
  5732. "homepage": "https://symfony.com/contributors"
  5733. }
  5734. ],
  5735. "description": "Provides basic utilities for the filesystem",
  5736. "homepage": "https://symfony.com",
  5737. "support": {
  5738. "source": "https://github.com/symfony/filesystem/tree/v7.4.11"
  5739. },
  5740. "funding": [
  5741. {
  5742. "url": "https://symfony.com/sponsor",
  5743. "type": "custom"
  5744. },
  5745. {
  5746. "url": "https://github.com/fabpot",
  5747. "type": "github"
  5748. },
  5749. {
  5750. "url": "https://github.com/nicolas-grekas",
  5751. "type": "github"
  5752. },
  5753. {
  5754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5755. "type": "tidelift"
  5756. }
  5757. ],
  5758. "time": "2026-05-11T16:38:44+00:00"
  5759. },
  5760. {
  5761. "name": "symfony/finder",
  5762. "version": "v7.3.0",
  5763. "source": {
  5764. "type": "git",
  5765. "url": "https://github.com/symfony/finder.git",
  5766. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
  5767. },
  5768. "dist": {
  5769. "type": "zip",
  5770. "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
  5771. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
  5772. "shasum": ""
  5773. },
  5774. "require": {
  5775. "php": ">=8.2"
  5776. },
  5777. "require-dev": {
  5778. "symfony/filesystem": "^6.4|^7.0"
  5779. },
  5780. "type": "library",
  5781. "autoload": {
  5782. "psr-4": {
  5783. "Symfony\\Component\\Finder\\": ""
  5784. },
  5785. "exclude-from-classmap": [
  5786. "/Tests/"
  5787. ]
  5788. },
  5789. "notification-url": "https://packagist.org/downloads/",
  5790. "license": [
  5791. "MIT"
  5792. ],
  5793. "authors": [
  5794. {
  5795. "name": "Fabien Potencier",
  5796. "email": "fabien@symfony.com"
  5797. },
  5798. {
  5799. "name": "Symfony Community",
  5800. "homepage": "https://symfony.com/contributors"
  5801. }
  5802. ],
  5803. "description": "Finds files and directories via an intuitive fluent interface",
  5804. "homepage": "https://symfony.com",
  5805. "support": {
  5806. "source": "https://github.com/symfony/finder/tree/v7.3.0"
  5807. },
  5808. "funding": [
  5809. {
  5810. "url": "https://symfony.com/sponsor",
  5811. "type": "custom"
  5812. },
  5813. {
  5814. "url": "https://github.com/fabpot",
  5815. "type": "github"
  5816. },
  5817. {
  5818. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5819. "type": "tidelift"
  5820. }
  5821. ],
  5822. "time": "2024-12-30T19:00:26+00:00"
  5823. },
  5824. {
  5825. "name": "symfony/http-foundation",
  5826. "version": "v7.3.1",
  5827. "source": {
  5828. "type": "git",
  5829. "url": "https://github.com/symfony/http-foundation.git",
  5830. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9"
  5831. },
  5832. "dist": {
  5833. "type": "zip",
  5834. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dd60256610c86a3414575b70c596e5deff6ed9",
  5835. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9",
  5836. "shasum": ""
  5837. },
  5838. "require": {
  5839. "php": ">=8.2",
  5840. "symfony/deprecation-contracts": "^2.5|^3.0",
  5841. "symfony/polyfill-mbstring": "~1.1",
  5842. "symfony/polyfill-php83": "^1.27"
  5843. },
  5844. "conflict": {
  5845. "doctrine/dbal": "<3.6",
  5846. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  5847. },
  5848. "require-dev": {
  5849. "doctrine/dbal": "^3.6|^4",
  5850. "predis/predis": "^1.1|^2.0",
  5851. "symfony/cache": "^6.4.12|^7.1.5",
  5852. "symfony/clock": "^6.4|^7.0",
  5853. "symfony/dependency-injection": "^6.4|^7.0",
  5854. "symfony/expression-language": "^6.4|^7.0",
  5855. "symfony/http-kernel": "^6.4|^7.0",
  5856. "symfony/mime": "^6.4|^7.0",
  5857. "symfony/rate-limiter": "^6.4|^7.0"
  5858. },
  5859. "type": "library",
  5860. "autoload": {
  5861. "psr-4": {
  5862. "Symfony\\Component\\HttpFoundation\\": ""
  5863. },
  5864. "exclude-from-classmap": [
  5865. "/Tests/"
  5866. ]
  5867. },
  5868. "notification-url": "https://packagist.org/downloads/",
  5869. "license": [
  5870. "MIT"
  5871. ],
  5872. "authors": [
  5873. {
  5874. "name": "Fabien Potencier",
  5875. "email": "fabien@symfony.com"
  5876. },
  5877. {
  5878. "name": "Symfony Community",
  5879. "homepage": "https://symfony.com/contributors"
  5880. }
  5881. ],
  5882. "description": "Defines an object-oriented layer for the HTTP specification",
  5883. "homepage": "https://symfony.com",
  5884. "support": {
  5885. "source": "https://github.com/symfony/http-foundation/tree/v7.3.1"
  5886. },
  5887. "funding": [
  5888. {
  5889. "url": "https://symfony.com/sponsor",
  5890. "type": "custom"
  5891. },
  5892. {
  5893. "url": "https://github.com/fabpot",
  5894. "type": "github"
  5895. },
  5896. {
  5897. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5898. "type": "tidelift"
  5899. }
  5900. ],
  5901. "time": "2025-06-23T15:07:14+00:00"
  5902. },
  5903. {
  5904. "name": "symfony/http-kernel",
  5905. "version": "v7.3.1",
  5906. "source": {
  5907. "type": "git",
  5908. "url": "https://github.com/symfony/http-kernel.git",
  5909. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831"
  5910. },
  5911. "dist": {
  5912. "type": "zip",
  5913. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  5914. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  5915. "shasum": ""
  5916. },
  5917. "require": {
  5918. "php": ">=8.2",
  5919. "psr/log": "^1|^2|^3",
  5920. "symfony/deprecation-contracts": "^2.5|^3",
  5921. "symfony/error-handler": "^6.4|^7.0",
  5922. "symfony/event-dispatcher": "^7.3",
  5923. "symfony/http-foundation": "^7.3",
  5924. "symfony/polyfill-ctype": "^1.8"
  5925. },
  5926. "conflict": {
  5927. "symfony/browser-kit": "<6.4",
  5928. "symfony/cache": "<6.4",
  5929. "symfony/config": "<6.4",
  5930. "symfony/console": "<6.4",
  5931. "symfony/dependency-injection": "<6.4",
  5932. "symfony/doctrine-bridge": "<6.4",
  5933. "symfony/form": "<6.4",
  5934. "symfony/http-client": "<6.4",
  5935. "symfony/http-client-contracts": "<2.5",
  5936. "symfony/mailer": "<6.4",
  5937. "symfony/messenger": "<6.4",
  5938. "symfony/translation": "<6.4",
  5939. "symfony/translation-contracts": "<2.5",
  5940. "symfony/twig-bridge": "<6.4",
  5941. "symfony/validator": "<6.4",
  5942. "symfony/var-dumper": "<6.4",
  5943. "twig/twig": "<3.12"
  5944. },
  5945. "provide": {
  5946. "psr/log-implementation": "1.0|2.0|3.0"
  5947. },
  5948. "require-dev": {
  5949. "psr/cache": "^1.0|^2.0|^3.0",
  5950. "symfony/browser-kit": "^6.4|^7.0",
  5951. "symfony/clock": "^6.4|^7.0",
  5952. "symfony/config": "^6.4|^7.0",
  5953. "symfony/console": "^6.4|^7.0",
  5954. "symfony/css-selector": "^6.4|^7.0",
  5955. "symfony/dependency-injection": "^6.4|^7.0",
  5956. "symfony/dom-crawler": "^6.4|^7.0",
  5957. "symfony/expression-language": "^6.4|^7.0",
  5958. "symfony/finder": "^6.4|^7.0",
  5959. "symfony/http-client-contracts": "^2.5|^3",
  5960. "symfony/process": "^6.4|^7.0",
  5961. "symfony/property-access": "^7.1",
  5962. "symfony/routing": "^6.4|^7.0",
  5963. "symfony/serializer": "^7.1",
  5964. "symfony/stopwatch": "^6.4|^7.0",
  5965. "symfony/translation": "^6.4|^7.0",
  5966. "symfony/translation-contracts": "^2.5|^3",
  5967. "symfony/uid": "^6.4|^7.0",
  5968. "symfony/validator": "^6.4|^7.0",
  5969. "symfony/var-dumper": "^6.4|^7.0",
  5970. "symfony/var-exporter": "^6.4|^7.0",
  5971. "twig/twig": "^3.12"
  5972. },
  5973. "type": "library",
  5974. "autoload": {
  5975. "psr-4": {
  5976. "Symfony\\Component\\HttpKernel\\": ""
  5977. },
  5978. "exclude-from-classmap": [
  5979. "/Tests/"
  5980. ]
  5981. },
  5982. "notification-url": "https://packagist.org/downloads/",
  5983. "license": [
  5984. "MIT"
  5985. ],
  5986. "authors": [
  5987. {
  5988. "name": "Fabien Potencier",
  5989. "email": "fabien@symfony.com"
  5990. },
  5991. {
  5992. "name": "Symfony Community",
  5993. "homepage": "https://symfony.com/contributors"
  5994. }
  5995. ],
  5996. "description": "Provides a structured process for converting a Request into a Response",
  5997. "homepage": "https://symfony.com",
  5998. "support": {
  5999. "source": "https://github.com/symfony/http-kernel/tree/v7.3.1"
  6000. },
  6001. "funding": [
  6002. {
  6003. "url": "https://symfony.com/sponsor",
  6004. "type": "custom"
  6005. },
  6006. {
  6007. "url": "https://github.com/fabpot",
  6008. "type": "github"
  6009. },
  6010. {
  6011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6012. "type": "tidelift"
  6013. }
  6014. ],
  6015. "time": "2025-06-28T08:24:55+00:00"
  6016. },
  6017. {
  6018. "name": "symfony/mailer",
  6019. "version": "v7.3.1",
  6020. "source": {
  6021. "type": "git",
  6022. "url": "https://github.com/symfony/mailer.git",
  6023. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368"
  6024. },
  6025. "dist": {
  6026. "type": "zip",
  6027. "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  6028. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  6029. "shasum": ""
  6030. },
  6031. "require": {
  6032. "egulias/email-validator": "^2.1.10|^3|^4",
  6033. "php": ">=8.2",
  6034. "psr/event-dispatcher": "^1",
  6035. "psr/log": "^1|^2|^3",
  6036. "symfony/event-dispatcher": "^6.4|^7.0",
  6037. "symfony/mime": "^7.2",
  6038. "symfony/service-contracts": "^2.5|^3"
  6039. },
  6040. "conflict": {
  6041. "symfony/http-client-contracts": "<2.5",
  6042. "symfony/http-kernel": "<6.4",
  6043. "symfony/messenger": "<6.4",
  6044. "symfony/mime": "<6.4",
  6045. "symfony/twig-bridge": "<6.4"
  6046. },
  6047. "require-dev": {
  6048. "symfony/console": "^6.4|^7.0",
  6049. "symfony/http-client": "^6.4|^7.0",
  6050. "symfony/messenger": "^6.4|^7.0",
  6051. "symfony/twig-bridge": "^6.4|^7.0"
  6052. },
  6053. "type": "library",
  6054. "autoload": {
  6055. "psr-4": {
  6056. "Symfony\\Component\\Mailer\\": ""
  6057. },
  6058. "exclude-from-classmap": [
  6059. "/Tests/"
  6060. ]
  6061. },
  6062. "notification-url": "https://packagist.org/downloads/",
  6063. "license": [
  6064. "MIT"
  6065. ],
  6066. "authors": [
  6067. {
  6068. "name": "Fabien Potencier",
  6069. "email": "fabien@symfony.com"
  6070. },
  6071. {
  6072. "name": "Symfony Community",
  6073. "homepage": "https://symfony.com/contributors"
  6074. }
  6075. ],
  6076. "description": "Helps sending emails",
  6077. "homepage": "https://symfony.com",
  6078. "support": {
  6079. "source": "https://github.com/symfony/mailer/tree/v7.3.1"
  6080. },
  6081. "funding": [
  6082. {
  6083. "url": "https://symfony.com/sponsor",
  6084. "type": "custom"
  6085. },
  6086. {
  6087. "url": "https://github.com/fabpot",
  6088. "type": "github"
  6089. },
  6090. {
  6091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6092. "type": "tidelift"
  6093. }
  6094. ],
  6095. "time": "2025-06-27T19:55:54+00:00"
  6096. },
  6097. {
  6098. "name": "symfony/mime",
  6099. "version": "v7.3.0",
  6100. "source": {
  6101. "type": "git",
  6102. "url": "https://github.com/symfony/mime.git",
  6103. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9"
  6104. },
  6105. "dist": {
  6106. "type": "zip",
  6107. "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  6108. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  6109. "shasum": ""
  6110. },
  6111. "require": {
  6112. "php": ">=8.2",
  6113. "symfony/polyfill-intl-idn": "^1.10",
  6114. "symfony/polyfill-mbstring": "^1.0"
  6115. },
  6116. "conflict": {
  6117. "egulias/email-validator": "~3.0.0",
  6118. "phpdocumentor/reflection-docblock": "<3.2.2",
  6119. "phpdocumentor/type-resolver": "<1.4.0",
  6120. "symfony/mailer": "<6.4",
  6121. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  6122. },
  6123. "require-dev": {
  6124. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6125. "league/html-to-markdown": "^5.0",
  6126. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6127. "symfony/dependency-injection": "^6.4|^7.0",
  6128. "symfony/process": "^6.4|^7.0",
  6129. "symfony/property-access": "^6.4|^7.0",
  6130. "symfony/property-info": "^6.4|^7.0",
  6131. "symfony/serializer": "^6.4.3|^7.0.3"
  6132. },
  6133. "type": "library",
  6134. "autoload": {
  6135. "psr-4": {
  6136. "Symfony\\Component\\Mime\\": ""
  6137. },
  6138. "exclude-from-classmap": [
  6139. "/Tests/"
  6140. ]
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "license": [
  6144. "MIT"
  6145. ],
  6146. "authors": [
  6147. {
  6148. "name": "Fabien Potencier",
  6149. "email": "fabien@symfony.com"
  6150. },
  6151. {
  6152. "name": "Symfony Community",
  6153. "homepage": "https://symfony.com/contributors"
  6154. }
  6155. ],
  6156. "description": "Allows manipulating MIME messages",
  6157. "homepage": "https://symfony.com",
  6158. "keywords": [
  6159. "mime",
  6160. "mime-type"
  6161. ],
  6162. "support": {
  6163. "source": "https://github.com/symfony/mime/tree/v7.3.0"
  6164. },
  6165. "funding": [
  6166. {
  6167. "url": "https://symfony.com/sponsor",
  6168. "type": "custom"
  6169. },
  6170. {
  6171. "url": "https://github.com/fabpot",
  6172. "type": "github"
  6173. },
  6174. {
  6175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6176. "type": "tidelift"
  6177. }
  6178. ],
  6179. "time": "2025-02-19T08:51:26+00:00"
  6180. },
  6181. {
  6182. "name": "symfony/polyfill-ctype",
  6183. "version": "v1.32.0",
  6184. "source": {
  6185. "type": "git",
  6186. "url": "https://github.com/symfony/polyfill-ctype.git",
  6187. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6188. },
  6189. "dist": {
  6190. "type": "zip",
  6191. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6192. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6193. "shasum": ""
  6194. },
  6195. "require": {
  6196. "php": ">=7.2"
  6197. },
  6198. "provide": {
  6199. "ext-ctype": "*"
  6200. },
  6201. "suggest": {
  6202. "ext-ctype": "For best performance"
  6203. },
  6204. "type": "library",
  6205. "extra": {
  6206. "thanks": {
  6207. "url": "https://github.com/symfony/polyfill",
  6208. "name": "symfony/polyfill"
  6209. }
  6210. },
  6211. "autoload": {
  6212. "files": [
  6213. "bootstrap.php"
  6214. ],
  6215. "psr-4": {
  6216. "Symfony\\Polyfill\\Ctype\\": ""
  6217. }
  6218. },
  6219. "notification-url": "https://packagist.org/downloads/",
  6220. "license": [
  6221. "MIT"
  6222. ],
  6223. "authors": [
  6224. {
  6225. "name": "Gert de Pagter",
  6226. "email": "BackEndTea@gmail.com"
  6227. },
  6228. {
  6229. "name": "Symfony Community",
  6230. "homepage": "https://symfony.com/contributors"
  6231. }
  6232. ],
  6233. "description": "Symfony polyfill for ctype functions",
  6234. "homepage": "https://symfony.com",
  6235. "keywords": [
  6236. "compatibility",
  6237. "ctype",
  6238. "polyfill",
  6239. "portable"
  6240. ],
  6241. "support": {
  6242. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  6243. },
  6244. "funding": [
  6245. {
  6246. "url": "https://symfony.com/sponsor",
  6247. "type": "custom"
  6248. },
  6249. {
  6250. "url": "https://github.com/fabpot",
  6251. "type": "github"
  6252. },
  6253. {
  6254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6255. "type": "tidelift"
  6256. }
  6257. ],
  6258. "time": "2024-09-09T11:45:10+00:00"
  6259. },
  6260. {
  6261. "name": "symfony/polyfill-intl-grapheme",
  6262. "version": "v1.32.0",
  6263. "source": {
  6264. "type": "git",
  6265. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6266. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6267. },
  6268. "dist": {
  6269. "type": "zip",
  6270. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6271. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6272. "shasum": ""
  6273. },
  6274. "require": {
  6275. "php": ">=7.2"
  6276. },
  6277. "suggest": {
  6278. "ext-intl": "For best performance"
  6279. },
  6280. "type": "library",
  6281. "extra": {
  6282. "thanks": {
  6283. "url": "https://github.com/symfony/polyfill",
  6284. "name": "symfony/polyfill"
  6285. }
  6286. },
  6287. "autoload": {
  6288. "files": [
  6289. "bootstrap.php"
  6290. ],
  6291. "psr-4": {
  6292. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6293. }
  6294. },
  6295. "notification-url": "https://packagist.org/downloads/",
  6296. "license": [
  6297. "MIT"
  6298. ],
  6299. "authors": [
  6300. {
  6301. "name": "Nicolas Grekas",
  6302. "email": "p@tchwork.com"
  6303. },
  6304. {
  6305. "name": "Symfony Community",
  6306. "homepage": "https://symfony.com/contributors"
  6307. }
  6308. ],
  6309. "description": "Symfony polyfill for intl's grapheme_* functions",
  6310. "homepage": "https://symfony.com",
  6311. "keywords": [
  6312. "compatibility",
  6313. "grapheme",
  6314. "intl",
  6315. "polyfill",
  6316. "portable",
  6317. "shim"
  6318. ],
  6319. "support": {
  6320. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  6321. },
  6322. "funding": [
  6323. {
  6324. "url": "https://symfony.com/sponsor",
  6325. "type": "custom"
  6326. },
  6327. {
  6328. "url": "https://github.com/fabpot",
  6329. "type": "github"
  6330. },
  6331. {
  6332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6333. "type": "tidelift"
  6334. }
  6335. ],
  6336. "time": "2024-09-09T11:45:10+00:00"
  6337. },
  6338. {
  6339. "name": "symfony/polyfill-intl-idn",
  6340. "version": "v1.32.0",
  6341. "source": {
  6342. "type": "git",
  6343. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6344. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6345. },
  6346. "dist": {
  6347. "type": "zip",
  6348. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6349. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6350. "shasum": ""
  6351. },
  6352. "require": {
  6353. "php": ">=7.2",
  6354. "symfony/polyfill-intl-normalizer": "^1.10"
  6355. },
  6356. "suggest": {
  6357. "ext-intl": "For best performance"
  6358. },
  6359. "type": "library",
  6360. "extra": {
  6361. "thanks": {
  6362. "url": "https://github.com/symfony/polyfill",
  6363. "name": "symfony/polyfill"
  6364. }
  6365. },
  6366. "autoload": {
  6367. "files": [
  6368. "bootstrap.php"
  6369. ],
  6370. "psr-4": {
  6371. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6372. }
  6373. },
  6374. "notification-url": "https://packagist.org/downloads/",
  6375. "license": [
  6376. "MIT"
  6377. ],
  6378. "authors": [
  6379. {
  6380. "name": "Laurent Bassin",
  6381. "email": "laurent@bassin.info"
  6382. },
  6383. {
  6384. "name": "Trevor Rowbotham",
  6385. "email": "trevor.rowbotham@pm.me"
  6386. },
  6387. {
  6388. "name": "Symfony Community",
  6389. "homepage": "https://symfony.com/contributors"
  6390. }
  6391. ],
  6392. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6393. "homepage": "https://symfony.com",
  6394. "keywords": [
  6395. "compatibility",
  6396. "idn",
  6397. "intl",
  6398. "polyfill",
  6399. "portable",
  6400. "shim"
  6401. ],
  6402. "support": {
  6403. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6404. },
  6405. "funding": [
  6406. {
  6407. "url": "https://symfony.com/sponsor",
  6408. "type": "custom"
  6409. },
  6410. {
  6411. "url": "https://github.com/fabpot",
  6412. "type": "github"
  6413. },
  6414. {
  6415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6416. "type": "tidelift"
  6417. }
  6418. ],
  6419. "time": "2024-09-10T14:38:51+00:00"
  6420. },
  6421. {
  6422. "name": "symfony/polyfill-intl-normalizer",
  6423. "version": "v1.32.0",
  6424. "source": {
  6425. "type": "git",
  6426. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6427. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6428. },
  6429. "dist": {
  6430. "type": "zip",
  6431. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6432. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6433. "shasum": ""
  6434. },
  6435. "require": {
  6436. "php": ">=7.2"
  6437. },
  6438. "suggest": {
  6439. "ext-intl": "For best performance"
  6440. },
  6441. "type": "library",
  6442. "extra": {
  6443. "thanks": {
  6444. "url": "https://github.com/symfony/polyfill",
  6445. "name": "symfony/polyfill"
  6446. }
  6447. },
  6448. "autoload": {
  6449. "files": [
  6450. "bootstrap.php"
  6451. ],
  6452. "psr-4": {
  6453. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6454. },
  6455. "classmap": [
  6456. "Resources/stubs"
  6457. ]
  6458. },
  6459. "notification-url": "https://packagist.org/downloads/",
  6460. "license": [
  6461. "MIT"
  6462. ],
  6463. "authors": [
  6464. {
  6465. "name": "Nicolas Grekas",
  6466. "email": "p@tchwork.com"
  6467. },
  6468. {
  6469. "name": "Symfony Community",
  6470. "homepage": "https://symfony.com/contributors"
  6471. }
  6472. ],
  6473. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6474. "homepage": "https://symfony.com",
  6475. "keywords": [
  6476. "compatibility",
  6477. "intl",
  6478. "normalizer",
  6479. "polyfill",
  6480. "portable",
  6481. "shim"
  6482. ],
  6483. "support": {
  6484. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6485. },
  6486. "funding": [
  6487. {
  6488. "url": "https://symfony.com/sponsor",
  6489. "type": "custom"
  6490. },
  6491. {
  6492. "url": "https://github.com/fabpot",
  6493. "type": "github"
  6494. },
  6495. {
  6496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6497. "type": "tidelift"
  6498. }
  6499. ],
  6500. "time": "2024-09-09T11:45:10+00:00"
  6501. },
  6502. {
  6503. "name": "symfony/polyfill-mbstring",
  6504. "version": "v1.32.0",
  6505. "source": {
  6506. "type": "git",
  6507. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6508. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6509. },
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6513. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6514. "shasum": ""
  6515. },
  6516. "require": {
  6517. "ext-iconv": "*",
  6518. "php": ">=7.2"
  6519. },
  6520. "provide": {
  6521. "ext-mbstring": "*"
  6522. },
  6523. "suggest": {
  6524. "ext-mbstring": "For best performance"
  6525. },
  6526. "type": "library",
  6527. "extra": {
  6528. "thanks": {
  6529. "url": "https://github.com/symfony/polyfill",
  6530. "name": "symfony/polyfill"
  6531. }
  6532. },
  6533. "autoload": {
  6534. "files": [
  6535. "bootstrap.php"
  6536. ],
  6537. "psr-4": {
  6538. "Symfony\\Polyfill\\Mbstring\\": ""
  6539. }
  6540. },
  6541. "notification-url": "https://packagist.org/downloads/",
  6542. "license": [
  6543. "MIT"
  6544. ],
  6545. "authors": [
  6546. {
  6547. "name": "Nicolas Grekas",
  6548. "email": "p@tchwork.com"
  6549. },
  6550. {
  6551. "name": "Symfony Community",
  6552. "homepage": "https://symfony.com/contributors"
  6553. }
  6554. ],
  6555. "description": "Symfony polyfill for the Mbstring extension",
  6556. "homepage": "https://symfony.com",
  6557. "keywords": [
  6558. "compatibility",
  6559. "mbstring",
  6560. "polyfill",
  6561. "portable",
  6562. "shim"
  6563. ],
  6564. "support": {
  6565. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6566. },
  6567. "funding": [
  6568. {
  6569. "url": "https://symfony.com/sponsor",
  6570. "type": "custom"
  6571. },
  6572. {
  6573. "url": "https://github.com/fabpot",
  6574. "type": "github"
  6575. },
  6576. {
  6577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6578. "type": "tidelift"
  6579. }
  6580. ],
  6581. "time": "2024-12-23T08:48:59+00:00"
  6582. },
  6583. {
  6584. "name": "symfony/polyfill-php80",
  6585. "version": "v1.32.0",
  6586. "source": {
  6587. "type": "git",
  6588. "url": "https://github.com/symfony/polyfill-php80.git",
  6589. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6590. },
  6591. "dist": {
  6592. "type": "zip",
  6593. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6594. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6595. "shasum": ""
  6596. },
  6597. "require": {
  6598. "php": ">=7.2"
  6599. },
  6600. "type": "library",
  6601. "extra": {
  6602. "thanks": {
  6603. "url": "https://github.com/symfony/polyfill",
  6604. "name": "symfony/polyfill"
  6605. }
  6606. },
  6607. "autoload": {
  6608. "files": [
  6609. "bootstrap.php"
  6610. ],
  6611. "psr-4": {
  6612. "Symfony\\Polyfill\\Php80\\": ""
  6613. },
  6614. "classmap": [
  6615. "Resources/stubs"
  6616. ]
  6617. },
  6618. "notification-url": "https://packagist.org/downloads/",
  6619. "license": [
  6620. "MIT"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "Ion Bazan",
  6625. "email": "ion.bazan@gmail.com"
  6626. },
  6627. {
  6628. "name": "Nicolas Grekas",
  6629. "email": "p@tchwork.com"
  6630. },
  6631. {
  6632. "name": "Symfony Community",
  6633. "homepage": "https://symfony.com/contributors"
  6634. }
  6635. ],
  6636. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6637. "homepage": "https://symfony.com",
  6638. "keywords": [
  6639. "compatibility",
  6640. "polyfill",
  6641. "portable",
  6642. "shim"
  6643. ],
  6644. "support": {
  6645. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  6646. },
  6647. "funding": [
  6648. {
  6649. "url": "https://symfony.com/sponsor",
  6650. "type": "custom"
  6651. },
  6652. {
  6653. "url": "https://github.com/fabpot",
  6654. "type": "github"
  6655. },
  6656. {
  6657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6658. "type": "tidelift"
  6659. }
  6660. ],
  6661. "time": "2025-01-02T08:10:11+00:00"
  6662. },
  6663. {
  6664. "name": "symfony/polyfill-php83",
  6665. "version": "v1.32.0",
  6666. "source": {
  6667. "type": "git",
  6668. "url": "https://github.com/symfony/polyfill-php83.git",
  6669. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6670. },
  6671. "dist": {
  6672. "type": "zip",
  6673. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6674. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6675. "shasum": ""
  6676. },
  6677. "require": {
  6678. "php": ">=7.2"
  6679. },
  6680. "type": "library",
  6681. "extra": {
  6682. "thanks": {
  6683. "url": "https://github.com/symfony/polyfill",
  6684. "name": "symfony/polyfill"
  6685. }
  6686. },
  6687. "autoload": {
  6688. "files": [
  6689. "bootstrap.php"
  6690. ],
  6691. "psr-4": {
  6692. "Symfony\\Polyfill\\Php83\\": ""
  6693. },
  6694. "classmap": [
  6695. "Resources/stubs"
  6696. ]
  6697. },
  6698. "notification-url": "https://packagist.org/downloads/",
  6699. "license": [
  6700. "MIT"
  6701. ],
  6702. "authors": [
  6703. {
  6704. "name": "Nicolas Grekas",
  6705. "email": "p@tchwork.com"
  6706. },
  6707. {
  6708. "name": "Symfony Community",
  6709. "homepage": "https://symfony.com/contributors"
  6710. }
  6711. ],
  6712. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6713. "homepage": "https://symfony.com",
  6714. "keywords": [
  6715. "compatibility",
  6716. "polyfill",
  6717. "portable",
  6718. "shim"
  6719. ],
  6720. "support": {
  6721. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  6722. },
  6723. "funding": [
  6724. {
  6725. "url": "https://symfony.com/sponsor",
  6726. "type": "custom"
  6727. },
  6728. {
  6729. "url": "https://github.com/fabpot",
  6730. "type": "github"
  6731. },
  6732. {
  6733. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6734. "type": "tidelift"
  6735. }
  6736. ],
  6737. "time": "2024-09-09T11:45:10+00:00"
  6738. },
  6739. {
  6740. "name": "symfony/polyfill-uuid",
  6741. "version": "v1.32.0",
  6742. "source": {
  6743. "type": "git",
  6744. "url": "https://github.com/symfony/polyfill-uuid.git",
  6745. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  6746. },
  6747. "dist": {
  6748. "type": "zip",
  6749. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6750. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6751. "shasum": ""
  6752. },
  6753. "require": {
  6754. "php": ">=7.2"
  6755. },
  6756. "provide": {
  6757. "ext-uuid": "*"
  6758. },
  6759. "suggest": {
  6760. "ext-uuid": "For best performance"
  6761. },
  6762. "type": "library",
  6763. "extra": {
  6764. "thanks": {
  6765. "url": "https://github.com/symfony/polyfill",
  6766. "name": "symfony/polyfill"
  6767. }
  6768. },
  6769. "autoload": {
  6770. "files": [
  6771. "bootstrap.php"
  6772. ],
  6773. "psr-4": {
  6774. "Symfony\\Polyfill\\Uuid\\": ""
  6775. }
  6776. },
  6777. "notification-url": "https://packagist.org/downloads/",
  6778. "license": [
  6779. "MIT"
  6780. ],
  6781. "authors": [
  6782. {
  6783. "name": "Grégoire Pineau",
  6784. "email": "lyrixx@lyrixx.info"
  6785. },
  6786. {
  6787. "name": "Symfony Community",
  6788. "homepage": "https://symfony.com/contributors"
  6789. }
  6790. ],
  6791. "description": "Symfony polyfill for uuid functions",
  6792. "homepage": "https://symfony.com",
  6793. "keywords": [
  6794. "compatibility",
  6795. "polyfill",
  6796. "portable",
  6797. "uuid"
  6798. ],
  6799. "support": {
  6800. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0"
  6801. },
  6802. "funding": [
  6803. {
  6804. "url": "https://symfony.com/sponsor",
  6805. "type": "custom"
  6806. },
  6807. {
  6808. "url": "https://github.com/fabpot",
  6809. "type": "github"
  6810. },
  6811. {
  6812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6813. "type": "tidelift"
  6814. }
  6815. ],
  6816. "time": "2024-09-09T11:45:10+00:00"
  6817. },
  6818. {
  6819. "name": "symfony/process",
  6820. "version": "v7.3.0",
  6821. "source": {
  6822. "type": "git",
  6823. "url": "https://github.com/symfony/process.git",
  6824. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  6825. },
  6826. "dist": {
  6827. "type": "zip",
  6828. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  6829. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  6830. "shasum": ""
  6831. },
  6832. "require": {
  6833. "php": ">=8.2"
  6834. },
  6835. "type": "library",
  6836. "autoload": {
  6837. "psr-4": {
  6838. "Symfony\\Component\\Process\\": ""
  6839. },
  6840. "exclude-from-classmap": [
  6841. "/Tests/"
  6842. ]
  6843. },
  6844. "notification-url": "https://packagist.org/downloads/",
  6845. "license": [
  6846. "MIT"
  6847. ],
  6848. "authors": [
  6849. {
  6850. "name": "Fabien Potencier",
  6851. "email": "fabien@symfony.com"
  6852. },
  6853. {
  6854. "name": "Symfony Community",
  6855. "homepage": "https://symfony.com/contributors"
  6856. }
  6857. ],
  6858. "description": "Executes commands in sub-processes",
  6859. "homepage": "https://symfony.com",
  6860. "support": {
  6861. "source": "https://github.com/symfony/process/tree/v7.3.0"
  6862. },
  6863. "funding": [
  6864. {
  6865. "url": "https://symfony.com/sponsor",
  6866. "type": "custom"
  6867. },
  6868. {
  6869. "url": "https://github.com/fabpot",
  6870. "type": "github"
  6871. },
  6872. {
  6873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6874. "type": "tidelift"
  6875. }
  6876. ],
  6877. "time": "2025-04-17T09:11:12+00:00"
  6878. },
  6879. {
  6880. "name": "symfony/routing",
  6881. "version": "v7.3.0",
  6882. "source": {
  6883. "type": "git",
  6884. "url": "https://github.com/symfony/routing.git",
  6885. "reference": "8e213820c5fea844ecea29203d2a308019007c15"
  6886. },
  6887. "dist": {
  6888. "type": "zip",
  6889. "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
  6890. "reference": "8e213820c5fea844ecea29203d2a308019007c15",
  6891. "shasum": ""
  6892. },
  6893. "require": {
  6894. "php": ">=8.2",
  6895. "symfony/deprecation-contracts": "^2.5|^3"
  6896. },
  6897. "conflict": {
  6898. "symfony/config": "<6.4",
  6899. "symfony/dependency-injection": "<6.4",
  6900. "symfony/yaml": "<6.4"
  6901. },
  6902. "require-dev": {
  6903. "psr/log": "^1|^2|^3",
  6904. "symfony/config": "^6.4|^7.0",
  6905. "symfony/dependency-injection": "^6.4|^7.0",
  6906. "symfony/expression-language": "^6.4|^7.0",
  6907. "symfony/http-foundation": "^6.4|^7.0",
  6908. "symfony/yaml": "^6.4|^7.0"
  6909. },
  6910. "type": "library",
  6911. "autoload": {
  6912. "psr-4": {
  6913. "Symfony\\Component\\Routing\\": ""
  6914. },
  6915. "exclude-from-classmap": [
  6916. "/Tests/"
  6917. ]
  6918. },
  6919. "notification-url": "https://packagist.org/downloads/",
  6920. "license": [
  6921. "MIT"
  6922. ],
  6923. "authors": [
  6924. {
  6925. "name": "Fabien Potencier",
  6926. "email": "fabien@symfony.com"
  6927. },
  6928. {
  6929. "name": "Symfony Community",
  6930. "homepage": "https://symfony.com/contributors"
  6931. }
  6932. ],
  6933. "description": "Maps an HTTP request to a set of configuration variables",
  6934. "homepage": "https://symfony.com",
  6935. "keywords": [
  6936. "router",
  6937. "routing",
  6938. "uri",
  6939. "url"
  6940. ],
  6941. "support": {
  6942. "source": "https://github.com/symfony/routing/tree/v7.3.0"
  6943. },
  6944. "funding": [
  6945. {
  6946. "url": "https://symfony.com/sponsor",
  6947. "type": "custom"
  6948. },
  6949. {
  6950. "url": "https://github.com/fabpot",
  6951. "type": "github"
  6952. },
  6953. {
  6954. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6955. "type": "tidelift"
  6956. }
  6957. ],
  6958. "time": "2025-05-24T20:43:28+00:00"
  6959. },
  6960. {
  6961. "name": "symfony/service-contracts",
  6962. "version": "v3.6.0",
  6963. "source": {
  6964. "type": "git",
  6965. "url": "https://github.com/symfony/service-contracts.git",
  6966. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  6967. },
  6968. "dist": {
  6969. "type": "zip",
  6970. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6971. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6972. "shasum": ""
  6973. },
  6974. "require": {
  6975. "php": ">=8.1",
  6976. "psr/container": "^1.1|^2.0",
  6977. "symfony/deprecation-contracts": "^2.5|^3"
  6978. },
  6979. "conflict": {
  6980. "ext-psr": "<1.1|>=2"
  6981. },
  6982. "type": "library",
  6983. "extra": {
  6984. "thanks": {
  6985. "url": "https://github.com/symfony/contracts",
  6986. "name": "symfony/contracts"
  6987. },
  6988. "branch-alias": {
  6989. "dev-main": "3.6-dev"
  6990. }
  6991. },
  6992. "autoload": {
  6993. "psr-4": {
  6994. "Symfony\\Contracts\\Service\\": ""
  6995. },
  6996. "exclude-from-classmap": [
  6997. "/Test/"
  6998. ]
  6999. },
  7000. "notification-url": "https://packagist.org/downloads/",
  7001. "license": [
  7002. "MIT"
  7003. ],
  7004. "authors": [
  7005. {
  7006. "name": "Nicolas Grekas",
  7007. "email": "p@tchwork.com"
  7008. },
  7009. {
  7010. "name": "Symfony Community",
  7011. "homepage": "https://symfony.com/contributors"
  7012. }
  7013. ],
  7014. "description": "Generic abstractions related to writing services",
  7015. "homepage": "https://symfony.com",
  7016. "keywords": [
  7017. "abstractions",
  7018. "contracts",
  7019. "decoupling",
  7020. "interfaces",
  7021. "interoperability",
  7022. "standards"
  7023. ],
  7024. "support": {
  7025. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  7026. },
  7027. "funding": [
  7028. {
  7029. "url": "https://symfony.com/sponsor",
  7030. "type": "custom"
  7031. },
  7032. {
  7033. "url": "https://github.com/fabpot",
  7034. "type": "github"
  7035. },
  7036. {
  7037. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7038. "type": "tidelift"
  7039. }
  7040. ],
  7041. "time": "2025-04-25T09:37:31+00:00"
  7042. },
  7043. {
  7044. "name": "symfony/string",
  7045. "version": "v7.3.0",
  7046. "source": {
  7047. "type": "git",
  7048. "url": "https://github.com/symfony/string.git",
  7049. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
  7050. },
  7051. "dist": {
  7052. "type": "zip",
  7053. "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
  7054. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
  7055. "shasum": ""
  7056. },
  7057. "require": {
  7058. "php": ">=8.2",
  7059. "symfony/polyfill-ctype": "~1.8",
  7060. "symfony/polyfill-intl-grapheme": "~1.0",
  7061. "symfony/polyfill-intl-normalizer": "~1.0",
  7062. "symfony/polyfill-mbstring": "~1.0"
  7063. },
  7064. "conflict": {
  7065. "symfony/translation-contracts": "<2.5"
  7066. },
  7067. "require-dev": {
  7068. "symfony/emoji": "^7.1",
  7069. "symfony/error-handler": "^6.4|^7.0",
  7070. "symfony/http-client": "^6.4|^7.0",
  7071. "symfony/intl": "^6.4|^7.0",
  7072. "symfony/translation-contracts": "^2.5|^3.0",
  7073. "symfony/var-exporter": "^6.4|^7.0"
  7074. },
  7075. "type": "library",
  7076. "autoload": {
  7077. "files": [
  7078. "Resources/functions.php"
  7079. ],
  7080. "psr-4": {
  7081. "Symfony\\Component\\String\\": ""
  7082. },
  7083. "exclude-from-classmap": [
  7084. "/Tests/"
  7085. ]
  7086. },
  7087. "notification-url": "https://packagist.org/downloads/",
  7088. "license": [
  7089. "MIT"
  7090. ],
  7091. "authors": [
  7092. {
  7093. "name": "Nicolas Grekas",
  7094. "email": "p@tchwork.com"
  7095. },
  7096. {
  7097. "name": "Symfony Community",
  7098. "homepage": "https://symfony.com/contributors"
  7099. }
  7100. ],
  7101. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7102. "homepage": "https://symfony.com",
  7103. "keywords": [
  7104. "grapheme",
  7105. "i18n",
  7106. "string",
  7107. "unicode",
  7108. "utf-8",
  7109. "utf8"
  7110. ],
  7111. "support": {
  7112. "source": "https://github.com/symfony/string/tree/v7.3.0"
  7113. },
  7114. "funding": [
  7115. {
  7116. "url": "https://symfony.com/sponsor",
  7117. "type": "custom"
  7118. },
  7119. {
  7120. "url": "https://github.com/fabpot",
  7121. "type": "github"
  7122. },
  7123. {
  7124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7125. "type": "tidelift"
  7126. }
  7127. ],
  7128. "time": "2025-04-20T20:19:01+00:00"
  7129. },
  7130. {
  7131. "name": "symfony/translation",
  7132. "version": "v7.3.1",
  7133. "source": {
  7134. "type": "git",
  7135. "url": "https://github.com/symfony/translation.git",
  7136. "reference": "241d5ac4910d256660238a7ecf250deba4c73063"
  7137. },
  7138. "dist": {
  7139. "type": "zip",
  7140. "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063",
  7141. "reference": "241d5ac4910d256660238a7ecf250deba4c73063",
  7142. "shasum": ""
  7143. },
  7144. "require": {
  7145. "php": ">=8.2",
  7146. "symfony/deprecation-contracts": "^2.5|^3",
  7147. "symfony/polyfill-mbstring": "~1.0",
  7148. "symfony/translation-contracts": "^2.5|^3.0"
  7149. },
  7150. "conflict": {
  7151. "nikic/php-parser": "<5.0",
  7152. "symfony/config": "<6.4",
  7153. "symfony/console": "<6.4",
  7154. "symfony/dependency-injection": "<6.4",
  7155. "symfony/http-client-contracts": "<2.5",
  7156. "symfony/http-kernel": "<6.4",
  7157. "symfony/service-contracts": "<2.5",
  7158. "symfony/twig-bundle": "<6.4",
  7159. "symfony/yaml": "<6.4"
  7160. },
  7161. "provide": {
  7162. "symfony/translation-implementation": "2.3|3.0"
  7163. },
  7164. "require-dev": {
  7165. "nikic/php-parser": "^5.0",
  7166. "psr/log": "^1|^2|^3",
  7167. "symfony/config": "^6.4|^7.0",
  7168. "symfony/console": "^6.4|^7.0",
  7169. "symfony/dependency-injection": "^6.4|^7.0",
  7170. "symfony/finder": "^6.4|^7.0",
  7171. "symfony/http-client-contracts": "^2.5|^3.0",
  7172. "symfony/http-kernel": "^6.4|^7.0",
  7173. "symfony/intl": "^6.4|^7.0",
  7174. "symfony/polyfill-intl-icu": "^1.21",
  7175. "symfony/routing": "^6.4|^7.0",
  7176. "symfony/service-contracts": "^2.5|^3",
  7177. "symfony/yaml": "^6.4|^7.0"
  7178. },
  7179. "type": "library",
  7180. "autoload": {
  7181. "files": [
  7182. "Resources/functions.php"
  7183. ],
  7184. "psr-4": {
  7185. "Symfony\\Component\\Translation\\": ""
  7186. },
  7187. "exclude-from-classmap": [
  7188. "/Tests/"
  7189. ]
  7190. },
  7191. "notification-url": "https://packagist.org/downloads/",
  7192. "license": [
  7193. "MIT"
  7194. ],
  7195. "authors": [
  7196. {
  7197. "name": "Fabien Potencier",
  7198. "email": "fabien@symfony.com"
  7199. },
  7200. {
  7201. "name": "Symfony Community",
  7202. "homepage": "https://symfony.com/contributors"
  7203. }
  7204. ],
  7205. "description": "Provides tools to internationalize your application",
  7206. "homepage": "https://symfony.com",
  7207. "support": {
  7208. "source": "https://github.com/symfony/translation/tree/v7.3.1"
  7209. },
  7210. "funding": [
  7211. {
  7212. "url": "https://symfony.com/sponsor",
  7213. "type": "custom"
  7214. },
  7215. {
  7216. "url": "https://github.com/fabpot",
  7217. "type": "github"
  7218. },
  7219. {
  7220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7221. "type": "tidelift"
  7222. }
  7223. ],
  7224. "time": "2025-06-27T19:55:54+00:00"
  7225. },
  7226. {
  7227. "name": "symfony/translation-contracts",
  7228. "version": "v3.6.0",
  7229. "source": {
  7230. "type": "git",
  7231. "url": "https://github.com/symfony/translation-contracts.git",
  7232. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  7233. },
  7234. "dist": {
  7235. "type": "zip",
  7236. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  7237. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  7238. "shasum": ""
  7239. },
  7240. "require": {
  7241. "php": ">=8.1"
  7242. },
  7243. "type": "library",
  7244. "extra": {
  7245. "thanks": {
  7246. "url": "https://github.com/symfony/contracts",
  7247. "name": "symfony/contracts"
  7248. },
  7249. "branch-alias": {
  7250. "dev-main": "3.6-dev"
  7251. }
  7252. },
  7253. "autoload": {
  7254. "psr-4": {
  7255. "Symfony\\Contracts\\Translation\\": ""
  7256. },
  7257. "exclude-from-classmap": [
  7258. "/Test/"
  7259. ]
  7260. },
  7261. "notification-url": "https://packagist.org/downloads/",
  7262. "license": [
  7263. "MIT"
  7264. ],
  7265. "authors": [
  7266. {
  7267. "name": "Nicolas Grekas",
  7268. "email": "p@tchwork.com"
  7269. },
  7270. {
  7271. "name": "Symfony Community",
  7272. "homepage": "https://symfony.com/contributors"
  7273. }
  7274. ],
  7275. "description": "Generic abstractions related to translation",
  7276. "homepage": "https://symfony.com",
  7277. "keywords": [
  7278. "abstractions",
  7279. "contracts",
  7280. "decoupling",
  7281. "interfaces",
  7282. "interoperability",
  7283. "standards"
  7284. ],
  7285. "support": {
  7286. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  7287. },
  7288. "funding": [
  7289. {
  7290. "url": "https://symfony.com/sponsor",
  7291. "type": "custom"
  7292. },
  7293. {
  7294. "url": "https://github.com/fabpot",
  7295. "type": "github"
  7296. },
  7297. {
  7298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7299. "type": "tidelift"
  7300. }
  7301. ],
  7302. "time": "2024-09-27T08:32:26+00:00"
  7303. },
  7304. {
  7305. "name": "symfony/uid",
  7306. "version": "v7.3.1",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://github.com/symfony/uid.git",
  7310. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
  7315. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
  7316. "shasum": ""
  7317. },
  7318. "require": {
  7319. "php": ">=8.2",
  7320. "symfony/polyfill-uuid": "^1.15"
  7321. },
  7322. "require-dev": {
  7323. "symfony/console": "^6.4|^7.0"
  7324. },
  7325. "type": "library",
  7326. "autoload": {
  7327. "psr-4": {
  7328. "Symfony\\Component\\Uid\\": ""
  7329. },
  7330. "exclude-from-classmap": [
  7331. "/Tests/"
  7332. ]
  7333. },
  7334. "notification-url": "https://packagist.org/downloads/",
  7335. "license": [
  7336. "MIT"
  7337. ],
  7338. "authors": [
  7339. {
  7340. "name": "Grégoire Pineau",
  7341. "email": "lyrixx@lyrixx.info"
  7342. },
  7343. {
  7344. "name": "Nicolas Grekas",
  7345. "email": "p@tchwork.com"
  7346. },
  7347. {
  7348. "name": "Symfony Community",
  7349. "homepage": "https://symfony.com/contributors"
  7350. }
  7351. ],
  7352. "description": "Provides an object-oriented API to generate and represent UIDs",
  7353. "homepage": "https://symfony.com",
  7354. "keywords": [
  7355. "UID",
  7356. "ulid",
  7357. "uuid"
  7358. ],
  7359. "support": {
  7360. "source": "https://github.com/symfony/uid/tree/v7.3.1"
  7361. },
  7362. "funding": [
  7363. {
  7364. "url": "https://symfony.com/sponsor",
  7365. "type": "custom"
  7366. },
  7367. {
  7368. "url": "https://github.com/fabpot",
  7369. "type": "github"
  7370. },
  7371. {
  7372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7373. "type": "tidelift"
  7374. }
  7375. ],
  7376. "time": "2025-06-27T19:55:54+00:00"
  7377. },
  7378. {
  7379. "name": "symfony/var-dumper",
  7380. "version": "v7.3.1",
  7381. "source": {
  7382. "type": "git",
  7383. "url": "https://github.com/symfony/var-dumper.git",
  7384. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42"
  7385. },
  7386. "dist": {
  7387. "type": "zip",
  7388. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  7389. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  7390. "shasum": ""
  7391. },
  7392. "require": {
  7393. "php": ">=8.2",
  7394. "symfony/deprecation-contracts": "^2.5|^3",
  7395. "symfony/polyfill-mbstring": "~1.0"
  7396. },
  7397. "conflict": {
  7398. "symfony/console": "<6.4"
  7399. },
  7400. "require-dev": {
  7401. "ext-iconv": "*",
  7402. "symfony/console": "^6.4|^7.0",
  7403. "symfony/http-kernel": "^6.4|^7.0",
  7404. "symfony/process": "^6.4|^7.0",
  7405. "symfony/uid": "^6.4|^7.0",
  7406. "twig/twig": "^3.12"
  7407. },
  7408. "bin": [
  7409. "Resources/bin/var-dump-server"
  7410. ],
  7411. "type": "library",
  7412. "autoload": {
  7413. "files": [
  7414. "Resources/functions/dump.php"
  7415. ],
  7416. "psr-4": {
  7417. "Symfony\\Component\\VarDumper\\": ""
  7418. },
  7419. "exclude-from-classmap": [
  7420. "/Tests/"
  7421. ]
  7422. },
  7423. "notification-url": "https://packagist.org/downloads/",
  7424. "license": [
  7425. "MIT"
  7426. ],
  7427. "authors": [
  7428. {
  7429. "name": "Nicolas Grekas",
  7430. "email": "p@tchwork.com"
  7431. },
  7432. {
  7433. "name": "Symfony Community",
  7434. "homepage": "https://symfony.com/contributors"
  7435. }
  7436. ],
  7437. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7438. "homepage": "https://symfony.com",
  7439. "keywords": [
  7440. "debug",
  7441. "dump"
  7442. ],
  7443. "support": {
  7444. "source": "https://github.com/symfony/var-dumper/tree/v7.3.1"
  7445. },
  7446. "funding": [
  7447. {
  7448. "url": "https://symfony.com/sponsor",
  7449. "type": "custom"
  7450. },
  7451. {
  7452. "url": "https://github.com/fabpot",
  7453. "type": "github"
  7454. },
  7455. {
  7456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7457. "type": "tidelift"
  7458. }
  7459. ],
  7460. "time": "2025-06-27T19:55:54+00:00"
  7461. },
  7462. {
  7463. "name": "symfony/var-exporter",
  7464. "version": "v7.4.9",
  7465. "source": {
  7466. "type": "git",
  7467. "url": "https://github.com/symfony/var-exporter.git",
  7468. "reference": "22e03a49c95ef054a43601cd159b222bfab1c701"
  7469. },
  7470. "dist": {
  7471. "type": "zip",
  7472. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/22e03a49c95ef054a43601cd159b222bfab1c701",
  7473. "reference": "22e03a49c95ef054a43601cd159b222bfab1c701",
  7474. "shasum": ""
  7475. },
  7476. "require": {
  7477. "php": ">=8.2",
  7478. "symfony/deprecation-contracts": "^2.5|^3"
  7479. },
  7480. "require-dev": {
  7481. "symfony/property-access": "^6.4|^7.0|^8.0",
  7482. "symfony/serializer": "^6.4|^7.0|^8.0",
  7483. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  7484. },
  7485. "type": "library",
  7486. "autoload": {
  7487. "psr-4": {
  7488. "Symfony\\Component\\VarExporter\\": ""
  7489. },
  7490. "exclude-from-classmap": [
  7491. "/Tests/"
  7492. ]
  7493. },
  7494. "notification-url": "https://packagist.org/downloads/",
  7495. "license": [
  7496. "MIT"
  7497. ],
  7498. "authors": [
  7499. {
  7500. "name": "Nicolas Grekas",
  7501. "email": "p@tchwork.com"
  7502. },
  7503. {
  7504. "name": "Symfony Community",
  7505. "homepage": "https://symfony.com/contributors"
  7506. }
  7507. ],
  7508. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7509. "homepage": "https://symfony.com",
  7510. "keywords": [
  7511. "clone",
  7512. "construct",
  7513. "export",
  7514. "hydrate",
  7515. "instantiate",
  7516. "lazy-loading",
  7517. "proxy",
  7518. "serialize"
  7519. ],
  7520. "support": {
  7521. "source": "https://github.com/symfony/var-exporter/tree/v7.4.9"
  7522. },
  7523. "funding": [
  7524. {
  7525. "url": "https://symfony.com/sponsor",
  7526. "type": "custom"
  7527. },
  7528. {
  7529. "url": "https://github.com/fabpot",
  7530. "type": "github"
  7531. },
  7532. {
  7533. "url": "https://github.com/nicolas-grekas",
  7534. "type": "github"
  7535. },
  7536. {
  7537. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7538. "type": "tidelift"
  7539. }
  7540. ],
  7541. "time": "2026-04-18T13:18:21+00:00"
  7542. },
  7543. {
  7544. "name": "tijsverkoyen/css-to-inline-styles",
  7545. "version": "v2.3.0",
  7546. "source": {
  7547. "type": "git",
  7548. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7549. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7550. },
  7551. "dist": {
  7552. "type": "zip",
  7553. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7554. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7555. "shasum": ""
  7556. },
  7557. "require": {
  7558. "ext-dom": "*",
  7559. "ext-libxml": "*",
  7560. "php": "^7.4 || ^8.0",
  7561. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7562. },
  7563. "require-dev": {
  7564. "phpstan/phpstan": "^2.0",
  7565. "phpstan/phpstan-phpunit": "^2.0",
  7566. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7567. },
  7568. "type": "library",
  7569. "extra": {
  7570. "branch-alias": {
  7571. "dev-master": "2.x-dev"
  7572. }
  7573. },
  7574. "autoload": {
  7575. "psr-4": {
  7576. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7577. }
  7578. },
  7579. "notification-url": "https://packagist.org/downloads/",
  7580. "license": [
  7581. "BSD-3-Clause"
  7582. ],
  7583. "authors": [
  7584. {
  7585. "name": "Tijs Verkoyen",
  7586. "email": "css_to_inline_styles@verkoyen.eu",
  7587. "role": "Developer"
  7588. }
  7589. ],
  7590. "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.",
  7591. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7592. "support": {
  7593. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7594. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7595. },
  7596. "time": "2024-12-21T16:25:41+00:00"
  7597. },
  7598. {
  7599. "name": "vlucas/phpdotenv",
  7600. "version": "v5.6.2",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/vlucas/phpdotenv.git",
  7604. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  7609. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  7610. "shasum": ""
  7611. },
  7612. "require": {
  7613. "ext-pcre": "*",
  7614. "graham-campbell/result-type": "^1.1.3",
  7615. "php": "^7.2.5 || ^8.0",
  7616. "phpoption/phpoption": "^1.9.3",
  7617. "symfony/polyfill-ctype": "^1.24",
  7618. "symfony/polyfill-mbstring": "^1.24",
  7619. "symfony/polyfill-php80": "^1.24"
  7620. },
  7621. "require-dev": {
  7622. "bamarni/composer-bin-plugin": "^1.8.2",
  7623. "ext-filter": "*",
  7624. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7625. },
  7626. "suggest": {
  7627. "ext-filter": "Required to use the boolean validator."
  7628. },
  7629. "type": "library",
  7630. "extra": {
  7631. "bamarni-bin": {
  7632. "bin-links": true,
  7633. "forward-command": false
  7634. },
  7635. "branch-alias": {
  7636. "dev-master": "5.6-dev"
  7637. }
  7638. },
  7639. "autoload": {
  7640. "psr-4": {
  7641. "Dotenv\\": "src/"
  7642. }
  7643. },
  7644. "notification-url": "https://packagist.org/downloads/",
  7645. "license": [
  7646. "BSD-3-Clause"
  7647. ],
  7648. "authors": [
  7649. {
  7650. "name": "Graham Campbell",
  7651. "email": "hello@gjcampbell.co.uk",
  7652. "homepage": "https://github.com/GrahamCampbell"
  7653. },
  7654. {
  7655. "name": "Vance Lucas",
  7656. "email": "vance@vancelucas.com",
  7657. "homepage": "https://github.com/vlucas"
  7658. }
  7659. ],
  7660. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7661. "keywords": [
  7662. "dotenv",
  7663. "env",
  7664. "environment"
  7665. ],
  7666. "support": {
  7667. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7668. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
  7669. },
  7670. "funding": [
  7671. {
  7672. "url": "https://github.com/GrahamCampbell",
  7673. "type": "github"
  7674. },
  7675. {
  7676. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7677. "type": "tidelift"
  7678. }
  7679. ],
  7680. "time": "2025-04-30T23:37:27+00:00"
  7681. },
  7682. {
  7683. "name": "voku/portable-ascii",
  7684. "version": "2.0.3",
  7685. "source": {
  7686. "type": "git",
  7687. "url": "https://github.com/voku/portable-ascii.git",
  7688. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  7689. },
  7690. "dist": {
  7691. "type": "zip",
  7692. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  7693. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  7694. "shasum": ""
  7695. },
  7696. "require": {
  7697. "php": ">=7.0.0"
  7698. },
  7699. "require-dev": {
  7700. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7701. },
  7702. "suggest": {
  7703. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7704. },
  7705. "type": "library",
  7706. "autoload": {
  7707. "psr-4": {
  7708. "voku\\": "src/voku/"
  7709. }
  7710. },
  7711. "notification-url": "https://packagist.org/downloads/",
  7712. "license": [
  7713. "MIT"
  7714. ],
  7715. "authors": [
  7716. {
  7717. "name": "Lars Moelleken",
  7718. "homepage": "https://www.moelleken.org/"
  7719. }
  7720. ],
  7721. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7722. "homepage": "https://github.com/voku/portable-ascii",
  7723. "keywords": [
  7724. "ascii",
  7725. "clean",
  7726. "php"
  7727. ],
  7728. "support": {
  7729. "issues": "https://github.com/voku/portable-ascii/issues",
  7730. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  7731. },
  7732. "funding": [
  7733. {
  7734. "url": "https://www.paypal.me/moelleken",
  7735. "type": "custom"
  7736. },
  7737. {
  7738. "url": "https://github.com/voku",
  7739. "type": "github"
  7740. },
  7741. {
  7742. "url": "https://opencollective.com/portable-ascii",
  7743. "type": "open_collective"
  7744. },
  7745. {
  7746. "url": "https://www.patreon.com/voku",
  7747. "type": "patreon"
  7748. },
  7749. {
  7750. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7751. "type": "tidelift"
  7752. }
  7753. ],
  7754. "time": "2024-11-21T01:49:47+00:00"
  7755. },
  7756. {
  7757. "name": "webmozart/assert",
  7758. "version": "1.11.0",
  7759. "source": {
  7760. "type": "git",
  7761. "url": "https://github.com/webmozarts/assert.git",
  7762. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7763. },
  7764. "dist": {
  7765. "type": "zip",
  7766. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7767. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7768. "shasum": ""
  7769. },
  7770. "require": {
  7771. "ext-ctype": "*",
  7772. "php": "^7.2 || ^8.0"
  7773. },
  7774. "conflict": {
  7775. "phpstan/phpstan": "<0.12.20",
  7776. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7777. },
  7778. "require-dev": {
  7779. "phpunit/phpunit": "^8.5.13"
  7780. },
  7781. "type": "library",
  7782. "extra": {
  7783. "branch-alias": {
  7784. "dev-master": "1.10-dev"
  7785. }
  7786. },
  7787. "autoload": {
  7788. "psr-4": {
  7789. "Webmozart\\Assert\\": "src/"
  7790. }
  7791. },
  7792. "notification-url": "https://packagist.org/downloads/",
  7793. "license": [
  7794. "MIT"
  7795. ],
  7796. "authors": [
  7797. {
  7798. "name": "Bernhard Schussek",
  7799. "email": "bschussek@gmail.com"
  7800. }
  7801. ],
  7802. "description": "Assertions to validate method input/output with nice error messages.",
  7803. "keywords": [
  7804. "assert",
  7805. "check",
  7806. "validate"
  7807. ],
  7808. "support": {
  7809. "issues": "https://github.com/webmozarts/assert/issues",
  7810. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7811. },
  7812. "time": "2022-06-03T18:03:27+00:00"
  7813. }
  7814. ],
  7815. "packages-dev": [
  7816. {
  7817. "name": "barryvdh/laravel-ide-helper",
  7818. "version": "v3.6.0",
  7819. "source": {
  7820. "type": "git",
  7821. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7822. "reference": "8d00250cba25728373e92c1d8dcebcbf64623d29"
  7823. },
  7824. "dist": {
  7825. "type": "zip",
  7826. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/8d00250cba25728373e92c1d8dcebcbf64623d29",
  7827. "reference": "8d00250cba25728373e92c1d8dcebcbf64623d29",
  7828. "shasum": ""
  7829. },
  7830. "require": {
  7831. "barryvdh/reflection-docblock": "^2.4",
  7832. "composer/class-map-generator": "^1.0",
  7833. "ext-json": "*",
  7834. "illuminate/console": "^11.15 || ^12",
  7835. "illuminate/database": "^11.15 || ^12",
  7836. "illuminate/filesystem": "^11.15 || ^12",
  7837. "illuminate/support": "^11.15 || ^12",
  7838. "php": "^8.2"
  7839. },
  7840. "require-dev": {
  7841. "ext-pdo_sqlite": "*",
  7842. "friendsofphp/php-cs-fixer": "^3",
  7843. "illuminate/config": "^11.15 || ^12",
  7844. "illuminate/view": "^11.15 || ^12",
  7845. "mockery/mockery": "^1.4",
  7846. "orchestra/testbench": "^9.2 || ^10",
  7847. "phpunit/phpunit": "^10.5 || ^11.5.3",
  7848. "spatie/phpunit-snapshot-assertions": "^4 || ^5",
  7849. "vimeo/psalm": "^5.4",
  7850. "vlucas/phpdotenv": "^5"
  7851. },
  7852. "suggest": {
  7853. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9|^10|^11)."
  7854. },
  7855. "type": "library",
  7856. "extra": {
  7857. "laravel": {
  7858. "providers": [
  7859. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7860. ]
  7861. },
  7862. "branch-alias": {
  7863. "dev-master": "3.5-dev"
  7864. }
  7865. },
  7866. "autoload": {
  7867. "psr-4": {
  7868. "Barryvdh\\LaravelIdeHelper\\": "src"
  7869. }
  7870. },
  7871. "notification-url": "https://packagist.org/downloads/",
  7872. "license": [
  7873. "MIT"
  7874. ],
  7875. "authors": [
  7876. {
  7877. "name": "Barry vd. Heuvel",
  7878. "email": "barryvdh@gmail.com"
  7879. }
  7880. ],
  7881. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7882. "keywords": [
  7883. "autocomplete",
  7884. "codeintel",
  7885. "dev",
  7886. "helper",
  7887. "ide",
  7888. "laravel",
  7889. "netbeans",
  7890. "phpdoc",
  7891. "phpstorm",
  7892. "sublime"
  7893. ],
  7894. "support": {
  7895. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7896. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v3.6.0"
  7897. },
  7898. "funding": [
  7899. {
  7900. "url": "https://fruitcake.nl",
  7901. "type": "custom"
  7902. },
  7903. {
  7904. "url": "https://github.com/barryvdh",
  7905. "type": "github"
  7906. }
  7907. ],
  7908. "time": "2025-07-17T20:11:57+00:00"
  7909. },
  7910. {
  7911. "name": "barryvdh/reflection-docblock",
  7912. "version": "v2.4.0",
  7913. "source": {
  7914. "type": "git",
  7915. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7916. "reference": "d103774cbe7e94ddee7e4870f97f727b43fe7201"
  7917. },
  7918. "dist": {
  7919. "type": "zip",
  7920. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/d103774cbe7e94ddee7e4870f97f727b43fe7201",
  7921. "reference": "d103774cbe7e94ddee7e4870f97f727b43fe7201",
  7922. "shasum": ""
  7923. },
  7924. "require": {
  7925. "php": ">=7.1"
  7926. },
  7927. "require-dev": {
  7928. "phpunit/phpunit": "^8.5.14|^9"
  7929. },
  7930. "suggest": {
  7931. "dflydev/markdown": "~1.0",
  7932. "erusev/parsedown": "~1.0"
  7933. },
  7934. "type": "library",
  7935. "extra": {
  7936. "branch-alias": {
  7937. "dev-master": "2.3.x-dev"
  7938. }
  7939. },
  7940. "autoload": {
  7941. "psr-0": {
  7942. "Barryvdh": [
  7943. "src/"
  7944. ]
  7945. }
  7946. },
  7947. "notification-url": "https://packagist.org/downloads/",
  7948. "license": [
  7949. "MIT"
  7950. ],
  7951. "authors": [
  7952. {
  7953. "name": "Mike van Riel",
  7954. "email": "mike.vanriel@naenius.com"
  7955. }
  7956. ],
  7957. "support": {
  7958. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.4.0"
  7959. },
  7960. "time": "2025-07-17T06:07:30+00:00"
  7961. },
  7962. {
  7963. "name": "composer/class-map-generator",
  7964. "version": "1.6.2",
  7965. "source": {
  7966. "type": "git",
  7967. "url": "https://github.com/composer/class-map-generator.git",
  7968. "reference": "ba9f089655d4cdd64e762a6044f411ccdaec0076"
  7969. },
  7970. "dist": {
  7971. "type": "zip",
  7972. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/ba9f089655d4cdd64e762a6044f411ccdaec0076",
  7973. "reference": "ba9f089655d4cdd64e762a6044f411ccdaec0076",
  7974. "shasum": ""
  7975. },
  7976. "require": {
  7977. "composer/pcre": "^2.1 || ^3.1",
  7978. "php": "^7.2 || ^8.0",
  7979. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  7980. },
  7981. "require-dev": {
  7982. "phpstan/phpstan": "^1.12 || ^2",
  7983. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  7984. "phpstan/phpstan-phpunit": "^1 || ^2",
  7985. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  7986. "phpunit/phpunit": "^8",
  7987. "symfony/filesystem": "^5.4 || ^6"
  7988. },
  7989. "type": "library",
  7990. "extra": {
  7991. "branch-alias": {
  7992. "dev-main": "1.x-dev"
  7993. }
  7994. },
  7995. "autoload": {
  7996. "psr-4": {
  7997. "Composer\\ClassMapGenerator\\": "src"
  7998. }
  7999. },
  8000. "notification-url": "https://packagist.org/downloads/",
  8001. "license": [
  8002. "MIT"
  8003. ],
  8004. "authors": [
  8005. {
  8006. "name": "Jordi Boggiano",
  8007. "email": "j.boggiano@seld.be",
  8008. "homepage": "https://seld.be"
  8009. }
  8010. ],
  8011. "description": "Utilities to scan PHP code and generate class maps.",
  8012. "keywords": [
  8013. "classmap"
  8014. ],
  8015. "support": {
  8016. "issues": "https://github.com/composer/class-map-generator/issues",
  8017. "source": "https://github.com/composer/class-map-generator/tree/1.6.2"
  8018. },
  8019. "funding": [
  8020. {
  8021. "url": "https://packagist.com",
  8022. "type": "custom"
  8023. },
  8024. {
  8025. "url": "https://github.com/composer",
  8026. "type": "github"
  8027. }
  8028. ],
  8029. "time": "2025-08-20T18:52:43+00:00"
  8030. },
  8031. {
  8032. "name": "composer/pcre",
  8033. "version": "3.3.2",
  8034. "source": {
  8035. "type": "git",
  8036. "url": "https://github.com/composer/pcre.git",
  8037. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8038. },
  8039. "dist": {
  8040. "type": "zip",
  8041. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8042. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8043. "shasum": ""
  8044. },
  8045. "require": {
  8046. "php": "^7.4 || ^8.0"
  8047. },
  8048. "conflict": {
  8049. "phpstan/phpstan": "<1.11.10"
  8050. },
  8051. "require-dev": {
  8052. "phpstan/phpstan": "^1.12 || ^2",
  8053. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8054. "phpunit/phpunit": "^8 || ^9"
  8055. },
  8056. "type": "library",
  8057. "extra": {
  8058. "phpstan": {
  8059. "includes": [
  8060. "extension.neon"
  8061. ]
  8062. },
  8063. "branch-alias": {
  8064. "dev-main": "3.x-dev"
  8065. }
  8066. },
  8067. "autoload": {
  8068. "psr-4": {
  8069. "Composer\\Pcre\\": "src"
  8070. }
  8071. },
  8072. "notification-url": "https://packagist.org/downloads/",
  8073. "license": [
  8074. "MIT"
  8075. ],
  8076. "authors": [
  8077. {
  8078. "name": "Jordi Boggiano",
  8079. "email": "j.boggiano@seld.be",
  8080. "homepage": "http://seld.be"
  8081. }
  8082. ],
  8083. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8084. "keywords": [
  8085. "PCRE",
  8086. "preg",
  8087. "regex",
  8088. "regular expression"
  8089. ],
  8090. "support": {
  8091. "issues": "https://github.com/composer/pcre/issues",
  8092. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8093. },
  8094. "funding": [
  8095. {
  8096. "url": "https://packagist.com",
  8097. "type": "custom"
  8098. },
  8099. {
  8100. "url": "https://github.com/composer",
  8101. "type": "github"
  8102. },
  8103. {
  8104. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8105. "type": "tidelift"
  8106. }
  8107. ],
  8108. "time": "2024-11-12T16:29:46+00:00"
  8109. },
  8110. {
  8111. "name": "fakerphp/faker",
  8112. "version": "v1.24.1",
  8113. "source": {
  8114. "type": "git",
  8115. "url": "https://github.com/FakerPHP/Faker.git",
  8116. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  8117. },
  8118. "dist": {
  8119. "type": "zip",
  8120. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  8121. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  8122. "shasum": ""
  8123. },
  8124. "require": {
  8125. "php": "^7.4 || ^8.0",
  8126. "psr/container": "^1.0 || ^2.0",
  8127. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8128. },
  8129. "conflict": {
  8130. "fzaninotto/faker": "*"
  8131. },
  8132. "require-dev": {
  8133. "bamarni/composer-bin-plugin": "^1.4.1",
  8134. "doctrine/persistence": "^1.3 || ^2.0",
  8135. "ext-intl": "*",
  8136. "phpunit/phpunit": "^9.5.26",
  8137. "symfony/phpunit-bridge": "^5.4.16"
  8138. },
  8139. "suggest": {
  8140. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8141. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8142. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8143. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8144. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8145. },
  8146. "type": "library",
  8147. "autoload": {
  8148. "psr-4": {
  8149. "Faker\\": "src/Faker/"
  8150. }
  8151. },
  8152. "notification-url": "https://packagist.org/downloads/",
  8153. "license": [
  8154. "MIT"
  8155. ],
  8156. "authors": [
  8157. {
  8158. "name": "François Zaninotto"
  8159. }
  8160. ],
  8161. "description": "Faker is a PHP library that generates fake data for you.",
  8162. "keywords": [
  8163. "data",
  8164. "faker",
  8165. "fixtures"
  8166. ],
  8167. "support": {
  8168. "issues": "https://github.com/FakerPHP/Faker/issues",
  8169. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  8170. },
  8171. "time": "2024-11-21T13:46:39+00:00"
  8172. },
  8173. {
  8174. "name": "filp/whoops",
  8175. "version": "2.18.3",
  8176. "source": {
  8177. "type": "git",
  8178. "url": "https://github.com/filp/whoops.git",
  8179. "reference": "59a123a3d459c5a23055802237cb317f609867e5"
  8180. },
  8181. "dist": {
  8182. "type": "zip",
  8183. "url": "https://api.github.com/repos/filp/whoops/zipball/59a123a3d459c5a23055802237cb317f609867e5",
  8184. "reference": "59a123a3d459c5a23055802237cb317f609867e5",
  8185. "shasum": ""
  8186. },
  8187. "require": {
  8188. "php": "^7.1 || ^8.0",
  8189. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8190. },
  8191. "require-dev": {
  8192. "mockery/mockery": "^1.0",
  8193. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8194. "symfony/var-dumper": "^4.0 || ^5.0"
  8195. },
  8196. "suggest": {
  8197. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8198. "whoops/soap": "Formats errors as SOAP responses"
  8199. },
  8200. "type": "library",
  8201. "extra": {
  8202. "branch-alias": {
  8203. "dev-master": "2.7-dev"
  8204. }
  8205. },
  8206. "autoload": {
  8207. "psr-4": {
  8208. "Whoops\\": "src/Whoops/"
  8209. }
  8210. },
  8211. "notification-url": "https://packagist.org/downloads/",
  8212. "license": [
  8213. "MIT"
  8214. ],
  8215. "authors": [
  8216. {
  8217. "name": "Filipe Dobreira",
  8218. "homepage": "https://github.com/filp",
  8219. "role": "Developer"
  8220. }
  8221. ],
  8222. "description": "php error handling for cool kids",
  8223. "homepage": "https://filp.github.io/whoops/",
  8224. "keywords": [
  8225. "error",
  8226. "exception",
  8227. "handling",
  8228. "library",
  8229. "throwable",
  8230. "whoops"
  8231. ],
  8232. "support": {
  8233. "issues": "https://github.com/filp/whoops/issues",
  8234. "source": "https://github.com/filp/whoops/tree/2.18.3"
  8235. },
  8236. "funding": [
  8237. {
  8238. "url": "https://github.com/denis-sokolov",
  8239. "type": "github"
  8240. }
  8241. ],
  8242. "time": "2025-06-16T00:02:10+00:00"
  8243. },
  8244. {
  8245. "name": "hamcrest/hamcrest-php",
  8246. "version": "v2.1.1",
  8247. "source": {
  8248. "type": "git",
  8249. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8250. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
  8251. },
  8252. "dist": {
  8253. "type": "zip",
  8254. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  8255. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  8256. "shasum": ""
  8257. },
  8258. "require": {
  8259. "php": "^7.4|^8.0"
  8260. },
  8261. "replace": {
  8262. "cordoval/hamcrest-php": "*",
  8263. "davedevelopment/hamcrest-php": "*",
  8264. "kodova/hamcrest-php": "*"
  8265. },
  8266. "require-dev": {
  8267. "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
  8268. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
  8269. },
  8270. "type": "library",
  8271. "extra": {
  8272. "branch-alias": {
  8273. "dev-master": "2.1-dev"
  8274. }
  8275. },
  8276. "autoload": {
  8277. "classmap": [
  8278. "hamcrest"
  8279. ]
  8280. },
  8281. "notification-url": "https://packagist.org/downloads/",
  8282. "license": [
  8283. "BSD-3-Clause"
  8284. ],
  8285. "description": "This is the PHP port of Hamcrest Matchers",
  8286. "keywords": [
  8287. "test"
  8288. ],
  8289. "support": {
  8290. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8291. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
  8292. },
  8293. "time": "2025-04-30T06:54:44+00:00"
  8294. },
  8295. {
  8296. "name": "laravel/pint",
  8297. "version": "v1.24.0",
  8298. "source": {
  8299. "type": "git",
  8300. "url": "https://github.com/laravel/pint.git",
  8301. "reference": "0345f3b05f136801af8c339f9d16ef29e6b4df8a"
  8302. },
  8303. "dist": {
  8304. "type": "zip",
  8305. "url": "https://api.github.com/repos/laravel/pint/zipball/0345f3b05f136801af8c339f9d16ef29e6b4df8a",
  8306. "reference": "0345f3b05f136801af8c339f9d16ef29e6b4df8a",
  8307. "shasum": ""
  8308. },
  8309. "require": {
  8310. "ext-json": "*",
  8311. "ext-mbstring": "*",
  8312. "ext-tokenizer": "*",
  8313. "ext-xml": "*",
  8314. "php": "^8.2.0"
  8315. },
  8316. "require-dev": {
  8317. "friendsofphp/php-cs-fixer": "^3.82.2",
  8318. "illuminate/view": "^11.45.1",
  8319. "larastan/larastan": "^3.5.0",
  8320. "laravel-zero/framework": "^11.45.0",
  8321. "mockery/mockery": "^1.6.12",
  8322. "nunomaduro/termwind": "^2.3.1",
  8323. "pestphp/pest": "^2.36.0"
  8324. },
  8325. "bin": [
  8326. "builds/pint"
  8327. ],
  8328. "type": "project",
  8329. "autoload": {
  8330. "files": [
  8331. "overrides/Runner/Parallel/ProcessFactory.php"
  8332. ],
  8333. "psr-4": {
  8334. "App\\": "app/",
  8335. "Database\\Seeders\\": "database/seeders/",
  8336. "Database\\Factories\\": "database/factories/"
  8337. }
  8338. },
  8339. "notification-url": "https://packagist.org/downloads/",
  8340. "license": [
  8341. "MIT"
  8342. ],
  8343. "authors": [
  8344. {
  8345. "name": "Nuno Maduro",
  8346. "email": "enunomaduro@gmail.com"
  8347. }
  8348. ],
  8349. "description": "An opinionated code formatter for PHP.",
  8350. "homepage": "https://laravel.com",
  8351. "keywords": [
  8352. "format",
  8353. "formatter",
  8354. "lint",
  8355. "linter",
  8356. "php"
  8357. ],
  8358. "support": {
  8359. "issues": "https://github.com/laravel/pint/issues",
  8360. "source": "https://github.com/laravel/pint"
  8361. },
  8362. "time": "2025-07-10T18:09:32+00:00"
  8363. },
  8364. {
  8365. "name": "laravel/sail",
  8366. "version": "v1.43.1",
  8367. "source": {
  8368. "type": "git",
  8369. "url": "https://github.com/laravel/sail.git",
  8370. "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72"
  8371. },
  8372. "dist": {
  8373. "type": "zip",
  8374. "url": "https://api.github.com/repos/laravel/sail/zipball/3e7d899232a8c5e3ea4fc6dee7525ad583887e72",
  8375. "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72",
  8376. "shasum": ""
  8377. },
  8378. "require": {
  8379. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  8380. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  8381. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  8382. "php": "^8.0",
  8383. "symfony/console": "^6.0|^7.0",
  8384. "symfony/yaml": "^6.0|^7.0"
  8385. },
  8386. "require-dev": {
  8387. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  8388. "phpstan/phpstan": "^1.10"
  8389. },
  8390. "bin": [
  8391. "bin/sail"
  8392. ],
  8393. "type": "library",
  8394. "extra": {
  8395. "laravel": {
  8396. "providers": [
  8397. "Laravel\\Sail\\SailServiceProvider"
  8398. ]
  8399. }
  8400. },
  8401. "autoload": {
  8402. "psr-4": {
  8403. "Laravel\\Sail\\": "src/"
  8404. }
  8405. },
  8406. "notification-url": "https://packagist.org/downloads/",
  8407. "license": [
  8408. "MIT"
  8409. ],
  8410. "authors": [
  8411. {
  8412. "name": "Taylor Otwell",
  8413. "email": "taylor@laravel.com"
  8414. }
  8415. ],
  8416. "description": "Docker files for running a basic Laravel application.",
  8417. "keywords": [
  8418. "docker",
  8419. "laravel"
  8420. ],
  8421. "support": {
  8422. "issues": "https://github.com/laravel/sail/issues",
  8423. "source": "https://github.com/laravel/sail"
  8424. },
  8425. "time": "2025-05-19T13:19:21+00:00"
  8426. },
  8427. {
  8428. "name": "mockery/mockery",
  8429. "version": "1.6.12",
  8430. "source": {
  8431. "type": "git",
  8432. "url": "https://github.com/mockery/mockery.git",
  8433. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8434. },
  8435. "dist": {
  8436. "type": "zip",
  8437. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8438. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8439. "shasum": ""
  8440. },
  8441. "require": {
  8442. "hamcrest/hamcrest-php": "^2.0.1",
  8443. "lib-pcre": ">=7.0",
  8444. "php": ">=7.3"
  8445. },
  8446. "conflict": {
  8447. "phpunit/phpunit": "<8.0"
  8448. },
  8449. "require-dev": {
  8450. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8451. "symplify/easy-coding-standard": "^12.1.14"
  8452. },
  8453. "type": "library",
  8454. "autoload": {
  8455. "files": [
  8456. "library/helpers.php",
  8457. "library/Mockery.php"
  8458. ],
  8459. "psr-4": {
  8460. "Mockery\\": "library/Mockery"
  8461. }
  8462. },
  8463. "notification-url": "https://packagist.org/downloads/",
  8464. "license": [
  8465. "BSD-3-Clause"
  8466. ],
  8467. "authors": [
  8468. {
  8469. "name": "Pádraic Brady",
  8470. "email": "padraic.brady@gmail.com",
  8471. "homepage": "https://github.com/padraic",
  8472. "role": "Author"
  8473. },
  8474. {
  8475. "name": "Dave Marshall",
  8476. "email": "dave.marshall@atstsolutions.co.uk",
  8477. "homepage": "https://davedevelopment.co.uk",
  8478. "role": "Developer"
  8479. },
  8480. {
  8481. "name": "Nathanael Esayeas",
  8482. "email": "nathanael.esayeas@protonmail.com",
  8483. "homepage": "https://github.com/ghostwriter",
  8484. "role": "Lead Developer"
  8485. }
  8486. ],
  8487. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8488. "homepage": "https://github.com/mockery/mockery",
  8489. "keywords": [
  8490. "BDD",
  8491. "TDD",
  8492. "library",
  8493. "mock",
  8494. "mock objects",
  8495. "mockery",
  8496. "stub",
  8497. "test",
  8498. "test double",
  8499. "testing"
  8500. ],
  8501. "support": {
  8502. "docs": "https://docs.mockery.io/",
  8503. "issues": "https://github.com/mockery/mockery/issues",
  8504. "rss": "https://github.com/mockery/mockery/releases.atom",
  8505. "security": "https://github.com/mockery/mockery/security/advisories",
  8506. "source": "https://github.com/mockery/mockery"
  8507. },
  8508. "time": "2024-05-16T03:13:13+00:00"
  8509. },
  8510. {
  8511. "name": "myclabs/deep-copy",
  8512. "version": "1.13.3",
  8513. "source": {
  8514. "type": "git",
  8515. "url": "https://github.com/myclabs/DeepCopy.git",
  8516. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8517. },
  8518. "dist": {
  8519. "type": "zip",
  8520. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8521. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8522. "shasum": ""
  8523. },
  8524. "require": {
  8525. "php": "^7.1 || ^8.0"
  8526. },
  8527. "conflict": {
  8528. "doctrine/collections": "<1.6.8",
  8529. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8530. },
  8531. "require-dev": {
  8532. "doctrine/collections": "^1.6.8",
  8533. "doctrine/common": "^2.13.3 || ^3.2.2",
  8534. "phpspec/prophecy": "^1.10",
  8535. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8536. },
  8537. "type": "library",
  8538. "autoload": {
  8539. "files": [
  8540. "src/DeepCopy/deep_copy.php"
  8541. ],
  8542. "psr-4": {
  8543. "DeepCopy\\": "src/DeepCopy/"
  8544. }
  8545. },
  8546. "notification-url": "https://packagist.org/downloads/",
  8547. "license": [
  8548. "MIT"
  8549. ],
  8550. "description": "Create deep copies (clones) of your objects",
  8551. "keywords": [
  8552. "clone",
  8553. "copy",
  8554. "duplicate",
  8555. "object",
  8556. "object graph"
  8557. ],
  8558. "support": {
  8559. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8560. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8561. },
  8562. "funding": [
  8563. {
  8564. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8565. "type": "tidelift"
  8566. }
  8567. ],
  8568. "time": "2025-07-05T12:25:42+00:00"
  8569. },
  8570. {
  8571. "name": "nunomaduro/collision",
  8572. "version": "v8.8.2",
  8573. "source": {
  8574. "type": "git",
  8575. "url": "https://github.com/nunomaduro/collision.git",
  8576. "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb"
  8577. },
  8578. "dist": {
  8579. "type": "zip",
  8580. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/60207965f9b7b7a4ce15a0f75d57f9dadb105bdb",
  8581. "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb",
  8582. "shasum": ""
  8583. },
  8584. "require": {
  8585. "filp/whoops": "^2.18.1",
  8586. "nunomaduro/termwind": "^2.3.1",
  8587. "php": "^8.2.0",
  8588. "symfony/console": "^7.3.0"
  8589. },
  8590. "conflict": {
  8591. "laravel/framework": "<11.44.2 || >=13.0.0",
  8592. "phpunit/phpunit": "<11.5.15 || >=13.0.0"
  8593. },
  8594. "require-dev": {
  8595. "brianium/paratest": "^7.8.3",
  8596. "larastan/larastan": "^3.4.2",
  8597. "laravel/framework": "^11.44.2 || ^12.18",
  8598. "laravel/pint": "^1.22.1",
  8599. "laravel/sail": "^1.43.1",
  8600. "laravel/sanctum": "^4.1.1",
  8601. "laravel/tinker": "^2.10.1",
  8602. "orchestra/testbench-core": "^9.12.0 || ^10.4",
  8603. "pestphp/pest": "^3.8.2",
  8604. "sebastian/environment": "^7.2.1 || ^8.0"
  8605. },
  8606. "type": "library",
  8607. "extra": {
  8608. "laravel": {
  8609. "providers": [
  8610. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8611. ]
  8612. },
  8613. "branch-alias": {
  8614. "dev-8.x": "8.x-dev"
  8615. }
  8616. },
  8617. "autoload": {
  8618. "files": [
  8619. "./src/Adapters/Phpunit/Autoload.php"
  8620. ],
  8621. "psr-4": {
  8622. "NunoMaduro\\Collision\\": "src/"
  8623. }
  8624. },
  8625. "notification-url": "https://packagist.org/downloads/",
  8626. "license": [
  8627. "MIT"
  8628. ],
  8629. "authors": [
  8630. {
  8631. "name": "Nuno Maduro",
  8632. "email": "enunomaduro@gmail.com"
  8633. }
  8634. ],
  8635. "description": "Cli error handling for console/command-line PHP applications.",
  8636. "keywords": [
  8637. "artisan",
  8638. "cli",
  8639. "command-line",
  8640. "console",
  8641. "dev",
  8642. "error",
  8643. "handling",
  8644. "laravel",
  8645. "laravel-zero",
  8646. "php",
  8647. "symfony"
  8648. ],
  8649. "support": {
  8650. "issues": "https://github.com/nunomaduro/collision/issues",
  8651. "source": "https://github.com/nunomaduro/collision"
  8652. },
  8653. "funding": [
  8654. {
  8655. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8656. "type": "custom"
  8657. },
  8658. {
  8659. "url": "https://github.com/nunomaduro",
  8660. "type": "github"
  8661. },
  8662. {
  8663. "url": "https://www.patreon.com/nunomaduro",
  8664. "type": "patreon"
  8665. }
  8666. ],
  8667. "time": "2025-06-25T02:12:12+00:00"
  8668. },
  8669. {
  8670. "name": "phar-io/manifest",
  8671. "version": "2.0.4",
  8672. "source": {
  8673. "type": "git",
  8674. "url": "https://github.com/phar-io/manifest.git",
  8675. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8676. },
  8677. "dist": {
  8678. "type": "zip",
  8679. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8680. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8681. "shasum": ""
  8682. },
  8683. "require": {
  8684. "ext-dom": "*",
  8685. "ext-libxml": "*",
  8686. "ext-phar": "*",
  8687. "ext-xmlwriter": "*",
  8688. "phar-io/version": "^3.0.1",
  8689. "php": "^7.2 || ^8.0"
  8690. },
  8691. "type": "library",
  8692. "extra": {
  8693. "branch-alias": {
  8694. "dev-master": "2.0.x-dev"
  8695. }
  8696. },
  8697. "autoload": {
  8698. "classmap": [
  8699. "src/"
  8700. ]
  8701. },
  8702. "notification-url": "https://packagist.org/downloads/",
  8703. "license": [
  8704. "BSD-3-Clause"
  8705. ],
  8706. "authors": [
  8707. {
  8708. "name": "Arne Blankerts",
  8709. "email": "arne@blankerts.de",
  8710. "role": "Developer"
  8711. },
  8712. {
  8713. "name": "Sebastian Heuer",
  8714. "email": "sebastian@phpeople.de",
  8715. "role": "Developer"
  8716. },
  8717. {
  8718. "name": "Sebastian Bergmann",
  8719. "email": "sebastian@phpunit.de",
  8720. "role": "Developer"
  8721. }
  8722. ],
  8723. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8724. "support": {
  8725. "issues": "https://github.com/phar-io/manifest/issues",
  8726. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8727. },
  8728. "funding": [
  8729. {
  8730. "url": "https://github.com/theseer",
  8731. "type": "github"
  8732. }
  8733. ],
  8734. "time": "2024-03-03T12:33:53+00:00"
  8735. },
  8736. {
  8737. "name": "phar-io/version",
  8738. "version": "3.2.1",
  8739. "source": {
  8740. "type": "git",
  8741. "url": "https://github.com/phar-io/version.git",
  8742. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8743. },
  8744. "dist": {
  8745. "type": "zip",
  8746. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8747. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8748. "shasum": ""
  8749. },
  8750. "require": {
  8751. "php": "^7.2 || ^8.0"
  8752. },
  8753. "type": "library",
  8754. "autoload": {
  8755. "classmap": [
  8756. "src/"
  8757. ]
  8758. },
  8759. "notification-url": "https://packagist.org/downloads/",
  8760. "license": [
  8761. "BSD-3-Clause"
  8762. ],
  8763. "authors": [
  8764. {
  8765. "name": "Arne Blankerts",
  8766. "email": "arne@blankerts.de",
  8767. "role": "Developer"
  8768. },
  8769. {
  8770. "name": "Sebastian Heuer",
  8771. "email": "sebastian@phpeople.de",
  8772. "role": "Developer"
  8773. },
  8774. {
  8775. "name": "Sebastian Bergmann",
  8776. "email": "sebastian@phpunit.de",
  8777. "role": "Developer"
  8778. }
  8779. ],
  8780. "description": "Library for handling version information and constraints",
  8781. "support": {
  8782. "issues": "https://github.com/phar-io/version/issues",
  8783. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8784. },
  8785. "time": "2022-02-21T01:04:05+00:00"
  8786. },
  8787. {
  8788. "name": "phpunit/php-code-coverage",
  8789. "version": "11.0.10",
  8790. "source": {
  8791. "type": "git",
  8792. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8793. "reference": "1a800a7446add2d79cc6b3c01c45381810367d76"
  8794. },
  8795. "dist": {
  8796. "type": "zip",
  8797. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/1a800a7446add2d79cc6b3c01c45381810367d76",
  8798. "reference": "1a800a7446add2d79cc6b3c01c45381810367d76",
  8799. "shasum": ""
  8800. },
  8801. "require": {
  8802. "ext-dom": "*",
  8803. "ext-libxml": "*",
  8804. "ext-xmlwriter": "*",
  8805. "nikic/php-parser": "^5.4.0",
  8806. "php": ">=8.2",
  8807. "phpunit/php-file-iterator": "^5.1.0",
  8808. "phpunit/php-text-template": "^4.0.1",
  8809. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  8810. "sebastian/complexity": "^4.0.1",
  8811. "sebastian/environment": "^7.2.0",
  8812. "sebastian/lines-of-code": "^3.0.1",
  8813. "sebastian/version": "^5.0.2",
  8814. "theseer/tokenizer": "^1.2.3"
  8815. },
  8816. "require-dev": {
  8817. "phpunit/phpunit": "^11.5.2"
  8818. },
  8819. "suggest": {
  8820. "ext-pcov": "PHP extension that provides line coverage",
  8821. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8822. },
  8823. "type": "library",
  8824. "extra": {
  8825. "branch-alias": {
  8826. "dev-main": "11.0.x-dev"
  8827. }
  8828. },
  8829. "autoload": {
  8830. "classmap": [
  8831. "src/"
  8832. ]
  8833. },
  8834. "notification-url": "https://packagist.org/downloads/",
  8835. "license": [
  8836. "BSD-3-Clause"
  8837. ],
  8838. "authors": [
  8839. {
  8840. "name": "Sebastian Bergmann",
  8841. "email": "sebastian@phpunit.de",
  8842. "role": "lead"
  8843. }
  8844. ],
  8845. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8846. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8847. "keywords": [
  8848. "coverage",
  8849. "testing",
  8850. "xunit"
  8851. ],
  8852. "support": {
  8853. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8854. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8855. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/show"
  8856. },
  8857. "funding": [
  8858. {
  8859. "url": "https://github.com/sebastianbergmann",
  8860. "type": "github"
  8861. },
  8862. {
  8863. "url": "https://liberapay.com/sebastianbergmann",
  8864. "type": "liberapay"
  8865. },
  8866. {
  8867. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  8868. "type": "thanks_dev"
  8869. },
  8870. {
  8871. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  8872. "type": "tidelift"
  8873. }
  8874. ],
  8875. "time": "2025-06-18T08:56:18+00:00"
  8876. },
  8877. {
  8878. "name": "phpunit/php-file-iterator",
  8879. "version": "5.1.0",
  8880. "source": {
  8881. "type": "git",
  8882. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8883. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  8884. },
  8885. "dist": {
  8886. "type": "zip",
  8887. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  8888. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  8889. "shasum": ""
  8890. },
  8891. "require": {
  8892. "php": ">=8.2"
  8893. },
  8894. "require-dev": {
  8895. "phpunit/phpunit": "^11.0"
  8896. },
  8897. "type": "library",
  8898. "extra": {
  8899. "branch-alias": {
  8900. "dev-main": "5.0-dev"
  8901. }
  8902. },
  8903. "autoload": {
  8904. "classmap": [
  8905. "src/"
  8906. ]
  8907. },
  8908. "notification-url": "https://packagist.org/downloads/",
  8909. "license": [
  8910. "BSD-3-Clause"
  8911. ],
  8912. "authors": [
  8913. {
  8914. "name": "Sebastian Bergmann",
  8915. "email": "sebastian@phpunit.de",
  8916. "role": "lead"
  8917. }
  8918. ],
  8919. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8920. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8921. "keywords": [
  8922. "filesystem",
  8923. "iterator"
  8924. ],
  8925. "support": {
  8926. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8927. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8928. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  8929. },
  8930. "funding": [
  8931. {
  8932. "url": "https://github.com/sebastianbergmann",
  8933. "type": "github"
  8934. }
  8935. ],
  8936. "time": "2024-08-27T05:02:59+00:00"
  8937. },
  8938. {
  8939. "name": "phpunit/php-invoker",
  8940. "version": "5.0.1",
  8941. "source": {
  8942. "type": "git",
  8943. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8944. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  8945. },
  8946. "dist": {
  8947. "type": "zip",
  8948. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  8949. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  8950. "shasum": ""
  8951. },
  8952. "require": {
  8953. "php": ">=8.2"
  8954. },
  8955. "require-dev": {
  8956. "ext-pcntl": "*",
  8957. "phpunit/phpunit": "^11.0"
  8958. },
  8959. "suggest": {
  8960. "ext-pcntl": "*"
  8961. },
  8962. "type": "library",
  8963. "extra": {
  8964. "branch-alias": {
  8965. "dev-main": "5.0-dev"
  8966. }
  8967. },
  8968. "autoload": {
  8969. "classmap": [
  8970. "src/"
  8971. ]
  8972. },
  8973. "notification-url": "https://packagist.org/downloads/",
  8974. "license": [
  8975. "BSD-3-Clause"
  8976. ],
  8977. "authors": [
  8978. {
  8979. "name": "Sebastian Bergmann",
  8980. "email": "sebastian@phpunit.de",
  8981. "role": "lead"
  8982. }
  8983. ],
  8984. "description": "Invoke callables with a timeout",
  8985. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8986. "keywords": [
  8987. "process"
  8988. ],
  8989. "support": {
  8990. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8991. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  8992. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  8993. },
  8994. "funding": [
  8995. {
  8996. "url": "https://github.com/sebastianbergmann",
  8997. "type": "github"
  8998. }
  8999. ],
  9000. "time": "2024-07-03T05:07:44+00:00"
  9001. },
  9002. {
  9003. "name": "phpunit/php-text-template",
  9004. "version": "4.0.1",
  9005. "source": {
  9006. "type": "git",
  9007. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9008. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  9009. },
  9010. "dist": {
  9011. "type": "zip",
  9012. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  9013. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  9014. "shasum": ""
  9015. },
  9016. "require": {
  9017. "php": ">=8.2"
  9018. },
  9019. "require-dev": {
  9020. "phpunit/phpunit": "^11.0"
  9021. },
  9022. "type": "library",
  9023. "extra": {
  9024. "branch-alias": {
  9025. "dev-main": "4.0-dev"
  9026. }
  9027. },
  9028. "autoload": {
  9029. "classmap": [
  9030. "src/"
  9031. ]
  9032. },
  9033. "notification-url": "https://packagist.org/downloads/",
  9034. "license": [
  9035. "BSD-3-Clause"
  9036. ],
  9037. "authors": [
  9038. {
  9039. "name": "Sebastian Bergmann",
  9040. "email": "sebastian@phpunit.de",
  9041. "role": "lead"
  9042. }
  9043. ],
  9044. "description": "Simple template engine.",
  9045. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9046. "keywords": [
  9047. "template"
  9048. ],
  9049. "support": {
  9050. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9051. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9052. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  9053. },
  9054. "funding": [
  9055. {
  9056. "url": "https://github.com/sebastianbergmann",
  9057. "type": "github"
  9058. }
  9059. ],
  9060. "time": "2024-07-03T05:08:43+00:00"
  9061. },
  9062. {
  9063. "name": "phpunit/php-timer",
  9064. "version": "7.0.1",
  9065. "source": {
  9066. "type": "git",
  9067. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9068. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  9069. },
  9070. "dist": {
  9071. "type": "zip",
  9072. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  9073. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  9074. "shasum": ""
  9075. },
  9076. "require": {
  9077. "php": ">=8.2"
  9078. },
  9079. "require-dev": {
  9080. "phpunit/phpunit": "^11.0"
  9081. },
  9082. "type": "library",
  9083. "extra": {
  9084. "branch-alias": {
  9085. "dev-main": "7.0-dev"
  9086. }
  9087. },
  9088. "autoload": {
  9089. "classmap": [
  9090. "src/"
  9091. ]
  9092. },
  9093. "notification-url": "https://packagist.org/downloads/",
  9094. "license": [
  9095. "BSD-3-Clause"
  9096. ],
  9097. "authors": [
  9098. {
  9099. "name": "Sebastian Bergmann",
  9100. "email": "sebastian@phpunit.de",
  9101. "role": "lead"
  9102. }
  9103. ],
  9104. "description": "Utility class for timing",
  9105. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9106. "keywords": [
  9107. "timer"
  9108. ],
  9109. "support": {
  9110. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9111. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  9112. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  9113. },
  9114. "funding": [
  9115. {
  9116. "url": "https://github.com/sebastianbergmann",
  9117. "type": "github"
  9118. }
  9119. ],
  9120. "time": "2024-07-03T05:09:35+00:00"
  9121. },
  9122. {
  9123. "name": "phpunit/phpunit",
  9124. "version": "11.5.27",
  9125. "source": {
  9126. "type": "git",
  9127. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9128. "reference": "446d43867314781df7e9adf79c3ec7464956fd8f"
  9129. },
  9130. "dist": {
  9131. "type": "zip",
  9132. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/446d43867314781df7e9adf79c3ec7464956fd8f",
  9133. "reference": "446d43867314781df7e9adf79c3ec7464956fd8f",
  9134. "shasum": ""
  9135. },
  9136. "require": {
  9137. "ext-dom": "*",
  9138. "ext-json": "*",
  9139. "ext-libxml": "*",
  9140. "ext-mbstring": "*",
  9141. "ext-xml": "*",
  9142. "ext-xmlwriter": "*",
  9143. "myclabs/deep-copy": "^1.13.3",
  9144. "phar-io/manifest": "^2.0.4",
  9145. "phar-io/version": "^3.2.1",
  9146. "php": ">=8.2",
  9147. "phpunit/php-code-coverage": "^11.0.10",
  9148. "phpunit/php-file-iterator": "^5.1.0",
  9149. "phpunit/php-invoker": "^5.0.1",
  9150. "phpunit/php-text-template": "^4.0.1",
  9151. "phpunit/php-timer": "^7.0.1",
  9152. "sebastian/cli-parser": "^3.0.2",
  9153. "sebastian/code-unit": "^3.0.3",
  9154. "sebastian/comparator": "^6.3.1",
  9155. "sebastian/diff": "^6.0.2",
  9156. "sebastian/environment": "^7.2.1",
  9157. "sebastian/exporter": "^6.3.0",
  9158. "sebastian/global-state": "^7.0.2",
  9159. "sebastian/object-enumerator": "^6.0.1",
  9160. "sebastian/type": "^5.1.2",
  9161. "sebastian/version": "^5.0.2",
  9162. "staabm/side-effects-detector": "^1.0.5"
  9163. },
  9164. "suggest": {
  9165. "ext-soap": "To be able to generate mocks based on WSDL files"
  9166. },
  9167. "bin": [
  9168. "phpunit"
  9169. ],
  9170. "type": "library",
  9171. "extra": {
  9172. "branch-alias": {
  9173. "dev-main": "11.5-dev"
  9174. }
  9175. },
  9176. "autoload": {
  9177. "files": [
  9178. "src/Framework/Assert/Functions.php"
  9179. ],
  9180. "classmap": [
  9181. "src/"
  9182. ]
  9183. },
  9184. "notification-url": "https://packagist.org/downloads/",
  9185. "license": [
  9186. "BSD-3-Clause"
  9187. ],
  9188. "authors": [
  9189. {
  9190. "name": "Sebastian Bergmann",
  9191. "email": "sebastian@phpunit.de",
  9192. "role": "lead"
  9193. }
  9194. ],
  9195. "description": "The PHP Unit Testing framework.",
  9196. "homepage": "https://phpunit.de/",
  9197. "keywords": [
  9198. "phpunit",
  9199. "testing",
  9200. "xunit"
  9201. ],
  9202. "support": {
  9203. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9204. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9205. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.27"
  9206. },
  9207. "funding": [
  9208. {
  9209. "url": "https://phpunit.de/sponsors.html",
  9210. "type": "custom"
  9211. },
  9212. {
  9213. "url": "https://github.com/sebastianbergmann",
  9214. "type": "github"
  9215. },
  9216. {
  9217. "url": "https://liberapay.com/sebastianbergmann",
  9218. "type": "liberapay"
  9219. },
  9220. {
  9221. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9222. "type": "thanks_dev"
  9223. },
  9224. {
  9225. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9226. "type": "tidelift"
  9227. }
  9228. ],
  9229. "time": "2025-07-11T04:10:06+00:00"
  9230. },
  9231. {
  9232. "name": "sebastian/cli-parser",
  9233. "version": "3.0.2",
  9234. "source": {
  9235. "type": "git",
  9236. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9237. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  9238. },
  9239. "dist": {
  9240. "type": "zip",
  9241. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  9242. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  9243. "shasum": ""
  9244. },
  9245. "require": {
  9246. "php": ">=8.2"
  9247. },
  9248. "require-dev": {
  9249. "phpunit/phpunit": "^11.0"
  9250. },
  9251. "type": "library",
  9252. "extra": {
  9253. "branch-alias": {
  9254. "dev-main": "3.0-dev"
  9255. }
  9256. },
  9257. "autoload": {
  9258. "classmap": [
  9259. "src/"
  9260. ]
  9261. },
  9262. "notification-url": "https://packagist.org/downloads/",
  9263. "license": [
  9264. "BSD-3-Clause"
  9265. ],
  9266. "authors": [
  9267. {
  9268. "name": "Sebastian Bergmann",
  9269. "email": "sebastian@phpunit.de",
  9270. "role": "lead"
  9271. }
  9272. ],
  9273. "description": "Library for parsing CLI options",
  9274. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9275. "support": {
  9276. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9277. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9278. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  9279. },
  9280. "funding": [
  9281. {
  9282. "url": "https://github.com/sebastianbergmann",
  9283. "type": "github"
  9284. }
  9285. ],
  9286. "time": "2024-07-03T04:41:36+00:00"
  9287. },
  9288. {
  9289. "name": "sebastian/code-unit",
  9290. "version": "3.0.3",
  9291. "source": {
  9292. "type": "git",
  9293. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9294. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  9295. },
  9296. "dist": {
  9297. "type": "zip",
  9298. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  9299. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  9300. "shasum": ""
  9301. },
  9302. "require": {
  9303. "php": ">=8.2"
  9304. },
  9305. "require-dev": {
  9306. "phpunit/phpunit": "^11.5"
  9307. },
  9308. "type": "library",
  9309. "extra": {
  9310. "branch-alias": {
  9311. "dev-main": "3.0-dev"
  9312. }
  9313. },
  9314. "autoload": {
  9315. "classmap": [
  9316. "src/"
  9317. ]
  9318. },
  9319. "notification-url": "https://packagist.org/downloads/",
  9320. "license": [
  9321. "BSD-3-Clause"
  9322. ],
  9323. "authors": [
  9324. {
  9325. "name": "Sebastian Bergmann",
  9326. "email": "sebastian@phpunit.de",
  9327. "role": "lead"
  9328. }
  9329. ],
  9330. "description": "Collection of value objects that represent the PHP code units",
  9331. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9332. "support": {
  9333. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9334. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  9335. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  9336. },
  9337. "funding": [
  9338. {
  9339. "url": "https://github.com/sebastianbergmann",
  9340. "type": "github"
  9341. }
  9342. ],
  9343. "time": "2025-03-19T07:56:08+00:00"
  9344. },
  9345. {
  9346. "name": "sebastian/code-unit-reverse-lookup",
  9347. "version": "4.0.1",
  9348. "source": {
  9349. "type": "git",
  9350. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9351. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  9352. },
  9353. "dist": {
  9354. "type": "zip",
  9355. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  9356. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  9357. "shasum": ""
  9358. },
  9359. "require": {
  9360. "php": ">=8.2"
  9361. },
  9362. "require-dev": {
  9363. "phpunit/phpunit": "^11.0"
  9364. },
  9365. "type": "library",
  9366. "extra": {
  9367. "branch-alias": {
  9368. "dev-main": "4.0-dev"
  9369. }
  9370. },
  9371. "autoload": {
  9372. "classmap": [
  9373. "src/"
  9374. ]
  9375. },
  9376. "notification-url": "https://packagist.org/downloads/",
  9377. "license": [
  9378. "BSD-3-Clause"
  9379. ],
  9380. "authors": [
  9381. {
  9382. "name": "Sebastian Bergmann",
  9383. "email": "sebastian@phpunit.de"
  9384. }
  9385. ],
  9386. "description": "Looks up which function or method a line of code belongs to",
  9387. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9388. "support": {
  9389. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9390. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  9391. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  9392. },
  9393. "funding": [
  9394. {
  9395. "url": "https://github.com/sebastianbergmann",
  9396. "type": "github"
  9397. }
  9398. ],
  9399. "time": "2024-07-03T04:45:54+00:00"
  9400. },
  9401. {
  9402. "name": "sebastian/comparator",
  9403. "version": "6.3.1",
  9404. "source": {
  9405. "type": "git",
  9406. "url": "https://github.com/sebastianbergmann/comparator.git",
  9407. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
  9408. },
  9409. "dist": {
  9410. "type": "zip",
  9411. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  9412. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  9413. "shasum": ""
  9414. },
  9415. "require": {
  9416. "ext-dom": "*",
  9417. "ext-mbstring": "*",
  9418. "php": ">=8.2",
  9419. "sebastian/diff": "^6.0",
  9420. "sebastian/exporter": "^6.0"
  9421. },
  9422. "require-dev": {
  9423. "phpunit/phpunit": "^11.4"
  9424. },
  9425. "suggest": {
  9426. "ext-bcmath": "For comparing BcMath\\Number objects"
  9427. },
  9428. "type": "library",
  9429. "extra": {
  9430. "branch-alias": {
  9431. "dev-main": "6.3-dev"
  9432. }
  9433. },
  9434. "autoload": {
  9435. "classmap": [
  9436. "src/"
  9437. ]
  9438. },
  9439. "notification-url": "https://packagist.org/downloads/",
  9440. "license": [
  9441. "BSD-3-Clause"
  9442. ],
  9443. "authors": [
  9444. {
  9445. "name": "Sebastian Bergmann",
  9446. "email": "sebastian@phpunit.de"
  9447. },
  9448. {
  9449. "name": "Jeff Welch",
  9450. "email": "whatthejeff@gmail.com"
  9451. },
  9452. {
  9453. "name": "Volker Dusch",
  9454. "email": "github@wallbash.com"
  9455. },
  9456. {
  9457. "name": "Bernhard Schussek",
  9458. "email": "bschussek@2bepublished.at"
  9459. }
  9460. ],
  9461. "description": "Provides the functionality to compare PHP values for equality",
  9462. "homepage": "https://github.com/sebastianbergmann/comparator",
  9463. "keywords": [
  9464. "comparator",
  9465. "compare",
  9466. "equality"
  9467. ],
  9468. "support": {
  9469. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9470. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9471. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
  9472. },
  9473. "funding": [
  9474. {
  9475. "url": "https://github.com/sebastianbergmann",
  9476. "type": "github"
  9477. }
  9478. ],
  9479. "time": "2025-03-07T06:57:01+00:00"
  9480. },
  9481. {
  9482. "name": "sebastian/complexity",
  9483. "version": "4.0.1",
  9484. "source": {
  9485. "type": "git",
  9486. "url": "https://github.com/sebastianbergmann/complexity.git",
  9487. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  9488. },
  9489. "dist": {
  9490. "type": "zip",
  9491. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  9492. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  9493. "shasum": ""
  9494. },
  9495. "require": {
  9496. "nikic/php-parser": "^5.0",
  9497. "php": ">=8.2"
  9498. },
  9499. "require-dev": {
  9500. "phpunit/phpunit": "^11.0"
  9501. },
  9502. "type": "library",
  9503. "extra": {
  9504. "branch-alias": {
  9505. "dev-main": "4.0-dev"
  9506. }
  9507. },
  9508. "autoload": {
  9509. "classmap": [
  9510. "src/"
  9511. ]
  9512. },
  9513. "notification-url": "https://packagist.org/downloads/",
  9514. "license": [
  9515. "BSD-3-Clause"
  9516. ],
  9517. "authors": [
  9518. {
  9519. "name": "Sebastian Bergmann",
  9520. "email": "sebastian@phpunit.de",
  9521. "role": "lead"
  9522. }
  9523. ],
  9524. "description": "Library for calculating the complexity of PHP code units",
  9525. "homepage": "https://github.com/sebastianbergmann/complexity",
  9526. "support": {
  9527. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9528. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9529. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  9530. },
  9531. "funding": [
  9532. {
  9533. "url": "https://github.com/sebastianbergmann",
  9534. "type": "github"
  9535. }
  9536. ],
  9537. "time": "2024-07-03T04:49:50+00:00"
  9538. },
  9539. {
  9540. "name": "sebastian/diff",
  9541. "version": "6.0.2",
  9542. "source": {
  9543. "type": "git",
  9544. "url": "https://github.com/sebastianbergmann/diff.git",
  9545. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  9546. },
  9547. "dist": {
  9548. "type": "zip",
  9549. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  9550. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  9551. "shasum": ""
  9552. },
  9553. "require": {
  9554. "php": ">=8.2"
  9555. },
  9556. "require-dev": {
  9557. "phpunit/phpunit": "^11.0",
  9558. "symfony/process": "^4.2 || ^5"
  9559. },
  9560. "type": "library",
  9561. "extra": {
  9562. "branch-alias": {
  9563. "dev-main": "6.0-dev"
  9564. }
  9565. },
  9566. "autoload": {
  9567. "classmap": [
  9568. "src/"
  9569. ]
  9570. },
  9571. "notification-url": "https://packagist.org/downloads/",
  9572. "license": [
  9573. "BSD-3-Clause"
  9574. ],
  9575. "authors": [
  9576. {
  9577. "name": "Sebastian Bergmann",
  9578. "email": "sebastian@phpunit.de"
  9579. },
  9580. {
  9581. "name": "Kore Nordmann",
  9582. "email": "mail@kore-nordmann.de"
  9583. }
  9584. ],
  9585. "description": "Diff implementation",
  9586. "homepage": "https://github.com/sebastianbergmann/diff",
  9587. "keywords": [
  9588. "diff",
  9589. "udiff",
  9590. "unidiff",
  9591. "unified diff"
  9592. ],
  9593. "support": {
  9594. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9595. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9596. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  9597. },
  9598. "funding": [
  9599. {
  9600. "url": "https://github.com/sebastianbergmann",
  9601. "type": "github"
  9602. }
  9603. ],
  9604. "time": "2024-07-03T04:53:05+00:00"
  9605. },
  9606. {
  9607. "name": "sebastian/environment",
  9608. "version": "7.2.1",
  9609. "source": {
  9610. "type": "git",
  9611. "url": "https://github.com/sebastianbergmann/environment.git",
  9612. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
  9613. },
  9614. "dist": {
  9615. "type": "zip",
  9616. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
  9617. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
  9618. "shasum": ""
  9619. },
  9620. "require": {
  9621. "php": ">=8.2"
  9622. },
  9623. "require-dev": {
  9624. "phpunit/phpunit": "^11.3"
  9625. },
  9626. "suggest": {
  9627. "ext-posix": "*"
  9628. },
  9629. "type": "library",
  9630. "extra": {
  9631. "branch-alias": {
  9632. "dev-main": "7.2-dev"
  9633. }
  9634. },
  9635. "autoload": {
  9636. "classmap": [
  9637. "src/"
  9638. ]
  9639. },
  9640. "notification-url": "https://packagist.org/downloads/",
  9641. "license": [
  9642. "BSD-3-Clause"
  9643. ],
  9644. "authors": [
  9645. {
  9646. "name": "Sebastian Bergmann",
  9647. "email": "sebastian@phpunit.de"
  9648. }
  9649. ],
  9650. "description": "Provides functionality to handle HHVM/PHP environments",
  9651. "homepage": "https://github.com/sebastianbergmann/environment",
  9652. "keywords": [
  9653. "Xdebug",
  9654. "environment",
  9655. "hhvm"
  9656. ],
  9657. "support": {
  9658. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9659. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9660. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
  9661. },
  9662. "funding": [
  9663. {
  9664. "url": "https://github.com/sebastianbergmann",
  9665. "type": "github"
  9666. },
  9667. {
  9668. "url": "https://liberapay.com/sebastianbergmann",
  9669. "type": "liberapay"
  9670. },
  9671. {
  9672. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9673. "type": "thanks_dev"
  9674. },
  9675. {
  9676. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  9677. "type": "tidelift"
  9678. }
  9679. ],
  9680. "time": "2025-05-21T11:55:47+00:00"
  9681. },
  9682. {
  9683. "name": "sebastian/exporter",
  9684. "version": "6.3.0",
  9685. "source": {
  9686. "type": "git",
  9687. "url": "https://github.com/sebastianbergmann/exporter.git",
  9688. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  9689. },
  9690. "dist": {
  9691. "type": "zip",
  9692. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  9693. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  9694. "shasum": ""
  9695. },
  9696. "require": {
  9697. "ext-mbstring": "*",
  9698. "php": ">=8.2",
  9699. "sebastian/recursion-context": "^6.0"
  9700. },
  9701. "require-dev": {
  9702. "phpunit/phpunit": "^11.3"
  9703. },
  9704. "type": "library",
  9705. "extra": {
  9706. "branch-alias": {
  9707. "dev-main": "6.1-dev"
  9708. }
  9709. },
  9710. "autoload": {
  9711. "classmap": [
  9712. "src/"
  9713. ]
  9714. },
  9715. "notification-url": "https://packagist.org/downloads/",
  9716. "license": [
  9717. "BSD-3-Clause"
  9718. ],
  9719. "authors": [
  9720. {
  9721. "name": "Sebastian Bergmann",
  9722. "email": "sebastian@phpunit.de"
  9723. },
  9724. {
  9725. "name": "Jeff Welch",
  9726. "email": "whatthejeff@gmail.com"
  9727. },
  9728. {
  9729. "name": "Volker Dusch",
  9730. "email": "github@wallbash.com"
  9731. },
  9732. {
  9733. "name": "Adam Harvey",
  9734. "email": "aharvey@php.net"
  9735. },
  9736. {
  9737. "name": "Bernhard Schussek",
  9738. "email": "bschussek@gmail.com"
  9739. }
  9740. ],
  9741. "description": "Provides the functionality to export PHP variables for visualization",
  9742. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9743. "keywords": [
  9744. "export",
  9745. "exporter"
  9746. ],
  9747. "support": {
  9748. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9749. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9750. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  9751. },
  9752. "funding": [
  9753. {
  9754. "url": "https://github.com/sebastianbergmann",
  9755. "type": "github"
  9756. }
  9757. ],
  9758. "time": "2024-12-05T09:17:50+00:00"
  9759. },
  9760. {
  9761. "name": "sebastian/global-state",
  9762. "version": "7.0.2",
  9763. "source": {
  9764. "type": "git",
  9765. "url": "https://github.com/sebastianbergmann/global-state.git",
  9766. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  9767. },
  9768. "dist": {
  9769. "type": "zip",
  9770. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  9771. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  9772. "shasum": ""
  9773. },
  9774. "require": {
  9775. "php": ">=8.2",
  9776. "sebastian/object-reflector": "^4.0",
  9777. "sebastian/recursion-context": "^6.0"
  9778. },
  9779. "require-dev": {
  9780. "ext-dom": "*",
  9781. "phpunit/phpunit": "^11.0"
  9782. },
  9783. "type": "library",
  9784. "extra": {
  9785. "branch-alias": {
  9786. "dev-main": "7.0-dev"
  9787. }
  9788. },
  9789. "autoload": {
  9790. "classmap": [
  9791. "src/"
  9792. ]
  9793. },
  9794. "notification-url": "https://packagist.org/downloads/",
  9795. "license": [
  9796. "BSD-3-Clause"
  9797. ],
  9798. "authors": [
  9799. {
  9800. "name": "Sebastian Bergmann",
  9801. "email": "sebastian@phpunit.de"
  9802. }
  9803. ],
  9804. "description": "Snapshotting of global state",
  9805. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9806. "keywords": [
  9807. "global state"
  9808. ],
  9809. "support": {
  9810. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9811. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9812. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  9813. },
  9814. "funding": [
  9815. {
  9816. "url": "https://github.com/sebastianbergmann",
  9817. "type": "github"
  9818. }
  9819. ],
  9820. "time": "2024-07-03T04:57:36+00:00"
  9821. },
  9822. {
  9823. "name": "sebastian/lines-of-code",
  9824. "version": "3.0.1",
  9825. "source": {
  9826. "type": "git",
  9827. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9828. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  9829. },
  9830. "dist": {
  9831. "type": "zip",
  9832. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  9833. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  9834. "shasum": ""
  9835. },
  9836. "require": {
  9837. "nikic/php-parser": "^5.0",
  9838. "php": ">=8.2"
  9839. },
  9840. "require-dev": {
  9841. "phpunit/phpunit": "^11.0"
  9842. },
  9843. "type": "library",
  9844. "extra": {
  9845. "branch-alias": {
  9846. "dev-main": "3.0-dev"
  9847. }
  9848. },
  9849. "autoload": {
  9850. "classmap": [
  9851. "src/"
  9852. ]
  9853. },
  9854. "notification-url": "https://packagist.org/downloads/",
  9855. "license": [
  9856. "BSD-3-Clause"
  9857. ],
  9858. "authors": [
  9859. {
  9860. "name": "Sebastian Bergmann",
  9861. "email": "sebastian@phpunit.de",
  9862. "role": "lead"
  9863. }
  9864. ],
  9865. "description": "Library for counting the lines of code in PHP source code",
  9866. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9867. "support": {
  9868. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9869. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9870. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  9871. },
  9872. "funding": [
  9873. {
  9874. "url": "https://github.com/sebastianbergmann",
  9875. "type": "github"
  9876. }
  9877. ],
  9878. "time": "2024-07-03T04:58:38+00:00"
  9879. },
  9880. {
  9881. "name": "sebastian/object-enumerator",
  9882. "version": "6.0.1",
  9883. "source": {
  9884. "type": "git",
  9885. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9886. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  9887. },
  9888. "dist": {
  9889. "type": "zip",
  9890. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  9891. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  9892. "shasum": ""
  9893. },
  9894. "require": {
  9895. "php": ">=8.2",
  9896. "sebastian/object-reflector": "^4.0",
  9897. "sebastian/recursion-context": "^6.0"
  9898. },
  9899. "require-dev": {
  9900. "phpunit/phpunit": "^11.0"
  9901. },
  9902. "type": "library",
  9903. "extra": {
  9904. "branch-alias": {
  9905. "dev-main": "6.0-dev"
  9906. }
  9907. },
  9908. "autoload": {
  9909. "classmap": [
  9910. "src/"
  9911. ]
  9912. },
  9913. "notification-url": "https://packagist.org/downloads/",
  9914. "license": [
  9915. "BSD-3-Clause"
  9916. ],
  9917. "authors": [
  9918. {
  9919. "name": "Sebastian Bergmann",
  9920. "email": "sebastian@phpunit.de"
  9921. }
  9922. ],
  9923. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9924. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9925. "support": {
  9926. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9927. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  9928. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  9929. },
  9930. "funding": [
  9931. {
  9932. "url": "https://github.com/sebastianbergmann",
  9933. "type": "github"
  9934. }
  9935. ],
  9936. "time": "2024-07-03T05:00:13+00:00"
  9937. },
  9938. {
  9939. "name": "sebastian/object-reflector",
  9940. "version": "4.0.1",
  9941. "source": {
  9942. "type": "git",
  9943. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9944. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  9945. },
  9946. "dist": {
  9947. "type": "zip",
  9948. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  9949. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  9950. "shasum": ""
  9951. },
  9952. "require": {
  9953. "php": ">=8.2"
  9954. },
  9955. "require-dev": {
  9956. "phpunit/phpunit": "^11.0"
  9957. },
  9958. "type": "library",
  9959. "extra": {
  9960. "branch-alias": {
  9961. "dev-main": "4.0-dev"
  9962. }
  9963. },
  9964. "autoload": {
  9965. "classmap": [
  9966. "src/"
  9967. ]
  9968. },
  9969. "notification-url": "https://packagist.org/downloads/",
  9970. "license": [
  9971. "BSD-3-Clause"
  9972. ],
  9973. "authors": [
  9974. {
  9975. "name": "Sebastian Bergmann",
  9976. "email": "sebastian@phpunit.de"
  9977. }
  9978. ],
  9979. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9980. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9981. "support": {
  9982. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9983. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  9984. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  9985. },
  9986. "funding": [
  9987. {
  9988. "url": "https://github.com/sebastianbergmann",
  9989. "type": "github"
  9990. }
  9991. ],
  9992. "time": "2024-07-03T05:01:32+00:00"
  9993. },
  9994. {
  9995. "name": "sebastian/recursion-context",
  9996. "version": "6.0.2",
  9997. "source": {
  9998. "type": "git",
  9999. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10000. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  10001. },
  10002. "dist": {
  10003. "type": "zip",
  10004. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  10005. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  10006. "shasum": ""
  10007. },
  10008. "require": {
  10009. "php": ">=8.2"
  10010. },
  10011. "require-dev": {
  10012. "phpunit/phpunit": "^11.0"
  10013. },
  10014. "type": "library",
  10015. "extra": {
  10016. "branch-alias": {
  10017. "dev-main": "6.0-dev"
  10018. }
  10019. },
  10020. "autoload": {
  10021. "classmap": [
  10022. "src/"
  10023. ]
  10024. },
  10025. "notification-url": "https://packagist.org/downloads/",
  10026. "license": [
  10027. "BSD-3-Clause"
  10028. ],
  10029. "authors": [
  10030. {
  10031. "name": "Sebastian Bergmann",
  10032. "email": "sebastian@phpunit.de"
  10033. },
  10034. {
  10035. "name": "Jeff Welch",
  10036. "email": "whatthejeff@gmail.com"
  10037. },
  10038. {
  10039. "name": "Adam Harvey",
  10040. "email": "aharvey@php.net"
  10041. }
  10042. ],
  10043. "description": "Provides functionality to recursively process PHP variables",
  10044. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10045. "support": {
  10046. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10047. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  10048. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  10049. },
  10050. "funding": [
  10051. {
  10052. "url": "https://github.com/sebastianbergmann",
  10053. "type": "github"
  10054. }
  10055. ],
  10056. "time": "2024-07-03T05:10:34+00:00"
  10057. },
  10058. {
  10059. "name": "sebastian/type",
  10060. "version": "5.1.2",
  10061. "source": {
  10062. "type": "git",
  10063. "url": "https://github.com/sebastianbergmann/type.git",
  10064. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
  10065. },
  10066. "dist": {
  10067. "type": "zip",
  10068. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  10069. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  10070. "shasum": ""
  10071. },
  10072. "require": {
  10073. "php": ">=8.2"
  10074. },
  10075. "require-dev": {
  10076. "phpunit/phpunit": "^11.3"
  10077. },
  10078. "type": "library",
  10079. "extra": {
  10080. "branch-alias": {
  10081. "dev-main": "5.1-dev"
  10082. }
  10083. },
  10084. "autoload": {
  10085. "classmap": [
  10086. "src/"
  10087. ]
  10088. },
  10089. "notification-url": "https://packagist.org/downloads/",
  10090. "license": [
  10091. "BSD-3-Clause"
  10092. ],
  10093. "authors": [
  10094. {
  10095. "name": "Sebastian Bergmann",
  10096. "email": "sebastian@phpunit.de",
  10097. "role": "lead"
  10098. }
  10099. ],
  10100. "description": "Collection of value objects that represent the types of the PHP type system",
  10101. "homepage": "https://github.com/sebastianbergmann/type",
  10102. "support": {
  10103. "issues": "https://github.com/sebastianbergmann/type/issues",
  10104. "security": "https://github.com/sebastianbergmann/type/security/policy",
  10105. "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
  10106. },
  10107. "funding": [
  10108. {
  10109. "url": "https://github.com/sebastianbergmann",
  10110. "type": "github"
  10111. }
  10112. ],
  10113. "time": "2025-03-18T13:35:50+00:00"
  10114. },
  10115. {
  10116. "name": "sebastian/version",
  10117. "version": "5.0.2",
  10118. "source": {
  10119. "type": "git",
  10120. "url": "https://github.com/sebastianbergmann/version.git",
  10121. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  10122. },
  10123. "dist": {
  10124. "type": "zip",
  10125. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  10126. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  10127. "shasum": ""
  10128. },
  10129. "require": {
  10130. "php": ">=8.2"
  10131. },
  10132. "type": "library",
  10133. "extra": {
  10134. "branch-alias": {
  10135. "dev-main": "5.0-dev"
  10136. }
  10137. },
  10138. "autoload": {
  10139. "classmap": [
  10140. "src/"
  10141. ]
  10142. },
  10143. "notification-url": "https://packagist.org/downloads/",
  10144. "license": [
  10145. "BSD-3-Clause"
  10146. ],
  10147. "authors": [
  10148. {
  10149. "name": "Sebastian Bergmann",
  10150. "email": "sebastian@phpunit.de",
  10151. "role": "lead"
  10152. }
  10153. ],
  10154. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10155. "homepage": "https://github.com/sebastianbergmann/version",
  10156. "support": {
  10157. "issues": "https://github.com/sebastianbergmann/version/issues",
  10158. "security": "https://github.com/sebastianbergmann/version/security/policy",
  10159. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  10160. },
  10161. "funding": [
  10162. {
  10163. "url": "https://github.com/sebastianbergmann",
  10164. "type": "github"
  10165. }
  10166. ],
  10167. "time": "2024-10-09T05:16:32+00:00"
  10168. },
  10169. {
  10170. "name": "staabm/side-effects-detector",
  10171. "version": "1.0.5",
  10172. "source": {
  10173. "type": "git",
  10174. "url": "https://github.com/staabm/side-effects-detector.git",
  10175. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  10176. },
  10177. "dist": {
  10178. "type": "zip",
  10179. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  10180. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  10181. "shasum": ""
  10182. },
  10183. "require": {
  10184. "ext-tokenizer": "*",
  10185. "php": "^7.4 || ^8.0"
  10186. },
  10187. "require-dev": {
  10188. "phpstan/extension-installer": "^1.4.3",
  10189. "phpstan/phpstan": "^1.12.6",
  10190. "phpunit/phpunit": "^9.6.21",
  10191. "symfony/var-dumper": "^5.4.43",
  10192. "tomasvotruba/type-coverage": "1.0.0",
  10193. "tomasvotruba/unused-public": "1.0.0"
  10194. },
  10195. "type": "library",
  10196. "autoload": {
  10197. "classmap": [
  10198. "lib/"
  10199. ]
  10200. },
  10201. "notification-url": "https://packagist.org/downloads/",
  10202. "license": [
  10203. "MIT"
  10204. ],
  10205. "description": "A static analysis tool to detect side effects in PHP code",
  10206. "keywords": [
  10207. "static analysis"
  10208. ],
  10209. "support": {
  10210. "issues": "https://github.com/staabm/side-effects-detector/issues",
  10211. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  10212. },
  10213. "funding": [
  10214. {
  10215. "url": "https://github.com/staabm",
  10216. "type": "github"
  10217. }
  10218. ],
  10219. "time": "2024-10-20T05:08:20+00:00"
  10220. },
  10221. {
  10222. "name": "symfony/yaml",
  10223. "version": "v7.3.1",
  10224. "source": {
  10225. "type": "git",
  10226. "url": "https://github.com/symfony/yaml.git",
  10227. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb"
  10228. },
  10229. "dist": {
  10230. "type": "zip",
  10231. "url": "https://api.github.com/repos/symfony/yaml/zipball/0c3555045a46ab3cd4cc5a69d161225195230edb",
  10232. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb",
  10233. "shasum": ""
  10234. },
  10235. "require": {
  10236. "php": ">=8.2",
  10237. "symfony/deprecation-contracts": "^2.5|^3.0",
  10238. "symfony/polyfill-ctype": "^1.8"
  10239. },
  10240. "conflict": {
  10241. "symfony/console": "<6.4"
  10242. },
  10243. "require-dev": {
  10244. "symfony/console": "^6.4|^7.0"
  10245. },
  10246. "bin": [
  10247. "Resources/bin/yaml-lint"
  10248. ],
  10249. "type": "library",
  10250. "autoload": {
  10251. "psr-4": {
  10252. "Symfony\\Component\\Yaml\\": ""
  10253. },
  10254. "exclude-from-classmap": [
  10255. "/Tests/"
  10256. ]
  10257. },
  10258. "notification-url": "https://packagist.org/downloads/",
  10259. "license": [
  10260. "MIT"
  10261. ],
  10262. "authors": [
  10263. {
  10264. "name": "Fabien Potencier",
  10265. "email": "fabien@symfony.com"
  10266. },
  10267. {
  10268. "name": "Symfony Community",
  10269. "homepage": "https://symfony.com/contributors"
  10270. }
  10271. ],
  10272. "description": "Loads and dumps YAML files",
  10273. "homepage": "https://symfony.com",
  10274. "support": {
  10275. "source": "https://github.com/symfony/yaml/tree/v7.3.1"
  10276. },
  10277. "funding": [
  10278. {
  10279. "url": "https://symfony.com/sponsor",
  10280. "type": "custom"
  10281. },
  10282. {
  10283. "url": "https://github.com/fabpot",
  10284. "type": "github"
  10285. },
  10286. {
  10287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10288. "type": "tidelift"
  10289. }
  10290. ],
  10291. "time": "2025-06-03T06:57:57+00:00"
  10292. },
  10293. {
  10294. "name": "theseer/tokenizer",
  10295. "version": "1.2.3",
  10296. "source": {
  10297. "type": "git",
  10298. "url": "https://github.com/theseer/tokenizer.git",
  10299. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10300. },
  10301. "dist": {
  10302. "type": "zip",
  10303. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10304. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10305. "shasum": ""
  10306. },
  10307. "require": {
  10308. "ext-dom": "*",
  10309. "ext-tokenizer": "*",
  10310. "ext-xmlwriter": "*",
  10311. "php": "^7.2 || ^8.0"
  10312. },
  10313. "type": "library",
  10314. "autoload": {
  10315. "classmap": [
  10316. "src/"
  10317. ]
  10318. },
  10319. "notification-url": "https://packagist.org/downloads/",
  10320. "license": [
  10321. "BSD-3-Clause"
  10322. ],
  10323. "authors": [
  10324. {
  10325. "name": "Arne Blankerts",
  10326. "email": "arne@blankerts.de",
  10327. "role": "Developer"
  10328. }
  10329. ],
  10330. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10331. "support": {
  10332. "issues": "https://github.com/theseer/tokenizer/issues",
  10333. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10334. },
  10335. "funding": [
  10336. {
  10337. "url": "https://github.com/theseer",
  10338. "type": "github"
  10339. }
  10340. ],
  10341. "time": "2024-03-03T12:36:25+00:00"
  10342. }
  10343. ],
  10344. "aliases": [],
  10345. "minimum-stability": "stable",
  10346. "stability-flags": [],
  10347. "prefer-stable": true,
  10348. "prefer-lowest": false,
  10349. "platform": {
  10350. "php": "^8.3"
  10351. },
  10352. "platform-dev": [],
  10353. "plugin-api-version": "2.3.0"
  10354. }