composer.lock 315 KB

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