composer.lock 326 KB

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