composer.lock 318 KB

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