composer.lock 292 KB

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