composer.lock 316 KB

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