composer.lock 372 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510
  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": "7bf44d0b53b6ea9b9a5760a8499d05a5",
  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": "2.0.1",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/annotations.git",
  84. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  89. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "doctrine/lexer": "^2 || ^3",
  94. "ext-tokenizer": "*",
  95. "php": "^7.2 || ^8.0",
  96. "psr/cache": "^1 || ^2 || ^3"
  97. },
  98. "require-dev": {
  99. "doctrine/cache": "^2.0",
  100. "doctrine/coding-standard": "^10",
  101. "phpstan/phpstan": "^1.8.0",
  102. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  103. "symfony/cache": "^5.4 || ^6",
  104. "vimeo/psalm": "^4.10"
  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/2.0.1"
  151. },
  152. "time": "2023-02-02T22:02:53+00:00"
  153. },
  154. {
  155. "name": "doctrine/inflector",
  156. "version": "2.0.10",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/doctrine/inflector.git",
  160. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  165. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "php": "^7.2 || ^8.0"
  170. },
  171. "require-dev": {
  172. "doctrine/coding-standard": "^11.0",
  173. "phpstan/phpstan": "^1.8",
  174. "phpstan/phpstan-phpunit": "^1.1",
  175. "phpstan/phpstan-strict-rules": "^1.3",
  176. "phpunit/phpunit": "^8.5 || ^9.5",
  177. "vimeo/psalm": "^4.25 || ^5.4"
  178. },
  179. "type": "library",
  180. "autoload": {
  181. "psr-4": {
  182. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  183. }
  184. },
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "Guilherme Blanco",
  192. "email": "guilhermeblanco@gmail.com"
  193. },
  194. {
  195. "name": "Roman Borschel",
  196. "email": "roman@code-factory.org"
  197. },
  198. {
  199. "name": "Benjamin Eberlei",
  200. "email": "kontakt@beberlei.de"
  201. },
  202. {
  203. "name": "Jonathan Wage",
  204. "email": "jonwage@gmail.com"
  205. },
  206. {
  207. "name": "Johannes Schmitt",
  208. "email": "schmittjoh@gmail.com"
  209. }
  210. ],
  211. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  212. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  213. "keywords": [
  214. "inflection",
  215. "inflector",
  216. "lowercase",
  217. "manipulation",
  218. "php",
  219. "plural",
  220. "singular",
  221. "strings",
  222. "uppercase",
  223. "words"
  224. ],
  225. "support": {
  226. "issues": "https://github.com/doctrine/inflector/issues",
  227. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  228. },
  229. "funding": [
  230. {
  231. "url": "https://www.doctrine-project.org/sponsorship.html",
  232. "type": "custom"
  233. },
  234. {
  235. "url": "https://www.patreon.com/phpdoctrine",
  236. "type": "patreon"
  237. },
  238. {
  239. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  240. "type": "tidelift"
  241. }
  242. ],
  243. "time": "2024-02-18T20:23:39+00:00"
  244. },
  245. {
  246. "name": "doctrine/instantiator",
  247. "version": "1.5.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/doctrine/instantiator.git",
  251. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  256. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "php": "^7.1 || ^8.0"
  261. },
  262. "require-dev": {
  263. "doctrine/coding-standard": "^9 || ^11",
  264. "ext-pdo": "*",
  265. "ext-phar": "*",
  266. "phpbench/phpbench": "^0.16 || ^1",
  267. "phpstan/phpstan": "^1.4",
  268. "phpstan/phpstan-phpunit": "^1",
  269. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  270. "vimeo/psalm": "^4.30 || ^5.4"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  276. }
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "MIT"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Marco Pivetta",
  285. "email": "ocramius@gmail.com",
  286. "homepage": "https://ocramius.github.io/"
  287. }
  288. ],
  289. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  290. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  291. "keywords": [
  292. "constructor",
  293. "instantiate"
  294. ],
  295. "support": {
  296. "issues": "https://github.com/doctrine/instantiator/issues",
  297. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  298. },
  299. "funding": [
  300. {
  301. "url": "https://www.doctrine-project.org/sponsorship.html",
  302. "type": "custom"
  303. },
  304. {
  305. "url": "https://www.patreon.com/phpdoctrine",
  306. "type": "patreon"
  307. },
  308. {
  309. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  310. "type": "tidelift"
  311. }
  312. ],
  313. "time": "2022-12-30T00:15:36+00:00"
  314. },
  315. {
  316. "name": "doctrine/lexer",
  317. "version": "3.0.1",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/doctrine/lexer.git",
  321. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  326. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  327. "shasum": ""
  328. },
  329. "require": {
  330. "php": "^8.1"
  331. },
  332. "require-dev": {
  333. "doctrine/coding-standard": "^12",
  334. "phpstan/phpstan": "^1.10",
  335. "phpunit/phpunit": "^10.5",
  336. "psalm/plugin-phpunit": "^0.18.3",
  337. "vimeo/psalm": "^5.21"
  338. },
  339. "type": "library",
  340. "autoload": {
  341. "psr-4": {
  342. "Doctrine\\Common\\Lexer\\": "src"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "MIT"
  348. ],
  349. "authors": [
  350. {
  351. "name": "Guilherme Blanco",
  352. "email": "guilhermeblanco@gmail.com"
  353. },
  354. {
  355. "name": "Roman Borschel",
  356. "email": "roman@code-factory.org"
  357. },
  358. {
  359. "name": "Johannes Schmitt",
  360. "email": "schmittjoh@gmail.com"
  361. }
  362. ],
  363. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  364. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  365. "keywords": [
  366. "annotations",
  367. "docblock",
  368. "lexer",
  369. "parser",
  370. "php"
  371. ],
  372. "support": {
  373. "issues": "https://github.com/doctrine/lexer/issues",
  374. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  375. },
  376. "funding": [
  377. {
  378. "url": "https://www.doctrine-project.org/sponsorship.html",
  379. "type": "custom"
  380. },
  381. {
  382. "url": "https://www.patreon.com/phpdoctrine",
  383. "type": "patreon"
  384. },
  385. {
  386. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  387. "type": "tidelift"
  388. }
  389. ],
  390. "time": "2024-02-05T11:56:58+00:00"
  391. },
  392. {
  393. "name": "fig/http-message-util",
  394. "version": "1.1.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/php-fig/http-message-util.git",
  398. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  403. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "php": "^5.3 || ^7.0 || ^8.0"
  408. },
  409. "suggest": {
  410. "psr/http-message": "The package containing the PSR-7 interfaces"
  411. },
  412. "type": "library",
  413. "extra": {
  414. "branch-alias": {
  415. "dev-master": "1.1.x-dev"
  416. }
  417. },
  418. "autoload": {
  419. "psr-4": {
  420. "Fig\\Http\\Message\\": "src/"
  421. }
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "PHP-FIG",
  430. "homepage": "https://www.php-fig.org/"
  431. }
  432. ],
  433. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  434. "keywords": [
  435. "http",
  436. "http-message",
  437. "psr",
  438. "psr-7",
  439. "request",
  440. "response"
  441. ],
  442. "support": {
  443. "issues": "https://github.com/php-fig/http-message-util/issues",
  444. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  445. },
  446. "time": "2020-11-24T22:02:12+00:00"
  447. },
  448. {
  449. "name": "graham-campbell/result-type",
  450. "version": "v1.1.2",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  454. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  459. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": "^7.2.5 || ^8.0",
  464. "phpoption/phpoption": "^1.9.2"
  465. },
  466. "require-dev": {
  467. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  468. },
  469. "type": "library",
  470. "autoload": {
  471. "psr-4": {
  472. "GrahamCampbell\\ResultType\\": "src/"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Graham Campbell",
  482. "email": "hello@gjcampbell.co.uk",
  483. "homepage": "https://github.com/GrahamCampbell"
  484. }
  485. ],
  486. "description": "An Implementation Of The Result Type",
  487. "keywords": [
  488. "Graham Campbell",
  489. "GrahamCampbell",
  490. "Result Type",
  491. "Result-Type",
  492. "result"
  493. ],
  494. "support": {
  495. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  496. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  497. },
  498. "funding": [
  499. {
  500. "url": "https://github.com/GrahamCampbell",
  501. "type": "github"
  502. },
  503. {
  504. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  505. "type": "tidelift"
  506. }
  507. ],
  508. "time": "2023-11-12T22:16:48+00:00"
  509. },
  510. {
  511. "name": "guzzlehttp/guzzle",
  512. "version": "7.8.1",
  513. "source": {
  514. "type": "git",
  515. "url": "https://github.com/guzzle/guzzle.git",
  516. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  517. },
  518. "dist": {
  519. "type": "zip",
  520. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  521. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  522. "shasum": ""
  523. },
  524. "require": {
  525. "ext-json": "*",
  526. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  527. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  528. "php": "^7.2.5 || ^8.0",
  529. "psr/http-client": "^1.0",
  530. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  531. },
  532. "provide": {
  533. "psr/http-client-implementation": "1.0"
  534. },
  535. "require-dev": {
  536. "bamarni/composer-bin-plugin": "^1.8.2",
  537. "ext-curl": "*",
  538. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  539. "php-http/message-factory": "^1.1",
  540. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  541. "psr/log": "^1.1 || ^2.0 || ^3.0"
  542. },
  543. "suggest": {
  544. "ext-curl": "Required for CURL handler support",
  545. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  546. "psr/log": "Required for using the Log middleware"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "bamarni-bin": {
  551. "bin-links": true,
  552. "forward-command": false
  553. }
  554. },
  555. "autoload": {
  556. "files": [
  557. "src/functions_include.php"
  558. ],
  559. "psr-4": {
  560. "GuzzleHttp\\": "src/"
  561. }
  562. },
  563. "notification-url": "https://packagist.org/downloads/",
  564. "license": [
  565. "MIT"
  566. ],
  567. "authors": [
  568. {
  569. "name": "Graham Campbell",
  570. "email": "hello@gjcampbell.co.uk",
  571. "homepage": "https://github.com/GrahamCampbell"
  572. },
  573. {
  574. "name": "Michael Dowling",
  575. "email": "mtdowling@gmail.com",
  576. "homepage": "https://github.com/mtdowling"
  577. },
  578. {
  579. "name": "Jeremy Lindblom",
  580. "email": "jeremeamia@gmail.com",
  581. "homepage": "https://github.com/jeremeamia"
  582. },
  583. {
  584. "name": "George Mponos",
  585. "email": "gmponos@gmail.com",
  586. "homepage": "https://github.com/gmponos"
  587. },
  588. {
  589. "name": "Tobias Nyholm",
  590. "email": "tobias.nyholm@gmail.com",
  591. "homepage": "https://github.com/Nyholm"
  592. },
  593. {
  594. "name": "Márk Sági-Kazár",
  595. "email": "mark.sagikazar@gmail.com",
  596. "homepage": "https://github.com/sagikazarmark"
  597. },
  598. {
  599. "name": "Tobias Schultze",
  600. "email": "webmaster@tubo-world.de",
  601. "homepage": "https://github.com/Tobion"
  602. }
  603. ],
  604. "description": "Guzzle is a PHP HTTP client library",
  605. "keywords": [
  606. "client",
  607. "curl",
  608. "framework",
  609. "http",
  610. "http client",
  611. "psr-18",
  612. "psr-7",
  613. "rest",
  614. "web service"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/guzzle/guzzle/issues",
  618. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  619. },
  620. "funding": [
  621. {
  622. "url": "https://github.com/GrahamCampbell",
  623. "type": "github"
  624. },
  625. {
  626. "url": "https://github.com/Nyholm",
  627. "type": "github"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2023-12-03T20:35:24+00:00"
  635. },
  636. {
  637. "name": "guzzlehttp/promises",
  638. "version": "2.0.2",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/guzzle/promises.git",
  642. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  647. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.2.5 || ^8.0"
  652. },
  653. "require-dev": {
  654. "bamarni/composer-bin-plugin": "^1.8.2",
  655. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "bamarni-bin": {
  660. "bin-links": true,
  661. "forward-command": false
  662. }
  663. },
  664. "autoload": {
  665. "psr-4": {
  666. "GuzzleHttp\\Promise\\": "src/"
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "Graham Campbell",
  676. "email": "hello@gjcampbell.co.uk",
  677. "homepage": "https://github.com/GrahamCampbell"
  678. },
  679. {
  680. "name": "Michael Dowling",
  681. "email": "mtdowling@gmail.com",
  682. "homepage": "https://github.com/mtdowling"
  683. },
  684. {
  685. "name": "Tobias Nyholm",
  686. "email": "tobias.nyholm@gmail.com",
  687. "homepage": "https://github.com/Nyholm"
  688. },
  689. {
  690. "name": "Tobias Schultze",
  691. "email": "webmaster@tubo-world.de",
  692. "homepage": "https://github.com/Tobion"
  693. }
  694. ],
  695. "description": "Guzzle promises library",
  696. "keywords": [
  697. "promise"
  698. ],
  699. "support": {
  700. "issues": "https://github.com/guzzle/promises/issues",
  701. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  702. },
  703. "funding": [
  704. {
  705. "url": "https://github.com/GrahamCampbell",
  706. "type": "github"
  707. },
  708. {
  709. "url": "https://github.com/Nyholm",
  710. "type": "github"
  711. },
  712. {
  713. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  714. "type": "tidelift"
  715. }
  716. ],
  717. "time": "2023-12-03T20:19:20+00:00"
  718. },
  719. {
  720. "name": "guzzlehttp/psr7",
  721. "version": "2.6.2",
  722. "source": {
  723. "type": "git",
  724. "url": "https://github.com/guzzle/psr7.git",
  725. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  726. },
  727. "dist": {
  728. "type": "zip",
  729. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  730. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  731. "shasum": ""
  732. },
  733. "require": {
  734. "php": "^7.2.5 || ^8.0",
  735. "psr/http-factory": "^1.0",
  736. "psr/http-message": "^1.1 || ^2.0",
  737. "ralouphie/getallheaders": "^3.0"
  738. },
  739. "provide": {
  740. "psr/http-factory-implementation": "1.0",
  741. "psr/http-message-implementation": "1.0"
  742. },
  743. "require-dev": {
  744. "bamarni/composer-bin-plugin": "^1.8.2",
  745. "http-interop/http-factory-tests": "^0.9",
  746. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  747. },
  748. "suggest": {
  749. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  750. },
  751. "type": "library",
  752. "extra": {
  753. "bamarni-bin": {
  754. "bin-links": true,
  755. "forward-command": false
  756. }
  757. },
  758. "autoload": {
  759. "psr-4": {
  760. "GuzzleHttp\\Psr7\\": "src/"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Graham Campbell",
  770. "email": "hello@gjcampbell.co.uk",
  771. "homepage": "https://github.com/GrahamCampbell"
  772. },
  773. {
  774. "name": "Michael Dowling",
  775. "email": "mtdowling@gmail.com",
  776. "homepage": "https://github.com/mtdowling"
  777. },
  778. {
  779. "name": "George Mponos",
  780. "email": "gmponos@gmail.com",
  781. "homepage": "https://github.com/gmponos"
  782. },
  783. {
  784. "name": "Tobias Nyholm",
  785. "email": "tobias.nyholm@gmail.com",
  786. "homepage": "https://github.com/Nyholm"
  787. },
  788. {
  789. "name": "Márk Sági-Kazár",
  790. "email": "mark.sagikazar@gmail.com",
  791. "homepage": "https://github.com/sagikazarmark"
  792. },
  793. {
  794. "name": "Tobias Schultze",
  795. "email": "webmaster@tubo-world.de",
  796. "homepage": "https://github.com/Tobion"
  797. },
  798. {
  799. "name": "Márk Sági-Kazár",
  800. "email": "mark.sagikazar@gmail.com",
  801. "homepage": "https://sagikazarmark.hu"
  802. }
  803. ],
  804. "description": "PSR-7 message implementation that also provides common utility methods",
  805. "keywords": [
  806. "http",
  807. "message",
  808. "psr-7",
  809. "request",
  810. "response",
  811. "stream",
  812. "uri",
  813. "url"
  814. ],
  815. "support": {
  816. "issues": "https://github.com/guzzle/psr7/issues",
  817. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  818. },
  819. "funding": [
  820. {
  821. "url": "https://github.com/GrahamCampbell",
  822. "type": "github"
  823. },
  824. {
  825. "url": "https://github.com/Nyholm",
  826. "type": "github"
  827. },
  828. {
  829. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  830. "type": "tidelift"
  831. }
  832. ],
  833. "time": "2023-12-03T20:05:35+00:00"
  834. },
  835. {
  836. "name": "hyperf/cache",
  837. "version": "v3.1.23",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/hyperf/cache.git",
  841. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  846. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "hyperf/codec": "~3.1.0",
  851. "hyperf/collection": "~3.1.0",
  852. "hyperf/contract": "~3.1.0",
  853. "hyperf/support": "~3.1.0",
  854. "hyperf/utils": "~3.1.0",
  855. "php": ">=8.1",
  856. "psr/container": "^1.0|^2.0",
  857. "psr/simple-cache": "^1.0|^2.0|^3.0"
  858. },
  859. "suggest": {
  860. "hyperf/di": "Use cache annotations.",
  861. "hyperf/event": "Use listener to delete annotation cache."
  862. },
  863. "type": "library",
  864. "extra": {
  865. "branch-alias": {
  866. "dev-master": "3.1-dev"
  867. },
  868. "hyperf": {
  869. "config": "Hyperf\\Cache\\ConfigProvider"
  870. }
  871. },
  872. "autoload": {
  873. "psr-4": {
  874. "Hyperf\\Cache\\": "src/"
  875. }
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "MIT"
  880. ],
  881. "description": "A cache component for hyperf.",
  882. "homepage": "https://hyperf.io",
  883. "keywords": [
  884. "cache",
  885. "hyperf",
  886. "php"
  887. ],
  888. "support": {
  889. "docs": "https://hyperf.wiki",
  890. "issues": "https://github.com/hyperf/hyperf/issues",
  891. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  892. "source": "https://github.com/hyperf/hyperf"
  893. },
  894. "funding": [
  895. {
  896. "url": "https://hyperf.wiki/#/zh-cn/donate",
  897. "type": "custom"
  898. },
  899. {
  900. "url": "https://opencollective.com/hyperf",
  901. "type": "open_collective"
  902. }
  903. ],
  904. "time": "2024-05-23T03:43:58+00:00"
  905. },
  906. {
  907. "name": "hyperf/code-parser",
  908. "version": "v3.1.15",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/hyperf/code-parser.git",
  912. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  917. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  918. "shasum": ""
  919. },
  920. "require": {
  921. "hyperf/collection": "~3.1.0",
  922. "hyperf/stringable": "~3.1.0",
  923. "hyperf/support": "~3.1.0",
  924. "php": ">=8.1"
  925. },
  926. "suggest": {
  927. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  928. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "branch-alias": {
  933. "dev-master": "3.1-dev"
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "Hyperf\\CodeParser\\": "src/"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "description": "A code parser component for Hyperf.",
  946. "homepage": "https://hyperf.io",
  947. "keywords": [
  948. "code-parser",
  949. "hyperf",
  950. "php",
  951. "swoole"
  952. ],
  953. "support": {
  954. "docs": "https://hyperf.wiki",
  955. "issues": "https://github.com/hyperf/hyperf/issues",
  956. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  957. "source": "https://github.com/hyperf/hyperf"
  958. },
  959. "funding": [
  960. {
  961. "url": "https://hyperf.wiki/#/zh-cn/donate",
  962. "type": "custom"
  963. },
  964. {
  965. "url": "https://opencollective.com/hyperf",
  966. "type": "open_collective"
  967. }
  968. ],
  969. "time": "2024-03-23T11:28:51+00:00"
  970. },
  971. {
  972. "name": "hyperf/codec",
  973. "version": "v3.1.15",
  974. "source": {
  975. "type": "git",
  976. "url": "https://github.com/hyperf/codec.git",
  977. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  978. },
  979. "dist": {
  980. "type": "zip",
  981. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  982. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  983. "shasum": ""
  984. },
  985. "require": {
  986. "ext-json": "*",
  987. "ext-xml": "*",
  988. "hyperf/contract": "~3.1.0",
  989. "php": ">=8.1"
  990. },
  991. "suggest": {
  992. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  993. },
  994. "type": "library",
  995. "extra": {
  996. "branch-alias": {
  997. "dev-master": "3.1-dev"
  998. }
  999. },
  1000. "autoload": {
  1001. "psr-4": {
  1002. "Hyperf\\Codec\\": "src/"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "description": "A codec component for Hyperf.",
  1010. "homepage": "https://hyperf.io",
  1011. "keywords": [
  1012. "codec",
  1013. "hyperf",
  1014. "php",
  1015. "swoole"
  1016. ],
  1017. "support": {
  1018. "docs": "https://hyperf.wiki",
  1019. "issues": "https://github.com/hyperf/hyperf/issues",
  1020. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1021. "source": "https://github.com/hyperf/hyperf"
  1022. },
  1023. "funding": [
  1024. {
  1025. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1026. "type": "custom"
  1027. },
  1028. {
  1029. "url": "https://opencollective.com/hyperf",
  1030. "type": "open_collective"
  1031. }
  1032. ],
  1033. "time": "2024-03-23T11:28:51+00:00"
  1034. },
  1035. {
  1036. "name": "hyperf/collection",
  1037. "version": "v3.1.23.2",
  1038. "source": {
  1039. "type": "git",
  1040. "url": "https://github.com/hyperf/collection.git",
  1041. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada"
  1042. },
  1043. "dist": {
  1044. "type": "zip",
  1045. "url": "https://api.github.com/repos/hyperf/collection/zipball/8d10ca88228ee47c9cee578ac3699e795f468ada",
  1046. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada",
  1047. "shasum": ""
  1048. },
  1049. "require": {
  1050. "hyperf/conditionable": "~3.1.0",
  1051. "hyperf/contract": "~3.1.0",
  1052. "hyperf/macroable": "~3.1.0",
  1053. "hyperf/stringable": "~3.1.0",
  1054. "php": ">=8.1"
  1055. },
  1056. "type": "library",
  1057. "extra": {
  1058. "branch-alias": {
  1059. "dev-master": "3.1-dev"
  1060. }
  1061. },
  1062. "autoload": {
  1063. "files": [
  1064. "src/Functions.php"
  1065. ],
  1066. "psr-4": {
  1067. "Hyperf\\Collection\\": "src/"
  1068. }
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "license": [
  1072. "MIT"
  1073. ],
  1074. "description": "Hyperf Collection package which come from illuminate/collections",
  1075. "homepage": "https://hyperf.io",
  1076. "keywords": [
  1077. "collection",
  1078. "hyperf",
  1079. "php",
  1080. "swoole"
  1081. ],
  1082. "support": {
  1083. "docs": "https://hyperf.wiki",
  1084. "issues": "https://github.com/hyperf/hyperf/issues",
  1085. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1086. "source": "https://github.com/hyperf/hyperf"
  1087. },
  1088. "funding": [
  1089. {
  1090. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1091. "type": "custom"
  1092. },
  1093. {
  1094. "url": "https://opencollective.com/hyperf",
  1095. "type": "open_collective"
  1096. }
  1097. ],
  1098. "time": "2024-05-24T08:33:42+00:00"
  1099. },
  1100. {
  1101. "name": "hyperf/command",
  1102. "version": "v3.1.24",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/hyperf/command.git",
  1106. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/hyperf/command/zipball/b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1111. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "hyperf/collection": "~3.1.0",
  1116. "hyperf/context": "~3.1.0",
  1117. "hyperf/contract": "~3.1.0",
  1118. "hyperf/coroutine": "~3.1.0",
  1119. "hyperf/di": "~3.1.0",
  1120. "hyperf/stringable": "~3.1.0",
  1121. "hyperf/support": "~3.1.0",
  1122. "hyperf/tappable": "~3.1.0",
  1123. "php": ">=8.1",
  1124. "psr/event-dispatcher": "^1.0",
  1125. "symfony/console": "^5.0|^6.0|^7.0"
  1126. },
  1127. "suggest": {
  1128. "hyperf/di": "Required to use annotations.",
  1129. "hyperf/event": "Required to use listeners."
  1130. },
  1131. "type": "library",
  1132. "extra": {
  1133. "branch-alias": {
  1134. "dev-master": "3.1-dev"
  1135. },
  1136. "hyperf": {
  1137. "config": "Hyperf\\Command\\ConfigProvider"
  1138. }
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "Hyperf\\Command\\": "src/"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "MIT"
  1148. ],
  1149. "description": "Command for hyperf",
  1150. "keywords": [
  1151. "command",
  1152. "php",
  1153. "swoole"
  1154. ],
  1155. "support": {
  1156. "issues": "https://github.com/hyperf/command/issues",
  1157. "source": "https://github.com/hyperf/command/tree/v3.1.24"
  1158. },
  1159. "funding": [
  1160. {
  1161. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1162. "type": "custom"
  1163. },
  1164. {
  1165. "url": "https://opencollective.com/hyperf",
  1166. "type": "open_collective"
  1167. }
  1168. ],
  1169. "time": "2024-05-27T12:37:07+00:00"
  1170. },
  1171. {
  1172. "name": "hyperf/conditionable",
  1173. "version": "v3.1.15",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/hyperf/conditionable.git",
  1177. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1182. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "php": ">=8.1"
  1187. },
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "3.1-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "psr-4": {
  1196. "Hyperf\\Conditionable\\": "src/"
  1197. }
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "MIT"
  1202. ],
  1203. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1204. "homepage": "https://hyperf.io",
  1205. "keywords": [
  1206. "conditionable",
  1207. "hyperf",
  1208. "php",
  1209. "swoole"
  1210. ],
  1211. "support": {
  1212. "docs": "https://hyperf.wiki",
  1213. "issues": "https://github.com/hyperf/hyperf/issues",
  1214. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1215. "source": "https://github.com/hyperf/hyperf"
  1216. },
  1217. "funding": [
  1218. {
  1219. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1220. "type": "custom"
  1221. },
  1222. {
  1223. "url": "https://opencollective.com/hyperf",
  1224. "type": "open_collective"
  1225. }
  1226. ],
  1227. "time": "2024-03-23T11:28:51+00:00"
  1228. },
  1229. {
  1230. "name": "hyperf/config",
  1231. "version": "v3.1.15",
  1232. "source": {
  1233. "type": "git",
  1234. "url": "https://github.com/hyperf/config.git",
  1235. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1236. },
  1237. "dist": {
  1238. "type": "zip",
  1239. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1240. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1241. "shasum": ""
  1242. },
  1243. "require": {
  1244. "hyperf/collection": "~3.1.0",
  1245. "hyperf/contract": "~3.1.0",
  1246. "hyperf/support": "~3.1.0",
  1247. "php": ">=8.1",
  1248. "psr/container": "^1.0|^2.0",
  1249. "symfony/finder": "^5.0|^6.0|^7.0"
  1250. },
  1251. "suggest": {
  1252. "hyperf/context": "Required to use config()",
  1253. "hyperf/di": "Allows using @Value annotation",
  1254. "hyperf/event": "Allows using @Value annotation",
  1255. "hyperf/framework": "Allows using @Value annotation",
  1256. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1257. },
  1258. "type": "library",
  1259. "extra": {
  1260. "branch-alias": {
  1261. "dev-master": "3.1-dev"
  1262. },
  1263. "hyperf": {
  1264. "config": "Hyperf\\Config\\ConfigProvider"
  1265. }
  1266. },
  1267. "autoload": {
  1268. "files": [
  1269. "./src/Functions.php"
  1270. ],
  1271. "psr-4": {
  1272. "Hyperf\\Config\\": "src/"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "description": "An independent component that provides configuration container.",
  1280. "homepage": "https://hyperf.io",
  1281. "keywords": [
  1282. "config",
  1283. "configuration",
  1284. "hyperf",
  1285. "php",
  1286. "swoole"
  1287. ],
  1288. "support": {
  1289. "docs": "https://hyperf.wiki",
  1290. "issues": "https://github.com/hyperf/hyperf/issues",
  1291. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1292. "source": "https://github.com/hyperf/hyperf"
  1293. },
  1294. "funding": [
  1295. {
  1296. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1297. "type": "custom"
  1298. },
  1299. {
  1300. "url": "https://opencollective.com/hyperf",
  1301. "type": "open_collective"
  1302. }
  1303. ],
  1304. "time": "2024-03-23T11:28:51+00:00"
  1305. },
  1306. {
  1307. "name": "hyperf/config-center",
  1308. "version": "v3.1.15",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/hyperf/config-center.git",
  1312. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1317. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "hyperf/support": "~3.1.0",
  1322. "php": ">=8.1"
  1323. },
  1324. "suggest": {
  1325. "hyperf/process": "^2.1"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "branch-alias": {
  1330. "dev-master": "3.1-dev"
  1331. },
  1332. "hyperf": {
  1333. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1334. }
  1335. },
  1336. "autoload": {
  1337. "psr-4": {
  1338. "Hyperf\\ConfigCenter\\": "src/"
  1339. }
  1340. },
  1341. "notification-url": "https://packagist.org/downloads/",
  1342. "license": [
  1343. "MIT"
  1344. ],
  1345. "description": "The abstraction component of config center",
  1346. "homepage": "https://hyperf.io",
  1347. "keywords": [
  1348. "config-center",
  1349. "hyperf",
  1350. "php"
  1351. ],
  1352. "support": {
  1353. "docs": "https://hyperf.wiki",
  1354. "issues": "https://github.com/hyperf/hyperf/issues",
  1355. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1356. "source": "https://github.com/hyperf/hyperf"
  1357. },
  1358. "funding": [
  1359. {
  1360. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1361. "type": "custom"
  1362. },
  1363. {
  1364. "url": "https://opencollective.com/hyperf",
  1365. "type": "open_collective"
  1366. }
  1367. ],
  1368. "time": "2024-03-23T11:28:51+00:00"
  1369. },
  1370. {
  1371. "name": "hyperf/config-nacos",
  1372. "version": "v3.1.15",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/hyperf/config-nacos.git",
  1376. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1381. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1382. "shasum": ""
  1383. },
  1384. "require": {
  1385. "hyperf/codec": "~3.1.0",
  1386. "hyperf/config-center": "~3.1.0",
  1387. "hyperf/contract": "~3.1.0",
  1388. "hyperf/guzzle": "~3.1.0",
  1389. "hyperf/nacos": "~3.1.0",
  1390. "hyperf/support": "~3.1.0",
  1391. "hyperf/utils": "~3.1.0",
  1392. "jetbrains/phpstorm-attributes": "^1.0",
  1393. "php": ">=8.1"
  1394. },
  1395. "suggest": {
  1396. "ext-json": "*",
  1397. "ext-simplexml": "*",
  1398. "ext-yaml": "*",
  1399. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1400. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1401. "hyperf/process": "Required to use processes. (~2.2.0)"
  1402. },
  1403. "type": "library",
  1404. "extra": {
  1405. "branch-alias": {
  1406. "dev-master": "3.1-dev"
  1407. },
  1408. "hyperf": {
  1409. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "psr-4": {
  1414. "Hyperf\\ConfigNacos\\": "src/"
  1415. }
  1416. },
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "MIT"
  1420. ],
  1421. "description": "A nacos adapter for config center component.",
  1422. "homepage": "https://hyperf.io",
  1423. "keywords": [
  1424. "hyperf",
  1425. "nacos",
  1426. "php",
  1427. "swoole"
  1428. ],
  1429. "support": {
  1430. "docs": "https://hyperf.wiki",
  1431. "issues": "https://github.com/hyperf/hyperf/issues",
  1432. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1433. "source": "https://github.com/hyperf/hyperf"
  1434. },
  1435. "funding": [
  1436. {
  1437. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1438. "type": "custom"
  1439. },
  1440. {
  1441. "url": "https://opencollective.com/hyperf",
  1442. "type": "open_collective"
  1443. }
  1444. ],
  1445. "time": "2024-03-23T11:28:51+00:00"
  1446. },
  1447. {
  1448. "name": "hyperf/constants",
  1449. "version": "v3.1.16",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/hyperf/constants.git",
  1453. "reference": "55d46901660e4540195145d0e4066296cf0dc130"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/hyperf/constants/zipball/55d46901660e4540195145d0e4066296cf0dc130",
  1458. "reference": "55d46901660e4540195145d0e4066296cf0dc130",
  1459. "shasum": ""
  1460. },
  1461. "require": {
  1462. "hyperf/di": "~3.1.0",
  1463. "hyperf/support": "~3.1.0",
  1464. "hyperf/utils": "~3.1.0",
  1465. "php": ">=8.1"
  1466. },
  1467. "suggest": {
  1468. "hyperf/translation": "Required to use translation."
  1469. },
  1470. "type": "library",
  1471. "extra": {
  1472. "branch-alias": {
  1473. "dev-master": "3.1-dev"
  1474. },
  1475. "hyperf": {
  1476. "config": "Hyperf\\Constants\\ConfigProvider"
  1477. }
  1478. },
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Hyperf\\Constants\\": "src/"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "description": "A constants component for hyperf.",
  1489. "homepage": "https://hyperf.io",
  1490. "keywords": [
  1491. "constants",
  1492. "hyperf",
  1493. "php"
  1494. ],
  1495. "support": {
  1496. "docs": "https://hyperf.wiki",
  1497. "issues": "https://github.com/hyperf/hyperf/issues",
  1498. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1499. "source": "https://github.com/hyperf/hyperf"
  1500. },
  1501. "funding": [
  1502. {
  1503. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1504. "type": "custom"
  1505. },
  1506. {
  1507. "url": "https://opencollective.com/hyperf",
  1508. "type": "open_collective"
  1509. }
  1510. ],
  1511. "time": "2024-03-31T11:35:28+00:00"
  1512. },
  1513. {
  1514. "name": "hyperf/consul",
  1515. "version": "v3.1.22",
  1516. "source": {
  1517. "type": "git",
  1518. "url": "https://github.com/hyperf/consul.git",
  1519. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1520. },
  1521. "dist": {
  1522. "type": "zip",
  1523. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1524. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1525. "shasum": ""
  1526. },
  1527. "require": {
  1528. "guzzlehttp/guzzle": "^6.3|^7.0",
  1529. "php": ">=8.1"
  1530. },
  1531. "require-dev": {
  1532. "hyperf/guzzle": "~3.1.0"
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-master": "3.1-dev"
  1538. },
  1539. "hyperf": {
  1540. "config": "Hyperf\\Consul\\ConfigProvider"
  1541. }
  1542. },
  1543. "autoload": {
  1544. "psr-4": {
  1545. "Hyperf\\Consul\\": "src/"
  1546. }
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "MIT"
  1551. ],
  1552. "description": "A Consul Client for Hyperf.",
  1553. "homepage": "https://hyperf.io",
  1554. "keywords": [
  1555. "consul",
  1556. "consul-client",
  1557. "hyperf",
  1558. "php",
  1559. "swoole"
  1560. ],
  1561. "support": {
  1562. "docs": "https://hyperf.wiki",
  1563. "issues": "https://github.com/hyperf/hyperf/issues",
  1564. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1565. "source": "https://github.com/hyperf/hyperf"
  1566. },
  1567. "funding": [
  1568. {
  1569. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1570. "type": "custom"
  1571. },
  1572. {
  1573. "url": "https://opencollective.com/hyperf",
  1574. "type": "open_collective"
  1575. }
  1576. ],
  1577. "time": "2024-05-15T06:42:24+00:00"
  1578. },
  1579. {
  1580. "name": "hyperf/context",
  1581. "version": "v3.1.15",
  1582. "source": {
  1583. "type": "git",
  1584. "url": "https://github.com/hyperf/context.git",
  1585. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1586. },
  1587. "dist": {
  1588. "type": "zip",
  1589. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1590. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1591. "shasum": ""
  1592. },
  1593. "require": {
  1594. "hyperf/engine": "^2.0",
  1595. "php": ">=8.1"
  1596. },
  1597. "suggest": {
  1598. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1599. },
  1600. "type": "library",
  1601. "extra": {
  1602. "branch-alias": {
  1603. "dev-master": "3.1-dev"
  1604. }
  1605. },
  1606. "autoload": {
  1607. "psr-4": {
  1608. "Hyperf\\Context\\": "src/"
  1609. }
  1610. },
  1611. "notification-url": "https://packagist.org/downloads/",
  1612. "license": [
  1613. "MIT"
  1614. ],
  1615. "description": "A coroutine/application context library.",
  1616. "homepage": "https://hyperf.io",
  1617. "keywords": [
  1618. "Context",
  1619. "hyperf",
  1620. "php",
  1621. "swoole"
  1622. ],
  1623. "support": {
  1624. "docs": "https://hyperf.wiki",
  1625. "issues": "https://github.com/hyperf/hyperf/issues",
  1626. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1627. "source": "https://github.com/hyperf/hyperf"
  1628. },
  1629. "funding": [
  1630. {
  1631. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1632. "type": "custom"
  1633. },
  1634. {
  1635. "url": "https://opencollective.com/hyperf",
  1636. "type": "open_collective"
  1637. }
  1638. ],
  1639. "time": "2024-03-23T11:28:51+00:00"
  1640. },
  1641. {
  1642. "name": "hyperf/contract",
  1643. "version": "v3.1.15",
  1644. "source": {
  1645. "type": "git",
  1646. "url": "https://github.com/hyperf/contract.git",
  1647. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  1648. },
  1649. "dist": {
  1650. "type": "zip",
  1651. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1652. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1653. "shasum": ""
  1654. },
  1655. "require": {
  1656. "php": ">=8.1"
  1657. },
  1658. "type": "library",
  1659. "extra": {
  1660. "branch-alias": {
  1661. "dev-master": "3.1-dev"
  1662. }
  1663. },
  1664. "autoload": {
  1665. "psr-4": {
  1666. "Hyperf\\Contract\\": "src/"
  1667. }
  1668. },
  1669. "notification-url": "https://packagist.org/downloads/",
  1670. "license": [
  1671. "MIT"
  1672. ],
  1673. "description": "The contracts of Hyperf.",
  1674. "homepage": "https://hyperf.io",
  1675. "keywords": [
  1676. "hyperf",
  1677. "php",
  1678. "swoole"
  1679. ],
  1680. "support": {
  1681. "docs": "https://hyperf.wiki",
  1682. "issues": "https://github.com/hyperf/hyperf/issues",
  1683. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1684. "source": "https://github.com/hyperf/hyperf"
  1685. },
  1686. "funding": [
  1687. {
  1688. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1689. "type": "custom"
  1690. },
  1691. {
  1692. "url": "https://opencollective.com/hyperf",
  1693. "type": "open_collective"
  1694. }
  1695. ],
  1696. "time": "2024-03-23T11:28:51+00:00"
  1697. },
  1698. {
  1699. "name": "hyperf/coordinator",
  1700. "version": "v3.1.21",
  1701. "source": {
  1702. "type": "git",
  1703. "url": "https://github.com/hyperf/coordinator.git",
  1704. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  1705. },
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1709. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1710. "shasum": ""
  1711. },
  1712. "require": {
  1713. "hyperf/engine": "^2.0",
  1714. "php": ">=8.1"
  1715. },
  1716. "type": "library",
  1717. "extra": {
  1718. "branch-alias": {
  1719. "dev-master": "3.1-dev"
  1720. }
  1721. },
  1722. "autoload": {
  1723. "files": [
  1724. "src/Functions.php"
  1725. ],
  1726. "psr-4": {
  1727. "Hyperf\\Coordinator\\": "src/"
  1728. }
  1729. },
  1730. "notification-url": "https://packagist.org/downloads/",
  1731. "license": [
  1732. "MIT"
  1733. ],
  1734. "description": "Hyperf Coordinator",
  1735. "homepage": "https://hyperf.io",
  1736. "keywords": [
  1737. "Coordinator",
  1738. "hyperf",
  1739. "php",
  1740. "swoole"
  1741. ],
  1742. "support": {
  1743. "docs": "https://hyperf.wiki",
  1744. "issues": "https://github.com/hyperf/hyperf/issues",
  1745. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1746. "source": "https://github.com/hyperf/hyperf"
  1747. },
  1748. "funding": [
  1749. {
  1750. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1751. "type": "custom"
  1752. },
  1753. {
  1754. "url": "https://opencollective.com/hyperf",
  1755. "type": "open_collective"
  1756. }
  1757. ],
  1758. "time": "2024-05-09T02:35:08+00:00"
  1759. },
  1760. {
  1761. "name": "hyperf/coroutine",
  1762. "version": "v3.1.15",
  1763. "source": {
  1764. "type": "git",
  1765. "url": "https://github.com/hyperf/coroutine.git",
  1766. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  1767. },
  1768. "dist": {
  1769. "type": "zip",
  1770. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1771. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1772. "shasum": ""
  1773. },
  1774. "require": {
  1775. "hyperf/context": "~3.1.0",
  1776. "hyperf/contract": "~3.1.0",
  1777. "hyperf/engine": "^2.0",
  1778. "php": ">=8.1"
  1779. },
  1780. "type": "library",
  1781. "extra": {
  1782. "branch-alias": {
  1783. "dev-master": "3.1-dev"
  1784. }
  1785. },
  1786. "autoload": {
  1787. "files": [
  1788. "src/Functions.php"
  1789. ],
  1790. "psr-4": {
  1791. "Hyperf\\Coroutine\\": "src/"
  1792. }
  1793. },
  1794. "notification-url": "https://packagist.org/downloads/",
  1795. "license": [
  1796. "MIT"
  1797. ],
  1798. "description": "Hyperf Coroutine",
  1799. "homepage": "https://hyperf.io",
  1800. "keywords": [
  1801. "coroutine",
  1802. "hyperf",
  1803. "php",
  1804. "swoole"
  1805. ],
  1806. "support": {
  1807. "docs": "https://hyperf.wiki",
  1808. "issues": "https://github.com/hyperf/hyperf/issues",
  1809. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1810. "source": "https://github.com/hyperf/hyperf"
  1811. },
  1812. "funding": [
  1813. {
  1814. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1815. "type": "custom"
  1816. },
  1817. {
  1818. "url": "https://opencollective.com/hyperf",
  1819. "type": "open_collective"
  1820. }
  1821. ],
  1822. "time": "2024-03-23T11:28:51+00:00"
  1823. },
  1824. {
  1825. "name": "hyperf/database",
  1826. "version": "v3.1.24",
  1827. "source": {
  1828. "type": "git",
  1829. "url": "https://github.com/hyperf/database.git",
  1830. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938"
  1831. },
  1832. "dist": {
  1833. "type": "zip",
  1834. "url": "https://api.github.com/repos/hyperf/database/zipball/9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1835. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1836. "shasum": ""
  1837. },
  1838. "require": {
  1839. "hyperf/code-parser": "~3.1.0",
  1840. "hyperf/collection": "~3.1.0",
  1841. "hyperf/macroable": "~3.1.0",
  1842. "hyperf/support": "~3.1.0",
  1843. "hyperf/tappable": "~3.1.0",
  1844. "hyperf/utils": "~3.1.0",
  1845. "nesbot/carbon": "^2.0",
  1846. "php": ">=8.1",
  1847. "psr/container": "^1.0|^2.0",
  1848. "psr/event-dispatcher": "^1.0"
  1849. },
  1850. "suggest": {
  1851. "doctrine/dbal": "Required to rename columns (^3.0).",
  1852. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1853. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1854. },
  1855. "type": "library",
  1856. "extra": {
  1857. "branch-alias": {
  1858. "dev-master": "3.1-dev"
  1859. }
  1860. },
  1861. "autoload": {
  1862. "psr-4": {
  1863. "Hyperf\\Database\\": "src/"
  1864. }
  1865. },
  1866. "notification-url": "https://packagist.org/downloads/",
  1867. "license": [
  1868. "MIT"
  1869. ],
  1870. "description": "A flexible database library.",
  1871. "homepage": "https://hyperf.io",
  1872. "keywords": [
  1873. "database",
  1874. "hyperf",
  1875. "php"
  1876. ],
  1877. "support": {
  1878. "docs": "https://hyperf.wiki",
  1879. "issues": "https://github.com/hyperf/hyperf/issues",
  1880. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1881. "source": "https://github.com/hyperf/hyperf"
  1882. },
  1883. "funding": [
  1884. {
  1885. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1886. "type": "custom"
  1887. },
  1888. {
  1889. "url": "https://opencollective.com/hyperf",
  1890. "type": "open_collective"
  1891. }
  1892. ],
  1893. "time": "2024-05-24T06:14:27+00:00"
  1894. },
  1895. {
  1896. "name": "hyperf/db-connection",
  1897. "version": "v3.1.15",
  1898. "source": {
  1899. "type": "git",
  1900. "url": "https://github.com/hyperf/db-connection.git",
  1901. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  1902. },
  1903. "dist": {
  1904. "type": "zip",
  1905. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  1906. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  1907. "shasum": ""
  1908. },
  1909. "require": {
  1910. "hyperf/database": "~3.1.0",
  1911. "hyperf/di": "~3.1.0",
  1912. "hyperf/framework": "~3.1.0",
  1913. "hyperf/model-listener": "~3.1.0",
  1914. "hyperf/pool": "~3.1.0",
  1915. "hyperf/support": "~3.1.0",
  1916. "hyperf/utils": "~3.1.0",
  1917. "php": ">=8.1",
  1918. "psr/container": "^1.0|^2.0"
  1919. },
  1920. "type": "library",
  1921. "extra": {
  1922. "branch-alias": {
  1923. "dev-master": "3.1-dev"
  1924. },
  1925. "hyperf": {
  1926. "config": "Hyperf\\DbConnection\\ConfigProvider"
  1927. }
  1928. },
  1929. "autoload": {
  1930. "psr-4": {
  1931. "Hyperf\\DbConnection\\": "src/"
  1932. }
  1933. },
  1934. "notification-url": "https://packagist.org/downloads/",
  1935. "license": [
  1936. "MIT"
  1937. ],
  1938. "description": "A hyperf db connection handler for hyperf/database.",
  1939. "homepage": "https://hyperf.io",
  1940. "keywords": [
  1941. "Connection",
  1942. "database",
  1943. "hyperf",
  1944. "php"
  1945. ],
  1946. "support": {
  1947. "docs": "https://hyperf.wiki",
  1948. "issues": "https://github.com/hyperf/hyperf/issues",
  1949. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1950. "source": "https://github.com/hyperf/hyperf"
  1951. },
  1952. "funding": [
  1953. {
  1954. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1955. "type": "custom"
  1956. },
  1957. {
  1958. "url": "https://opencollective.com/hyperf",
  1959. "type": "open_collective"
  1960. }
  1961. ],
  1962. "time": "2024-03-23T11:28:51+00:00"
  1963. },
  1964. {
  1965. "name": "hyperf/di",
  1966. "version": "v3.1.15",
  1967. "source": {
  1968. "type": "git",
  1969. "url": "https://github.com/hyperf/di.git",
  1970. "reference": "681120f158739bde07dc5c761e11be56e8d07109"
  1971. },
  1972. "dist": {
  1973. "type": "zip",
  1974. "url": "https://api.github.com/repos/hyperf/di/zipball/681120f158739bde07dc5c761e11be56e8d07109",
  1975. "reference": "681120f158739bde07dc5c761e11be56e8d07109",
  1976. "shasum": "",
  1977. "mirrors": [
  1978. {
  1979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1980. "preferred": true
  1981. }
  1982. ]
  1983. },
  1984. "require": {
  1985. "doctrine/instantiator": "^1.0",
  1986. "hyperf/code-parser": "~3.1.0",
  1987. "hyperf/pipeline": "~3.1.0",
  1988. "hyperf/stdlib": "~3.1.0",
  1989. "hyperf/support": "~3.1.0",
  1990. "nikic/php-parser": "^4.1",
  1991. "php": ">=8.1",
  1992. "php-di/phpdoc-reader": "^2.2",
  1993. "psr/container": "^1.0|^2.0",
  1994. "symfony/finder": "^5.0|^6.0|^7.0",
  1995. "vlucas/phpdotenv": "^5.0"
  1996. },
  1997. "suggest": {
  1998. "ext-pcntl": "Required to scan annotations.",
  1999. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2000. },
  2001. "type": "library",
  2002. "extra": {
  2003. "branch-alias": {
  2004. "dev-master": "3.1-dev"
  2005. },
  2006. "hyperf": {
  2007. "config": "Hyperf\\Di\\ConfigProvider"
  2008. }
  2009. },
  2010. "autoload": {
  2011. "psr-4": {
  2012. "Hyperf\\Di\\": "src/"
  2013. }
  2014. },
  2015. "notification-url": "https://packagist.org/downloads/",
  2016. "license": [
  2017. "MIT"
  2018. ],
  2019. "description": "A DI for Hyperf.",
  2020. "homepage": "https://hyperf.io",
  2021. "keywords": [
  2022. "annotation",
  2023. "di",
  2024. "hyperf",
  2025. "php",
  2026. "swoole"
  2027. ],
  2028. "support": {
  2029. "docs": "https://hyperf.wiki",
  2030. "issues": "https://github.com/hyperf/hyperf/issues",
  2031. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2032. "source": "https://github.com/hyperf/hyperf"
  2033. },
  2034. "funding": [
  2035. {
  2036. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2037. "type": "custom"
  2038. },
  2039. {
  2040. "url": "https://opencollective.com/hyperf",
  2041. "type": "open_collective"
  2042. }
  2043. ],
  2044. "time": "2024-03-23T11:28:51+00:00"
  2045. },
  2046. {
  2047. "name": "hyperf/dispatcher",
  2048. "version": "v3.1.15",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/hyperf/dispatcher.git",
  2052. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2057. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "hyperf/contract": "~3.1.0",
  2062. "php": ">=8.1",
  2063. "psr/container": "^1.0|^2.0",
  2064. "psr/http-message": "^1.0|^2.0",
  2065. "psr/http-server-middleware": "^1.0"
  2066. },
  2067. "type": "library",
  2068. "extra": {
  2069. "branch-alias": {
  2070. "dev-master": "3.1-dev"
  2071. },
  2072. "hyperf": {
  2073. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2074. }
  2075. },
  2076. "autoload": {
  2077. "psr-4": {
  2078. "Hyperf\\Dispatcher\\": "src/"
  2079. }
  2080. },
  2081. "notification-url": "https://packagist.org/downloads/",
  2082. "license": [
  2083. "MIT"
  2084. ],
  2085. "description": "A HTTP Server for Hyperf.",
  2086. "homepage": "https://hyperf.io",
  2087. "keywords": [
  2088. "dispatcher",
  2089. "filter",
  2090. "hyperf",
  2091. "middleware",
  2092. "php",
  2093. "swoole"
  2094. ],
  2095. "support": {
  2096. "docs": "https://hyperf.wiki",
  2097. "issues": "https://github.com/hyperf/hyperf/issues",
  2098. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2099. "source": "https://github.com/hyperf/hyperf"
  2100. },
  2101. "funding": [
  2102. {
  2103. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2104. "type": "custom"
  2105. },
  2106. {
  2107. "url": "https://opencollective.com/hyperf",
  2108. "type": "open_collective"
  2109. }
  2110. ],
  2111. "time": "2024-03-23T11:28:51+00:00"
  2112. },
  2113. {
  2114. "name": "hyperf/engine",
  2115. "version": "v2.11.0",
  2116. "source": {
  2117. "type": "git",
  2118. "url": "https://github.com/hyperf/engine.git",
  2119. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2120. },
  2121. "dist": {
  2122. "type": "zip",
  2123. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2124. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2125. "shasum": ""
  2126. },
  2127. "require": {
  2128. "hyperf/engine-contract": "~1.10.0",
  2129. "php": ">=8.0"
  2130. },
  2131. "conflict": {
  2132. "ext-swoole": "<5.0"
  2133. },
  2134. "require-dev": {
  2135. "friendsofphp/php-cs-fixer": "^3.0",
  2136. "hyperf/guzzle": "^3.0",
  2137. "hyperf/http-message": "^3.0",
  2138. "mockery/mockery": "^1.5",
  2139. "phpstan/phpstan": "^1.0",
  2140. "phpunit/phpunit": "^9.4",
  2141. "swoole/ide-helper": "5.*"
  2142. },
  2143. "suggest": {
  2144. "ext-sockets": "*",
  2145. "ext-swoole": ">=5.0",
  2146. "hyperf/http-message": "Required to use ResponseEmitter.",
  2147. "psr/http-message": "Required to use WebSocket Frame."
  2148. },
  2149. "type": "library",
  2150. "extra": {
  2151. "branch-alias": {
  2152. "dev-master": "2.11-dev"
  2153. },
  2154. "hyperf": {
  2155. "config": "Hyperf\\Engine\\ConfigProvider"
  2156. }
  2157. },
  2158. "autoload": {
  2159. "files": [
  2160. "src/Functions.php"
  2161. ],
  2162. "psr-4": {
  2163. "Hyperf\\Engine\\": "src/"
  2164. }
  2165. },
  2166. "notification-url": "https://packagist.org/downloads/",
  2167. "license": [
  2168. "MIT"
  2169. ],
  2170. "description": "Coroutine engine provided by swoole.",
  2171. "keywords": [
  2172. "engine",
  2173. "hyperf",
  2174. "php",
  2175. "swoole"
  2176. ],
  2177. "support": {
  2178. "issues": "https://github.com/hyperf/engine/issues",
  2179. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2180. },
  2181. "funding": [
  2182. {
  2183. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2184. "type": "custom"
  2185. },
  2186. {
  2187. "url": "https://opencollective.com/hyperf",
  2188. "type": "open_collective"
  2189. }
  2190. ],
  2191. "time": "2024-04-17T13:36:28+00:00"
  2192. },
  2193. {
  2194. "name": "hyperf/engine-contract",
  2195. "version": "v1.10.1",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/hyperf/engine-contract.git",
  2199. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2204. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "php": ">=8.0"
  2209. },
  2210. "require-dev": {
  2211. "friendsofphp/php-cs-fixer": "^3.0",
  2212. "mockery/mockery": "^1.0",
  2213. "phpstan/phpstan": "^1.0",
  2214. "phpunit/phpunit": ">=7.0",
  2215. "psr/http-message": "^1.0",
  2216. "swoole/ide-helper": "^4.5"
  2217. },
  2218. "suggest": {
  2219. "psr/http-message": "Required to use WebSocket Frame."
  2220. },
  2221. "type": "library",
  2222. "extra": {
  2223. "branch-alias": {
  2224. "dev-master": "1.9-dev"
  2225. }
  2226. },
  2227. "autoload": {
  2228. "psr-4": {
  2229. "Hyperf\\Engine\\Contract\\": "src/"
  2230. }
  2231. },
  2232. "notification-url": "https://packagist.org/downloads/",
  2233. "license": [
  2234. "MIT"
  2235. ],
  2236. "description": "Contract for Coroutine Engine",
  2237. "keywords": [
  2238. "contract",
  2239. "coroutine",
  2240. "engine",
  2241. "hyperf",
  2242. "php"
  2243. ],
  2244. "support": {
  2245. "issues": "https://github.com/hyperf/engine-contract/issues",
  2246. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2247. },
  2248. "funding": [
  2249. {
  2250. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2251. "type": "custom"
  2252. },
  2253. {
  2254. "url": "https://opencollective.com/hyperf",
  2255. "type": "open_collective"
  2256. }
  2257. ],
  2258. "time": "2024-04-17T13:34:51+00:00"
  2259. },
  2260. {
  2261. "name": "hyperf/event",
  2262. "version": "v3.1.15",
  2263. "source": {
  2264. "type": "git",
  2265. "url": "https://github.com/hyperf/event.git",
  2266. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2267. },
  2268. "dist": {
  2269. "type": "zip",
  2270. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2271. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2272. "shasum": ""
  2273. },
  2274. "require": {
  2275. "hyperf/contract": "~3.1.0",
  2276. "hyperf/stdlib": "~3.1.0",
  2277. "php": ">=8.1",
  2278. "psr/event-dispatcher": "^1.0"
  2279. },
  2280. "suggest": {
  2281. "hyperf/di": "Required to use annotatioins."
  2282. },
  2283. "type": "library",
  2284. "extra": {
  2285. "branch-alias": {
  2286. "dev-master": "3.1-dev"
  2287. },
  2288. "hyperf": {
  2289. "config": "Hyperf\\Event\\ConfigProvider"
  2290. }
  2291. },
  2292. "autoload": {
  2293. "psr-4": {
  2294. "Hyperf\\Event\\": "src/"
  2295. }
  2296. },
  2297. "notification-url": "https://packagist.org/downloads/",
  2298. "license": [
  2299. "MIT"
  2300. ],
  2301. "description": "an event manager that implements PSR-14.",
  2302. "homepage": "https://hyperf.io",
  2303. "keywords": [
  2304. "event",
  2305. "hyperf",
  2306. "php",
  2307. "swoole"
  2308. ],
  2309. "support": {
  2310. "docs": "https://hyperf.wiki",
  2311. "issues": "https://github.com/hyperf/hyperf/issues",
  2312. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2313. "source": "https://github.com/hyperf/hyperf"
  2314. },
  2315. "funding": [
  2316. {
  2317. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2318. "type": "custom"
  2319. },
  2320. {
  2321. "url": "https://opencollective.com/hyperf",
  2322. "type": "open_collective"
  2323. }
  2324. ],
  2325. "time": "2024-03-23T11:28:51+00:00"
  2326. },
  2327. {
  2328. "name": "hyperf/exception-handler",
  2329. "version": "v3.1.22",
  2330. "source": {
  2331. "type": "git",
  2332. "url": "https://github.com/hyperf/exception-handler.git",
  2333. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2334. },
  2335. "dist": {
  2336. "type": "zip",
  2337. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2338. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2339. "shasum": ""
  2340. },
  2341. "require": {
  2342. "hyperf/context": "~3.1.0",
  2343. "hyperf/contract": "~3.1.0",
  2344. "hyperf/dispatcher": "~3.1.0",
  2345. "hyperf/http-message": "~3.1.0",
  2346. "hyperf/stdlib": "~3.1.0",
  2347. "hyperf/support": "~3.1.0",
  2348. "php": ">=8.1",
  2349. "psr/container": "^1.0|^2.0",
  2350. "psr/http-message": "^1.0|^2.0",
  2351. "swow/psr7-plus": "^1.0"
  2352. },
  2353. "suggest": {
  2354. "hyperf/di": "Required to use #[ExceptionHandler]",
  2355. "hyperf/event": "Required to use listeners",
  2356. "hyperf/framework": "Required to use listeners",
  2357. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2358. },
  2359. "type": "library",
  2360. "extra": {
  2361. "branch-alias": {
  2362. "dev-master": "3.1-dev"
  2363. },
  2364. "hyperf": {
  2365. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2366. }
  2367. },
  2368. "autoload": {
  2369. "psr-4": {
  2370. "Hyperf\\ExceptionHandler\\": "src/"
  2371. }
  2372. },
  2373. "notification-url": "https://packagist.org/downloads/",
  2374. "license": [
  2375. "MIT"
  2376. ],
  2377. "description": "Exception handler for hyperf",
  2378. "homepage": "https://hyperf.io",
  2379. "keywords": [
  2380. "exception-handler",
  2381. "php",
  2382. "swoole"
  2383. ],
  2384. "support": {
  2385. "docs": "https://hyperf.wiki",
  2386. "issues": "https://github.com/hyperf/hyperf/issues",
  2387. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2388. "source": "https://github.com/hyperf/hyperf"
  2389. },
  2390. "funding": [
  2391. {
  2392. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2393. "type": "custom"
  2394. },
  2395. {
  2396. "url": "https://opencollective.com/hyperf",
  2397. "type": "open_collective"
  2398. }
  2399. ],
  2400. "time": "2024-05-15T07:12:41+00:00"
  2401. },
  2402. {
  2403. "name": "hyperf/framework",
  2404. "version": "v3.1.23",
  2405. "source": {
  2406. "type": "git",
  2407. "url": "https://github.com/hyperf/framework.git",
  2408. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2409. },
  2410. "dist": {
  2411. "type": "zip",
  2412. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2413. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2414. "shasum": ""
  2415. },
  2416. "require": {
  2417. "fig/http-message-util": "^1.1.2",
  2418. "hyperf/contract": "~3.1.0",
  2419. "hyperf/coordinator": "~3.1.0",
  2420. "hyperf/coroutine": "~3.1.0",
  2421. "php": ">=8.1",
  2422. "psr/container": "^1.0|^2.0",
  2423. "psr/event-dispatcher": "^1.0",
  2424. "psr/log": "^1.0|^2.0|^3.0"
  2425. },
  2426. "suggest": {
  2427. "ext-swoole": "Required to use swoole engine.",
  2428. "hyperf/command": "Required to use Command annotation.",
  2429. "hyperf/di": "Required to use Command annotation.",
  2430. "hyperf/dispatcher": "Required to use BootApplication event.",
  2431. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2432. },
  2433. "type": "library",
  2434. "extra": {
  2435. "branch-alias": {
  2436. "dev-master": "3.1-dev"
  2437. },
  2438. "hyperf": {
  2439. "config": "Hyperf\\Framework\\ConfigProvider"
  2440. }
  2441. },
  2442. "autoload": {
  2443. "psr-4": {
  2444. "Hyperf\\Framework\\": "src/"
  2445. }
  2446. },
  2447. "notification-url": "https://packagist.org/downloads/",
  2448. "license": [
  2449. "MIT"
  2450. ],
  2451. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2452. "homepage": "https://hyperf.io",
  2453. "keywords": [
  2454. "Microservice",
  2455. "framework",
  2456. "hyperf",
  2457. "middleware",
  2458. "php",
  2459. "swoole"
  2460. ],
  2461. "support": {
  2462. "docs": "https://hyperf.wiki",
  2463. "issues": "https://github.com/hyperf/hyperf/issues",
  2464. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2465. "source": "https://github.com/hyperf/hyperf"
  2466. },
  2467. "funding": [
  2468. {
  2469. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2470. "type": "custom"
  2471. },
  2472. {
  2473. "url": "https://opencollective.com/hyperf",
  2474. "type": "open_collective"
  2475. }
  2476. ],
  2477. "time": "2024-05-21T05:43:48+00:00"
  2478. },
  2479. {
  2480. "name": "hyperf/guzzle",
  2481. "version": "v3.1.15",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://github.com/hyperf/guzzle.git",
  2485. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2490. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2491. "shasum": ""
  2492. },
  2493. "require": {
  2494. "guzzlehttp/guzzle": "^6.3|^7.0",
  2495. "php": ">=8.1",
  2496. "psr/container": "^1.0|^2.0",
  2497. "psr/http-message": "^1.0|^2.0"
  2498. },
  2499. "suggest": {
  2500. "ext-curl": "Required for CURL handler support",
  2501. "hyperf/pool": "Required to use pool handler."
  2502. },
  2503. "type": "library",
  2504. "extra": {
  2505. "branch-alias": {
  2506. "dev-master": "3.1-dev"
  2507. },
  2508. "hyperf": {
  2509. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2510. }
  2511. },
  2512. "autoload": {
  2513. "psr-4": {
  2514. "Hyperf\\Guzzle\\": "src/"
  2515. }
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "description": "Swoole coroutine handler for guzzle",
  2522. "keywords": [
  2523. "Guzzle",
  2524. "handler",
  2525. "php",
  2526. "swoole"
  2527. ],
  2528. "support": {
  2529. "issues": "https://github.com/hyperf/guzzle/issues",
  2530. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2531. },
  2532. "funding": [
  2533. {
  2534. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2535. "type": "custom"
  2536. },
  2537. {
  2538. "url": "https://opencollective.com/hyperf",
  2539. "type": "open_collective"
  2540. }
  2541. ],
  2542. "time": "2024-03-23T11:28:51+00:00"
  2543. },
  2544. {
  2545. "name": "hyperf/http-message",
  2546. "version": "v3.1.19",
  2547. "source": {
  2548. "type": "git",
  2549. "url": "https://github.com/hyperf/http-message.git",
  2550. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e"
  2551. },
  2552. "dist": {
  2553. "type": "zip",
  2554. "url": "https://api.github.com/repos/hyperf/http-message/zipball/f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2555. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2556. "shasum": ""
  2557. },
  2558. "require": {
  2559. "hyperf/codec": "~3.1.0",
  2560. "hyperf/engine": "^2.11",
  2561. "hyperf/support": "~3.1.0",
  2562. "laminas/laminas-mime": "^2.7",
  2563. "php": ">=8.1",
  2564. "psr/http-message": "^1.0|^2.0",
  2565. "swow/psr7-plus": "^1.0"
  2566. },
  2567. "suggest": {
  2568. "psr/container": "Required to replace RequestParserInterface."
  2569. },
  2570. "type": "library",
  2571. "extra": {
  2572. "branch-alias": {
  2573. "dev-master": "3.1-dev"
  2574. },
  2575. "hyperf": {
  2576. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2577. }
  2578. },
  2579. "autoload": {
  2580. "psr-4": {
  2581. "Hyperf\\HttpMessage\\": "src/"
  2582. }
  2583. },
  2584. "notification-url": "https://packagist.org/downloads/",
  2585. "license": [
  2586. "MIT"
  2587. ],
  2588. "description": "microservice framework base on swoole",
  2589. "keywords": [
  2590. "http-message",
  2591. "hyperf",
  2592. "php",
  2593. "swoole"
  2594. ],
  2595. "support": {
  2596. "issues": "https://github.com/hyperf/http-message/issues",
  2597. "source": "https://github.com/hyperf/http-message/tree/v3.1.19"
  2598. },
  2599. "funding": [
  2600. {
  2601. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2602. "type": "custom"
  2603. },
  2604. {
  2605. "url": "https://opencollective.com/hyperf",
  2606. "type": "open_collective"
  2607. }
  2608. ],
  2609. "time": "2024-04-17T13:55:51+00:00"
  2610. },
  2611. {
  2612. "name": "hyperf/http-server",
  2613. "version": "v3.1.17",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://github.com/hyperf/http-server.git",
  2617. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2622. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2623. "shasum": ""
  2624. },
  2625. "require": {
  2626. "hyperf/codec": "~3.1.0",
  2627. "hyperf/collection": "~3.1.0",
  2628. "hyperf/context": "~3.1.0",
  2629. "hyperf/contract": "~3.1.0",
  2630. "hyperf/coroutine": "~3.1.0",
  2631. "hyperf/dispatcher": "~3.1.0",
  2632. "hyperf/event": "~3.1.0",
  2633. "hyperf/exception-handler": "~3.1.0",
  2634. "hyperf/http-message": "~3.1.0",
  2635. "hyperf/macroable": "~3.1.0",
  2636. "hyperf/serializer": "~3.1.0",
  2637. "hyperf/server": "~3.1.0",
  2638. "hyperf/stdlib": "~3.1.0",
  2639. "hyperf/support": "~3.1.0",
  2640. "nikic/fast-route": "^1.3",
  2641. "php": ">=8.1",
  2642. "psr/container": "^1.0|^2.0",
  2643. "swow/psr7-plus": "^1.0"
  2644. },
  2645. "suggest": {
  2646. "hyperf/di": "Required to use annotations."
  2647. },
  2648. "type": "library",
  2649. "extra": {
  2650. "branch-alias": {
  2651. "dev-master": "3.1-dev"
  2652. },
  2653. "hyperf": {
  2654. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2655. }
  2656. },
  2657. "autoload": {
  2658. "psr-4": {
  2659. "Hyperf\\HttpServer\\": "src/"
  2660. }
  2661. },
  2662. "notification-url": "https://packagist.org/downloads/",
  2663. "license": [
  2664. "MIT"
  2665. ],
  2666. "description": "A HTTP Server for Hyperf.",
  2667. "homepage": "https://hyperf.io",
  2668. "keywords": [
  2669. "http",
  2670. "http-server",
  2671. "hyperf",
  2672. "php",
  2673. "swoole"
  2674. ],
  2675. "support": {
  2676. "docs": "https://hyperf.wiki",
  2677. "issues": "https://github.com/hyperf/hyperf/issues",
  2678. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2679. "source": "https://github.com/hyperf/hyperf"
  2680. },
  2681. "funding": [
  2682. {
  2683. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2684. "type": "custom"
  2685. },
  2686. {
  2687. "url": "https://opencollective.com/hyperf",
  2688. "type": "open_collective"
  2689. }
  2690. ],
  2691. "time": "2024-04-08T07:53:54+00:00"
  2692. },
  2693. {
  2694. "name": "hyperf/json-rpc",
  2695. "version": "v3.1.23",
  2696. "source": {
  2697. "type": "git",
  2698. "url": "https://github.com/hyperf/json-rpc.git",
  2699. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  2700. },
  2701. "dist": {
  2702. "type": "zip",
  2703. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2704. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2705. "shasum": ""
  2706. },
  2707. "require": {
  2708. "hyperf/codec": "~3.1.0",
  2709. "hyperf/context": "~3.1.0",
  2710. "hyperf/contract": "~3.1.0",
  2711. "hyperf/engine": "^2.0",
  2712. "hyperf/http-message": "~3.1.0",
  2713. "hyperf/load-balancer": "~3.1.0",
  2714. "hyperf/rpc": "~3.1.0",
  2715. "hyperf/serializer": "~3.1.0",
  2716. "hyperf/support": "~3.1.0",
  2717. "hyperf/utils": "~3.1.0",
  2718. "php": ">=8.1",
  2719. "psr/container": "^1.0|^2.0",
  2720. "swow/psr7-plus": "^1.0"
  2721. },
  2722. "suggest": {
  2723. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2724. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2725. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2726. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2727. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2728. },
  2729. "type": "library",
  2730. "extra": {
  2731. "branch-alias": {
  2732. "dev-master": "3.1-dev"
  2733. },
  2734. "hyperf": {
  2735. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2736. }
  2737. },
  2738. "autoload": {
  2739. "psr-4": {
  2740. "Hyperf\\JsonRpc\\": "src/"
  2741. }
  2742. },
  2743. "notification-url": "https://packagist.org/downloads/",
  2744. "license": [
  2745. "MIT"
  2746. ],
  2747. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2748. "homepage": "https://hyperf.io",
  2749. "keywords": [
  2750. "hyperf",
  2751. "json-rpc",
  2752. "php",
  2753. "swoole"
  2754. ],
  2755. "support": {
  2756. "docs": "https://hyperf.wiki",
  2757. "issues": "https://github.com/hyperf/hyperf/issues",
  2758. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2759. "source": "https://github.com/hyperf/hyperf"
  2760. },
  2761. "funding": [
  2762. {
  2763. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2764. "type": "custom"
  2765. },
  2766. {
  2767. "url": "https://opencollective.com/hyperf",
  2768. "type": "open_collective"
  2769. }
  2770. ],
  2771. "time": "2024-05-23T03:43:58+00:00"
  2772. },
  2773. {
  2774. "name": "hyperf/load-balancer",
  2775. "version": "v3.1.15",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://github.com/hyperf/load-balancer.git",
  2779. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  2780. },
  2781. "dist": {
  2782. "type": "zip",
  2783. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2784. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2785. "shasum": ""
  2786. },
  2787. "require": {
  2788. "hyperf/coordinator": "~3.1.0",
  2789. "hyperf/coroutine": "~3.1.0",
  2790. "markrogoyski/math-php": "^2.0",
  2791. "php": ">=8.1",
  2792. "psr/log": "^1.0|^2.0|^3.0"
  2793. },
  2794. "type": "library",
  2795. "extra": {
  2796. "branch-alias": {
  2797. "dev-master": "3.1-dev"
  2798. },
  2799. "hyperf": {
  2800. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2801. }
  2802. },
  2803. "autoload": {
  2804. "psr-4": {
  2805. "Hyperf\\LoadBalancer\\": "src/"
  2806. }
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "MIT"
  2811. ],
  2812. "description": "A load balancer library for Hyperf.",
  2813. "homepage": "https://hyperf.io",
  2814. "keywords": [
  2815. "hyperf",
  2816. "load-balancer",
  2817. "php",
  2818. "swoole"
  2819. ],
  2820. "support": {
  2821. "docs": "https://hyperf.wiki",
  2822. "issues": "https://github.com/hyperf/hyperf/issues",
  2823. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2824. "source": "https://github.com/hyperf/hyperf"
  2825. },
  2826. "funding": [
  2827. {
  2828. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2829. "type": "custom"
  2830. },
  2831. {
  2832. "url": "https://opencollective.com/hyperf",
  2833. "type": "open_collective"
  2834. }
  2835. ],
  2836. "time": "2024-03-23T11:28:51+00:00"
  2837. },
  2838. {
  2839. "name": "hyperf/logger",
  2840. "version": "v3.1.15",
  2841. "source": {
  2842. "type": "git",
  2843. "url": "https://github.com/hyperf/logger.git",
  2844. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  2845. },
  2846. "dist": {
  2847. "type": "zip",
  2848. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  2849. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  2850. "shasum": ""
  2851. },
  2852. "require": {
  2853. "hyperf/contract": "~3.1.0",
  2854. "hyperf/support": "~3.1.0",
  2855. "hyperf/utils": "~3.1.0",
  2856. "monolog/monolog": "^2.7|^3.1",
  2857. "php": ">=8.1",
  2858. "psr/container": "^1.0|^2.0",
  2859. "psr/log": "^1.0|^2.0|^3.0"
  2860. },
  2861. "type": "library",
  2862. "extra": {
  2863. "branch-alias": {
  2864. "dev-master": "3.1-dev"
  2865. },
  2866. "hyperf": {
  2867. "config": "Hyperf\\Logger\\ConfigProvider"
  2868. }
  2869. },
  2870. "autoload": {
  2871. "psr-4": {
  2872. "Hyperf\\Logger\\": "src/"
  2873. }
  2874. },
  2875. "notification-url": "https://packagist.org/downloads/",
  2876. "license": [
  2877. "MIT"
  2878. ],
  2879. "description": "A logger component for hyperf.",
  2880. "homepage": "https://hyperf.io",
  2881. "keywords": [
  2882. "hyperf",
  2883. "logger",
  2884. "php"
  2885. ],
  2886. "support": {
  2887. "docs": "https://hyperf.wiki",
  2888. "issues": "https://github.com/hyperf/hyperf/issues",
  2889. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2890. "source": "https://github.com/hyperf/hyperf"
  2891. },
  2892. "funding": [
  2893. {
  2894. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2895. "type": "custom"
  2896. },
  2897. {
  2898. "url": "https://opencollective.com/hyperf",
  2899. "type": "open_collective"
  2900. }
  2901. ],
  2902. "time": "2024-03-23T11:28:51+00:00"
  2903. },
  2904. {
  2905. "name": "hyperf/macroable",
  2906. "version": "v3.1.23",
  2907. "source": {
  2908. "type": "git",
  2909. "url": "https://github.com/hyperf/macroable.git",
  2910. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  2911. },
  2912. "dist": {
  2913. "type": "zip",
  2914. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  2915. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  2916. "shasum": ""
  2917. },
  2918. "require": {
  2919. "php": ">=8.1"
  2920. },
  2921. "type": "library",
  2922. "extra": {
  2923. "branch-alias": {
  2924. "dev-master": "3.1-dev"
  2925. }
  2926. },
  2927. "autoload": {
  2928. "psr-4": {
  2929. "Hyperf\\Macroable\\": "src/"
  2930. }
  2931. },
  2932. "notification-url": "https://packagist.org/downloads/",
  2933. "license": [
  2934. "MIT"
  2935. ],
  2936. "description": "Hyperf Macroable package which come from illuminate/macroable",
  2937. "homepage": "https://hyperf.io",
  2938. "keywords": [
  2939. "hyperf",
  2940. "macroable",
  2941. "php",
  2942. "swoole"
  2943. ],
  2944. "support": {
  2945. "docs": "https://hyperf.wiki",
  2946. "issues": "https://github.com/hyperf/hyperf/issues",
  2947. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2948. "source": "https://github.com/hyperf/hyperf"
  2949. },
  2950. "funding": [
  2951. {
  2952. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2953. "type": "custom"
  2954. },
  2955. {
  2956. "url": "https://opencollective.com/hyperf",
  2957. "type": "open_collective"
  2958. }
  2959. ],
  2960. "time": "2024-05-20T09:55:40+00:00"
  2961. },
  2962. {
  2963. "name": "hyperf/memory",
  2964. "version": "v3.1.15",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/hyperf/memory.git",
  2968. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  2973. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  2974. "shasum": ""
  2975. },
  2976. "require": {
  2977. "php": ">=8.1"
  2978. },
  2979. "type": "library",
  2980. "extra": {
  2981. "branch-alias": {
  2982. "dev-master": "3.1-dev"
  2983. },
  2984. "hyperf": {
  2985. "config": "Hyperf\\Memory\\ConfigProvider"
  2986. }
  2987. },
  2988. "autoload": {
  2989. "psr-4": {
  2990. "Hyperf\\Memory\\": "src/"
  2991. }
  2992. },
  2993. "notification-url": "https://packagist.org/downloads/",
  2994. "license": [
  2995. "MIT"
  2996. ],
  2997. "description": "An independent component that use to operate and manage memory.",
  2998. "homepage": "https://hyperf.io",
  2999. "keywords": [
  3000. "hyperf",
  3001. "memory",
  3002. "php",
  3003. "swoole"
  3004. ],
  3005. "support": {
  3006. "docs": "https://hyperf.wiki",
  3007. "issues": "https://github.com/hyperf/hyperf/issues",
  3008. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3009. "source": "https://github.com/hyperf/hyperf"
  3010. },
  3011. "funding": [
  3012. {
  3013. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3014. "type": "custom"
  3015. },
  3016. {
  3017. "url": "https://opencollective.com/hyperf",
  3018. "type": "open_collective"
  3019. }
  3020. ],
  3021. "time": "2024-03-23T11:28:51+00:00"
  3022. },
  3023. {
  3024. "name": "hyperf/model-listener",
  3025. "version": "v3.1.15",
  3026. "source": {
  3027. "type": "git",
  3028. "url": "https://github.com/hyperf/model-listener.git",
  3029. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3030. },
  3031. "dist": {
  3032. "type": "zip",
  3033. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3034. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3035. "shasum": ""
  3036. },
  3037. "require": {
  3038. "hyperf/contract": "~3.1.0",
  3039. "hyperf/database": "~3.1.0",
  3040. "hyperf/di": "~3.1.0",
  3041. "hyperf/event": "~3.1.0",
  3042. "hyperf/support": "~3.1.0",
  3043. "hyperf/utils": "~3.1.0",
  3044. "php": ">=8.1",
  3045. "psr/container": "^1.0|^2.0"
  3046. },
  3047. "type": "library",
  3048. "extra": {
  3049. "branch-alias": {
  3050. "dev-master": "3.1-dev"
  3051. },
  3052. "hyperf": {
  3053. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3054. }
  3055. },
  3056. "autoload": {
  3057. "psr-4": {
  3058. "Hyperf\\ModelListener\\": "src/"
  3059. }
  3060. },
  3061. "notification-url": "https://packagist.org/downloads/",
  3062. "license": [
  3063. "MIT"
  3064. ],
  3065. "description": "A model listener for Hyperf.",
  3066. "homepage": "https://hyperf.io",
  3067. "keywords": [
  3068. "hyperf",
  3069. "model-listener",
  3070. "php",
  3071. "swoole"
  3072. ],
  3073. "support": {
  3074. "docs": "https://hyperf.wiki",
  3075. "issues": "https://github.com/hyperf/hyperf/issues",
  3076. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3077. "source": "https://github.com/hyperf/hyperf"
  3078. },
  3079. "funding": [
  3080. {
  3081. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3082. "type": "custom"
  3083. },
  3084. {
  3085. "url": "https://opencollective.com/hyperf",
  3086. "type": "open_collective"
  3087. }
  3088. ],
  3089. "time": "2024-03-23T11:28:51+00:00"
  3090. },
  3091. {
  3092. "name": "hyperf/nacos",
  3093. "version": "v3.1.15",
  3094. "source": {
  3095. "type": "git",
  3096. "url": "https://github.com/hyperf/nacos.git",
  3097. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3098. },
  3099. "dist": {
  3100. "type": "zip",
  3101. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3102. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3103. "shasum": ""
  3104. },
  3105. "require": {
  3106. "guzzlehttp/guzzle": "^6.5|^7.0",
  3107. "hyperf/codec": "~3.1.0",
  3108. "hyperf/contract": "~3.1.0",
  3109. "hyperf/support": "~3.1.0",
  3110. "hyperf/utils": "~3.1.0",
  3111. "jetbrains/phpstorm-attributes": "^1.0",
  3112. "php": ">=8.1"
  3113. },
  3114. "type": "library",
  3115. "extra": {
  3116. "branch-alias": {
  3117. "dev-master": "3.1-dev"
  3118. },
  3119. "hyperf": {
  3120. "config": "Hyperf\\Nacos\\ConfigProvider"
  3121. }
  3122. },
  3123. "autoload": {
  3124. "psr-4": {
  3125. "Hyperf\\Nacos\\": "src/"
  3126. }
  3127. },
  3128. "notification-url": "https://packagist.org/downloads/",
  3129. "license": [
  3130. "MIT"
  3131. ],
  3132. "description": "Nacos SDK",
  3133. "keywords": [
  3134. "hyperf",
  3135. "nacos",
  3136. "php"
  3137. ],
  3138. "support": {
  3139. "issues": "https://github.com/hyperf/nacos/issues",
  3140. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3141. },
  3142. "funding": [
  3143. {
  3144. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3145. "type": "custom"
  3146. },
  3147. {
  3148. "url": "https://opencollective.com/hyperf",
  3149. "type": "open_collective"
  3150. }
  3151. ],
  3152. "time": "2024-03-23T11:28:51+00:00"
  3153. },
  3154. {
  3155. "name": "hyperf/pipeline",
  3156. "version": "v3.1.15",
  3157. "source": {
  3158. "type": "git",
  3159. "url": "https://github.com/hyperf/pipeline.git",
  3160. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3161. },
  3162. "dist": {
  3163. "type": "zip",
  3164. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3165. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3166. "shasum": ""
  3167. },
  3168. "require": {
  3169. "php": ">=8.1",
  3170. "psr/container": "^1.0|^2.0"
  3171. },
  3172. "type": "library",
  3173. "extra": {
  3174. "branch-alias": {
  3175. "dev-master": "3.1-dev"
  3176. }
  3177. },
  3178. "autoload": {
  3179. "psr-4": {
  3180. "Hyperf\\Pipeline\\": "src/"
  3181. }
  3182. },
  3183. "notification-url": "https://packagist.org/downloads/",
  3184. "license": [
  3185. "MIT"
  3186. ],
  3187. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3188. "homepage": "https://hyperf.io",
  3189. "keywords": [
  3190. "hyperf",
  3191. "php",
  3192. "pipeline",
  3193. "swoole"
  3194. ],
  3195. "support": {
  3196. "docs": "https://hyperf.wiki",
  3197. "issues": "https://github.com/hyperf/hyperf/issues",
  3198. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3199. "source": "https://github.com/hyperf/hyperf"
  3200. },
  3201. "funding": [
  3202. {
  3203. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3204. "type": "custom"
  3205. },
  3206. {
  3207. "url": "https://opencollective.com/hyperf",
  3208. "type": "open_collective"
  3209. }
  3210. ],
  3211. "time": "2024-03-23T11:28:51+00:00"
  3212. },
  3213. {
  3214. "name": "hyperf/pool",
  3215. "version": "v3.1.15",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/hyperf/pool.git",
  3219. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3224. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3225. "shasum": ""
  3226. },
  3227. "require": {
  3228. "hyperf/contract": "~3.1.0",
  3229. "hyperf/support": "~3.1.0",
  3230. "hyperf/utils": "~3.1.0",
  3231. "php": ">=8.1",
  3232. "psr/container": "^1.0|^2.0"
  3233. },
  3234. "suggest": {
  3235. "psr/event-dispatcher": "Required to use events."
  3236. },
  3237. "type": "library",
  3238. "extra": {
  3239. "branch-alias": {
  3240. "dev-master": "3.1-dev"
  3241. },
  3242. "hyperf": {
  3243. "config": "Hyperf\\Pool\\ConfigProvider"
  3244. }
  3245. },
  3246. "autoload": {
  3247. "psr-4": {
  3248. "Hyperf\\Pool\\": "src/"
  3249. }
  3250. },
  3251. "notification-url": "https://packagist.org/downloads/",
  3252. "license": [
  3253. "MIT"
  3254. ],
  3255. "description": "An independent universal connection pool component.",
  3256. "homepage": "https://hyperf.io",
  3257. "keywords": [
  3258. "connection-pool",
  3259. "hyperf",
  3260. "php",
  3261. "swoole"
  3262. ],
  3263. "support": {
  3264. "docs": "https://hyperf.wiki",
  3265. "issues": "https://github.com/hyperf/hyperf/issues",
  3266. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3267. "source": "https://github.com/hyperf/hyperf"
  3268. },
  3269. "funding": [
  3270. {
  3271. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3272. "type": "custom"
  3273. },
  3274. {
  3275. "url": "https://opencollective.com/hyperf",
  3276. "type": "open_collective"
  3277. }
  3278. ],
  3279. "time": "2024-03-23T11:28:51+00:00"
  3280. },
  3281. {
  3282. "name": "hyperf/process",
  3283. "version": "v3.1.15",
  3284. "source": {
  3285. "type": "git",
  3286. "url": "https://github.com/hyperf/process.git",
  3287. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3288. },
  3289. "dist": {
  3290. "type": "zip",
  3291. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3292. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3293. "shasum": ""
  3294. },
  3295. "require": {
  3296. "hyperf/contract": "~3.1.0",
  3297. "hyperf/support": "~3.1.0",
  3298. "hyperf/utils": "~3.1.0",
  3299. "php": ">=8.1",
  3300. "psr/container": "^1.0|^2.0",
  3301. "psr/event-dispatcher": "^1.0"
  3302. },
  3303. "suggest": {
  3304. "hyperf/di": "Required to use annotations.",
  3305. "hyperf/event": "Required to dump the message before and after process.",
  3306. "hyperf/framework": "Required to use BootProcessListener."
  3307. },
  3308. "type": "library",
  3309. "extra": {
  3310. "branch-alias": {
  3311. "dev-master": "3.1-dev"
  3312. },
  3313. "hyperf": {
  3314. "config": "Hyperf\\Process\\ConfigProvider"
  3315. }
  3316. },
  3317. "autoload": {
  3318. "psr-4": {
  3319. "Hyperf\\Process\\": "src/"
  3320. }
  3321. },
  3322. "notification-url": "https://packagist.org/downloads/",
  3323. "license": [
  3324. "MIT"
  3325. ],
  3326. "description": "A process component for hyperf.",
  3327. "homepage": "https://hyperf.io",
  3328. "keywords": [
  3329. "hyperf",
  3330. "php",
  3331. "process"
  3332. ],
  3333. "support": {
  3334. "docs": "https://hyperf.wiki",
  3335. "issues": "https://github.com/hyperf/hyperf/issues",
  3336. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3337. "source": "https://github.com/hyperf/hyperf"
  3338. },
  3339. "funding": [
  3340. {
  3341. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3342. "type": "custom"
  3343. },
  3344. {
  3345. "url": "https://opencollective.com/hyperf",
  3346. "type": "open_collective"
  3347. }
  3348. ],
  3349. "time": "2024-03-23T11:28:51+00:00"
  3350. },
  3351. {
  3352. "name": "hyperf/redis",
  3353. "version": "v3.1.27",
  3354. "source": {
  3355. "type": "git",
  3356. "url": "https://github.com/hyperf/redis.git",
  3357. "reference": "535f5f107b6d531b56fabe017a5f544cc53fc194"
  3358. },
  3359. "dist": {
  3360. "type": "zip",
  3361. "url": "https://api.github.com/repos/hyperf/redis/zipball/535f5f107b6d531b56fabe017a5f544cc53fc194",
  3362. "reference": "535f5f107b6d531b56fabe017a5f544cc53fc194",
  3363. "shasum": "",
  3364. "mirrors": [
  3365. {
  3366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3367. "preferred": true
  3368. }
  3369. ]
  3370. },
  3371. "require": {
  3372. "ext-redis": "^5.0 || ^6.0",
  3373. "hyperf/contract": "~3.1.0",
  3374. "hyperf/pool": "~3.1.0",
  3375. "hyperf/support": "~3.1.0",
  3376. "hyperf/tappable": "~3.1.0",
  3377. "hyperf/utils": "~3.1.0",
  3378. "php": ">=8.1",
  3379. "psr/container": "^1.0 || ^2.0"
  3380. },
  3381. "suggest": {
  3382. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3383. "hyperf/di": "Create the RedisPool via dependency injection."
  3384. },
  3385. "type": "library",
  3386. "extra": {
  3387. "branch-alias": {
  3388. "dev-master": "3.1-dev"
  3389. },
  3390. "hyperf": {
  3391. "config": "Hyperf\\Redis\\ConfigProvider"
  3392. }
  3393. },
  3394. "autoload": {
  3395. "psr-4": {
  3396. "Hyperf\\Redis\\": "src/"
  3397. }
  3398. },
  3399. "notification-url": "https://packagist.org/downloads/",
  3400. "license": [
  3401. "MIT"
  3402. ],
  3403. "description": "A redis component for hyperf.",
  3404. "homepage": "https://hyperf.io",
  3405. "keywords": [
  3406. "hyperf",
  3407. "php",
  3408. "pool",
  3409. "redis"
  3410. ],
  3411. "support": {
  3412. "docs": "https://hyperf.wiki",
  3413. "issues": "https://github.com/hyperf/hyperf/issues",
  3414. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3415. "source": "https://github.com/hyperf/hyperf"
  3416. },
  3417. "funding": [
  3418. {
  3419. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3420. "type": "custom"
  3421. },
  3422. {
  3423. "url": "https://opencollective.com/hyperf",
  3424. "type": "open_collective"
  3425. }
  3426. ],
  3427. "time": "2024-06-17T01:51:06+00:00"
  3428. },
  3429. {
  3430. "name": "hyperf/rpc",
  3431. "version": "v3.1.15",
  3432. "source": {
  3433. "type": "git",
  3434. "url": "https://github.com/hyperf/rpc.git",
  3435. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3436. },
  3437. "dist": {
  3438. "type": "zip",
  3439. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3440. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3441. "shasum": ""
  3442. },
  3443. "require": {
  3444. "hyperf/codec": "~3.1.0",
  3445. "hyperf/contract": "~3.1.0",
  3446. "hyperf/support": "~3.1.0",
  3447. "jetbrains/phpstorm-attributes": "^1.0",
  3448. "php": ">=8.1"
  3449. },
  3450. "type": "library",
  3451. "extra": {
  3452. "branch-alias": {
  3453. "dev-master": "3.1-dev"
  3454. },
  3455. "hyperf": []
  3456. },
  3457. "autoload": {
  3458. "psr-4": {
  3459. "Hyperf\\Rpc\\": "src/"
  3460. }
  3461. },
  3462. "notification-url": "https://packagist.org/downloads/",
  3463. "license": [
  3464. "MIT"
  3465. ],
  3466. "description": "A rpc basic library for Hyperf.",
  3467. "homepage": "https://hyperf.io",
  3468. "keywords": [
  3469. "hyperf",
  3470. "php",
  3471. "rpc",
  3472. "swoole"
  3473. ],
  3474. "support": {
  3475. "docs": "https://hyperf.wiki",
  3476. "issues": "https://github.com/hyperf/hyperf/issues",
  3477. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3478. "source": "https://github.com/hyperf/hyperf"
  3479. },
  3480. "funding": [
  3481. {
  3482. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3483. "type": "custom"
  3484. },
  3485. {
  3486. "url": "https://opencollective.com/hyperf",
  3487. "type": "open_collective"
  3488. }
  3489. ],
  3490. "time": "2024-03-23T11:28:51+00:00"
  3491. },
  3492. {
  3493. "name": "hyperf/rpc-server",
  3494. "version": "v3.1.20",
  3495. "source": {
  3496. "type": "git",
  3497. "url": "https://github.com/hyperf/rpc-server.git",
  3498. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3499. },
  3500. "dist": {
  3501. "type": "zip",
  3502. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3503. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3504. "shasum": ""
  3505. },
  3506. "require": {
  3507. "hyperf/http-server": "~3.1.0",
  3508. "hyperf/rpc": "~3.1.0",
  3509. "php": ">=8.1"
  3510. },
  3511. "suggest": {
  3512. "hyperf/di": "Required to use annotations."
  3513. },
  3514. "type": "library",
  3515. "extra": {
  3516. "branch-alias": {
  3517. "dev-master": "3.1-dev"
  3518. },
  3519. "hyperf": {
  3520. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3521. }
  3522. },
  3523. "autoload": {
  3524. "psr-4": {
  3525. "Hyperf\\RpcServer\\": "src/"
  3526. }
  3527. },
  3528. "notification-url": "https://packagist.org/downloads/",
  3529. "license": [
  3530. "MIT"
  3531. ],
  3532. "description": "An abstract rpc server component for Hyperf.",
  3533. "homepage": "https://hyperf.io",
  3534. "keywords": [
  3535. "hyperf",
  3536. "php",
  3537. "rpc",
  3538. "rpc-server",
  3539. "swoole"
  3540. ],
  3541. "support": {
  3542. "docs": "https://hyperf.wiki",
  3543. "issues": "https://github.com/hyperf/hyperf/issues",
  3544. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3545. "source": "https://github.com/hyperf/hyperf"
  3546. },
  3547. "funding": [
  3548. {
  3549. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3550. "type": "custom"
  3551. },
  3552. {
  3553. "url": "https://opencollective.com/hyperf",
  3554. "type": "open_collective"
  3555. }
  3556. ],
  3557. "time": "2024-04-22T01:46:29+00:00"
  3558. },
  3559. {
  3560. "name": "hyperf/serializer",
  3561. "version": "v3.1.23",
  3562. "source": {
  3563. "type": "git",
  3564. "url": "https://github.com/hyperf/serializer.git",
  3565. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3566. },
  3567. "dist": {
  3568. "type": "zip",
  3569. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3570. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3571. "shasum": ""
  3572. },
  3573. "require": {
  3574. "hyperf/contract": "~3.1.0",
  3575. "php": ">=8.1"
  3576. },
  3577. "suggest": {
  3578. "hyperf/di": "Required to use ExceptionNormalizer",
  3579. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3580. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3581. },
  3582. "type": "library",
  3583. "extra": {
  3584. "branch-alias": {
  3585. "dev-master": "3.1-dev"
  3586. },
  3587. "hyperf": {
  3588. "config": "Hyperf\\Serializer\\ConfigProvider"
  3589. }
  3590. },
  3591. "autoload": {
  3592. "psr-4": {
  3593. "Hyperf\\Serializer\\": "src/"
  3594. }
  3595. },
  3596. "notification-url": "https://packagist.org/downloads/",
  3597. "license": [
  3598. "MIT"
  3599. ],
  3600. "description": "A serializer component for Hyperf.",
  3601. "homepage": "https://hyperf.io",
  3602. "keywords": [
  3603. "hyperf",
  3604. "php",
  3605. "swoole",
  3606. "tappable"
  3607. ],
  3608. "support": {
  3609. "docs": "https://hyperf.wiki",
  3610. "issues": "https://github.com/hyperf/hyperf/issues",
  3611. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3612. "source": "https://github.com/hyperf/hyperf"
  3613. },
  3614. "funding": [
  3615. {
  3616. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3617. "type": "custom"
  3618. },
  3619. {
  3620. "url": "https://opencollective.com/hyperf",
  3621. "type": "open_collective"
  3622. }
  3623. ],
  3624. "time": "2024-05-23T03:43:58+00:00"
  3625. },
  3626. {
  3627. "name": "hyperf/server",
  3628. "version": "v3.1.23",
  3629. "source": {
  3630. "type": "git",
  3631. "url": "https://github.com/hyperf/server.git",
  3632. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3633. },
  3634. "dist": {
  3635. "type": "zip",
  3636. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3637. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3638. "shasum": ""
  3639. },
  3640. "require": {
  3641. "hyperf/contract": "~3.1.0",
  3642. "hyperf/coordinator": "~3.1.0",
  3643. "hyperf/engine": "^2.8",
  3644. "hyperf/support": "~3.1.0",
  3645. "hyperf/tappable": "~3.1.0",
  3646. "php": ">=8.1",
  3647. "psr/container": "^1.0|^2.0",
  3648. "psr/event-dispatcher": "^1.0",
  3649. "psr/log": "^1.0|^2.0|^3.0",
  3650. "symfony/console": "^5.0|^6.0|^7.0"
  3651. },
  3652. "suggest": {
  3653. "hyperf/event": "Dump the info after server start.",
  3654. "hyperf/framework": "Dump the info after server start."
  3655. },
  3656. "type": "library",
  3657. "extra": {
  3658. "branch-alias": {
  3659. "dev-master": "3.1-dev"
  3660. },
  3661. "hyperf": {
  3662. "config": "Hyperf\\Server\\ConfigProvider"
  3663. }
  3664. },
  3665. "autoload": {
  3666. "psr-4": {
  3667. "Hyperf\\Server\\": "src/"
  3668. }
  3669. },
  3670. "notification-url": "https://packagist.org/downloads/",
  3671. "license": [
  3672. "MIT"
  3673. ],
  3674. "description": "A base server library for Hyperf.",
  3675. "homepage": "https://hyperf.io",
  3676. "keywords": [
  3677. "hyperf",
  3678. "php",
  3679. "server",
  3680. "swoole"
  3681. ],
  3682. "support": {
  3683. "docs": "https://hyperf.wiki",
  3684. "issues": "https://github.com/hyperf/hyperf/issues",
  3685. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3686. "source": "https://github.com/hyperf/hyperf"
  3687. },
  3688. "funding": [
  3689. {
  3690. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3691. "type": "custom"
  3692. },
  3693. {
  3694. "url": "https://opencollective.com/hyperf",
  3695. "type": "open_collective"
  3696. }
  3697. ],
  3698. "time": "2024-05-23T03:43:58+00:00"
  3699. },
  3700. {
  3701. "name": "hyperf/service-governance",
  3702. "version": "v3.1.15",
  3703. "source": {
  3704. "type": "git",
  3705. "url": "https://github.com/hyperf/service-governance.git",
  3706. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3707. },
  3708. "dist": {
  3709. "type": "zip",
  3710. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3711. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3712. "shasum": ""
  3713. },
  3714. "require": {
  3715. "hyperf/contract": "~3.1.0",
  3716. "hyperf/support": "~3.1.0",
  3717. "jetbrains/phpstorm-attributes": "^1.0",
  3718. "php": ">=8.1"
  3719. },
  3720. "suggest": {
  3721. "hyperf/event": "Required to use RegisterServiceListener.",
  3722. "hyperf/framework": "Required to use RegisterServiceListener.",
  3723. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3724. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3725. },
  3726. "type": "library",
  3727. "extra": {
  3728. "branch-alias": {
  3729. "dev-master": "3.1-dev"
  3730. },
  3731. "hyperf": {
  3732. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3733. }
  3734. },
  3735. "autoload": {
  3736. "psr-4": {
  3737. "Hyperf\\ServiceGovernance\\": "src/"
  3738. }
  3739. },
  3740. "notification-url": "https://packagist.org/downloads/",
  3741. "license": [
  3742. "MIT"
  3743. ],
  3744. "description": "A service governance component for Hyperf.",
  3745. "homepage": "https://hyperf.io",
  3746. "keywords": [
  3747. "hyperf",
  3748. "php",
  3749. "service-governance",
  3750. "swoole"
  3751. ],
  3752. "support": {
  3753. "docs": "https://hyperf.wiki",
  3754. "issues": "https://github.com/hyperf/hyperf/issues",
  3755. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3756. "source": "https://github.com/hyperf/hyperf"
  3757. },
  3758. "funding": [
  3759. {
  3760. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3761. "type": "custom"
  3762. },
  3763. {
  3764. "url": "https://opencollective.com/hyperf",
  3765. "type": "open_collective"
  3766. }
  3767. ],
  3768. "time": "2024-03-23T11:28:51+00:00"
  3769. },
  3770. {
  3771. "name": "hyperf/service-governance-consul",
  3772. "version": "v3.1.15",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://github.com/hyperf/service-governance-consul.git",
  3776. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3781. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3782. "shasum": ""
  3783. },
  3784. "require": {
  3785. "hyperf/consul": "~3.1.0",
  3786. "hyperf/contract": "~3.1.0",
  3787. "hyperf/service-governance": "~3.1.0",
  3788. "hyperf/support": "~3.1.0",
  3789. "hyperf/utils": "~3.1.0",
  3790. "php": ">=8.1"
  3791. },
  3792. "type": "library",
  3793. "extra": {
  3794. "branch-alias": {
  3795. "dev-master": "3.1-dev"
  3796. },
  3797. "hyperf": {
  3798. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3799. }
  3800. },
  3801. "autoload": {
  3802. "psr-4": {
  3803. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3804. }
  3805. },
  3806. "notification-url": "https://packagist.org/downloads/",
  3807. "license": [
  3808. "MIT"
  3809. ],
  3810. "description": "A consul adapter for service governance.",
  3811. "homepage": "https://hyperf.io",
  3812. "keywords": [
  3813. "consul-adapter",
  3814. "hyperf",
  3815. "php",
  3816. "service-governance",
  3817. "swoole"
  3818. ],
  3819. "support": {
  3820. "docs": "https://hyperf.wiki",
  3821. "issues": "https://github.com/hyperf/hyperf/issues",
  3822. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3823. "source": "https://github.com/hyperf/hyperf"
  3824. },
  3825. "funding": [
  3826. {
  3827. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3828. "type": "custom"
  3829. },
  3830. {
  3831. "url": "https://opencollective.com/hyperf",
  3832. "type": "open_collective"
  3833. }
  3834. ],
  3835. "time": "2024-03-23T11:28:51+00:00"
  3836. },
  3837. {
  3838. "name": "hyperf/service-governance-nacos",
  3839. "version": "v3.1.15",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3843. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  3848. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  3849. "shasum": ""
  3850. },
  3851. "require": {
  3852. "hyperf/codec": "~3.1.0",
  3853. "hyperf/contract": "~3.1.0",
  3854. "hyperf/nacos": "~3.1.0",
  3855. "hyperf/service-governance": "~3.1.0",
  3856. "hyperf/support": "~3.1.0",
  3857. "hyperf/utils": "~3.1.0",
  3858. "php": ">=8.1"
  3859. },
  3860. "type": "library",
  3861. "extra": {
  3862. "branch-alias": {
  3863. "dev-master": "3.1-dev"
  3864. },
  3865. "hyperf": {
  3866. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  3867. }
  3868. },
  3869. "autoload": {
  3870. "psr-4": {
  3871. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  3872. }
  3873. },
  3874. "notification-url": "https://packagist.org/downloads/",
  3875. "license": [
  3876. "MIT"
  3877. ],
  3878. "description": "A nacos adapter for service governance.",
  3879. "homepage": "https://hyperf.io",
  3880. "keywords": [
  3881. "hyperf",
  3882. "nacos-adapter",
  3883. "php",
  3884. "service-governance",
  3885. "swoole"
  3886. ],
  3887. "support": {
  3888. "docs": "https://hyperf.wiki",
  3889. "issues": "https://github.com/hyperf/hyperf/issues",
  3890. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3891. "source": "https://github.com/hyperf/hyperf"
  3892. },
  3893. "funding": [
  3894. {
  3895. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3896. "type": "custom"
  3897. },
  3898. {
  3899. "url": "https://opencollective.com/hyperf",
  3900. "type": "open_collective"
  3901. }
  3902. ],
  3903. "time": "2024-03-23T11:28:51+00:00"
  3904. },
  3905. {
  3906. "name": "hyperf/snowflake",
  3907. "version": "v3.1.15",
  3908. "source": {
  3909. "type": "git",
  3910. "url": "https://github.com/hyperf/snowflake.git",
  3911. "reference": "a77b0d4c9215ef257781967a11334d2b9366390f"
  3912. },
  3913. "dist": {
  3914. "type": "zip",
  3915. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/a77b0d4c9215ef257781967a11334d2b9366390f",
  3916. "reference": "a77b0d4c9215ef257781967a11334d2b9366390f",
  3917. "shasum": "",
  3918. "mirrors": [
  3919. {
  3920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3921. "preferred": true
  3922. }
  3923. ]
  3924. },
  3925. "require": {
  3926. "hyperf/contract": "~3.1.0",
  3927. "php": ">=8.1"
  3928. },
  3929. "suggest": {
  3930. "hyperf/config": "Required to read snowflake config.",
  3931. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  3932. "psr/container": "Required to use MetaGeneratorFactory."
  3933. },
  3934. "type": "library",
  3935. "extra": {
  3936. "branch-alias": {
  3937. "dev-master": "3.1-dev"
  3938. },
  3939. "hyperf": {
  3940. "config": "Hyperf\\Snowflake\\ConfigProvider"
  3941. }
  3942. },
  3943. "autoload": {
  3944. "psr-4": {
  3945. "Hyperf\\Snowflake\\": "src/"
  3946. }
  3947. },
  3948. "notification-url": "https://packagist.org/downloads/",
  3949. "license": [
  3950. "MIT"
  3951. ],
  3952. "description": "A snowflake library",
  3953. "homepage": "https://hyperf.io",
  3954. "keywords": [
  3955. "php",
  3956. "snowflake"
  3957. ],
  3958. "support": {
  3959. "docs": "https://hyperf.wiki",
  3960. "issues": "https://github.com/hyperf/hyperf/issues",
  3961. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3962. "source": "https://github.com/hyperf/hyperf"
  3963. },
  3964. "funding": [
  3965. {
  3966. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3967. "type": "custom"
  3968. },
  3969. {
  3970. "url": "https://opencollective.com/hyperf",
  3971. "type": "open_collective"
  3972. }
  3973. ],
  3974. "time": "2024-03-23T11:28:51+00:00"
  3975. },
  3976. {
  3977. "name": "hyperf/socketio-server",
  3978. "version": "v3.1.27",
  3979. "source": {
  3980. "type": "git",
  3981. "url": "https://github.com/hyperf/socketio-server.git",
  3982. "reference": "e0fbb6ee8e3defc47ab7591170235fad28367ee5"
  3983. },
  3984. "dist": {
  3985. "type": "zip",
  3986. "url": "https://api.github.com/repos/hyperf/socketio-server/zipball/e0fbb6ee8e3defc47ab7591170235fad28367ee5",
  3987. "reference": "e0fbb6ee8e3defc47ab7591170235fad28367ee5",
  3988. "shasum": ""
  3989. },
  3990. "require": {
  3991. "ext-json": "*",
  3992. "ext-redis": "*",
  3993. "hyperf/codec": "~3.1.0",
  3994. "hyperf/collection": "~3.1.0",
  3995. "hyperf/di": "~3.1.0",
  3996. "hyperf/redis": "~3.1.0",
  3997. "hyperf/websocket-server": "~3.1.0",
  3998. "php": ">=8.1",
  3999. "psr/container": "^1.0 || ^2.0"
  4000. },
  4001. "conflict": {
  4002. "mix/redis-subscriber": "<3.0.4"
  4003. },
  4004. "suggest": {
  4005. "hyperf/command": "Required to use RemoveRedisGarbage command",
  4006. "hyperf/nsq": "Required to use RedisNsqAdapter",
  4007. "hyperf/session": "Required to use session",
  4008. "mix/redis-subscriber": "Suggest to use RedisAdapter (^3.0.4)"
  4009. },
  4010. "type": "library",
  4011. "extra": {
  4012. "branch-alias": {
  4013. "dev-master": "3.1-dev"
  4014. },
  4015. "hyperf": {
  4016. "config": "Hyperf\\SocketIOServer\\ConfigProvider"
  4017. }
  4018. },
  4019. "autoload": {
  4020. "psr-4": {
  4021. "Hyperf\\SocketIOServer\\": "src/"
  4022. }
  4023. },
  4024. "notification-url": "https://packagist.org/downloads/",
  4025. "license": [
  4026. "MIT"
  4027. ],
  4028. "description": "Socket.io implementation for hyperf",
  4029. "keywords": [
  4030. "hyperf",
  4031. "php"
  4032. ],
  4033. "support": {
  4034. "issues": "https://github.com/hyperf/socketio-server/issues",
  4035. "source": "https://github.com/hyperf/socketio-server/tree/v3.1.27"
  4036. },
  4037. "funding": [
  4038. {
  4039. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4040. "type": "custom"
  4041. },
  4042. {
  4043. "url": "https://opencollective.com/hyperf",
  4044. "type": "open_collective"
  4045. }
  4046. ],
  4047. "time": "2024-06-17T01:51:06+00:00"
  4048. },
  4049. {
  4050. "name": "hyperf/stdlib",
  4051. "version": "v3.1.15",
  4052. "source": {
  4053. "type": "git",
  4054. "url": "https://github.com/hyperf/stdlib.git",
  4055. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  4056. },
  4057. "dist": {
  4058. "type": "zip",
  4059. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  4060. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  4061. "shasum": ""
  4062. },
  4063. "require": {
  4064. "php": ">=8.1"
  4065. },
  4066. "type": "library",
  4067. "extra": {
  4068. "branch-alias": {
  4069. "dev-master": "3.1-dev"
  4070. }
  4071. },
  4072. "autoload": {
  4073. "psr-4": {
  4074. "Hyperf\\Stdlib\\": "src/"
  4075. }
  4076. },
  4077. "notification-url": "https://packagist.org/downloads/",
  4078. "license": [
  4079. "MIT"
  4080. ],
  4081. "description": "A stdlib component for Hyperf.",
  4082. "homepage": "https://hyperf.io",
  4083. "keywords": [
  4084. "hyperf",
  4085. "php",
  4086. "stdlib",
  4087. "swoole"
  4088. ],
  4089. "support": {
  4090. "docs": "https://hyperf.wiki",
  4091. "issues": "https://github.com/hyperf/hyperf/issues",
  4092. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4093. "source": "https://github.com/hyperf/hyperf"
  4094. },
  4095. "funding": [
  4096. {
  4097. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4098. "type": "custom"
  4099. },
  4100. {
  4101. "url": "https://opencollective.com/hyperf",
  4102. "type": "open_collective"
  4103. }
  4104. ],
  4105. "time": "2024-03-23T11:28:51+00:00"
  4106. },
  4107. {
  4108. "name": "hyperf/stringable",
  4109. "version": "v3.1.24",
  4110. "source": {
  4111. "type": "git",
  4112. "url": "https://github.com/hyperf/stringable.git",
  4113. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4114. },
  4115. "dist": {
  4116. "type": "zip",
  4117. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4118. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4119. "shasum": ""
  4120. },
  4121. "require": {
  4122. "ext-mbstring": "*",
  4123. "hyperf/collection": "~3.1.0",
  4124. "hyperf/conditionable": "~3.1.0",
  4125. "hyperf/macroable": "~3.1.0",
  4126. "hyperf/tappable": "~3.1.0",
  4127. "php": ">=8.1"
  4128. },
  4129. "suggest": {
  4130. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4131. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4132. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4133. },
  4134. "type": "library",
  4135. "extra": {
  4136. "branch-alias": {
  4137. "dev-master": "3.1-dev"
  4138. }
  4139. },
  4140. "autoload": {
  4141. "files": [
  4142. "src/Functions.php"
  4143. ],
  4144. "psr-4": {
  4145. "Hyperf\\Stringable\\": "src/"
  4146. }
  4147. },
  4148. "notification-url": "https://packagist.org/downloads/",
  4149. "license": [
  4150. "MIT"
  4151. ],
  4152. "description": "Hyperf Stringable package which come from illuminate/support",
  4153. "homepage": "https://hyperf.io",
  4154. "keywords": [
  4155. "hyperf",
  4156. "php",
  4157. "stringable",
  4158. "swoole"
  4159. ],
  4160. "support": {
  4161. "docs": "https://hyperf.wiki",
  4162. "issues": "https://github.com/hyperf/hyperf/issues",
  4163. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4164. "source": "https://github.com/hyperf/hyperf"
  4165. },
  4166. "funding": [
  4167. {
  4168. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4169. "type": "custom"
  4170. },
  4171. {
  4172. "url": "https://opencollective.com/hyperf",
  4173. "type": "open_collective"
  4174. }
  4175. ],
  4176. "time": "2024-05-27T03:20:24+00:00"
  4177. },
  4178. {
  4179. "name": "hyperf/support",
  4180. "version": "v3.1.15",
  4181. "source": {
  4182. "type": "git",
  4183. "url": "https://github.com/hyperf/support.git",
  4184. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872"
  4185. },
  4186. "dist": {
  4187. "type": "zip",
  4188. "url": "https://api.github.com/repos/hyperf/support/zipball/3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4189. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4190. "shasum": ""
  4191. },
  4192. "require": {
  4193. "hyperf/collection": "~3.1.0",
  4194. "hyperf/context": "~3.1.0",
  4195. "hyperf/contract": "~3.1.0",
  4196. "hyperf/coroutine": "~3.1.0",
  4197. "hyperf/macroable": "~3.1.0",
  4198. "hyperf/stringable": "~3.1.0",
  4199. "php": ">=8.1"
  4200. },
  4201. "suggest": {
  4202. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4203. },
  4204. "type": "library",
  4205. "extra": {
  4206. "branch-alias": {
  4207. "dev-master": "3.1-dev"
  4208. }
  4209. },
  4210. "autoload": {
  4211. "files": [
  4212. "src/Functions.php"
  4213. ],
  4214. "psr-4": {
  4215. "Hyperf\\Support\\": "src/"
  4216. }
  4217. },
  4218. "notification-url": "https://packagist.org/downloads/",
  4219. "license": [
  4220. "MIT"
  4221. ],
  4222. "description": "A support component for Hyperf.",
  4223. "homepage": "https://hyperf.io",
  4224. "keywords": [
  4225. "hyperf",
  4226. "php",
  4227. "support",
  4228. "swoole"
  4229. ],
  4230. "support": {
  4231. "docs": "https://hyperf.wiki",
  4232. "issues": "https://github.com/hyperf/hyperf/issues",
  4233. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4234. "source": "https://github.com/hyperf/hyperf"
  4235. },
  4236. "funding": [
  4237. {
  4238. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4239. "type": "custom"
  4240. },
  4241. {
  4242. "url": "https://opencollective.com/hyperf",
  4243. "type": "open_collective"
  4244. }
  4245. ],
  4246. "time": "2024-03-23T11:28:51+00:00"
  4247. },
  4248. {
  4249. "name": "hyperf/tappable",
  4250. "version": "v3.1.15",
  4251. "source": {
  4252. "type": "git",
  4253. "url": "https://github.com/hyperf/tappable.git",
  4254. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4255. },
  4256. "dist": {
  4257. "type": "zip",
  4258. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4259. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4260. "shasum": ""
  4261. },
  4262. "require": {
  4263. "php": ">=8.1"
  4264. },
  4265. "type": "library",
  4266. "extra": {
  4267. "branch-alias": {
  4268. "dev-master": "3.1-dev"
  4269. }
  4270. },
  4271. "autoload": {
  4272. "files": [
  4273. "src/Functions.php"
  4274. ],
  4275. "psr-4": {
  4276. "Hyperf\\Tappable\\": "src/"
  4277. }
  4278. },
  4279. "notification-url": "https://packagist.org/downloads/",
  4280. "license": [
  4281. "MIT"
  4282. ],
  4283. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4284. "homepage": "https://hyperf.io",
  4285. "keywords": [
  4286. "hyperf",
  4287. "php",
  4288. "swoole",
  4289. "tappable"
  4290. ],
  4291. "support": {
  4292. "docs": "https://hyperf.wiki",
  4293. "issues": "https://github.com/hyperf/hyperf/issues",
  4294. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4295. "source": "https://github.com/hyperf/hyperf"
  4296. },
  4297. "funding": [
  4298. {
  4299. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4300. "type": "custom"
  4301. },
  4302. {
  4303. "url": "https://opencollective.com/hyperf",
  4304. "type": "open_collective"
  4305. }
  4306. ],
  4307. "time": "2024-03-23T11:28:51+00:00"
  4308. },
  4309. {
  4310. "name": "hyperf/utils",
  4311. "version": "v3.1.27",
  4312. "source": {
  4313. "type": "git",
  4314. "url": "https://github.com/hyperf/utils.git",
  4315. "reference": "05cbe18451813d843df419eabdf6c69843796f20"
  4316. },
  4317. "dist": {
  4318. "type": "zip",
  4319. "url": "https://api.github.com/repos/hyperf/utils/zipball/05cbe18451813d843df419eabdf6c69843796f20",
  4320. "reference": "05cbe18451813d843df419eabdf6c69843796f20",
  4321. "shasum": "",
  4322. "mirrors": [
  4323. {
  4324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4325. "preferred": true
  4326. }
  4327. ]
  4328. },
  4329. "require": {
  4330. "doctrine/inflector": "^2.0",
  4331. "hyperf/code-parser": "~3.1.0",
  4332. "hyperf/codec": "~3.1.0",
  4333. "hyperf/collection": "~3.1.0",
  4334. "hyperf/context": "~3.1.0",
  4335. "hyperf/contract": "~3.1.0",
  4336. "hyperf/coordinator": "~3.1.0",
  4337. "hyperf/coroutine": "~3.1.0",
  4338. "hyperf/engine": "^2.0",
  4339. "hyperf/macroable": "~3.1.0",
  4340. "hyperf/serializer": "~3.1.0",
  4341. "hyperf/stringable": "~3.1.0",
  4342. "hyperf/support": "~3.1.0",
  4343. "php": ">=8.1"
  4344. },
  4345. "type": "library",
  4346. "extra": {
  4347. "branch-alias": {
  4348. "dev-master": "3.1-dev"
  4349. }
  4350. },
  4351. "notification-url": "https://packagist.org/downloads/",
  4352. "license": [
  4353. "MIT"
  4354. ],
  4355. "description": "A tools package that could help developer solved the problem quickly.",
  4356. "homepage": "https://hyperf.io",
  4357. "keywords": [
  4358. "hyperf",
  4359. "php",
  4360. "swoole",
  4361. "utils"
  4362. ],
  4363. "support": {
  4364. "docs": "https://hyperf.wiki",
  4365. "issues": "https://github.com/hyperf/hyperf/issues",
  4366. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4367. "source": "https://github.com/hyperf/hyperf"
  4368. },
  4369. "funding": [
  4370. {
  4371. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4372. "type": "custom"
  4373. },
  4374. {
  4375. "url": "https://opencollective.com/hyperf",
  4376. "type": "open_collective"
  4377. }
  4378. ],
  4379. "time": "2024-06-17T01:51:06+00:00"
  4380. },
  4381. {
  4382. "name": "hyperf/websocket-server",
  4383. "version": "v3.1.16",
  4384. "source": {
  4385. "type": "git",
  4386. "url": "https://github.com/hyperf/websocket-server.git",
  4387. "reference": "b4b0903ff87a1763941c014bf755b352663d73d4"
  4388. },
  4389. "dist": {
  4390. "type": "zip",
  4391. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/b4b0903ff87a1763941c014bf755b352663d73d4",
  4392. "reference": "b4b0903ff87a1763941c014bf755b352663d73d4",
  4393. "shasum": "",
  4394. "mirrors": [
  4395. {
  4396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4397. "preferred": true
  4398. }
  4399. ]
  4400. },
  4401. "require": {
  4402. "hyperf/collection": "~3.1.0",
  4403. "hyperf/contract": "~3.1.0",
  4404. "hyperf/exception-handler": "~3.1.0",
  4405. "hyperf/http-server": "~3.1.0",
  4406. "hyperf/support": "~3.1.0",
  4407. "hyperf/utils": "~3.1.0",
  4408. "php": ">=8.1",
  4409. "psr/container": "^1.0|^2.0",
  4410. "psr/event-dispatcher": "^1.0"
  4411. },
  4412. "type": "library",
  4413. "extra": {
  4414. "branch-alias": {
  4415. "dev-master": "3.1-dev"
  4416. },
  4417. "hyperf": {
  4418. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4419. }
  4420. },
  4421. "autoload": {
  4422. "psr-4": {
  4423. "Hyperf\\WebSocketServer\\": "src/"
  4424. }
  4425. },
  4426. "notification-url": "https://packagist.org/downloads/",
  4427. "license": [
  4428. "MIT"
  4429. ],
  4430. "description": "A websocket server library for Hyperf.",
  4431. "homepage": "https://hyperf.io",
  4432. "keywords": [
  4433. "hyperf",
  4434. "php",
  4435. "swoole",
  4436. "websocket"
  4437. ],
  4438. "support": {
  4439. "docs": "https://hyperf.wiki",
  4440. "issues": "https://github.com/hyperf/hyperf/issues",
  4441. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4442. "source": "https://github.com/hyperf/hyperf"
  4443. },
  4444. "funding": [
  4445. {
  4446. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4447. "type": "custom"
  4448. },
  4449. {
  4450. "url": "https://opencollective.com/hyperf",
  4451. "type": "open_collective"
  4452. }
  4453. ],
  4454. "time": "2024-04-02T02:40:09+00:00"
  4455. },
  4456. {
  4457. "name": "jetbrains/phpstorm-attributes",
  4458. "version": "1.1",
  4459. "source": {
  4460. "type": "git",
  4461. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4462. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4463. },
  4464. "dist": {
  4465. "type": "zip",
  4466. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4467. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4468. "shasum": ""
  4469. },
  4470. "type": "library",
  4471. "autoload": {
  4472. "psr-4": {
  4473. "JetBrains\\PhpStorm\\": "src/"
  4474. }
  4475. },
  4476. "notification-url": "https://packagist.org/downloads/",
  4477. "license": [
  4478. "Apache-2.0"
  4479. ],
  4480. "authors": [
  4481. {
  4482. "name": "JetBrains",
  4483. "homepage": "https://www.jetbrains.com"
  4484. }
  4485. ],
  4486. "description": "PhpStorm specific attributes",
  4487. "keywords": [
  4488. "attributes",
  4489. "jetbrains",
  4490. "phpstorm"
  4491. ],
  4492. "support": {
  4493. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4494. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4495. },
  4496. "time": "2023-09-01T08:50:25+00:00"
  4497. },
  4498. {
  4499. "name": "laminas/laminas-mime",
  4500. "version": "2.12.0",
  4501. "source": {
  4502. "type": "git",
  4503. "url": "https://github.com/laminas/laminas-mime.git",
  4504. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4505. },
  4506. "dist": {
  4507. "type": "zip",
  4508. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4509. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4510. "shasum": ""
  4511. },
  4512. "require": {
  4513. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4514. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4515. },
  4516. "conflict": {
  4517. "zendframework/zend-mime": "*"
  4518. },
  4519. "require-dev": {
  4520. "laminas/laminas-coding-standard": "~2.4.0",
  4521. "laminas/laminas-mail": "^2.19.0",
  4522. "phpunit/phpunit": "~9.5.25"
  4523. },
  4524. "suggest": {
  4525. "laminas/laminas-mail": "Laminas\\Mail component"
  4526. },
  4527. "type": "library",
  4528. "autoload": {
  4529. "psr-4": {
  4530. "Laminas\\Mime\\": "src/"
  4531. }
  4532. },
  4533. "notification-url": "https://packagist.org/downloads/",
  4534. "license": [
  4535. "BSD-3-Clause"
  4536. ],
  4537. "description": "Create and parse MIME messages and parts",
  4538. "homepage": "https://laminas.dev",
  4539. "keywords": [
  4540. "laminas",
  4541. "mime"
  4542. ],
  4543. "support": {
  4544. "chat": "https://laminas.dev/chat",
  4545. "docs": "https://docs.laminas.dev/laminas-mime/",
  4546. "forum": "https://discourse.laminas.dev",
  4547. "issues": "https://github.com/laminas/laminas-mime/issues",
  4548. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4549. "source": "https://github.com/laminas/laminas-mime"
  4550. },
  4551. "funding": [
  4552. {
  4553. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4554. "type": "community_bridge"
  4555. }
  4556. ],
  4557. "time": "2023-11-02T16:47:19+00:00"
  4558. },
  4559. {
  4560. "name": "laminas/laminas-stdlib",
  4561. "version": "3.19.0",
  4562. "source": {
  4563. "type": "git",
  4564. "url": "https://github.com/laminas/laminas-stdlib.git",
  4565. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4566. },
  4567. "dist": {
  4568. "type": "zip",
  4569. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4570. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4571. "shasum": ""
  4572. },
  4573. "require": {
  4574. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4575. },
  4576. "conflict": {
  4577. "zendframework/zend-stdlib": "*"
  4578. },
  4579. "require-dev": {
  4580. "laminas/laminas-coding-standard": "^2.5",
  4581. "phpbench/phpbench": "^1.2.15",
  4582. "phpunit/phpunit": "^10.5.8",
  4583. "psalm/plugin-phpunit": "^0.18.4",
  4584. "vimeo/psalm": "^5.20.0"
  4585. },
  4586. "type": "library",
  4587. "autoload": {
  4588. "psr-4": {
  4589. "Laminas\\Stdlib\\": "src/"
  4590. }
  4591. },
  4592. "notification-url": "https://packagist.org/downloads/",
  4593. "license": [
  4594. "BSD-3-Clause"
  4595. ],
  4596. "description": "SPL extensions, array utilities, error handlers, and more",
  4597. "homepage": "https://laminas.dev",
  4598. "keywords": [
  4599. "laminas",
  4600. "stdlib"
  4601. ],
  4602. "support": {
  4603. "chat": "https://laminas.dev/chat",
  4604. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4605. "forum": "https://discourse.laminas.dev",
  4606. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4607. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4608. "source": "https://github.com/laminas/laminas-stdlib"
  4609. },
  4610. "funding": [
  4611. {
  4612. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4613. "type": "community_bridge"
  4614. }
  4615. ],
  4616. "time": "2024-01-19T12:39:49+00:00"
  4617. },
  4618. {
  4619. "name": "markrogoyski/math-php",
  4620. "version": "v2.10.0",
  4621. "source": {
  4622. "type": "git",
  4623. "url": "https://github.com/markrogoyski/math-php.git",
  4624. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4625. },
  4626. "dist": {
  4627. "type": "zip",
  4628. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4629. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4630. "shasum": ""
  4631. },
  4632. "require": {
  4633. "ext-json": "*",
  4634. "php": ">=7.2.0"
  4635. },
  4636. "require-dev": {
  4637. "php-coveralls/php-coveralls": "^2.0",
  4638. "php-parallel-lint/php-parallel-lint": "^1.2",
  4639. "phploc/phploc": "*",
  4640. "phpmd/phpmd": "^2.6",
  4641. "phpstan/phpstan": "^1.10",
  4642. "phpunit/phpunit": "^8.5",
  4643. "squizlabs/php_codesniffer": "3.*"
  4644. },
  4645. "type": "library",
  4646. "autoload": {
  4647. "psr-4": {
  4648. "MathPHP\\": "src/"
  4649. }
  4650. },
  4651. "notification-url": "https://packagist.org/downloads/",
  4652. "license": [
  4653. "MIT"
  4654. ],
  4655. "authors": [
  4656. {
  4657. "name": "Mark Rogoyski",
  4658. "email": "mark@rogoyski.com",
  4659. "homepage": "https://github.com/markrogoyski",
  4660. "role": "Lead developer"
  4661. },
  4662. {
  4663. "name": "Kevin Nowaczyk",
  4664. "homepage": "https://github.com/Beakerboy",
  4665. "role": "Developer"
  4666. },
  4667. {
  4668. "name": "MathPHP Community of Contributors",
  4669. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4670. }
  4671. ],
  4672. "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",
  4673. "homepage": "https://github.com/markrogoyski/math-php/",
  4674. "keywords": [
  4675. "algebra",
  4676. "combinatorics",
  4677. "distributions",
  4678. "linear algebra",
  4679. "math",
  4680. "mathematics",
  4681. "matrix",
  4682. "numerical analysis",
  4683. "probability",
  4684. "regressions",
  4685. "statistics"
  4686. ],
  4687. "support": {
  4688. "issues": "https://github.com/markrogoyski/math-php/issues",
  4689. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4690. },
  4691. "time": "2024-04-17T00:09:51+00:00"
  4692. },
  4693. {
  4694. "name": "monolog/monolog",
  4695. "version": "3.6.0",
  4696. "source": {
  4697. "type": "git",
  4698. "url": "https://github.com/Seldaek/monolog.git",
  4699. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4700. },
  4701. "dist": {
  4702. "type": "zip",
  4703. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4704. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4705. "shasum": ""
  4706. },
  4707. "require": {
  4708. "php": ">=8.1",
  4709. "psr/log": "^2.0 || ^3.0"
  4710. },
  4711. "provide": {
  4712. "psr/log-implementation": "3.0.0"
  4713. },
  4714. "require-dev": {
  4715. "aws/aws-sdk-php": "^3.0",
  4716. "doctrine/couchdb": "~1.0@dev",
  4717. "elasticsearch/elasticsearch": "^7 || ^8",
  4718. "ext-json": "*",
  4719. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4720. "guzzlehttp/guzzle": "^7.4.5",
  4721. "guzzlehttp/psr7": "^2.2",
  4722. "mongodb/mongodb": "^1.8",
  4723. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4724. "phpstan/phpstan": "^1.9",
  4725. "phpstan/phpstan-deprecation-rules": "^1.0",
  4726. "phpstan/phpstan-strict-rules": "^1.4",
  4727. "phpunit/phpunit": "^10.5.17",
  4728. "predis/predis": "^1.1 || ^2",
  4729. "ruflin/elastica": "^7",
  4730. "symfony/mailer": "^5.4 || ^6",
  4731. "symfony/mime": "^5.4 || ^6"
  4732. },
  4733. "suggest": {
  4734. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4735. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4736. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4737. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4738. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4739. "ext-mbstring": "Allow to work properly with unicode symbols",
  4740. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4741. "ext-openssl": "Required to send log messages using SSL",
  4742. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4743. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4744. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4745. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4746. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4747. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4748. },
  4749. "type": "library",
  4750. "extra": {
  4751. "branch-alias": {
  4752. "dev-main": "3.x-dev"
  4753. }
  4754. },
  4755. "autoload": {
  4756. "psr-4": {
  4757. "Monolog\\": "src/Monolog"
  4758. }
  4759. },
  4760. "notification-url": "https://packagist.org/downloads/",
  4761. "license": [
  4762. "MIT"
  4763. ],
  4764. "authors": [
  4765. {
  4766. "name": "Jordi Boggiano",
  4767. "email": "j.boggiano@seld.be",
  4768. "homepage": "https://seld.be"
  4769. }
  4770. ],
  4771. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4772. "homepage": "https://github.com/Seldaek/monolog",
  4773. "keywords": [
  4774. "log",
  4775. "logging",
  4776. "psr-3"
  4777. ],
  4778. "support": {
  4779. "issues": "https://github.com/Seldaek/monolog/issues",
  4780. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  4781. },
  4782. "funding": [
  4783. {
  4784. "url": "https://github.com/Seldaek",
  4785. "type": "github"
  4786. },
  4787. {
  4788. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4789. "type": "tidelift"
  4790. }
  4791. ],
  4792. "time": "2024-04-12T21:02:21+00:00"
  4793. },
  4794. {
  4795. "name": "nesbot/carbon",
  4796. "version": "2.72.5",
  4797. "source": {
  4798. "type": "git",
  4799. "url": "https://github.com/briannesbitt/Carbon.git",
  4800. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4801. },
  4802. "dist": {
  4803. "type": "zip",
  4804. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4805. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4806. "shasum": ""
  4807. },
  4808. "require": {
  4809. "carbonphp/carbon-doctrine-types": "*",
  4810. "ext-json": "*",
  4811. "php": "^7.1.8 || ^8.0",
  4812. "psr/clock": "^1.0",
  4813. "symfony/polyfill-mbstring": "^1.0",
  4814. "symfony/polyfill-php80": "^1.16",
  4815. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4816. },
  4817. "provide": {
  4818. "psr/clock-implementation": "1.0"
  4819. },
  4820. "require-dev": {
  4821. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4822. "doctrine/orm": "^2.7 || ^3.0",
  4823. "friendsofphp/php-cs-fixer": "^3.0",
  4824. "kylekatarnls/multi-tester": "^2.0",
  4825. "ondrejmirtes/better-reflection": "*",
  4826. "phpmd/phpmd": "^2.9",
  4827. "phpstan/extension-installer": "^1.0",
  4828. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4829. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4830. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4831. "squizlabs/php_codesniffer": "^3.4"
  4832. },
  4833. "bin": [
  4834. "bin/carbon"
  4835. ],
  4836. "type": "library",
  4837. "extra": {
  4838. "branch-alias": {
  4839. "dev-master": "3.x-dev",
  4840. "dev-2.x": "2.x-dev"
  4841. },
  4842. "laravel": {
  4843. "providers": [
  4844. "Carbon\\Laravel\\ServiceProvider"
  4845. ]
  4846. },
  4847. "phpstan": {
  4848. "includes": [
  4849. "extension.neon"
  4850. ]
  4851. }
  4852. },
  4853. "autoload": {
  4854. "psr-4": {
  4855. "Carbon\\": "src/Carbon/"
  4856. }
  4857. },
  4858. "notification-url": "https://packagist.org/downloads/",
  4859. "license": [
  4860. "MIT"
  4861. ],
  4862. "authors": [
  4863. {
  4864. "name": "Brian Nesbitt",
  4865. "email": "brian@nesbot.com",
  4866. "homepage": "https://markido.com"
  4867. },
  4868. {
  4869. "name": "kylekatarnls",
  4870. "homepage": "https://github.com/kylekatarnls"
  4871. }
  4872. ],
  4873. "description": "An API extension for DateTime that supports 281 different languages.",
  4874. "homepage": "https://carbon.nesbot.com",
  4875. "keywords": [
  4876. "date",
  4877. "datetime",
  4878. "time"
  4879. ],
  4880. "support": {
  4881. "docs": "https://carbon.nesbot.com/docs",
  4882. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4883. "source": "https://github.com/briannesbitt/Carbon"
  4884. },
  4885. "funding": [
  4886. {
  4887. "url": "https://github.com/sponsors/kylekatarnls",
  4888. "type": "github"
  4889. },
  4890. {
  4891. "url": "https://opencollective.com/Carbon#sponsor",
  4892. "type": "opencollective"
  4893. },
  4894. {
  4895. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4896. "type": "tidelift"
  4897. }
  4898. ],
  4899. "time": "2024-06-03T19:18:41+00:00"
  4900. },
  4901. {
  4902. "name": "nikic/fast-route",
  4903. "version": "v1.3.0",
  4904. "source": {
  4905. "type": "git",
  4906. "url": "https://github.com/nikic/FastRoute.git",
  4907. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4908. },
  4909. "dist": {
  4910. "type": "zip",
  4911. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4912. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4913. "shasum": ""
  4914. },
  4915. "require": {
  4916. "php": ">=5.4.0"
  4917. },
  4918. "require-dev": {
  4919. "phpunit/phpunit": "^4.8.35|~5.7"
  4920. },
  4921. "type": "library",
  4922. "autoload": {
  4923. "files": [
  4924. "src/functions.php"
  4925. ],
  4926. "psr-4": {
  4927. "FastRoute\\": "src/"
  4928. }
  4929. },
  4930. "notification-url": "https://packagist.org/downloads/",
  4931. "license": [
  4932. "BSD-3-Clause"
  4933. ],
  4934. "authors": [
  4935. {
  4936. "name": "Nikita Popov",
  4937. "email": "nikic@php.net"
  4938. }
  4939. ],
  4940. "description": "Fast request router for PHP",
  4941. "keywords": [
  4942. "router",
  4943. "routing"
  4944. ],
  4945. "support": {
  4946. "issues": "https://github.com/nikic/FastRoute/issues",
  4947. "source": "https://github.com/nikic/FastRoute/tree/master"
  4948. },
  4949. "time": "2018-02-13T20:26:39+00:00"
  4950. },
  4951. {
  4952. "name": "nikic/php-parser",
  4953. "version": "v4.19.1",
  4954. "source": {
  4955. "type": "git",
  4956. "url": "https://github.com/nikic/PHP-Parser.git",
  4957. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  4958. },
  4959. "dist": {
  4960. "type": "zip",
  4961. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  4962. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  4963. "shasum": ""
  4964. },
  4965. "require": {
  4966. "ext-tokenizer": "*",
  4967. "php": ">=7.1"
  4968. },
  4969. "require-dev": {
  4970. "ircmaxell/php-yacc": "^0.0.7",
  4971. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4972. },
  4973. "bin": [
  4974. "bin/php-parse"
  4975. ],
  4976. "type": "library",
  4977. "extra": {
  4978. "branch-alias": {
  4979. "dev-master": "4.9-dev"
  4980. }
  4981. },
  4982. "autoload": {
  4983. "psr-4": {
  4984. "PhpParser\\": "lib/PhpParser"
  4985. }
  4986. },
  4987. "notification-url": "https://packagist.org/downloads/",
  4988. "license": [
  4989. "BSD-3-Clause"
  4990. ],
  4991. "authors": [
  4992. {
  4993. "name": "Nikita Popov"
  4994. }
  4995. ],
  4996. "description": "A PHP parser written in PHP",
  4997. "keywords": [
  4998. "parser",
  4999. "php"
  5000. ],
  5001. "support": {
  5002. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5003. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  5004. },
  5005. "time": "2024-03-17T08:10:35+00:00"
  5006. },
  5007. {
  5008. "name": "php-di/phpdoc-reader",
  5009. "version": "2.2.1",
  5010. "source": {
  5011. "type": "git",
  5012. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5013. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5014. },
  5015. "dist": {
  5016. "type": "zip",
  5017. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5018. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5019. "shasum": ""
  5020. },
  5021. "require": {
  5022. "php": ">=7.2.0"
  5023. },
  5024. "require-dev": {
  5025. "mnapoli/hard-mode": "~0.3.0",
  5026. "phpunit/phpunit": "^8.5|^9.0"
  5027. },
  5028. "type": "library",
  5029. "autoload": {
  5030. "psr-4": {
  5031. "PhpDocReader\\": "src/PhpDocReader"
  5032. }
  5033. },
  5034. "notification-url": "https://packagist.org/downloads/",
  5035. "license": [
  5036. "MIT"
  5037. ],
  5038. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5039. "keywords": [
  5040. "phpdoc",
  5041. "reflection"
  5042. ],
  5043. "support": {
  5044. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5045. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5046. },
  5047. "time": "2020-10-12T12:39:22+00:00"
  5048. },
  5049. {
  5050. "name": "phpoption/phpoption",
  5051. "version": "1.9.2",
  5052. "source": {
  5053. "type": "git",
  5054. "url": "https://github.com/schmittjoh/php-option.git",
  5055. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5056. },
  5057. "dist": {
  5058. "type": "zip",
  5059. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5060. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5061. "shasum": ""
  5062. },
  5063. "require": {
  5064. "php": "^7.2.5 || ^8.0"
  5065. },
  5066. "require-dev": {
  5067. "bamarni/composer-bin-plugin": "^1.8.2",
  5068. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5069. },
  5070. "type": "library",
  5071. "extra": {
  5072. "bamarni-bin": {
  5073. "bin-links": true,
  5074. "forward-command": true
  5075. },
  5076. "branch-alias": {
  5077. "dev-master": "1.9-dev"
  5078. }
  5079. },
  5080. "autoload": {
  5081. "psr-4": {
  5082. "PhpOption\\": "src/PhpOption/"
  5083. }
  5084. },
  5085. "notification-url": "https://packagist.org/downloads/",
  5086. "license": [
  5087. "Apache-2.0"
  5088. ],
  5089. "authors": [
  5090. {
  5091. "name": "Johannes M. Schmitt",
  5092. "email": "schmittjoh@gmail.com",
  5093. "homepage": "https://github.com/schmittjoh"
  5094. },
  5095. {
  5096. "name": "Graham Campbell",
  5097. "email": "hello@gjcampbell.co.uk",
  5098. "homepage": "https://github.com/GrahamCampbell"
  5099. }
  5100. ],
  5101. "description": "Option Type for PHP",
  5102. "keywords": [
  5103. "language",
  5104. "option",
  5105. "php",
  5106. "type"
  5107. ],
  5108. "support": {
  5109. "issues": "https://github.com/schmittjoh/php-option/issues",
  5110. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5111. },
  5112. "funding": [
  5113. {
  5114. "url": "https://github.com/GrahamCampbell",
  5115. "type": "github"
  5116. },
  5117. {
  5118. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5119. "type": "tidelift"
  5120. }
  5121. ],
  5122. "time": "2023-11-12T21:59:55+00:00"
  5123. },
  5124. {
  5125. "name": "psr/cache",
  5126. "version": "3.0.0",
  5127. "source": {
  5128. "type": "git",
  5129. "url": "https://github.com/php-fig/cache.git",
  5130. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5131. },
  5132. "dist": {
  5133. "type": "zip",
  5134. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5135. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5136. "shasum": ""
  5137. },
  5138. "require": {
  5139. "php": ">=8.0.0"
  5140. },
  5141. "type": "library",
  5142. "extra": {
  5143. "branch-alias": {
  5144. "dev-master": "1.0.x-dev"
  5145. }
  5146. },
  5147. "autoload": {
  5148. "psr-4": {
  5149. "Psr\\Cache\\": "src/"
  5150. }
  5151. },
  5152. "notification-url": "https://packagist.org/downloads/",
  5153. "license": [
  5154. "MIT"
  5155. ],
  5156. "authors": [
  5157. {
  5158. "name": "PHP-FIG",
  5159. "homepage": "https://www.php-fig.org/"
  5160. }
  5161. ],
  5162. "description": "Common interface for caching libraries",
  5163. "keywords": [
  5164. "cache",
  5165. "psr",
  5166. "psr-6"
  5167. ],
  5168. "support": {
  5169. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5170. },
  5171. "time": "2021-02-03T23:26:27+00:00"
  5172. },
  5173. {
  5174. "name": "psr/clock",
  5175. "version": "1.0.0",
  5176. "source": {
  5177. "type": "git",
  5178. "url": "https://github.com/php-fig/clock.git",
  5179. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5180. },
  5181. "dist": {
  5182. "type": "zip",
  5183. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5184. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5185. "shasum": ""
  5186. },
  5187. "require": {
  5188. "php": "^7.0 || ^8.0"
  5189. },
  5190. "type": "library",
  5191. "autoload": {
  5192. "psr-4": {
  5193. "Psr\\Clock\\": "src/"
  5194. }
  5195. },
  5196. "notification-url": "https://packagist.org/downloads/",
  5197. "license": [
  5198. "MIT"
  5199. ],
  5200. "authors": [
  5201. {
  5202. "name": "PHP-FIG",
  5203. "homepage": "https://www.php-fig.org/"
  5204. }
  5205. ],
  5206. "description": "Common interface for reading the clock.",
  5207. "homepage": "https://github.com/php-fig/clock",
  5208. "keywords": [
  5209. "clock",
  5210. "now",
  5211. "psr",
  5212. "psr-20",
  5213. "time"
  5214. ],
  5215. "support": {
  5216. "issues": "https://github.com/php-fig/clock/issues",
  5217. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5218. },
  5219. "time": "2022-11-25T14:36:26+00:00"
  5220. },
  5221. {
  5222. "name": "psr/container",
  5223. "version": "2.0.2",
  5224. "source": {
  5225. "type": "git",
  5226. "url": "https://github.com/php-fig/container.git",
  5227. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5228. },
  5229. "dist": {
  5230. "type": "zip",
  5231. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5232. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5233. "shasum": ""
  5234. },
  5235. "require": {
  5236. "php": ">=7.4.0"
  5237. },
  5238. "type": "library",
  5239. "extra": {
  5240. "branch-alias": {
  5241. "dev-master": "2.0.x-dev"
  5242. }
  5243. },
  5244. "autoload": {
  5245. "psr-4": {
  5246. "Psr\\Container\\": "src/"
  5247. }
  5248. },
  5249. "notification-url": "https://packagist.org/downloads/",
  5250. "license": [
  5251. "MIT"
  5252. ],
  5253. "authors": [
  5254. {
  5255. "name": "PHP-FIG",
  5256. "homepage": "https://www.php-fig.org/"
  5257. }
  5258. ],
  5259. "description": "Common Container Interface (PHP FIG PSR-11)",
  5260. "homepage": "https://github.com/php-fig/container",
  5261. "keywords": [
  5262. "PSR-11",
  5263. "container",
  5264. "container-interface",
  5265. "container-interop",
  5266. "psr"
  5267. ],
  5268. "support": {
  5269. "issues": "https://github.com/php-fig/container/issues",
  5270. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5271. },
  5272. "time": "2021-11-05T16:47:00+00:00"
  5273. },
  5274. {
  5275. "name": "psr/event-dispatcher",
  5276. "version": "1.0.0",
  5277. "source": {
  5278. "type": "git",
  5279. "url": "https://github.com/php-fig/event-dispatcher.git",
  5280. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5281. },
  5282. "dist": {
  5283. "type": "zip",
  5284. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5285. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5286. "shasum": ""
  5287. },
  5288. "require": {
  5289. "php": ">=7.2.0"
  5290. },
  5291. "type": "library",
  5292. "extra": {
  5293. "branch-alias": {
  5294. "dev-master": "1.0.x-dev"
  5295. }
  5296. },
  5297. "autoload": {
  5298. "psr-4": {
  5299. "Psr\\EventDispatcher\\": "src/"
  5300. }
  5301. },
  5302. "notification-url": "https://packagist.org/downloads/",
  5303. "license": [
  5304. "MIT"
  5305. ],
  5306. "authors": [
  5307. {
  5308. "name": "PHP-FIG",
  5309. "homepage": "http://www.php-fig.org/"
  5310. }
  5311. ],
  5312. "description": "Standard interfaces for event handling.",
  5313. "keywords": [
  5314. "events",
  5315. "psr",
  5316. "psr-14"
  5317. ],
  5318. "support": {
  5319. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5320. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5321. },
  5322. "time": "2019-01-08T18:20:26+00:00"
  5323. },
  5324. {
  5325. "name": "psr/http-client",
  5326. "version": "1.0.3",
  5327. "source": {
  5328. "type": "git",
  5329. "url": "https://github.com/php-fig/http-client.git",
  5330. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5331. },
  5332. "dist": {
  5333. "type": "zip",
  5334. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5335. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5336. "shasum": ""
  5337. },
  5338. "require": {
  5339. "php": "^7.0 || ^8.0",
  5340. "psr/http-message": "^1.0 || ^2.0"
  5341. },
  5342. "type": "library",
  5343. "extra": {
  5344. "branch-alias": {
  5345. "dev-master": "1.0.x-dev"
  5346. }
  5347. },
  5348. "autoload": {
  5349. "psr-4": {
  5350. "Psr\\Http\\Client\\": "src/"
  5351. }
  5352. },
  5353. "notification-url": "https://packagist.org/downloads/",
  5354. "license": [
  5355. "MIT"
  5356. ],
  5357. "authors": [
  5358. {
  5359. "name": "PHP-FIG",
  5360. "homepage": "https://www.php-fig.org/"
  5361. }
  5362. ],
  5363. "description": "Common interface for HTTP clients",
  5364. "homepage": "https://github.com/php-fig/http-client",
  5365. "keywords": [
  5366. "http",
  5367. "http-client",
  5368. "psr",
  5369. "psr-18"
  5370. ],
  5371. "support": {
  5372. "source": "https://github.com/php-fig/http-client"
  5373. },
  5374. "time": "2023-09-23T14:17:50+00:00"
  5375. },
  5376. {
  5377. "name": "psr/http-factory",
  5378. "version": "1.1.0",
  5379. "source": {
  5380. "type": "git",
  5381. "url": "https://github.com/php-fig/http-factory.git",
  5382. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5383. },
  5384. "dist": {
  5385. "type": "zip",
  5386. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5387. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5388. "shasum": ""
  5389. },
  5390. "require": {
  5391. "php": ">=7.1",
  5392. "psr/http-message": "^1.0 || ^2.0"
  5393. },
  5394. "type": "library",
  5395. "extra": {
  5396. "branch-alias": {
  5397. "dev-master": "1.0.x-dev"
  5398. }
  5399. },
  5400. "autoload": {
  5401. "psr-4": {
  5402. "Psr\\Http\\Message\\": "src/"
  5403. }
  5404. },
  5405. "notification-url": "https://packagist.org/downloads/",
  5406. "license": [
  5407. "MIT"
  5408. ],
  5409. "authors": [
  5410. {
  5411. "name": "PHP-FIG",
  5412. "homepage": "https://www.php-fig.org/"
  5413. }
  5414. ],
  5415. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5416. "keywords": [
  5417. "factory",
  5418. "http",
  5419. "message",
  5420. "psr",
  5421. "psr-17",
  5422. "psr-7",
  5423. "request",
  5424. "response"
  5425. ],
  5426. "support": {
  5427. "source": "https://github.com/php-fig/http-factory"
  5428. },
  5429. "time": "2024-04-15T12:06:14+00:00"
  5430. },
  5431. {
  5432. "name": "psr/http-message",
  5433. "version": "2.0",
  5434. "source": {
  5435. "type": "git",
  5436. "url": "https://github.com/php-fig/http-message.git",
  5437. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5438. },
  5439. "dist": {
  5440. "type": "zip",
  5441. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5442. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5443. "shasum": ""
  5444. },
  5445. "require": {
  5446. "php": "^7.2 || ^8.0"
  5447. },
  5448. "type": "library",
  5449. "extra": {
  5450. "branch-alias": {
  5451. "dev-master": "2.0.x-dev"
  5452. }
  5453. },
  5454. "autoload": {
  5455. "psr-4": {
  5456. "Psr\\Http\\Message\\": "src/"
  5457. }
  5458. },
  5459. "notification-url": "https://packagist.org/downloads/",
  5460. "license": [
  5461. "MIT"
  5462. ],
  5463. "authors": [
  5464. {
  5465. "name": "PHP-FIG",
  5466. "homepage": "https://www.php-fig.org/"
  5467. }
  5468. ],
  5469. "description": "Common interface for HTTP messages",
  5470. "homepage": "https://github.com/php-fig/http-message",
  5471. "keywords": [
  5472. "http",
  5473. "http-message",
  5474. "psr",
  5475. "psr-7",
  5476. "request",
  5477. "response"
  5478. ],
  5479. "support": {
  5480. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5481. },
  5482. "time": "2023-04-04T09:54:51+00:00"
  5483. },
  5484. {
  5485. "name": "psr/http-server-handler",
  5486. "version": "1.0.2",
  5487. "source": {
  5488. "type": "git",
  5489. "url": "https://github.com/php-fig/http-server-handler.git",
  5490. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5491. },
  5492. "dist": {
  5493. "type": "zip",
  5494. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5495. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5496. "shasum": ""
  5497. },
  5498. "require": {
  5499. "php": ">=7.0",
  5500. "psr/http-message": "^1.0 || ^2.0"
  5501. },
  5502. "type": "library",
  5503. "extra": {
  5504. "branch-alias": {
  5505. "dev-master": "1.0.x-dev"
  5506. }
  5507. },
  5508. "autoload": {
  5509. "psr-4": {
  5510. "Psr\\Http\\Server\\": "src/"
  5511. }
  5512. },
  5513. "notification-url": "https://packagist.org/downloads/",
  5514. "license": [
  5515. "MIT"
  5516. ],
  5517. "authors": [
  5518. {
  5519. "name": "PHP-FIG",
  5520. "homepage": "https://www.php-fig.org/"
  5521. }
  5522. ],
  5523. "description": "Common interface for HTTP server-side request handler",
  5524. "keywords": [
  5525. "handler",
  5526. "http",
  5527. "http-interop",
  5528. "psr",
  5529. "psr-15",
  5530. "psr-7",
  5531. "request",
  5532. "response",
  5533. "server"
  5534. ],
  5535. "support": {
  5536. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5537. },
  5538. "time": "2023-04-10T20:06:20+00:00"
  5539. },
  5540. {
  5541. "name": "psr/http-server-middleware",
  5542. "version": "1.0.2",
  5543. "source": {
  5544. "type": "git",
  5545. "url": "https://github.com/php-fig/http-server-middleware.git",
  5546. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5547. },
  5548. "dist": {
  5549. "type": "zip",
  5550. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5551. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5552. "shasum": ""
  5553. },
  5554. "require": {
  5555. "php": ">=7.0",
  5556. "psr/http-message": "^1.0 || ^2.0",
  5557. "psr/http-server-handler": "^1.0"
  5558. },
  5559. "type": "library",
  5560. "extra": {
  5561. "branch-alias": {
  5562. "dev-master": "1.0.x-dev"
  5563. }
  5564. },
  5565. "autoload": {
  5566. "psr-4": {
  5567. "Psr\\Http\\Server\\": "src/"
  5568. }
  5569. },
  5570. "notification-url": "https://packagist.org/downloads/",
  5571. "license": [
  5572. "MIT"
  5573. ],
  5574. "authors": [
  5575. {
  5576. "name": "PHP-FIG",
  5577. "homepage": "https://www.php-fig.org/"
  5578. }
  5579. ],
  5580. "description": "Common interface for HTTP server-side middleware",
  5581. "keywords": [
  5582. "http",
  5583. "http-interop",
  5584. "middleware",
  5585. "psr",
  5586. "psr-15",
  5587. "psr-7",
  5588. "request",
  5589. "response"
  5590. ],
  5591. "support": {
  5592. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5593. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5594. },
  5595. "time": "2023-04-11T06:14:47+00:00"
  5596. },
  5597. {
  5598. "name": "psr/log",
  5599. "version": "3.0.0",
  5600. "source": {
  5601. "type": "git",
  5602. "url": "https://github.com/php-fig/log.git",
  5603. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5604. },
  5605. "dist": {
  5606. "type": "zip",
  5607. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5608. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5609. "shasum": ""
  5610. },
  5611. "require": {
  5612. "php": ">=8.0.0"
  5613. },
  5614. "type": "library",
  5615. "extra": {
  5616. "branch-alias": {
  5617. "dev-master": "3.x-dev"
  5618. }
  5619. },
  5620. "autoload": {
  5621. "psr-4": {
  5622. "Psr\\Log\\": "src"
  5623. }
  5624. },
  5625. "notification-url": "https://packagist.org/downloads/",
  5626. "license": [
  5627. "MIT"
  5628. ],
  5629. "authors": [
  5630. {
  5631. "name": "PHP-FIG",
  5632. "homepage": "https://www.php-fig.org/"
  5633. }
  5634. ],
  5635. "description": "Common interface for logging libraries",
  5636. "homepage": "https://github.com/php-fig/log",
  5637. "keywords": [
  5638. "log",
  5639. "psr",
  5640. "psr-3"
  5641. ],
  5642. "support": {
  5643. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5644. },
  5645. "time": "2021-07-14T16:46:02+00:00"
  5646. },
  5647. {
  5648. "name": "psr/simple-cache",
  5649. "version": "3.0.0",
  5650. "source": {
  5651. "type": "git",
  5652. "url": "https://github.com/php-fig/simple-cache.git",
  5653. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5654. },
  5655. "dist": {
  5656. "type": "zip",
  5657. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5658. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5659. "shasum": ""
  5660. },
  5661. "require": {
  5662. "php": ">=8.0.0"
  5663. },
  5664. "type": "library",
  5665. "extra": {
  5666. "branch-alias": {
  5667. "dev-master": "3.0.x-dev"
  5668. }
  5669. },
  5670. "autoload": {
  5671. "psr-4": {
  5672. "Psr\\SimpleCache\\": "src/"
  5673. }
  5674. },
  5675. "notification-url": "https://packagist.org/downloads/",
  5676. "license": [
  5677. "MIT"
  5678. ],
  5679. "authors": [
  5680. {
  5681. "name": "PHP-FIG",
  5682. "homepage": "https://www.php-fig.org/"
  5683. }
  5684. ],
  5685. "description": "Common interfaces for simple caching",
  5686. "keywords": [
  5687. "cache",
  5688. "caching",
  5689. "psr",
  5690. "psr-16",
  5691. "simple-cache"
  5692. ],
  5693. "support": {
  5694. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5695. },
  5696. "time": "2021-10-29T13:26:27+00:00"
  5697. },
  5698. {
  5699. "name": "ralouphie/getallheaders",
  5700. "version": "3.0.3",
  5701. "source": {
  5702. "type": "git",
  5703. "url": "https://github.com/ralouphie/getallheaders.git",
  5704. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5705. },
  5706. "dist": {
  5707. "type": "zip",
  5708. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5709. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5710. "shasum": ""
  5711. },
  5712. "require": {
  5713. "php": ">=5.6"
  5714. },
  5715. "require-dev": {
  5716. "php-coveralls/php-coveralls": "^2.1",
  5717. "phpunit/phpunit": "^5 || ^6.5"
  5718. },
  5719. "type": "library",
  5720. "autoload": {
  5721. "files": [
  5722. "src/getallheaders.php"
  5723. ]
  5724. },
  5725. "notification-url": "https://packagist.org/downloads/",
  5726. "license": [
  5727. "MIT"
  5728. ],
  5729. "authors": [
  5730. {
  5731. "name": "Ralph Khattar",
  5732. "email": "ralph.khattar@gmail.com"
  5733. }
  5734. ],
  5735. "description": "A polyfill for getallheaders.",
  5736. "support": {
  5737. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5738. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5739. },
  5740. "time": "2019-03-08T08:55:37+00:00"
  5741. },
  5742. {
  5743. "name": "swow/psr7-plus",
  5744. "version": "v1.1.2",
  5745. "source": {
  5746. "type": "git",
  5747. "url": "https://github.com/swow/psr7-plus.git",
  5748. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5749. },
  5750. "dist": {
  5751. "type": "zip",
  5752. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5753. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5754. "shasum": ""
  5755. },
  5756. "require": {
  5757. "php": ">=8.0",
  5758. "psr/http-client": "^1.0",
  5759. "psr/http-factory": "^1.0",
  5760. "psr/http-message": "^1.1|^2.0"
  5761. },
  5762. "type": "library",
  5763. "autoload": {
  5764. "psr-4": {
  5765. "Swow\\Psr7\\Message\\": "src/Message/"
  5766. }
  5767. },
  5768. "notification-url": "https://packagist.org/downloads/",
  5769. "license": [
  5770. "Apache-2.0"
  5771. ],
  5772. "authors": [
  5773. {
  5774. "name": "twose",
  5775. "email": "twosee@php.net"
  5776. }
  5777. ],
  5778. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5779. "keywords": [
  5780. "http",
  5781. "psr17",
  5782. "psr7",
  5783. "swow",
  5784. "websocket"
  5785. ],
  5786. "support": {
  5787. "issues": "https://github.com/swow/swow",
  5788. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5789. },
  5790. "time": "2023-06-15T09:18:11+00:00"
  5791. },
  5792. {
  5793. "name": "symfony/console",
  5794. "version": "v6.4.8",
  5795. "source": {
  5796. "type": "git",
  5797. "url": "https://github.com/symfony/console.git",
  5798. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  5799. },
  5800. "dist": {
  5801. "type": "zip",
  5802. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5803. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5804. "shasum": ""
  5805. },
  5806. "require": {
  5807. "php": ">=8.1",
  5808. "symfony/deprecation-contracts": "^2.5|^3",
  5809. "symfony/polyfill-mbstring": "~1.0",
  5810. "symfony/service-contracts": "^2.5|^3",
  5811. "symfony/string": "^5.4|^6.0|^7.0"
  5812. },
  5813. "conflict": {
  5814. "symfony/dependency-injection": "<5.4",
  5815. "symfony/dotenv": "<5.4",
  5816. "symfony/event-dispatcher": "<5.4",
  5817. "symfony/lock": "<5.4",
  5818. "symfony/process": "<5.4"
  5819. },
  5820. "provide": {
  5821. "psr/log-implementation": "1.0|2.0|3.0"
  5822. },
  5823. "require-dev": {
  5824. "psr/log": "^1|^2|^3",
  5825. "symfony/config": "^5.4|^6.0|^7.0",
  5826. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5827. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5828. "symfony/http-foundation": "^6.4|^7.0",
  5829. "symfony/http-kernel": "^6.4|^7.0",
  5830. "symfony/lock": "^5.4|^6.0|^7.0",
  5831. "symfony/messenger": "^5.4|^6.0|^7.0",
  5832. "symfony/process": "^5.4|^6.0|^7.0",
  5833. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5834. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5835. },
  5836. "type": "library",
  5837. "autoload": {
  5838. "psr-4": {
  5839. "Symfony\\Component\\Console\\": ""
  5840. },
  5841. "exclude-from-classmap": [
  5842. "/Tests/"
  5843. ]
  5844. },
  5845. "notification-url": "https://packagist.org/downloads/",
  5846. "license": [
  5847. "MIT"
  5848. ],
  5849. "authors": [
  5850. {
  5851. "name": "Fabien Potencier",
  5852. "email": "fabien@symfony.com"
  5853. },
  5854. {
  5855. "name": "Symfony Community",
  5856. "homepage": "https://symfony.com/contributors"
  5857. }
  5858. ],
  5859. "description": "Eases the creation of beautiful and testable command line interfaces",
  5860. "homepage": "https://symfony.com",
  5861. "keywords": [
  5862. "cli",
  5863. "command-line",
  5864. "console",
  5865. "terminal"
  5866. ],
  5867. "support": {
  5868. "source": "https://github.com/symfony/console/tree/v6.4.8"
  5869. },
  5870. "funding": [
  5871. {
  5872. "url": "https://symfony.com/sponsor",
  5873. "type": "custom"
  5874. },
  5875. {
  5876. "url": "https://github.com/fabpot",
  5877. "type": "github"
  5878. },
  5879. {
  5880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5881. "type": "tidelift"
  5882. }
  5883. ],
  5884. "time": "2024-05-31T14:49:08+00:00"
  5885. },
  5886. {
  5887. "name": "symfony/deprecation-contracts",
  5888. "version": "v3.5.0",
  5889. "source": {
  5890. "type": "git",
  5891. "url": "https://github.com/symfony/deprecation-contracts.git",
  5892. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5893. },
  5894. "dist": {
  5895. "type": "zip",
  5896. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5897. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5898. "shasum": ""
  5899. },
  5900. "require": {
  5901. "php": ">=8.1"
  5902. },
  5903. "type": "library",
  5904. "extra": {
  5905. "branch-alias": {
  5906. "dev-main": "3.5-dev"
  5907. },
  5908. "thanks": {
  5909. "name": "symfony/contracts",
  5910. "url": "https://github.com/symfony/contracts"
  5911. }
  5912. },
  5913. "autoload": {
  5914. "files": [
  5915. "function.php"
  5916. ]
  5917. },
  5918. "notification-url": "https://packagist.org/downloads/",
  5919. "license": [
  5920. "MIT"
  5921. ],
  5922. "authors": [
  5923. {
  5924. "name": "Nicolas Grekas",
  5925. "email": "p@tchwork.com"
  5926. },
  5927. {
  5928. "name": "Symfony Community",
  5929. "homepage": "https://symfony.com/contributors"
  5930. }
  5931. ],
  5932. "description": "A generic function and convention to trigger deprecation notices",
  5933. "homepage": "https://symfony.com",
  5934. "support": {
  5935. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5936. },
  5937. "funding": [
  5938. {
  5939. "url": "https://symfony.com/sponsor",
  5940. "type": "custom"
  5941. },
  5942. {
  5943. "url": "https://github.com/fabpot",
  5944. "type": "github"
  5945. },
  5946. {
  5947. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5948. "type": "tidelift"
  5949. }
  5950. ],
  5951. "time": "2024-04-18T09:32:20+00:00"
  5952. },
  5953. {
  5954. "name": "symfony/finder",
  5955. "version": "v6.4.8",
  5956. "source": {
  5957. "type": "git",
  5958. "url": "https://github.com/symfony/finder.git",
  5959. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  5960. },
  5961. "dist": {
  5962. "type": "zip",
  5963. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  5964. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  5965. "shasum": ""
  5966. },
  5967. "require": {
  5968. "php": ">=8.1"
  5969. },
  5970. "require-dev": {
  5971. "symfony/filesystem": "^6.0|^7.0"
  5972. },
  5973. "type": "library",
  5974. "autoload": {
  5975. "psr-4": {
  5976. "Symfony\\Component\\Finder\\": ""
  5977. },
  5978. "exclude-from-classmap": [
  5979. "/Tests/"
  5980. ]
  5981. },
  5982. "notification-url": "https://packagist.org/downloads/",
  5983. "license": [
  5984. "MIT"
  5985. ],
  5986. "authors": [
  5987. {
  5988. "name": "Fabien Potencier",
  5989. "email": "fabien@symfony.com"
  5990. },
  5991. {
  5992. "name": "Symfony Community",
  5993. "homepage": "https://symfony.com/contributors"
  5994. }
  5995. ],
  5996. "description": "Finds files and directories via an intuitive fluent interface",
  5997. "homepage": "https://symfony.com",
  5998. "support": {
  5999. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  6000. },
  6001. "funding": [
  6002. {
  6003. "url": "https://symfony.com/sponsor",
  6004. "type": "custom"
  6005. },
  6006. {
  6007. "url": "https://github.com/fabpot",
  6008. "type": "github"
  6009. },
  6010. {
  6011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6012. "type": "tidelift"
  6013. }
  6014. ],
  6015. "time": "2024-05-31T14:49:08+00:00"
  6016. },
  6017. {
  6018. "name": "symfony/polyfill-ctype",
  6019. "version": "v1.29.0",
  6020. "source": {
  6021. "type": "git",
  6022. "url": "https://github.com/symfony/polyfill-ctype.git",
  6023. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6024. },
  6025. "dist": {
  6026. "type": "zip",
  6027. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6028. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6029. "shasum": ""
  6030. },
  6031. "require": {
  6032. "php": ">=7.1"
  6033. },
  6034. "provide": {
  6035. "ext-ctype": "*"
  6036. },
  6037. "suggest": {
  6038. "ext-ctype": "For best performance"
  6039. },
  6040. "type": "library",
  6041. "extra": {
  6042. "thanks": {
  6043. "name": "symfony/polyfill",
  6044. "url": "https://github.com/symfony/polyfill"
  6045. }
  6046. },
  6047. "autoload": {
  6048. "files": [
  6049. "bootstrap.php"
  6050. ],
  6051. "psr-4": {
  6052. "Symfony\\Polyfill\\Ctype\\": ""
  6053. }
  6054. },
  6055. "notification-url": "https://packagist.org/downloads/",
  6056. "license": [
  6057. "MIT"
  6058. ],
  6059. "authors": [
  6060. {
  6061. "name": "Gert de Pagter",
  6062. "email": "BackEndTea@gmail.com"
  6063. },
  6064. {
  6065. "name": "Symfony Community",
  6066. "homepage": "https://symfony.com/contributors"
  6067. }
  6068. ],
  6069. "description": "Symfony polyfill for ctype functions",
  6070. "homepage": "https://symfony.com",
  6071. "keywords": [
  6072. "compatibility",
  6073. "ctype",
  6074. "polyfill",
  6075. "portable"
  6076. ],
  6077. "support": {
  6078. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6079. },
  6080. "funding": [
  6081. {
  6082. "url": "https://symfony.com/sponsor",
  6083. "type": "custom"
  6084. },
  6085. {
  6086. "url": "https://github.com/fabpot",
  6087. "type": "github"
  6088. },
  6089. {
  6090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6091. "type": "tidelift"
  6092. }
  6093. ],
  6094. "time": "2024-01-29T20:11:03+00:00"
  6095. },
  6096. {
  6097. "name": "symfony/polyfill-intl-grapheme",
  6098. "version": "v1.29.0",
  6099. "source": {
  6100. "type": "git",
  6101. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6102. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6103. },
  6104. "dist": {
  6105. "type": "zip",
  6106. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6107. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6108. "shasum": ""
  6109. },
  6110. "require": {
  6111. "php": ">=7.1"
  6112. },
  6113. "suggest": {
  6114. "ext-intl": "For best performance"
  6115. },
  6116. "type": "library",
  6117. "extra": {
  6118. "thanks": {
  6119. "name": "symfony/polyfill",
  6120. "url": "https://github.com/symfony/polyfill"
  6121. }
  6122. },
  6123. "autoload": {
  6124. "files": [
  6125. "bootstrap.php"
  6126. ],
  6127. "psr-4": {
  6128. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6129. }
  6130. },
  6131. "notification-url": "https://packagist.org/downloads/",
  6132. "license": [
  6133. "MIT"
  6134. ],
  6135. "authors": [
  6136. {
  6137. "name": "Nicolas Grekas",
  6138. "email": "p@tchwork.com"
  6139. },
  6140. {
  6141. "name": "Symfony Community",
  6142. "homepage": "https://symfony.com/contributors"
  6143. }
  6144. ],
  6145. "description": "Symfony polyfill for intl's grapheme_* functions",
  6146. "homepage": "https://symfony.com",
  6147. "keywords": [
  6148. "compatibility",
  6149. "grapheme",
  6150. "intl",
  6151. "polyfill",
  6152. "portable",
  6153. "shim"
  6154. ],
  6155. "support": {
  6156. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6157. },
  6158. "funding": [
  6159. {
  6160. "url": "https://symfony.com/sponsor",
  6161. "type": "custom"
  6162. },
  6163. {
  6164. "url": "https://github.com/fabpot",
  6165. "type": "github"
  6166. },
  6167. {
  6168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6169. "type": "tidelift"
  6170. }
  6171. ],
  6172. "time": "2024-01-29T20:11:03+00:00"
  6173. },
  6174. {
  6175. "name": "symfony/polyfill-intl-normalizer",
  6176. "version": "v1.29.0",
  6177. "source": {
  6178. "type": "git",
  6179. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6180. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6181. },
  6182. "dist": {
  6183. "type": "zip",
  6184. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6185. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6186. "shasum": ""
  6187. },
  6188. "require": {
  6189. "php": ">=7.1"
  6190. },
  6191. "suggest": {
  6192. "ext-intl": "For best performance"
  6193. },
  6194. "type": "library",
  6195. "extra": {
  6196. "thanks": {
  6197. "name": "symfony/polyfill",
  6198. "url": "https://github.com/symfony/polyfill"
  6199. }
  6200. },
  6201. "autoload": {
  6202. "files": [
  6203. "bootstrap.php"
  6204. ],
  6205. "psr-4": {
  6206. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6207. },
  6208. "classmap": [
  6209. "Resources/stubs"
  6210. ]
  6211. },
  6212. "notification-url": "https://packagist.org/downloads/",
  6213. "license": [
  6214. "MIT"
  6215. ],
  6216. "authors": [
  6217. {
  6218. "name": "Nicolas Grekas",
  6219. "email": "p@tchwork.com"
  6220. },
  6221. {
  6222. "name": "Symfony Community",
  6223. "homepage": "https://symfony.com/contributors"
  6224. }
  6225. ],
  6226. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6227. "homepage": "https://symfony.com",
  6228. "keywords": [
  6229. "compatibility",
  6230. "intl",
  6231. "normalizer",
  6232. "polyfill",
  6233. "portable",
  6234. "shim"
  6235. ],
  6236. "support": {
  6237. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6238. },
  6239. "funding": [
  6240. {
  6241. "url": "https://symfony.com/sponsor",
  6242. "type": "custom"
  6243. },
  6244. {
  6245. "url": "https://github.com/fabpot",
  6246. "type": "github"
  6247. },
  6248. {
  6249. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6250. "type": "tidelift"
  6251. }
  6252. ],
  6253. "time": "2024-01-29T20:11:03+00:00"
  6254. },
  6255. {
  6256. "name": "symfony/polyfill-mbstring",
  6257. "version": "v1.29.0",
  6258. "source": {
  6259. "type": "git",
  6260. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6261. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6262. },
  6263. "dist": {
  6264. "type": "zip",
  6265. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6266. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6267. "shasum": ""
  6268. },
  6269. "require": {
  6270. "php": ">=7.1"
  6271. },
  6272. "provide": {
  6273. "ext-mbstring": "*"
  6274. },
  6275. "suggest": {
  6276. "ext-mbstring": "For best performance"
  6277. },
  6278. "type": "library",
  6279. "extra": {
  6280. "thanks": {
  6281. "name": "symfony/polyfill",
  6282. "url": "https://github.com/symfony/polyfill"
  6283. }
  6284. },
  6285. "autoload": {
  6286. "files": [
  6287. "bootstrap.php"
  6288. ],
  6289. "psr-4": {
  6290. "Symfony\\Polyfill\\Mbstring\\": ""
  6291. }
  6292. },
  6293. "notification-url": "https://packagist.org/downloads/",
  6294. "license": [
  6295. "MIT"
  6296. ],
  6297. "authors": [
  6298. {
  6299. "name": "Nicolas Grekas",
  6300. "email": "p@tchwork.com"
  6301. },
  6302. {
  6303. "name": "Symfony Community",
  6304. "homepage": "https://symfony.com/contributors"
  6305. }
  6306. ],
  6307. "description": "Symfony polyfill for the Mbstring extension",
  6308. "homepage": "https://symfony.com",
  6309. "keywords": [
  6310. "compatibility",
  6311. "mbstring",
  6312. "polyfill",
  6313. "portable",
  6314. "shim"
  6315. ],
  6316. "support": {
  6317. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6318. },
  6319. "funding": [
  6320. {
  6321. "url": "https://symfony.com/sponsor",
  6322. "type": "custom"
  6323. },
  6324. {
  6325. "url": "https://github.com/fabpot",
  6326. "type": "github"
  6327. },
  6328. {
  6329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6330. "type": "tidelift"
  6331. }
  6332. ],
  6333. "time": "2024-01-29T20:11:03+00:00"
  6334. },
  6335. {
  6336. "name": "symfony/polyfill-php80",
  6337. "version": "v1.29.0",
  6338. "source": {
  6339. "type": "git",
  6340. "url": "https://github.com/symfony/polyfill-php80.git",
  6341. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6342. },
  6343. "dist": {
  6344. "type": "zip",
  6345. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6346. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6347. "shasum": ""
  6348. },
  6349. "require": {
  6350. "php": ">=7.1"
  6351. },
  6352. "type": "library",
  6353. "extra": {
  6354. "thanks": {
  6355. "name": "symfony/polyfill",
  6356. "url": "https://github.com/symfony/polyfill"
  6357. }
  6358. },
  6359. "autoload": {
  6360. "files": [
  6361. "bootstrap.php"
  6362. ],
  6363. "psr-4": {
  6364. "Symfony\\Polyfill\\Php80\\": ""
  6365. },
  6366. "classmap": [
  6367. "Resources/stubs"
  6368. ]
  6369. },
  6370. "notification-url": "https://packagist.org/downloads/",
  6371. "license": [
  6372. "MIT"
  6373. ],
  6374. "authors": [
  6375. {
  6376. "name": "Ion Bazan",
  6377. "email": "ion.bazan@gmail.com"
  6378. },
  6379. {
  6380. "name": "Nicolas Grekas",
  6381. "email": "p@tchwork.com"
  6382. },
  6383. {
  6384. "name": "Symfony Community",
  6385. "homepage": "https://symfony.com/contributors"
  6386. }
  6387. ],
  6388. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6389. "homepage": "https://symfony.com",
  6390. "keywords": [
  6391. "compatibility",
  6392. "polyfill",
  6393. "portable",
  6394. "shim"
  6395. ],
  6396. "support": {
  6397. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6398. },
  6399. "funding": [
  6400. {
  6401. "url": "https://symfony.com/sponsor",
  6402. "type": "custom"
  6403. },
  6404. {
  6405. "url": "https://github.com/fabpot",
  6406. "type": "github"
  6407. },
  6408. {
  6409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6410. "type": "tidelift"
  6411. }
  6412. ],
  6413. "time": "2024-01-29T20:11:03+00:00"
  6414. },
  6415. {
  6416. "name": "symfony/service-contracts",
  6417. "version": "v3.5.0",
  6418. "source": {
  6419. "type": "git",
  6420. "url": "https://github.com/symfony/service-contracts.git",
  6421. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6422. },
  6423. "dist": {
  6424. "type": "zip",
  6425. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6426. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6427. "shasum": ""
  6428. },
  6429. "require": {
  6430. "php": ">=8.1",
  6431. "psr/container": "^1.1|^2.0",
  6432. "symfony/deprecation-contracts": "^2.5|^3"
  6433. },
  6434. "conflict": {
  6435. "ext-psr": "<1.1|>=2"
  6436. },
  6437. "type": "library",
  6438. "extra": {
  6439. "branch-alias": {
  6440. "dev-main": "3.5-dev"
  6441. },
  6442. "thanks": {
  6443. "name": "symfony/contracts",
  6444. "url": "https://github.com/symfony/contracts"
  6445. }
  6446. },
  6447. "autoload": {
  6448. "psr-4": {
  6449. "Symfony\\Contracts\\Service\\": ""
  6450. },
  6451. "exclude-from-classmap": [
  6452. "/Test/"
  6453. ]
  6454. },
  6455. "notification-url": "https://packagist.org/downloads/",
  6456. "license": [
  6457. "MIT"
  6458. ],
  6459. "authors": [
  6460. {
  6461. "name": "Nicolas Grekas",
  6462. "email": "p@tchwork.com"
  6463. },
  6464. {
  6465. "name": "Symfony Community",
  6466. "homepage": "https://symfony.com/contributors"
  6467. }
  6468. ],
  6469. "description": "Generic abstractions related to writing services",
  6470. "homepage": "https://symfony.com",
  6471. "keywords": [
  6472. "abstractions",
  6473. "contracts",
  6474. "decoupling",
  6475. "interfaces",
  6476. "interoperability",
  6477. "standards"
  6478. ],
  6479. "support": {
  6480. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6481. },
  6482. "funding": [
  6483. {
  6484. "url": "https://symfony.com/sponsor",
  6485. "type": "custom"
  6486. },
  6487. {
  6488. "url": "https://github.com/fabpot",
  6489. "type": "github"
  6490. },
  6491. {
  6492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6493. "type": "tidelift"
  6494. }
  6495. ],
  6496. "time": "2024-04-18T09:32:20+00:00"
  6497. },
  6498. {
  6499. "name": "symfony/string",
  6500. "version": "v6.4.8",
  6501. "source": {
  6502. "type": "git",
  6503. "url": "https://github.com/symfony/string.git",
  6504. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  6505. },
  6506. "dist": {
  6507. "type": "zip",
  6508. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6509. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6510. "shasum": ""
  6511. },
  6512. "require": {
  6513. "php": ">=8.1",
  6514. "symfony/polyfill-ctype": "~1.8",
  6515. "symfony/polyfill-intl-grapheme": "~1.0",
  6516. "symfony/polyfill-intl-normalizer": "~1.0",
  6517. "symfony/polyfill-mbstring": "~1.0"
  6518. },
  6519. "conflict": {
  6520. "symfony/translation-contracts": "<2.5"
  6521. },
  6522. "require-dev": {
  6523. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6524. "symfony/http-client": "^5.4|^6.0|^7.0",
  6525. "symfony/intl": "^6.2|^7.0",
  6526. "symfony/translation-contracts": "^2.5|^3.0",
  6527. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6528. },
  6529. "type": "library",
  6530. "autoload": {
  6531. "files": [
  6532. "Resources/functions.php"
  6533. ],
  6534. "psr-4": {
  6535. "Symfony\\Component\\String\\": ""
  6536. },
  6537. "exclude-from-classmap": [
  6538. "/Tests/"
  6539. ]
  6540. },
  6541. "notification-url": "https://packagist.org/downloads/",
  6542. "license": [
  6543. "MIT"
  6544. ],
  6545. "authors": [
  6546. {
  6547. "name": "Nicolas Grekas",
  6548. "email": "p@tchwork.com"
  6549. },
  6550. {
  6551. "name": "Symfony Community",
  6552. "homepage": "https://symfony.com/contributors"
  6553. }
  6554. ],
  6555. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6556. "homepage": "https://symfony.com",
  6557. "keywords": [
  6558. "grapheme",
  6559. "i18n",
  6560. "string",
  6561. "unicode",
  6562. "utf-8",
  6563. "utf8"
  6564. ],
  6565. "support": {
  6566. "source": "https://github.com/symfony/string/tree/v6.4.8"
  6567. },
  6568. "funding": [
  6569. {
  6570. "url": "https://symfony.com/sponsor",
  6571. "type": "custom"
  6572. },
  6573. {
  6574. "url": "https://github.com/fabpot",
  6575. "type": "github"
  6576. },
  6577. {
  6578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6579. "type": "tidelift"
  6580. }
  6581. ],
  6582. "time": "2024-05-31T14:49:08+00:00"
  6583. },
  6584. {
  6585. "name": "symfony/translation",
  6586. "version": "v6.4.8",
  6587. "source": {
  6588. "type": "git",
  6589. "url": "https://github.com/symfony/translation.git",
  6590. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  6591. },
  6592. "dist": {
  6593. "type": "zip",
  6594. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6595. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6596. "shasum": ""
  6597. },
  6598. "require": {
  6599. "php": ">=8.1",
  6600. "symfony/deprecation-contracts": "^2.5|^3",
  6601. "symfony/polyfill-mbstring": "~1.0",
  6602. "symfony/translation-contracts": "^2.5|^3.0"
  6603. },
  6604. "conflict": {
  6605. "symfony/config": "<5.4",
  6606. "symfony/console": "<5.4",
  6607. "symfony/dependency-injection": "<5.4",
  6608. "symfony/http-client-contracts": "<2.5",
  6609. "symfony/http-kernel": "<5.4",
  6610. "symfony/service-contracts": "<2.5",
  6611. "symfony/twig-bundle": "<5.4",
  6612. "symfony/yaml": "<5.4"
  6613. },
  6614. "provide": {
  6615. "symfony/translation-implementation": "2.3|3.0"
  6616. },
  6617. "require-dev": {
  6618. "nikic/php-parser": "^4.18|^5.0",
  6619. "psr/log": "^1|^2|^3",
  6620. "symfony/config": "^5.4|^6.0|^7.0",
  6621. "symfony/console": "^5.4|^6.0|^7.0",
  6622. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6623. "symfony/finder": "^5.4|^6.0|^7.0",
  6624. "symfony/http-client-contracts": "^2.5|^3.0",
  6625. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6626. "symfony/intl": "^5.4|^6.0|^7.0",
  6627. "symfony/polyfill-intl-icu": "^1.21",
  6628. "symfony/routing": "^5.4|^6.0|^7.0",
  6629. "symfony/service-contracts": "^2.5|^3",
  6630. "symfony/yaml": "^5.4|^6.0|^7.0"
  6631. },
  6632. "type": "library",
  6633. "autoload": {
  6634. "files": [
  6635. "Resources/functions.php"
  6636. ],
  6637. "psr-4": {
  6638. "Symfony\\Component\\Translation\\": ""
  6639. },
  6640. "exclude-from-classmap": [
  6641. "/Tests/"
  6642. ]
  6643. },
  6644. "notification-url": "https://packagist.org/downloads/",
  6645. "license": [
  6646. "MIT"
  6647. ],
  6648. "authors": [
  6649. {
  6650. "name": "Fabien Potencier",
  6651. "email": "fabien@symfony.com"
  6652. },
  6653. {
  6654. "name": "Symfony Community",
  6655. "homepage": "https://symfony.com/contributors"
  6656. }
  6657. ],
  6658. "description": "Provides tools to internationalize your application",
  6659. "homepage": "https://symfony.com",
  6660. "support": {
  6661. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  6662. },
  6663. "funding": [
  6664. {
  6665. "url": "https://symfony.com/sponsor",
  6666. "type": "custom"
  6667. },
  6668. {
  6669. "url": "https://github.com/fabpot",
  6670. "type": "github"
  6671. },
  6672. {
  6673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6674. "type": "tidelift"
  6675. }
  6676. ],
  6677. "time": "2024-05-31T14:49:08+00:00"
  6678. },
  6679. {
  6680. "name": "symfony/translation-contracts",
  6681. "version": "v3.5.0",
  6682. "source": {
  6683. "type": "git",
  6684. "url": "https://github.com/symfony/translation-contracts.git",
  6685. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6686. },
  6687. "dist": {
  6688. "type": "zip",
  6689. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6690. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6691. "shasum": ""
  6692. },
  6693. "require": {
  6694. "php": ">=8.1"
  6695. },
  6696. "type": "library",
  6697. "extra": {
  6698. "branch-alias": {
  6699. "dev-main": "3.5-dev"
  6700. },
  6701. "thanks": {
  6702. "name": "symfony/contracts",
  6703. "url": "https://github.com/symfony/contracts"
  6704. }
  6705. },
  6706. "autoload": {
  6707. "psr-4": {
  6708. "Symfony\\Contracts\\Translation\\": ""
  6709. },
  6710. "exclude-from-classmap": [
  6711. "/Test/"
  6712. ]
  6713. },
  6714. "notification-url": "https://packagist.org/downloads/",
  6715. "license": [
  6716. "MIT"
  6717. ],
  6718. "authors": [
  6719. {
  6720. "name": "Nicolas Grekas",
  6721. "email": "p@tchwork.com"
  6722. },
  6723. {
  6724. "name": "Symfony Community",
  6725. "homepage": "https://symfony.com/contributors"
  6726. }
  6727. ],
  6728. "description": "Generic abstractions related to translation",
  6729. "homepage": "https://symfony.com",
  6730. "keywords": [
  6731. "abstractions",
  6732. "contracts",
  6733. "decoupling",
  6734. "interfaces",
  6735. "interoperability",
  6736. "standards"
  6737. ],
  6738. "support": {
  6739. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6740. },
  6741. "funding": [
  6742. {
  6743. "url": "https://symfony.com/sponsor",
  6744. "type": "custom"
  6745. },
  6746. {
  6747. "url": "https://github.com/fabpot",
  6748. "type": "github"
  6749. },
  6750. {
  6751. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6752. "type": "tidelift"
  6753. }
  6754. ],
  6755. "time": "2024-04-18T09:32:20+00:00"
  6756. },
  6757. {
  6758. "name": "vlucas/phpdotenv",
  6759. "version": "v5.6.0",
  6760. "source": {
  6761. "type": "git",
  6762. "url": "https://github.com/vlucas/phpdotenv.git",
  6763. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  6764. },
  6765. "dist": {
  6766. "type": "zip",
  6767. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6768. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6769. "shasum": ""
  6770. },
  6771. "require": {
  6772. "ext-pcre": "*",
  6773. "graham-campbell/result-type": "^1.1.2",
  6774. "php": "^7.2.5 || ^8.0",
  6775. "phpoption/phpoption": "^1.9.2",
  6776. "symfony/polyfill-ctype": "^1.24",
  6777. "symfony/polyfill-mbstring": "^1.24",
  6778. "symfony/polyfill-php80": "^1.24"
  6779. },
  6780. "require-dev": {
  6781. "bamarni/composer-bin-plugin": "^1.8.2",
  6782. "ext-filter": "*",
  6783. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6784. },
  6785. "suggest": {
  6786. "ext-filter": "Required to use the boolean validator."
  6787. },
  6788. "type": "library",
  6789. "extra": {
  6790. "bamarni-bin": {
  6791. "bin-links": true,
  6792. "forward-command": true
  6793. },
  6794. "branch-alias": {
  6795. "dev-master": "5.6-dev"
  6796. }
  6797. },
  6798. "autoload": {
  6799. "psr-4": {
  6800. "Dotenv\\": "src/"
  6801. }
  6802. },
  6803. "notification-url": "https://packagist.org/downloads/",
  6804. "license": [
  6805. "BSD-3-Clause"
  6806. ],
  6807. "authors": [
  6808. {
  6809. "name": "Graham Campbell",
  6810. "email": "hello@gjcampbell.co.uk",
  6811. "homepage": "https://github.com/GrahamCampbell"
  6812. },
  6813. {
  6814. "name": "Vance Lucas",
  6815. "email": "vance@vancelucas.com",
  6816. "homepage": "https://github.com/vlucas"
  6817. }
  6818. ],
  6819. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6820. "keywords": [
  6821. "dotenv",
  6822. "env",
  6823. "environment"
  6824. ],
  6825. "support": {
  6826. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6827. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  6828. },
  6829. "funding": [
  6830. {
  6831. "url": "https://github.com/GrahamCampbell",
  6832. "type": "github"
  6833. },
  6834. {
  6835. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6836. "type": "tidelift"
  6837. }
  6838. ],
  6839. "time": "2023-11-12T22:43:29+00:00"
  6840. }
  6841. ],
  6842. "packages-dev": [
  6843. {
  6844. "name": "clue/ndjson-react",
  6845. "version": "v1.3.0",
  6846. "source": {
  6847. "type": "git",
  6848. "url": "https://github.com/clue/reactphp-ndjson.git",
  6849. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6850. },
  6851. "dist": {
  6852. "type": "zip",
  6853. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  6854. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  6855. "shasum": ""
  6856. },
  6857. "require": {
  6858. "php": ">=5.3",
  6859. "react/stream": "^1.2"
  6860. },
  6861. "require-dev": {
  6862. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  6863. "react/event-loop": "^1.2"
  6864. },
  6865. "type": "library",
  6866. "autoload": {
  6867. "psr-4": {
  6868. "Clue\\React\\NDJson\\": "src/"
  6869. }
  6870. },
  6871. "notification-url": "https://packagist.org/downloads/",
  6872. "license": [
  6873. "MIT"
  6874. ],
  6875. "authors": [
  6876. {
  6877. "name": "Christian Lück",
  6878. "email": "christian@clue.engineering"
  6879. }
  6880. ],
  6881. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  6882. "homepage": "https://github.com/clue/reactphp-ndjson",
  6883. "keywords": [
  6884. "NDJSON",
  6885. "json",
  6886. "jsonlines",
  6887. "newline",
  6888. "reactphp",
  6889. "streaming"
  6890. ],
  6891. "support": {
  6892. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  6893. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  6894. },
  6895. "funding": [
  6896. {
  6897. "url": "https://clue.engineering/support",
  6898. "type": "custom"
  6899. },
  6900. {
  6901. "url": "https://github.com/clue",
  6902. "type": "github"
  6903. }
  6904. ],
  6905. "time": "2022-12-23T10:58:28+00:00"
  6906. },
  6907. {
  6908. "name": "composer/pcre",
  6909. "version": "3.1.4",
  6910. "source": {
  6911. "type": "git",
  6912. "url": "https://github.com/composer/pcre.git",
  6913. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  6914. },
  6915. "dist": {
  6916. "type": "zip",
  6917. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  6918. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  6919. "shasum": ""
  6920. },
  6921. "require": {
  6922. "php": "^7.4 || ^8.0"
  6923. },
  6924. "require-dev": {
  6925. "phpstan/phpstan": "^1.3",
  6926. "phpstan/phpstan-strict-rules": "^1.1",
  6927. "symfony/phpunit-bridge": "^5"
  6928. },
  6929. "type": "library",
  6930. "extra": {
  6931. "branch-alias": {
  6932. "dev-main": "3.x-dev"
  6933. }
  6934. },
  6935. "autoload": {
  6936. "psr-4": {
  6937. "Composer\\Pcre\\": "src"
  6938. }
  6939. },
  6940. "notification-url": "https://packagist.org/downloads/",
  6941. "license": [
  6942. "MIT"
  6943. ],
  6944. "authors": [
  6945. {
  6946. "name": "Jordi Boggiano",
  6947. "email": "j.boggiano@seld.be",
  6948. "homepage": "http://seld.be"
  6949. }
  6950. ],
  6951. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6952. "keywords": [
  6953. "PCRE",
  6954. "preg",
  6955. "regex",
  6956. "regular expression"
  6957. ],
  6958. "support": {
  6959. "issues": "https://github.com/composer/pcre/issues",
  6960. "source": "https://github.com/composer/pcre/tree/3.1.4"
  6961. },
  6962. "funding": [
  6963. {
  6964. "url": "https://packagist.com",
  6965. "type": "custom"
  6966. },
  6967. {
  6968. "url": "https://github.com/composer",
  6969. "type": "github"
  6970. },
  6971. {
  6972. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6973. "type": "tidelift"
  6974. }
  6975. ],
  6976. "time": "2024-05-27T13:40:54+00:00"
  6977. },
  6978. {
  6979. "name": "composer/semver",
  6980. "version": "3.4.0",
  6981. "source": {
  6982. "type": "git",
  6983. "url": "https://github.com/composer/semver.git",
  6984. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  6985. },
  6986. "dist": {
  6987. "type": "zip",
  6988. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  6989. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  6990. "shasum": ""
  6991. },
  6992. "require": {
  6993. "php": "^5.3.2 || ^7.0 || ^8.0"
  6994. },
  6995. "require-dev": {
  6996. "phpstan/phpstan": "^1.4",
  6997. "symfony/phpunit-bridge": "^4.2 || ^5"
  6998. },
  6999. "type": "library",
  7000. "extra": {
  7001. "branch-alias": {
  7002. "dev-main": "3.x-dev"
  7003. }
  7004. },
  7005. "autoload": {
  7006. "psr-4": {
  7007. "Composer\\Semver\\": "src"
  7008. }
  7009. },
  7010. "notification-url": "https://packagist.org/downloads/",
  7011. "license": [
  7012. "MIT"
  7013. ],
  7014. "authors": [
  7015. {
  7016. "name": "Nils Adermann",
  7017. "email": "naderman@naderman.de",
  7018. "homepage": "http://www.naderman.de"
  7019. },
  7020. {
  7021. "name": "Jordi Boggiano",
  7022. "email": "j.boggiano@seld.be",
  7023. "homepage": "http://seld.be"
  7024. },
  7025. {
  7026. "name": "Rob Bast",
  7027. "email": "rob.bast@gmail.com",
  7028. "homepage": "http://robbast.nl"
  7029. }
  7030. ],
  7031. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7032. "keywords": [
  7033. "semantic",
  7034. "semver",
  7035. "validation",
  7036. "versioning"
  7037. ],
  7038. "support": {
  7039. "irc": "ircs://irc.libera.chat:6697/composer",
  7040. "issues": "https://github.com/composer/semver/issues",
  7041. "source": "https://github.com/composer/semver/tree/3.4.0"
  7042. },
  7043. "funding": [
  7044. {
  7045. "url": "https://packagist.com",
  7046. "type": "custom"
  7047. },
  7048. {
  7049. "url": "https://github.com/composer",
  7050. "type": "github"
  7051. },
  7052. {
  7053. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7054. "type": "tidelift"
  7055. }
  7056. ],
  7057. "time": "2023-08-31T09:50:34+00:00"
  7058. },
  7059. {
  7060. "name": "composer/xdebug-handler",
  7061. "version": "3.0.5",
  7062. "source": {
  7063. "type": "git",
  7064. "url": "https://github.com/composer/xdebug-handler.git",
  7065. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7066. },
  7067. "dist": {
  7068. "type": "zip",
  7069. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7070. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7071. "shasum": ""
  7072. },
  7073. "require": {
  7074. "composer/pcre": "^1 || ^2 || ^3",
  7075. "php": "^7.2.5 || ^8.0",
  7076. "psr/log": "^1 || ^2 || ^3"
  7077. },
  7078. "require-dev": {
  7079. "phpstan/phpstan": "^1.0",
  7080. "phpstan/phpstan-strict-rules": "^1.1",
  7081. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7082. },
  7083. "type": "library",
  7084. "autoload": {
  7085. "psr-4": {
  7086. "Composer\\XdebugHandler\\": "src"
  7087. }
  7088. },
  7089. "notification-url": "https://packagist.org/downloads/",
  7090. "license": [
  7091. "MIT"
  7092. ],
  7093. "authors": [
  7094. {
  7095. "name": "John Stevenson",
  7096. "email": "john-stevenson@blueyonder.co.uk"
  7097. }
  7098. ],
  7099. "description": "Restarts a process without Xdebug.",
  7100. "keywords": [
  7101. "Xdebug",
  7102. "performance"
  7103. ],
  7104. "support": {
  7105. "irc": "ircs://irc.libera.chat:6697/composer",
  7106. "issues": "https://github.com/composer/xdebug-handler/issues",
  7107. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7108. },
  7109. "funding": [
  7110. {
  7111. "url": "https://packagist.com",
  7112. "type": "custom"
  7113. },
  7114. {
  7115. "url": "https://github.com/composer",
  7116. "type": "github"
  7117. },
  7118. {
  7119. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7120. "type": "tidelift"
  7121. }
  7122. ],
  7123. "time": "2024-05-06T16:37:16+00:00"
  7124. },
  7125. {
  7126. "name": "evenement/evenement",
  7127. "version": "v3.0.2",
  7128. "source": {
  7129. "type": "git",
  7130. "url": "https://github.com/igorw/evenement.git",
  7131. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7132. },
  7133. "dist": {
  7134. "type": "zip",
  7135. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7136. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7137. "shasum": ""
  7138. },
  7139. "require": {
  7140. "php": ">=7.0"
  7141. },
  7142. "require-dev": {
  7143. "phpunit/phpunit": "^9 || ^6"
  7144. },
  7145. "type": "library",
  7146. "autoload": {
  7147. "psr-4": {
  7148. "Evenement\\": "src/"
  7149. }
  7150. },
  7151. "notification-url": "https://packagist.org/downloads/",
  7152. "license": [
  7153. "MIT"
  7154. ],
  7155. "authors": [
  7156. {
  7157. "name": "Igor Wiedler",
  7158. "email": "igor@wiedler.ch"
  7159. }
  7160. ],
  7161. "description": "Événement is a very simple event dispatching library for PHP",
  7162. "keywords": [
  7163. "event-dispatcher",
  7164. "event-emitter"
  7165. ],
  7166. "support": {
  7167. "issues": "https://github.com/igorw/evenement/issues",
  7168. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7169. },
  7170. "time": "2023-08-08T05:53:35+00:00"
  7171. },
  7172. {
  7173. "name": "fidry/cpu-core-counter",
  7174. "version": "1.1.0",
  7175. "source": {
  7176. "type": "git",
  7177. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7178. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7179. },
  7180. "dist": {
  7181. "type": "zip",
  7182. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7183. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7184. "shasum": ""
  7185. },
  7186. "require": {
  7187. "php": "^7.2 || ^8.0"
  7188. },
  7189. "require-dev": {
  7190. "fidry/makefile": "^0.2.0",
  7191. "fidry/php-cs-fixer-config": "^1.1.2",
  7192. "phpstan/extension-installer": "^1.2.0",
  7193. "phpstan/phpstan": "^1.9.2",
  7194. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7195. "phpstan/phpstan-phpunit": "^1.2.2",
  7196. "phpstan/phpstan-strict-rules": "^1.4.4",
  7197. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7198. "webmozarts/strict-phpunit": "^7.5"
  7199. },
  7200. "type": "library",
  7201. "autoload": {
  7202. "psr-4": {
  7203. "Fidry\\CpuCoreCounter\\": "src/"
  7204. }
  7205. },
  7206. "notification-url": "https://packagist.org/downloads/",
  7207. "license": [
  7208. "MIT"
  7209. ],
  7210. "authors": [
  7211. {
  7212. "name": "Théo FIDRY",
  7213. "email": "theo.fidry@gmail.com"
  7214. }
  7215. ],
  7216. "description": "Tiny utility to get the number of CPU cores.",
  7217. "keywords": [
  7218. "CPU",
  7219. "core"
  7220. ],
  7221. "support": {
  7222. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7223. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7224. },
  7225. "funding": [
  7226. {
  7227. "url": "https://github.com/theofidry",
  7228. "type": "github"
  7229. }
  7230. ],
  7231. "time": "2024-02-07T09:43:46+00:00"
  7232. },
  7233. {
  7234. "name": "friendsofphp/php-cs-fixer",
  7235. "version": "v3.58.1",
  7236. "source": {
  7237. "type": "git",
  7238. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7239. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7240. },
  7241. "dist": {
  7242. "type": "zip",
  7243. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7244. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7245. "shasum": ""
  7246. },
  7247. "require": {
  7248. "clue/ndjson-react": "^1.0",
  7249. "composer/semver": "^3.4",
  7250. "composer/xdebug-handler": "^3.0.3",
  7251. "ext-filter": "*",
  7252. "ext-json": "*",
  7253. "ext-tokenizer": "*",
  7254. "fidry/cpu-core-counter": "^1.0",
  7255. "php": "^7.4 || ^8.0",
  7256. "react/child-process": "^0.6.5",
  7257. "react/event-loop": "^1.0",
  7258. "react/promise": "^2.0 || ^3.0",
  7259. "react/socket": "^1.0",
  7260. "react/stream": "^1.0",
  7261. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7262. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7263. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7264. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7265. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7266. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7267. "symfony/polyfill-mbstring": "^1.28",
  7268. "symfony/polyfill-php80": "^1.28",
  7269. "symfony/polyfill-php81": "^1.28",
  7270. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7271. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7272. },
  7273. "require-dev": {
  7274. "facile-it/paraunit": "^1.3 || ^2.0",
  7275. "infection/infection": "^0.27.11",
  7276. "justinrainbow/json-schema": "^5.2",
  7277. "keradus/cli-executor": "^2.1",
  7278. "mikey179/vfsstream": "^1.6.11",
  7279. "php-coveralls/php-coveralls": "^2.7",
  7280. "php-cs-fixer/accessible-object": "^1.1",
  7281. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7282. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7283. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7284. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7285. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7286. },
  7287. "suggest": {
  7288. "ext-dom": "For handling output formats in XML",
  7289. "ext-mbstring": "For handling non-UTF8 characters."
  7290. },
  7291. "bin": [
  7292. "php-cs-fixer"
  7293. ],
  7294. "type": "application",
  7295. "autoload": {
  7296. "psr-4": {
  7297. "PhpCsFixer\\": "src/"
  7298. }
  7299. },
  7300. "notification-url": "https://packagist.org/downloads/",
  7301. "license": [
  7302. "MIT"
  7303. ],
  7304. "authors": [
  7305. {
  7306. "name": "Fabien Potencier",
  7307. "email": "fabien@symfony.com"
  7308. },
  7309. {
  7310. "name": "Dariusz Rumiński",
  7311. "email": "dariusz.ruminski@gmail.com"
  7312. }
  7313. ],
  7314. "description": "A tool to automatically fix PHP code style",
  7315. "keywords": [
  7316. "Static code analysis",
  7317. "fixer",
  7318. "standards",
  7319. "static analysis"
  7320. ],
  7321. "support": {
  7322. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7323. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7324. },
  7325. "funding": [
  7326. {
  7327. "url": "https://github.com/keradus",
  7328. "type": "github"
  7329. }
  7330. ],
  7331. "time": "2024-05-29T16:39:07+00:00"
  7332. },
  7333. {
  7334. "name": "hamcrest/hamcrest-php",
  7335. "version": "v2.0.1",
  7336. "source": {
  7337. "type": "git",
  7338. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7339. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7340. },
  7341. "dist": {
  7342. "type": "zip",
  7343. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7344. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7345. "shasum": ""
  7346. },
  7347. "require": {
  7348. "php": "^5.3|^7.0|^8.0"
  7349. },
  7350. "replace": {
  7351. "cordoval/hamcrest-php": "*",
  7352. "davedevelopment/hamcrest-php": "*",
  7353. "kodova/hamcrest-php": "*"
  7354. },
  7355. "require-dev": {
  7356. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7357. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7358. },
  7359. "type": "library",
  7360. "extra": {
  7361. "branch-alias": {
  7362. "dev-master": "2.1-dev"
  7363. }
  7364. },
  7365. "autoload": {
  7366. "classmap": [
  7367. "hamcrest"
  7368. ]
  7369. },
  7370. "notification-url": "https://packagist.org/downloads/",
  7371. "license": [
  7372. "BSD-3-Clause"
  7373. ],
  7374. "description": "This is the PHP port of Hamcrest Matchers",
  7375. "keywords": [
  7376. "test"
  7377. ],
  7378. "support": {
  7379. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7380. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7381. },
  7382. "time": "2020-07-09T08:09:16+00:00"
  7383. },
  7384. {
  7385. "name": "hyperf/devtool",
  7386. "version": "v3.1.19",
  7387. "source": {
  7388. "type": "git",
  7389. "url": "https://github.com/hyperf/devtool.git",
  7390. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  7391. },
  7392. "dist": {
  7393. "type": "zip",
  7394. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7395. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7396. "shasum": ""
  7397. },
  7398. "require": {
  7399. "hyperf/code-parser": "~3.1.0",
  7400. "hyperf/command": "~3.1.0",
  7401. "hyperf/contract": "~3.1.0",
  7402. "hyperf/di": "~3.1.0",
  7403. "hyperf/support": "~3.1.0",
  7404. "hyperf/utils": "~3.1.0",
  7405. "php": ">=8.1"
  7406. },
  7407. "type": "library",
  7408. "extra": {
  7409. "branch-alias": {
  7410. "dev-master": "3.1-dev"
  7411. },
  7412. "hyperf": {
  7413. "config": "Hyperf\\Devtool\\ConfigProvider"
  7414. }
  7415. },
  7416. "autoload": {
  7417. "psr-4": {
  7418. "Hyperf\\Devtool\\": "src/"
  7419. }
  7420. },
  7421. "notification-url": "https://packagist.org/downloads/",
  7422. "license": [
  7423. "MIT"
  7424. ],
  7425. "description": "A Devtool for Hyperf.",
  7426. "homepage": "https://hyperf.io",
  7427. "keywords": [
  7428. "dev",
  7429. "devtool",
  7430. "hyperf",
  7431. "php",
  7432. "swoole"
  7433. ],
  7434. "support": {
  7435. "docs": "https://hyperf.wiki",
  7436. "issues": "https://github.com/hyperf/hyperf/issues",
  7437. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7438. "source": "https://github.com/hyperf/hyperf"
  7439. },
  7440. "funding": [
  7441. {
  7442. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7443. "type": "custom"
  7444. },
  7445. {
  7446. "url": "https://opencollective.com/hyperf",
  7447. "type": "open_collective"
  7448. }
  7449. ],
  7450. "time": "2024-04-13T06:53:08+00:00"
  7451. },
  7452. {
  7453. "name": "hyperf/testing",
  7454. "version": "v3.1.21",
  7455. "source": {
  7456. "type": "git",
  7457. "url": "https://github.com/hyperf/testing.git",
  7458. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  7459. },
  7460. "dist": {
  7461. "type": "zip",
  7462. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7463. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7464. "shasum": ""
  7465. },
  7466. "require": {
  7467. "hyperf/codec": "~3.1.0",
  7468. "hyperf/collection": "~3.1.0",
  7469. "hyperf/contract": "~3.1.0",
  7470. "hyperf/coroutine": "~3.1.0",
  7471. "hyperf/http-message": "~3.1.0",
  7472. "hyperf/http-server": "~3.1.0",
  7473. "hyperf/support": "~3.1.0",
  7474. "hyperf/utils": "~3.1.0",
  7475. "php": ">=8.1",
  7476. "phpunit/phpunit": "^10.0",
  7477. "psr/container": "^1.0|^2.0",
  7478. "symfony/http-foundation": "^5.4|^6.0"
  7479. },
  7480. "suggest": {
  7481. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7482. },
  7483. "bin": [
  7484. "co-phpunit"
  7485. ],
  7486. "type": "library",
  7487. "extra": {
  7488. "branch-alias": {
  7489. "dev-master": "3.1-dev"
  7490. }
  7491. },
  7492. "autoload": {
  7493. "psr-4": {
  7494. "Hyperf\\Testing\\": "src/"
  7495. }
  7496. },
  7497. "notification-url": "https://packagist.org/downloads/",
  7498. "license": [
  7499. "MIT"
  7500. ],
  7501. "description": "Testing for hyperf",
  7502. "keywords": [
  7503. "dev",
  7504. "php",
  7505. "swoole",
  7506. "testing"
  7507. ],
  7508. "support": {
  7509. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  7510. },
  7511. "funding": [
  7512. {
  7513. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7514. "type": "custom"
  7515. },
  7516. {
  7517. "url": "https://opencollective.com/hyperf",
  7518. "type": "open_collective"
  7519. }
  7520. ],
  7521. "time": "2024-05-07T05:34:51+00:00"
  7522. },
  7523. {
  7524. "name": "hyperf/watcher",
  7525. "version": "v3.1.21",
  7526. "source": {
  7527. "type": "git",
  7528. "url": "https://github.com/hyperf/watcher.git",
  7529. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  7530. },
  7531. "dist": {
  7532. "type": "zip",
  7533. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7534. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7535. "shasum": ""
  7536. },
  7537. "require": {
  7538. "ext-posix": "*",
  7539. "hyperf/codec": "~3.1.0",
  7540. "hyperf/command": "~3.1.0",
  7541. "hyperf/di": "~3.1.0",
  7542. "hyperf/framework": "~3.1.0",
  7543. "hyperf/support": "~3.1.0",
  7544. "php": ">=8.1"
  7545. },
  7546. "type": "library",
  7547. "extra": {
  7548. "branch-alias": {
  7549. "dev-master": "3.1-dev"
  7550. },
  7551. "hyperf": {
  7552. "config": "Hyperf\\Watcher\\ConfigProvider"
  7553. }
  7554. },
  7555. "autoload": {
  7556. "files": [
  7557. "src/Functions.php"
  7558. ],
  7559. "psr-4": {
  7560. "Hyperf\\Watcher\\": "src/"
  7561. }
  7562. },
  7563. "notification-url": "https://packagist.org/downloads/",
  7564. "license": [
  7565. "MIT"
  7566. ],
  7567. "description": "Hot reload watcher for Hyperf",
  7568. "keywords": [
  7569. "dev",
  7570. "hyperf",
  7571. "php"
  7572. ],
  7573. "support": {
  7574. "issues": "https://github.com/hyperf/watcher/issues",
  7575. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  7576. },
  7577. "funding": [
  7578. {
  7579. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7580. "type": "custom"
  7581. },
  7582. {
  7583. "url": "https://opencollective.com/hyperf",
  7584. "type": "open_collective"
  7585. }
  7586. ],
  7587. "time": "2024-05-09T13:40:44+00:00"
  7588. },
  7589. {
  7590. "name": "mockery/mockery",
  7591. "version": "1.6.12",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/mockery/mockery.git",
  7595. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7600. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7601. "shasum": ""
  7602. },
  7603. "require": {
  7604. "hamcrest/hamcrest-php": "^2.0.1",
  7605. "lib-pcre": ">=7.0",
  7606. "php": ">=7.3"
  7607. },
  7608. "conflict": {
  7609. "phpunit/phpunit": "<8.0"
  7610. },
  7611. "require-dev": {
  7612. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7613. "symplify/easy-coding-standard": "^12.1.14"
  7614. },
  7615. "type": "library",
  7616. "autoload": {
  7617. "files": [
  7618. "library/helpers.php",
  7619. "library/Mockery.php"
  7620. ],
  7621. "psr-4": {
  7622. "Mockery\\": "library/Mockery"
  7623. }
  7624. },
  7625. "notification-url": "https://packagist.org/downloads/",
  7626. "license": [
  7627. "BSD-3-Clause"
  7628. ],
  7629. "authors": [
  7630. {
  7631. "name": "Pádraic Brady",
  7632. "email": "padraic.brady@gmail.com",
  7633. "homepage": "https://github.com/padraic",
  7634. "role": "Author"
  7635. },
  7636. {
  7637. "name": "Dave Marshall",
  7638. "email": "dave.marshall@atstsolutions.co.uk",
  7639. "homepage": "https://davedevelopment.co.uk",
  7640. "role": "Developer"
  7641. },
  7642. {
  7643. "name": "Nathanael Esayeas",
  7644. "email": "nathanael.esayeas@protonmail.com",
  7645. "homepage": "https://github.com/ghostwriter",
  7646. "role": "Lead Developer"
  7647. }
  7648. ],
  7649. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7650. "homepage": "https://github.com/mockery/mockery",
  7651. "keywords": [
  7652. "BDD",
  7653. "TDD",
  7654. "library",
  7655. "mock",
  7656. "mock objects",
  7657. "mockery",
  7658. "stub",
  7659. "test",
  7660. "test double",
  7661. "testing"
  7662. ],
  7663. "support": {
  7664. "docs": "https://docs.mockery.io/",
  7665. "issues": "https://github.com/mockery/mockery/issues",
  7666. "rss": "https://github.com/mockery/mockery/releases.atom",
  7667. "security": "https://github.com/mockery/mockery/security/advisories",
  7668. "source": "https://github.com/mockery/mockery"
  7669. },
  7670. "time": "2024-05-16T03:13:13+00:00"
  7671. },
  7672. {
  7673. "name": "myclabs/deep-copy",
  7674. "version": "1.11.1",
  7675. "source": {
  7676. "type": "git",
  7677. "url": "https://github.com/myclabs/DeepCopy.git",
  7678. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7679. },
  7680. "dist": {
  7681. "type": "zip",
  7682. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7683. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7684. "shasum": ""
  7685. },
  7686. "require": {
  7687. "php": "^7.1 || ^8.0"
  7688. },
  7689. "conflict": {
  7690. "doctrine/collections": "<1.6.8",
  7691. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7692. },
  7693. "require-dev": {
  7694. "doctrine/collections": "^1.6.8",
  7695. "doctrine/common": "^2.13.3 || ^3.2.2",
  7696. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7697. },
  7698. "type": "library",
  7699. "autoload": {
  7700. "files": [
  7701. "src/DeepCopy/deep_copy.php"
  7702. ],
  7703. "psr-4": {
  7704. "DeepCopy\\": "src/DeepCopy/"
  7705. }
  7706. },
  7707. "notification-url": "https://packagist.org/downloads/",
  7708. "license": [
  7709. "MIT"
  7710. ],
  7711. "description": "Create deep copies (clones) of your objects",
  7712. "keywords": [
  7713. "clone",
  7714. "copy",
  7715. "duplicate",
  7716. "object",
  7717. "object graph"
  7718. ],
  7719. "support": {
  7720. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7721. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7722. },
  7723. "funding": [
  7724. {
  7725. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7726. "type": "tidelift"
  7727. }
  7728. ],
  7729. "time": "2023-03-08T13:26:56+00:00"
  7730. },
  7731. {
  7732. "name": "phar-io/manifest",
  7733. "version": "2.0.4",
  7734. "source": {
  7735. "type": "git",
  7736. "url": "https://github.com/phar-io/manifest.git",
  7737. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7738. },
  7739. "dist": {
  7740. "type": "zip",
  7741. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7742. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7743. "shasum": ""
  7744. },
  7745. "require": {
  7746. "ext-dom": "*",
  7747. "ext-libxml": "*",
  7748. "ext-phar": "*",
  7749. "ext-xmlwriter": "*",
  7750. "phar-io/version": "^3.0.1",
  7751. "php": "^7.2 || ^8.0"
  7752. },
  7753. "type": "library",
  7754. "extra": {
  7755. "branch-alias": {
  7756. "dev-master": "2.0.x-dev"
  7757. }
  7758. },
  7759. "autoload": {
  7760. "classmap": [
  7761. "src/"
  7762. ]
  7763. },
  7764. "notification-url": "https://packagist.org/downloads/",
  7765. "license": [
  7766. "BSD-3-Clause"
  7767. ],
  7768. "authors": [
  7769. {
  7770. "name": "Arne Blankerts",
  7771. "email": "arne@blankerts.de",
  7772. "role": "Developer"
  7773. },
  7774. {
  7775. "name": "Sebastian Heuer",
  7776. "email": "sebastian@phpeople.de",
  7777. "role": "Developer"
  7778. },
  7779. {
  7780. "name": "Sebastian Bergmann",
  7781. "email": "sebastian@phpunit.de",
  7782. "role": "Developer"
  7783. }
  7784. ],
  7785. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7786. "support": {
  7787. "issues": "https://github.com/phar-io/manifest/issues",
  7788. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7789. },
  7790. "funding": [
  7791. {
  7792. "url": "https://github.com/theseer",
  7793. "type": "github"
  7794. }
  7795. ],
  7796. "time": "2024-03-03T12:33:53+00:00"
  7797. },
  7798. {
  7799. "name": "phar-io/version",
  7800. "version": "3.2.1",
  7801. "source": {
  7802. "type": "git",
  7803. "url": "https://github.com/phar-io/version.git",
  7804. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7805. },
  7806. "dist": {
  7807. "type": "zip",
  7808. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7809. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7810. "shasum": ""
  7811. },
  7812. "require": {
  7813. "php": "^7.2 || ^8.0"
  7814. },
  7815. "type": "library",
  7816. "autoload": {
  7817. "classmap": [
  7818. "src/"
  7819. ]
  7820. },
  7821. "notification-url": "https://packagist.org/downloads/",
  7822. "license": [
  7823. "BSD-3-Clause"
  7824. ],
  7825. "authors": [
  7826. {
  7827. "name": "Arne Blankerts",
  7828. "email": "arne@blankerts.de",
  7829. "role": "Developer"
  7830. },
  7831. {
  7832. "name": "Sebastian Heuer",
  7833. "email": "sebastian@phpeople.de",
  7834. "role": "Developer"
  7835. },
  7836. {
  7837. "name": "Sebastian Bergmann",
  7838. "email": "sebastian@phpunit.de",
  7839. "role": "Developer"
  7840. }
  7841. ],
  7842. "description": "Library for handling version information and constraints",
  7843. "support": {
  7844. "issues": "https://github.com/phar-io/version/issues",
  7845. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7846. },
  7847. "time": "2022-02-21T01:04:05+00:00"
  7848. },
  7849. {
  7850. "name": "phpstan/phpstan",
  7851. "version": "1.11.3",
  7852. "source": {
  7853. "type": "git",
  7854. "url": "https://github.com/phpstan/phpstan.git",
  7855. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  7856. },
  7857. "dist": {
  7858. "type": "zip",
  7859. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7860. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7861. "shasum": ""
  7862. },
  7863. "require": {
  7864. "php": "^7.2|^8.0"
  7865. },
  7866. "conflict": {
  7867. "phpstan/phpstan-shim": "*"
  7868. },
  7869. "bin": [
  7870. "phpstan",
  7871. "phpstan.phar"
  7872. ],
  7873. "type": "library",
  7874. "autoload": {
  7875. "files": [
  7876. "bootstrap.php"
  7877. ]
  7878. },
  7879. "notification-url": "https://packagist.org/downloads/",
  7880. "license": [
  7881. "MIT"
  7882. ],
  7883. "description": "PHPStan - PHP Static Analysis Tool",
  7884. "keywords": [
  7885. "dev",
  7886. "static analysis"
  7887. ],
  7888. "support": {
  7889. "docs": "https://phpstan.org/user-guide/getting-started",
  7890. "forum": "https://github.com/phpstan/phpstan/discussions",
  7891. "issues": "https://github.com/phpstan/phpstan/issues",
  7892. "security": "https://github.com/phpstan/phpstan/security/policy",
  7893. "source": "https://github.com/phpstan/phpstan-src"
  7894. },
  7895. "funding": [
  7896. {
  7897. "url": "https://github.com/ondrejmirtes",
  7898. "type": "github"
  7899. },
  7900. {
  7901. "url": "https://github.com/phpstan",
  7902. "type": "github"
  7903. }
  7904. ],
  7905. "time": "2024-05-31T13:53:37+00:00"
  7906. },
  7907. {
  7908. "name": "phpunit/php-code-coverage",
  7909. "version": "10.1.14",
  7910. "source": {
  7911. "type": "git",
  7912. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7913. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  7914. },
  7915. "dist": {
  7916. "type": "zip",
  7917. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7918. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7919. "shasum": ""
  7920. },
  7921. "require": {
  7922. "ext-dom": "*",
  7923. "ext-libxml": "*",
  7924. "ext-xmlwriter": "*",
  7925. "nikic/php-parser": "^4.18 || ^5.0",
  7926. "php": ">=8.1",
  7927. "phpunit/php-file-iterator": "^4.0",
  7928. "phpunit/php-text-template": "^3.0",
  7929. "sebastian/code-unit-reverse-lookup": "^3.0",
  7930. "sebastian/complexity": "^3.0",
  7931. "sebastian/environment": "^6.0",
  7932. "sebastian/lines-of-code": "^2.0",
  7933. "sebastian/version": "^4.0",
  7934. "theseer/tokenizer": "^1.2.0"
  7935. },
  7936. "require-dev": {
  7937. "phpunit/phpunit": "^10.1"
  7938. },
  7939. "suggest": {
  7940. "ext-pcov": "PHP extension that provides line coverage",
  7941. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7942. },
  7943. "type": "library",
  7944. "extra": {
  7945. "branch-alias": {
  7946. "dev-main": "10.1-dev"
  7947. }
  7948. },
  7949. "autoload": {
  7950. "classmap": [
  7951. "src/"
  7952. ]
  7953. },
  7954. "notification-url": "https://packagist.org/downloads/",
  7955. "license": [
  7956. "BSD-3-Clause"
  7957. ],
  7958. "authors": [
  7959. {
  7960. "name": "Sebastian Bergmann",
  7961. "email": "sebastian@phpunit.de",
  7962. "role": "lead"
  7963. }
  7964. ],
  7965. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7966. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7967. "keywords": [
  7968. "coverage",
  7969. "testing",
  7970. "xunit"
  7971. ],
  7972. "support": {
  7973. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7974. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7975. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  7976. },
  7977. "funding": [
  7978. {
  7979. "url": "https://github.com/sebastianbergmann",
  7980. "type": "github"
  7981. }
  7982. ],
  7983. "time": "2024-03-12T15:33:41+00:00"
  7984. },
  7985. {
  7986. "name": "phpunit/php-file-iterator",
  7987. "version": "4.1.0",
  7988. "source": {
  7989. "type": "git",
  7990. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7991. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  7992. },
  7993. "dist": {
  7994. "type": "zip",
  7995. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7996. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7997. "shasum": ""
  7998. },
  7999. "require": {
  8000. "php": ">=8.1"
  8001. },
  8002. "require-dev": {
  8003. "phpunit/phpunit": "^10.0"
  8004. },
  8005. "type": "library",
  8006. "extra": {
  8007. "branch-alias": {
  8008. "dev-main": "4.0-dev"
  8009. }
  8010. },
  8011. "autoload": {
  8012. "classmap": [
  8013. "src/"
  8014. ]
  8015. },
  8016. "notification-url": "https://packagist.org/downloads/",
  8017. "license": [
  8018. "BSD-3-Clause"
  8019. ],
  8020. "authors": [
  8021. {
  8022. "name": "Sebastian Bergmann",
  8023. "email": "sebastian@phpunit.de",
  8024. "role": "lead"
  8025. }
  8026. ],
  8027. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8028. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8029. "keywords": [
  8030. "filesystem",
  8031. "iterator"
  8032. ],
  8033. "support": {
  8034. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8035. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8036. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8037. },
  8038. "funding": [
  8039. {
  8040. "url": "https://github.com/sebastianbergmann",
  8041. "type": "github"
  8042. }
  8043. ],
  8044. "time": "2023-08-31T06:24:48+00:00"
  8045. },
  8046. {
  8047. "name": "phpunit/php-invoker",
  8048. "version": "4.0.0",
  8049. "source": {
  8050. "type": "git",
  8051. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8052. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8053. },
  8054. "dist": {
  8055. "type": "zip",
  8056. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8057. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8058. "shasum": ""
  8059. },
  8060. "require": {
  8061. "php": ">=8.1"
  8062. },
  8063. "require-dev": {
  8064. "ext-pcntl": "*",
  8065. "phpunit/phpunit": "^10.0"
  8066. },
  8067. "suggest": {
  8068. "ext-pcntl": "*"
  8069. },
  8070. "type": "library",
  8071. "extra": {
  8072. "branch-alias": {
  8073. "dev-main": "4.0-dev"
  8074. }
  8075. },
  8076. "autoload": {
  8077. "classmap": [
  8078. "src/"
  8079. ]
  8080. },
  8081. "notification-url": "https://packagist.org/downloads/",
  8082. "license": [
  8083. "BSD-3-Clause"
  8084. ],
  8085. "authors": [
  8086. {
  8087. "name": "Sebastian Bergmann",
  8088. "email": "sebastian@phpunit.de",
  8089. "role": "lead"
  8090. }
  8091. ],
  8092. "description": "Invoke callables with a timeout",
  8093. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8094. "keywords": [
  8095. "process"
  8096. ],
  8097. "support": {
  8098. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8099. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8100. },
  8101. "funding": [
  8102. {
  8103. "url": "https://github.com/sebastianbergmann",
  8104. "type": "github"
  8105. }
  8106. ],
  8107. "time": "2023-02-03T06:56:09+00:00"
  8108. },
  8109. {
  8110. "name": "phpunit/php-text-template",
  8111. "version": "3.0.1",
  8112. "source": {
  8113. "type": "git",
  8114. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8115. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8116. },
  8117. "dist": {
  8118. "type": "zip",
  8119. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8120. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8121. "shasum": ""
  8122. },
  8123. "require": {
  8124. "php": ">=8.1"
  8125. },
  8126. "require-dev": {
  8127. "phpunit/phpunit": "^10.0"
  8128. },
  8129. "type": "library",
  8130. "extra": {
  8131. "branch-alias": {
  8132. "dev-main": "3.0-dev"
  8133. }
  8134. },
  8135. "autoload": {
  8136. "classmap": [
  8137. "src/"
  8138. ]
  8139. },
  8140. "notification-url": "https://packagist.org/downloads/",
  8141. "license": [
  8142. "BSD-3-Clause"
  8143. ],
  8144. "authors": [
  8145. {
  8146. "name": "Sebastian Bergmann",
  8147. "email": "sebastian@phpunit.de",
  8148. "role": "lead"
  8149. }
  8150. ],
  8151. "description": "Simple template engine.",
  8152. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8153. "keywords": [
  8154. "template"
  8155. ],
  8156. "support": {
  8157. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8158. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8159. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8160. },
  8161. "funding": [
  8162. {
  8163. "url": "https://github.com/sebastianbergmann",
  8164. "type": "github"
  8165. }
  8166. ],
  8167. "time": "2023-08-31T14:07:24+00:00"
  8168. },
  8169. {
  8170. "name": "phpunit/php-timer",
  8171. "version": "6.0.0",
  8172. "source": {
  8173. "type": "git",
  8174. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8175. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8176. },
  8177. "dist": {
  8178. "type": "zip",
  8179. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8180. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8181. "shasum": ""
  8182. },
  8183. "require": {
  8184. "php": ">=8.1"
  8185. },
  8186. "require-dev": {
  8187. "phpunit/phpunit": "^10.0"
  8188. },
  8189. "type": "library",
  8190. "extra": {
  8191. "branch-alias": {
  8192. "dev-main": "6.0-dev"
  8193. }
  8194. },
  8195. "autoload": {
  8196. "classmap": [
  8197. "src/"
  8198. ]
  8199. },
  8200. "notification-url": "https://packagist.org/downloads/",
  8201. "license": [
  8202. "BSD-3-Clause"
  8203. ],
  8204. "authors": [
  8205. {
  8206. "name": "Sebastian Bergmann",
  8207. "email": "sebastian@phpunit.de",
  8208. "role": "lead"
  8209. }
  8210. ],
  8211. "description": "Utility class for timing",
  8212. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8213. "keywords": [
  8214. "timer"
  8215. ],
  8216. "support": {
  8217. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8218. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8219. },
  8220. "funding": [
  8221. {
  8222. "url": "https://github.com/sebastianbergmann",
  8223. "type": "github"
  8224. }
  8225. ],
  8226. "time": "2023-02-03T06:57:52+00:00"
  8227. },
  8228. {
  8229. "name": "phpunit/phpunit",
  8230. "version": "10.5.20",
  8231. "source": {
  8232. "type": "git",
  8233. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8234. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8235. },
  8236. "dist": {
  8237. "type": "zip",
  8238. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8239. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8240. "shasum": ""
  8241. },
  8242. "require": {
  8243. "ext-dom": "*",
  8244. "ext-json": "*",
  8245. "ext-libxml": "*",
  8246. "ext-mbstring": "*",
  8247. "ext-xml": "*",
  8248. "ext-xmlwriter": "*",
  8249. "myclabs/deep-copy": "^1.10.1",
  8250. "phar-io/manifest": "^2.0.3",
  8251. "phar-io/version": "^3.0.2",
  8252. "php": ">=8.1",
  8253. "phpunit/php-code-coverage": "^10.1.5",
  8254. "phpunit/php-file-iterator": "^4.0",
  8255. "phpunit/php-invoker": "^4.0",
  8256. "phpunit/php-text-template": "^3.0",
  8257. "phpunit/php-timer": "^6.0",
  8258. "sebastian/cli-parser": "^2.0",
  8259. "sebastian/code-unit": "^2.0",
  8260. "sebastian/comparator": "^5.0",
  8261. "sebastian/diff": "^5.0",
  8262. "sebastian/environment": "^6.0",
  8263. "sebastian/exporter": "^5.1",
  8264. "sebastian/global-state": "^6.0.1",
  8265. "sebastian/object-enumerator": "^5.0",
  8266. "sebastian/recursion-context": "^5.0",
  8267. "sebastian/type": "^4.0",
  8268. "sebastian/version": "^4.0"
  8269. },
  8270. "suggest": {
  8271. "ext-soap": "To be able to generate mocks based on WSDL files"
  8272. },
  8273. "bin": [
  8274. "phpunit"
  8275. ],
  8276. "type": "library",
  8277. "extra": {
  8278. "branch-alias": {
  8279. "dev-main": "10.5-dev"
  8280. }
  8281. },
  8282. "autoload": {
  8283. "files": [
  8284. "src/Framework/Assert/Functions.php"
  8285. ],
  8286. "classmap": [
  8287. "src/"
  8288. ]
  8289. },
  8290. "notification-url": "https://packagist.org/downloads/",
  8291. "license": [
  8292. "BSD-3-Clause"
  8293. ],
  8294. "authors": [
  8295. {
  8296. "name": "Sebastian Bergmann",
  8297. "email": "sebastian@phpunit.de",
  8298. "role": "lead"
  8299. }
  8300. ],
  8301. "description": "The PHP Unit Testing framework.",
  8302. "homepage": "https://phpunit.de/",
  8303. "keywords": [
  8304. "phpunit",
  8305. "testing",
  8306. "xunit"
  8307. ],
  8308. "support": {
  8309. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8310. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8311. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8312. },
  8313. "funding": [
  8314. {
  8315. "url": "https://phpunit.de/sponsors.html",
  8316. "type": "custom"
  8317. },
  8318. {
  8319. "url": "https://github.com/sebastianbergmann",
  8320. "type": "github"
  8321. },
  8322. {
  8323. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8324. "type": "tidelift"
  8325. }
  8326. ],
  8327. "time": "2024-04-24T06:32:35+00:00"
  8328. },
  8329. {
  8330. "name": "react/cache",
  8331. "version": "v1.2.0",
  8332. "source": {
  8333. "type": "git",
  8334. "url": "https://github.com/reactphp/cache.git",
  8335. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8336. },
  8337. "dist": {
  8338. "type": "zip",
  8339. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8340. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8341. "shasum": ""
  8342. },
  8343. "require": {
  8344. "php": ">=5.3.0",
  8345. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8346. },
  8347. "require-dev": {
  8348. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8349. },
  8350. "type": "library",
  8351. "autoload": {
  8352. "psr-4": {
  8353. "React\\Cache\\": "src/"
  8354. }
  8355. },
  8356. "notification-url": "https://packagist.org/downloads/",
  8357. "license": [
  8358. "MIT"
  8359. ],
  8360. "authors": [
  8361. {
  8362. "name": "Christian Lück",
  8363. "email": "christian@clue.engineering",
  8364. "homepage": "https://clue.engineering/"
  8365. },
  8366. {
  8367. "name": "Cees-Jan Kiewiet",
  8368. "email": "reactphp@ceesjankiewiet.nl",
  8369. "homepage": "https://wyrihaximus.net/"
  8370. },
  8371. {
  8372. "name": "Jan Sorgalla",
  8373. "email": "jsorgalla@gmail.com",
  8374. "homepage": "https://sorgalla.com/"
  8375. },
  8376. {
  8377. "name": "Chris Boden",
  8378. "email": "cboden@gmail.com",
  8379. "homepage": "https://cboden.dev/"
  8380. }
  8381. ],
  8382. "description": "Async, Promise-based cache interface for ReactPHP",
  8383. "keywords": [
  8384. "cache",
  8385. "caching",
  8386. "promise",
  8387. "reactphp"
  8388. ],
  8389. "support": {
  8390. "issues": "https://github.com/reactphp/cache/issues",
  8391. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8392. },
  8393. "funding": [
  8394. {
  8395. "url": "https://opencollective.com/reactphp",
  8396. "type": "open_collective"
  8397. }
  8398. ],
  8399. "time": "2022-11-30T15:59:55+00:00"
  8400. },
  8401. {
  8402. "name": "react/child-process",
  8403. "version": "v0.6.5",
  8404. "source": {
  8405. "type": "git",
  8406. "url": "https://github.com/reactphp/child-process.git",
  8407. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8408. },
  8409. "dist": {
  8410. "type": "zip",
  8411. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8412. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8413. "shasum": ""
  8414. },
  8415. "require": {
  8416. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8417. "php": ">=5.3.0",
  8418. "react/event-loop": "^1.2",
  8419. "react/stream": "^1.2"
  8420. },
  8421. "require-dev": {
  8422. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8423. "react/socket": "^1.8",
  8424. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8425. },
  8426. "type": "library",
  8427. "autoload": {
  8428. "psr-4": {
  8429. "React\\ChildProcess\\": "src"
  8430. }
  8431. },
  8432. "notification-url": "https://packagist.org/downloads/",
  8433. "license": [
  8434. "MIT"
  8435. ],
  8436. "authors": [
  8437. {
  8438. "name": "Christian Lück",
  8439. "email": "christian@clue.engineering",
  8440. "homepage": "https://clue.engineering/"
  8441. },
  8442. {
  8443. "name": "Cees-Jan Kiewiet",
  8444. "email": "reactphp@ceesjankiewiet.nl",
  8445. "homepage": "https://wyrihaximus.net/"
  8446. },
  8447. {
  8448. "name": "Jan Sorgalla",
  8449. "email": "jsorgalla@gmail.com",
  8450. "homepage": "https://sorgalla.com/"
  8451. },
  8452. {
  8453. "name": "Chris Boden",
  8454. "email": "cboden@gmail.com",
  8455. "homepage": "https://cboden.dev/"
  8456. }
  8457. ],
  8458. "description": "Event-driven library for executing child processes with ReactPHP.",
  8459. "keywords": [
  8460. "event-driven",
  8461. "process",
  8462. "reactphp"
  8463. ],
  8464. "support": {
  8465. "issues": "https://github.com/reactphp/child-process/issues",
  8466. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8467. },
  8468. "funding": [
  8469. {
  8470. "url": "https://github.com/WyriHaximus",
  8471. "type": "github"
  8472. },
  8473. {
  8474. "url": "https://github.com/clue",
  8475. "type": "github"
  8476. }
  8477. ],
  8478. "time": "2022-09-16T13:41:56+00:00"
  8479. },
  8480. {
  8481. "name": "react/dns",
  8482. "version": "v1.12.0",
  8483. "source": {
  8484. "type": "git",
  8485. "url": "https://github.com/reactphp/dns.git",
  8486. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  8487. },
  8488. "dist": {
  8489. "type": "zip",
  8490. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  8491. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  8492. "shasum": ""
  8493. },
  8494. "require": {
  8495. "php": ">=5.3.0",
  8496. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8497. "react/event-loop": "^1.2",
  8498. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  8499. },
  8500. "require-dev": {
  8501. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8502. "react/async": "^4 || ^3 || ^2",
  8503. "react/promise-timer": "^1.9"
  8504. },
  8505. "type": "library",
  8506. "autoload": {
  8507. "psr-4": {
  8508. "React\\Dns\\": "src/"
  8509. }
  8510. },
  8511. "notification-url": "https://packagist.org/downloads/",
  8512. "license": [
  8513. "MIT"
  8514. ],
  8515. "authors": [
  8516. {
  8517. "name": "Christian Lück",
  8518. "email": "christian@clue.engineering",
  8519. "homepage": "https://clue.engineering/"
  8520. },
  8521. {
  8522. "name": "Cees-Jan Kiewiet",
  8523. "email": "reactphp@ceesjankiewiet.nl",
  8524. "homepage": "https://wyrihaximus.net/"
  8525. },
  8526. {
  8527. "name": "Jan Sorgalla",
  8528. "email": "jsorgalla@gmail.com",
  8529. "homepage": "https://sorgalla.com/"
  8530. },
  8531. {
  8532. "name": "Chris Boden",
  8533. "email": "cboden@gmail.com",
  8534. "homepage": "https://cboden.dev/"
  8535. }
  8536. ],
  8537. "description": "Async DNS resolver for ReactPHP",
  8538. "keywords": [
  8539. "async",
  8540. "dns",
  8541. "dns-resolver",
  8542. "reactphp"
  8543. ],
  8544. "support": {
  8545. "issues": "https://github.com/reactphp/dns/issues",
  8546. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  8547. },
  8548. "funding": [
  8549. {
  8550. "url": "https://opencollective.com/reactphp",
  8551. "type": "open_collective"
  8552. }
  8553. ],
  8554. "time": "2023-11-29T12:41:06+00:00"
  8555. },
  8556. {
  8557. "name": "react/event-loop",
  8558. "version": "v1.5.0",
  8559. "source": {
  8560. "type": "git",
  8561. "url": "https://github.com/reactphp/event-loop.git",
  8562. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8563. },
  8564. "dist": {
  8565. "type": "zip",
  8566. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8567. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8568. "shasum": ""
  8569. },
  8570. "require": {
  8571. "php": ">=5.3.0"
  8572. },
  8573. "require-dev": {
  8574. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8575. },
  8576. "suggest": {
  8577. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8578. },
  8579. "type": "library",
  8580. "autoload": {
  8581. "psr-4": {
  8582. "React\\EventLoop\\": "src/"
  8583. }
  8584. },
  8585. "notification-url": "https://packagist.org/downloads/",
  8586. "license": [
  8587. "MIT"
  8588. ],
  8589. "authors": [
  8590. {
  8591. "name": "Christian Lück",
  8592. "email": "christian@clue.engineering",
  8593. "homepage": "https://clue.engineering/"
  8594. },
  8595. {
  8596. "name": "Cees-Jan Kiewiet",
  8597. "email": "reactphp@ceesjankiewiet.nl",
  8598. "homepage": "https://wyrihaximus.net/"
  8599. },
  8600. {
  8601. "name": "Jan Sorgalla",
  8602. "email": "jsorgalla@gmail.com",
  8603. "homepage": "https://sorgalla.com/"
  8604. },
  8605. {
  8606. "name": "Chris Boden",
  8607. "email": "cboden@gmail.com",
  8608. "homepage": "https://cboden.dev/"
  8609. }
  8610. ],
  8611. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8612. "keywords": [
  8613. "asynchronous",
  8614. "event-loop"
  8615. ],
  8616. "support": {
  8617. "issues": "https://github.com/reactphp/event-loop/issues",
  8618. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8619. },
  8620. "funding": [
  8621. {
  8622. "url": "https://opencollective.com/reactphp",
  8623. "type": "open_collective"
  8624. }
  8625. ],
  8626. "time": "2023-11-13T13:48:05+00:00"
  8627. },
  8628. {
  8629. "name": "react/promise",
  8630. "version": "v3.2.0",
  8631. "source": {
  8632. "type": "git",
  8633. "url": "https://github.com/reactphp/promise.git",
  8634. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8635. },
  8636. "dist": {
  8637. "type": "zip",
  8638. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8639. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8640. "shasum": ""
  8641. },
  8642. "require": {
  8643. "php": ">=7.1.0"
  8644. },
  8645. "require-dev": {
  8646. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8647. "phpunit/phpunit": "^9.6 || ^7.5"
  8648. },
  8649. "type": "library",
  8650. "autoload": {
  8651. "files": [
  8652. "src/functions_include.php"
  8653. ],
  8654. "psr-4": {
  8655. "React\\Promise\\": "src/"
  8656. }
  8657. },
  8658. "notification-url": "https://packagist.org/downloads/",
  8659. "license": [
  8660. "MIT"
  8661. ],
  8662. "authors": [
  8663. {
  8664. "name": "Jan Sorgalla",
  8665. "email": "jsorgalla@gmail.com",
  8666. "homepage": "https://sorgalla.com/"
  8667. },
  8668. {
  8669. "name": "Christian Lück",
  8670. "email": "christian@clue.engineering",
  8671. "homepage": "https://clue.engineering/"
  8672. },
  8673. {
  8674. "name": "Cees-Jan Kiewiet",
  8675. "email": "reactphp@ceesjankiewiet.nl",
  8676. "homepage": "https://wyrihaximus.net/"
  8677. },
  8678. {
  8679. "name": "Chris Boden",
  8680. "email": "cboden@gmail.com",
  8681. "homepage": "https://cboden.dev/"
  8682. }
  8683. ],
  8684. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8685. "keywords": [
  8686. "promise",
  8687. "promises"
  8688. ],
  8689. "support": {
  8690. "issues": "https://github.com/reactphp/promise/issues",
  8691. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8692. },
  8693. "funding": [
  8694. {
  8695. "url": "https://opencollective.com/reactphp",
  8696. "type": "open_collective"
  8697. }
  8698. ],
  8699. "time": "2024-05-24T10:39:05+00:00"
  8700. },
  8701. {
  8702. "name": "react/socket",
  8703. "version": "v1.15.0",
  8704. "source": {
  8705. "type": "git",
  8706. "url": "https://github.com/reactphp/socket.git",
  8707. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  8708. },
  8709. "dist": {
  8710. "type": "zip",
  8711. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8712. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8713. "shasum": ""
  8714. },
  8715. "require": {
  8716. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8717. "php": ">=5.3.0",
  8718. "react/dns": "^1.11",
  8719. "react/event-loop": "^1.2",
  8720. "react/promise": "^3 || ^2.6 || ^1.2.1",
  8721. "react/stream": "^1.2"
  8722. },
  8723. "require-dev": {
  8724. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8725. "react/async": "^4 || ^3 || ^2",
  8726. "react/promise-stream": "^1.4",
  8727. "react/promise-timer": "^1.10"
  8728. },
  8729. "type": "library",
  8730. "autoload": {
  8731. "psr-4": {
  8732. "React\\Socket\\": "src/"
  8733. }
  8734. },
  8735. "notification-url": "https://packagist.org/downloads/",
  8736. "license": [
  8737. "MIT"
  8738. ],
  8739. "authors": [
  8740. {
  8741. "name": "Christian Lück",
  8742. "email": "christian@clue.engineering",
  8743. "homepage": "https://clue.engineering/"
  8744. },
  8745. {
  8746. "name": "Cees-Jan Kiewiet",
  8747. "email": "reactphp@ceesjankiewiet.nl",
  8748. "homepage": "https://wyrihaximus.net/"
  8749. },
  8750. {
  8751. "name": "Jan Sorgalla",
  8752. "email": "jsorgalla@gmail.com",
  8753. "homepage": "https://sorgalla.com/"
  8754. },
  8755. {
  8756. "name": "Chris Boden",
  8757. "email": "cboden@gmail.com",
  8758. "homepage": "https://cboden.dev/"
  8759. }
  8760. ],
  8761. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8762. "keywords": [
  8763. "Connection",
  8764. "Socket",
  8765. "async",
  8766. "reactphp",
  8767. "stream"
  8768. ],
  8769. "support": {
  8770. "issues": "https://github.com/reactphp/socket/issues",
  8771. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  8772. },
  8773. "funding": [
  8774. {
  8775. "url": "https://opencollective.com/reactphp",
  8776. "type": "open_collective"
  8777. }
  8778. ],
  8779. "time": "2023-12-15T11:02:10+00:00"
  8780. },
  8781. {
  8782. "name": "react/stream",
  8783. "version": "v1.3.0",
  8784. "source": {
  8785. "type": "git",
  8786. "url": "https://github.com/reactphp/stream.git",
  8787. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  8788. },
  8789. "dist": {
  8790. "type": "zip",
  8791. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8792. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8793. "shasum": ""
  8794. },
  8795. "require": {
  8796. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8797. "php": ">=5.3.8",
  8798. "react/event-loop": "^1.2"
  8799. },
  8800. "require-dev": {
  8801. "clue/stream-filter": "~1.2",
  8802. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8803. },
  8804. "type": "library",
  8805. "autoload": {
  8806. "psr-4": {
  8807. "React\\Stream\\": "src/"
  8808. }
  8809. },
  8810. "notification-url": "https://packagist.org/downloads/",
  8811. "license": [
  8812. "MIT"
  8813. ],
  8814. "authors": [
  8815. {
  8816. "name": "Christian Lück",
  8817. "email": "christian@clue.engineering",
  8818. "homepage": "https://clue.engineering/"
  8819. },
  8820. {
  8821. "name": "Cees-Jan Kiewiet",
  8822. "email": "reactphp@ceesjankiewiet.nl",
  8823. "homepage": "https://wyrihaximus.net/"
  8824. },
  8825. {
  8826. "name": "Jan Sorgalla",
  8827. "email": "jsorgalla@gmail.com",
  8828. "homepage": "https://sorgalla.com/"
  8829. },
  8830. {
  8831. "name": "Chris Boden",
  8832. "email": "cboden@gmail.com",
  8833. "homepage": "https://cboden.dev/"
  8834. }
  8835. ],
  8836. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8837. "keywords": [
  8838. "event-driven",
  8839. "io",
  8840. "non-blocking",
  8841. "pipe",
  8842. "reactphp",
  8843. "readable",
  8844. "stream",
  8845. "writable"
  8846. ],
  8847. "support": {
  8848. "issues": "https://github.com/reactphp/stream/issues",
  8849. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  8850. },
  8851. "funding": [
  8852. {
  8853. "url": "https://opencollective.com/reactphp",
  8854. "type": "open_collective"
  8855. }
  8856. ],
  8857. "time": "2023-06-16T10:52:11+00:00"
  8858. },
  8859. {
  8860. "name": "sebastian/cli-parser",
  8861. "version": "2.0.1",
  8862. "source": {
  8863. "type": "git",
  8864. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8865. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8866. },
  8867. "dist": {
  8868. "type": "zip",
  8869. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8870. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8871. "shasum": ""
  8872. },
  8873. "require": {
  8874. "php": ">=8.1"
  8875. },
  8876. "require-dev": {
  8877. "phpunit/phpunit": "^10.0"
  8878. },
  8879. "type": "library",
  8880. "extra": {
  8881. "branch-alias": {
  8882. "dev-main": "2.0-dev"
  8883. }
  8884. },
  8885. "autoload": {
  8886. "classmap": [
  8887. "src/"
  8888. ]
  8889. },
  8890. "notification-url": "https://packagist.org/downloads/",
  8891. "license": [
  8892. "BSD-3-Clause"
  8893. ],
  8894. "authors": [
  8895. {
  8896. "name": "Sebastian Bergmann",
  8897. "email": "sebastian@phpunit.de",
  8898. "role": "lead"
  8899. }
  8900. ],
  8901. "description": "Library for parsing CLI options",
  8902. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8903. "support": {
  8904. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8905. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8906. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8907. },
  8908. "funding": [
  8909. {
  8910. "url": "https://github.com/sebastianbergmann",
  8911. "type": "github"
  8912. }
  8913. ],
  8914. "time": "2024-03-02T07:12:49+00:00"
  8915. },
  8916. {
  8917. "name": "sebastian/code-unit",
  8918. "version": "2.0.0",
  8919. "source": {
  8920. "type": "git",
  8921. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8922. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8923. },
  8924. "dist": {
  8925. "type": "zip",
  8926. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8927. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8928. "shasum": ""
  8929. },
  8930. "require": {
  8931. "php": ">=8.1"
  8932. },
  8933. "require-dev": {
  8934. "phpunit/phpunit": "^10.0"
  8935. },
  8936. "type": "library",
  8937. "extra": {
  8938. "branch-alias": {
  8939. "dev-main": "2.0-dev"
  8940. }
  8941. },
  8942. "autoload": {
  8943. "classmap": [
  8944. "src/"
  8945. ]
  8946. },
  8947. "notification-url": "https://packagist.org/downloads/",
  8948. "license": [
  8949. "BSD-3-Clause"
  8950. ],
  8951. "authors": [
  8952. {
  8953. "name": "Sebastian Bergmann",
  8954. "email": "sebastian@phpunit.de",
  8955. "role": "lead"
  8956. }
  8957. ],
  8958. "description": "Collection of value objects that represent the PHP code units",
  8959. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8960. "support": {
  8961. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8962. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8963. },
  8964. "funding": [
  8965. {
  8966. "url": "https://github.com/sebastianbergmann",
  8967. "type": "github"
  8968. }
  8969. ],
  8970. "time": "2023-02-03T06:58:43+00:00"
  8971. },
  8972. {
  8973. "name": "sebastian/code-unit-reverse-lookup",
  8974. "version": "3.0.0",
  8975. "source": {
  8976. "type": "git",
  8977. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8978. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8979. },
  8980. "dist": {
  8981. "type": "zip",
  8982. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8983. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8984. "shasum": ""
  8985. },
  8986. "require": {
  8987. "php": ">=8.1"
  8988. },
  8989. "require-dev": {
  8990. "phpunit/phpunit": "^10.0"
  8991. },
  8992. "type": "library",
  8993. "extra": {
  8994. "branch-alias": {
  8995. "dev-main": "3.0-dev"
  8996. }
  8997. },
  8998. "autoload": {
  8999. "classmap": [
  9000. "src/"
  9001. ]
  9002. },
  9003. "notification-url": "https://packagist.org/downloads/",
  9004. "license": [
  9005. "BSD-3-Clause"
  9006. ],
  9007. "authors": [
  9008. {
  9009. "name": "Sebastian Bergmann",
  9010. "email": "sebastian@phpunit.de"
  9011. }
  9012. ],
  9013. "description": "Looks up which function or method a line of code belongs to",
  9014. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9015. "support": {
  9016. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9017. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9018. },
  9019. "funding": [
  9020. {
  9021. "url": "https://github.com/sebastianbergmann",
  9022. "type": "github"
  9023. }
  9024. ],
  9025. "time": "2023-02-03T06:59:15+00:00"
  9026. },
  9027. {
  9028. "name": "sebastian/comparator",
  9029. "version": "5.0.1",
  9030. "source": {
  9031. "type": "git",
  9032. "url": "https://github.com/sebastianbergmann/comparator.git",
  9033. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9034. },
  9035. "dist": {
  9036. "type": "zip",
  9037. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9038. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9039. "shasum": ""
  9040. },
  9041. "require": {
  9042. "ext-dom": "*",
  9043. "ext-mbstring": "*",
  9044. "php": ">=8.1",
  9045. "sebastian/diff": "^5.0",
  9046. "sebastian/exporter": "^5.0"
  9047. },
  9048. "require-dev": {
  9049. "phpunit/phpunit": "^10.3"
  9050. },
  9051. "type": "library",
  9052. "extra": {
  9053. "branch-alias": {
  9054. "dev-main": "5.0-dev"
  9055. }
  9056. },
  9057. "autoload": {
  9058. "classmap": [
  9059. "src/"
  9060. ]
  9061. },
  9062. "notification-url": "https://packagist.org/downloads/",
  9063. "license": [
  9064. "BSD-3-Clause"
  9065. ],
  9066. "authors": [
  9067. {
  9068. "name": "Sebastian Bergmann",
  9069. "email": "sebastian@phpunit.de"
  9070. },
  9071. {
  9072. "name": "Jeff Welch",
  9073. "email": "whatthejeff@gmail.com"
  9074. },
  9075. {
  9076. "name": "Volker Dusch",
  9077. "email": "github@wallbash.com"
  9078. },
  9079. {
  9080. "name": "Bernhard Schussek",
  9081. "email": "bschussek@2bepublished.at"
  9082. }
  9083. ],
  9084. "description": "Provides the functionality to compare PHP values for equality",
  9085. "homepage": "https://github.com/sebastianbergmann/comparator",
  9086. "keywords": [
  9087. "comparator",
  9088. "compare",
  9089. "equality"
  9090. ],
  9091. "support": {
  9092. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9093. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9094. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9095. },
  9096. "funding": [
  9097. {
  9098. "url": "https://github.com/sebastianbergmann",
  9099. "type": "github"
  9100. }
  9101. ],
  9102. "time": "2023-08-14T13:18:12+00:00"
  9103. },
  9104. {
  9105. "name": "sebastian/complexity",
  9106. "version": "3.2.0",
  9107. "source": {
  9108. "type": "git",
  9109. "url": "https://github.com/sebastianbergmann/complexity.git",
  9110. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9111. },
  9112. "dist": {
  9113. "type": "zip",
  9114. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9115. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9116. "shasum": ""
  9117. },
  9118. "require": {
  9119. "nikic/php-parser": "^4.18 || ^5.0",
  9120. "php": ">=8.1"
  9121. },
  9122. "require-dev": {
  9123. "phpunit/phpunit": "^10.0"
  9124. },
  9125. "type": "library",
  9126. "extra": {
  9127. "branch-alias": {
  9128. "dev-main": "3.2-dev"
  9129. }
  9130. },
  9131. "autoload": {
  9132. "classmap": [
  9133. "src/"
  9134. ]
  9135. },
  9136. "notification-url": "https://packagist.org/downloads/",
  9137. "license": [
  9138. "BSD-3-Clause"
  9139. ],
  9140. "authors": [
  9141. {
  9142. "name": "Sebastian Bergmann",
  9143. "email": "sebastian@phpunit.de",
  9144. "role": "lead"
  9145. }
  9146. ],
  9147. "description": "Library for calculating the complexity of PHP code units",
  9148. "homepage": "https://github.com/sebastianbergmann/complexity",
  9149. "support": {
  9150. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9151. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9152. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9153. },
  9154. "funding": [
  9155. {
  9156. "url": "https://github.com/sebastianbergmann",
  9157. "type": "github"
  9158. }
  9159. ],
  9160. "time": "2023-12-21T08:37:17+00:00"
  9161. },
  9162. {
  9163. "name": "sebastian/diff",
  9164. "version": "5.1.1",
  9165. "source": {
  9166. "type": "git",
  9167. "url": "https://github.com/sebastianbergmann/diff.git",
  9168. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9169. },
  9170. "dist": {
  9171. "type": "zip",
  9172. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9173. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9174. "shasum": ""
  9175. },
  9176. "require": {
  9177. "php": ">=8.1"
  9178. },
  9179. "require-dev": {
  9180. "phpunit/phpunit": "^10.0",
  9181. "symfony/process": "^6.4"
  9182. },
  9183. "type": "library",
  9184. "extra": {
  9185. "branch-alias": {
  9186. "dev-main": "5.1-dev"
  9187. }
  9188. },
  9189. "autoload": {
  9190. "classmap": [
  9191. "src/"
  9192. ]
  9193. },
  9194. "notification-url": "https://packagist.org/downloads/",
  9195. "license": [
  9196. "BSD-3-Clause"
  9197. ],
  9198. "authors": [
  9199. {
  9200. "name": "Sebastian Bergmann",
  9201. "email": "sebastian@phpunit.de"
  9202. },
  9203. {
  9204. "name": "Kore Nordmann",
  9205. "email": "mail@kore-nordmann.de"
  9206. }
  9207. ],
  9208. "description": "Diff implementation",
  9209. "homepage": "https://github.com/sebastianbergmann/diff",
  9210. "keywords": [
  9211. "diff",
  9212. "udiff",
  9213. "unidiff",
  9214. "unified diff"
  9215. ],
  9216. "support": {
  9217. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9218. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9219. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9220. },
  9221. "funding": [
  9222. {
  9223. "url": "https://github.com/sebastianbergmann",
  9224. "type": "github"
  9225. }
  9226. ],
  9227. "time": "2024-03-02T07:15:17+00:00"
  9228. },
  9229. {
  9230. "name": "sebastian/environment",
  9231. "version": "6.1.0",
  9232. "source": {
  9233. "type": "git",
  9234. "url": "https://github.com/sebastianbergmann/environment.git",
  9235. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9236. },
  9237. "dist": {
  9238. "type": "zip",
  9239. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9240. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9241. "shasum": ""
  9242. },
  9243. "require": {
  9244. "php": ">=8.1"
  9245. },
  9246. "require-dev": {
  9247. "phpunit/phpunit": "^10.0"
  9248. },
  9249. "suggest": {
  9250. "ext-posix": "*"
  9251. },
  9252. "type": "library",
  9253. "extra": {
  9254. "branch-alias": {
  9255. "dev-main": "6.1-dev"
  9256. }
  9257. },
  9258. "autoload": {
  9259. "classmap": [
  9260. "src/"
  9261. ]
  9262. },
  9263. "notification-url": "https://packagist.org/downloads/",
  9264. "license": [
  9265. "BSD-3-Clause"
  9266. ],
  9267. "authors": [
  9268. {
  9269. "name": "Sebastian Bergmann",
  9270. "email": "sebastian@phpunit.de"
  9271. }
  9272. ],
  9273. "description": "Provides functionality to handle HHVM/PHP environments",
  9274. "homepage": "https://github.com/sebastianbergmann/environment",
  9275. "keywords": [
  9276. "Xdebug",
  9277. "environment",
  9278. "hhvm"
  9279. ],
  9280. "support": {
  9281. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9282. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9283. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9284. },
  9285. "funding": [
  9286. {
  9287. "url": "https://github.com/sebastianbergmann",
  9288. "type": "github"
  9289. }
  9290. ],
  9291. "time": "2024-03-23T08:47:14+00:00"
  9292. },
  9293. {
  9294. "name": "sebastian/exporter",
  9295. "version": "5.1.2",
  9296. "source": {
  9297. "type": "git",
  9298. "url": "https://github.com/sebastianbergmann/exporter.git",
  9299. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9300. },
  9301. "dist": {
  9302. "type": "zip",
  9303. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9304. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9305. "shasum": ""
  9306. },
  9307. "require": {
  9308. "ext-mbstring": "*",
  9309. "php": ">=8.1",
  9310. "sebastian/recursion-context": "^5.0"
  9311. },
  9312. "require-dev": {
  9313. "phpunit/phpunit": "^10.0"
  9314. },
  9315. "type": "library",
  9316. "extra": {
  9317. "branch-alias": {
  9318. "dev-main": "5.1-dev"
  9319. }
  9320. },
  9321. "autoload": {
  9322. "classmap": [
  9323. "src/"
  9324. ]
  9325. },
  9326. "notification-url": "https://packagist.org/downloads/",
  9327. "license": [
  9328. "BSD-3-Clause"
  9329. ],
  9330. "authors": [
  9331. {
  9332. "name": "Sebastian Bergmann",
  9333. "email": "sebastian@phpunit.de"
  9334. },
  9335. {
  9336. "name": "Jeff Welch",
  9337. "email": "whatthejeff@gmail.com"
  9338. },
  9339. {
  9340. "name": "Volker Dusch",
  9341. "email": "github@wallbash.com"
  9342. },
  9343. {
  9344. "name": "Adam Harvey",
  9345. "email": "aharvey@php.net"
  9346. },
  9347. {
  9348. "name": "Bernhard Schussek",
  9349. "email": "bschussek@gmail.com"
  9350. }
  9351. ],
  9352. "description": "Provides the functionality to export PHP variables for visualization",
  9353. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9354. "keywords": [
  9355. "export",
  9356. "exporter"
  9357. ],
  9358. "support": {
  9359. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9360. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9361. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9362. },
  9363. "funding": [
  9364. {
  9365. "url": "https://github.com/sebastianbergmann",
  9366. "type": "github"
  9367. }
  9368. ],
  9369. "time": "2024-03-02T07:17:12+00:00"
  9370. },
  9371. {
  9372. "name": "sebastian/global-state",
  9373. "version": "6.0.2",
  9374. "source": {
  9375. "type": "git",
  9376. "url": "https://github.com/sebastianbergmann/global-state.git",
  9377. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9378. },
  9379. "dist": {
  9380. "type": "zip",
  9381. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9382. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9383. "shasum": ""
  9384. },
  9385. "require": {
  9386. "php": ">=8.1",
  9387. "sebastian/object-reflector": "^3.0",
  9388. "sebastian/recursion-context": "^5.0"
  9389. },
  9390. "require-dev": {
  9391. "ext-dom": "*",
  9392. "phpunit/phpunit": "^10.0"
  9393. },
  9394. "type": "library",
  9395. "extra": {
  9396. "branch-alias": {
  9397. "dev-main": "6.0-dev"
  9398. }
  9399. },
  9400. "autoload": {
  9401. "classmap": [
  9402. "src/"
  9403. ]
  9404. },
  9405. "notification-url": "https://packagist.org/downloads/",
  9406. "license": [
  9407. "BSD-3-Clause"
  9408. ],
  9409. "authors": [
  9410. {
  9411. "name": "Sebastian Bergmann",
  9412. "email": "sebastian@phpunit.de"
  9413. }
  9414. ],
  9415. "description": "Snapshotting of global state",
  9416. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9417. "keywords": [
  9418. "global state"
  9419. ],
  9420. "support": {
  9421. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9422. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9423. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9424. },
  9425. "funding": [
  9426. {
  9427. "url": "https://github.com/sebastianbergmann",
  9428. "type": "github"
  9429. }
  9430. ],
  9431. "time": "2024-03-02T07:19:19+00:00"
  9432. },
  9433. {
  9434. "name": "sebastian/lines-of-code",
  9435. "version": "2.0.2",
  9436. "source": {
  9437. "type": "git",
  9438. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9439. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9440. },
  9441. "dist": {
  9442. "type": "zip",
  9443. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9444. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9445. "shasum": ""
  9446. },
  9447. "require": {
  9448. "nikic/php-parser": "^4.18 || ^5.0",
  9449. "php": ">=8.1"
  9450. },
  9451. "require-dev": {
  9452. "phpunit/phpunit": "^10.0"
  9453. },
  9454. "type": "library",
  9455. "extra": {
  9456. "branch-alias": {
  9457. "dev-main": "2.0-dev"
  9458. }
  9459. },
  9460. "autoload": {
  9461. "classmap": [
  9462. "src/"
  9463. ]
  9464. },
  9465. "notification-url": "https://packagist.org/downloads/",
  9466. "license": [
  9467. "BSD-3-Clause"
  9468. ],
  9469. "authors": [
  9470. {
  9471. "name": "Sebastian Bergmann",
  9472. "email": "sebastian@phpunit.de",
  9473. "role": "lead"
  9474. }
  9475. ],
  9476. "description": "Library for counting the lines of code in PHP source code",
  9477. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9478. "support": {
  9479. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9480. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9481. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9482. },
  9483. "funding": [
  9484. {
  9485. "url": "https://github.com/sebastianbergmann",
  9486. "type": "github"
  9487. }
  9488. ],
  9489. "time": "2023-12-21T08:38:20+00:00"
  9490. },
  9491. {
  9492. "name": "sebastian/object-enumerator",
  9493. "version": "5.0.0",
  9494. "source": {
  9495. "type": "git",
  9496. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9497. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9498. },
  9499. "dist": {
  9500. "type": "zip",
  9501. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9502. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9503. "shasum": ""
  9504. },
  9505. "require": {
  9506. "php": ">=8.1",
  9507. "sebastian/object-reflector": "^3.0",
  9508. "sebastian/recursion-context": "^5.0"
  9509. },
  9510. "require-dev": {
  9511. "phpunit/phpunit": "^10.0"
  9512. },
  9513. "type": "library",
  9514. "extra": {
  9515. "branch-alias": {
  9516. "dev-main": "5.0-dev"
  9517. }
  9518. },
  9519. "autoload": {
  9520. "classmap": [
  9521. "src/"
  9522. ]
  9523. },
  9524. "notification-url": "https://packagist.org/downloads/",
  9525. "license": [
  9526. "BSD-3-Clause"
  9527. ],
  9528. "authors": [
  9529. {
  9530. "name": "Sebastian Bergmann",
  9531. "email": "sebastian@phpunit.de"
  9532. }
  9533. ],
  9534. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9535. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9536. "support": {
  9537. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9538. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9539. },
  9540. "funding": [
  9541. {
  9542. "url": "https://github.com/sebastianbergmann",
  9543. "type": "github"
  9544. }
  9545. ],
  9546. "time": "2023-02-03T07:08:32+00:00"
  9547. },
  9548. {
  9549. "name": "sebastian/object-reflector",
  9550. "version": "3.0.0",
  9551. "source": {
  9552. "type": "git",
  9553. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9554. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9555. },
  9556. "dist": {
  9557. "type": "zip",
  9558. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9559. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9560. "shasum": ""
  9561. },
  9562. "require": {
  9563. "php": ">=8.1"
  9564. },
  9565. "require-dev": {
  9566. "phpunit/phpunit": "^10.0"
  9567. },
  9568. "type": "library",
  9569. "extra": {
  9570. "branch-alias": {
  9571. "dev-main": "3.0-dev"
  9572. }
  9573. },
  9574. "autoload": {
  9575. "classmap": [
  9576. "src/"
  9577. ]
  9578. },
  9579. "notification-url": "https://packagist.org/downloads/",
  9580. "license": [
  9581. "BSD-3-Clause"
  9582. ],
  9583. "authors": [
  9584. {
  9585. "name": "Sebastian Bergmann",
  9586. "email": "sebastian@phpunit.de"
  9587. }
  9588. ],
  9589. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9590. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9591. "support": {
  9592. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9593. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9594. },
  9595. "funding": [
  9596. {
  9597. "url": "https://github.com/sebastianbergmann",
  9598. "type": "github"
  9599. }
  9600. ],
  9601. "time": "2023-02-03T07:06:18+00:00"
  9602. },
  9603. {
  9604. "name": "sebastian/recursion-context",
  9605. "version": "5.0.0",
  9606. "source": {
  9607. "type": "git",
  9608. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9609. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9610. },
  9611. "dist": {
  9612. "type": "zip",
  9613. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9614. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9615. "shasum": ""
  9616. },
  9617. "require": {
  9618. "php": ">=8.1"
  9619. },
  9620. "require-dev": {
  9621. "phpunit/phpunit": "^10.0"
  9622. },
  9623. "type": "library",
  9624. "extra": {
  9625. "branch-alias": {
  9626. "dev-main": "5.0-dev"
  9627. }
  9628. },
  9629. "autoload": {
  9630. "classmap": [
  9631. "src/"
  9632. ]
  9633. },
  9634. "notification-url": "https://packagist.org/downloads/",
  9635. "license": [
  9636. "BSD-3-Clause"
  9637. ],
  9638. "authors": [
  9639. {
  9640. "name": "Sebastian Bergmann",
  9641. "email": "sebastian@phpunit.de"
  9642. },
  9643. {
  9644. "name": "Jeff Welch",
  9645. "email": "whatthejeff@gmail.com"
  9646. },
  9647. {
  9648. "name": "Adam Harvey",
  9649. "email": "aharvey@php.net"
  9650. }
  9651. ],
  9652. "description": "Provides functionality to recursively process PHP variables",
  9653. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9654. "support": {
  9655. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9656. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9657. },
  9658. "funding": [
  9659. {
  9660. "url": "https://github.com/sebastianbergmann",
  9661. "type": "github"
  9662. }
  9663. ],
  9664. "time": "2023-02-03T07:05:40+00:00"
  9665. },
  9666. {
  9667. "name": "sebastian/type",
  9668. "version": "4.0.0",
  9669. "source": {
  9670. "type": "git",
  9671. "url": "https://github.com/sebastianbergmann/type.git",
  9672. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9673. },
  9674. "dist": {
  9675. "type": "zip",
  9676. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9677. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9678. "shasum": ""
  9679. },
  9680. "require": {
  9681. "php": ">=8.1"
  9682. },
  9683. "require-dev": {
  9684. "phpunit/phpunit": "^10.0"
  9685. },
  9686. "type": "library",
  9687. "extra": {
  9688. "branch-alias": {
  9689. "dev-main": "4.0-dev"
  9690. }
  9691. },
  9692. "autoload": {
  9693. "classmap": [
  9694. "src/"
  9695. ]
  9696. },
  9697. "notification-url": "https://packagist.org/downloads/",
  9698. "license": [
  9699. "BSD-3-Clause"
  9700. ],
  9701. "authors": [
  9702. {
  9703. "name": "Sebastian Bergmann",
  9704. "email": "sebastian@phpunit.de",
  9705. "role": "lead"
  9706. }
  9707. ],
  9708. "description": "Collection of value objects that represent the types of the PHP type system",
  9709. "homepage": "https://github.com/sebastianbergmann/type",
  9710. "support": {
  9711. "issues": "https://github.com/sebastianbergmann/type/issues",
  9712. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9713. },
  9714. "funding": [
  9715. {
  9716. "url": "https://github.com/sebastianbergmann",
  9717. "type": "github"
  9718. }
  9719. ],
  9720. "time": "2023-02-03T07:10:45+00:00"
  9721. },
  9722. {
  9723. "name": "sebastian/version",
  9724. "version": "4.0.1",
  9725. "source": {
  9726. "type": "git",
  9727. "url": "https://github.com/sebastianbergmann/version.git",
  9728. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9729. },
  9730. "dist": {
  9731. "type": "zip",
  9732. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9733. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9734. "shasum": ""
  9735. },
  9736. "require": {
  9737. "php": ">=8.1"
  9738. },
  9739. "type": "library",
  9740. "extra": {
  9741. "branch-alias": {
  9742. "dev-main": "4.0-dev"
  9743. }
  9744. },
  9745. "autoload": {
  9746. "classmap": [
  9747. "src/"
  9748. ]
  9749. },
  9750. "notification-url": "https://packagist.org/downloads/",
  9751. "license": [
  9752. "BSD-3-Clause"
  9753. ],
  9754. "authors": [
  9755. {
  9756. "name": "Sebastian Bergmann",
  9757. "email": "sebastian@phpunit.de",
  9758. "role": "lead"
  9759. }
  9760. ],
  9761. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9762. "homepage": "https://github.com/sebastianbergmann/version",
  9763. "support": {
  9764. "issues": "https://github.com/sebastianbergmann/version/issues",
  9765. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9766. },
  9767. "funding": [
  9768. {
  9769. "url": "https://github.com/sebastianbergmann",
  9770. "type": "github"
  9771. }
  9772. ],
  9773. "time": "2023-02-07T11:34:05+00:00"
  9774. },
  9775. {
  9776. "name": "swoole/ide-helper",
  9777. "version": "5.1.2",
  9778. "source": {
  9779. "type": "git",
  9780. "url": "https://github.com/swoole/ide-helper.git",
  9781. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  9782. },
  9783. "dist": {
  9784. "type": "zip",
  9785. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  9786. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  9787. "shasum": ""
  9788. },
  9789. "type": "library",
  9790. "notification-url": "https://packagist.org/downloads/",
  9791. "license": [
  9792. "Apache-2.0"
  9793. ],
  9794. "authors": [
  9795. {
  9796. "name": "Team Swoole",
  9797. "email": "team@swoole.com"
  9798. }
  9799. ],
  9800. "description": "IDE help files for Swoole.",
  9801. "support": {
  9802. "issues": "https://github.com/swoole/ide-helper/issues",
  9803. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  9804. },
  9805. "time": "2024-02-01T22:28:11+00:00"
  9806. },
  9807. {
  9808. "name": "symfony/event-dispatcher",
  9809. "version": "v6.4.8",
  9810. "source": {
  9811. "type": "git",
  9812. "url": "https://github.com/symfony/event-dispatcher.git",
  9813. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  9814. },
  9815. "dist": {
  9816. "type": "zip",
  9817. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  9818. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  9819. "shasum": ""
  9820. },
  9821. "require": {
  9822. "php": ">=8.1",
  9823. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9824. },
  9825. "conflict": {
  9826. "symfony/dependency-injection": "<5.4",
  9827. "symfony/service-contracts": "<2.5"
  9828. },
  9829. "provide": {
  9830. "psr/event-dispatcher-implementation": "1.0",
  9831. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9832. },
  9833. "require-dev": {
  9834. "psr/log": "^1|^2|^3",
  9835. "symfony/config": "^5.4|^6.0|^7.0",
  9836. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9837. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9838. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9839. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9840. "symfony/service-contracts": "^2.5|^3",
  9841. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9842. },
  9843. "type": "library",
  9844. "autoload": {
  9845. "psr-4": {
  9846. "Symfony\\Component\\EventDispatcher\\": ""
  9847. },
  9848. "exclude-from-classmap": [
  9849. "/Tests/"
  9850. ]
  9851. },
  9852. "notification-url": "https://packagist.org/downloads/",
  9853. "license": [
  9854. "MIT"
  9855. ],
  9856. "authors": [
  9857. {
  9858. "name": "Fabien Potencier",
  9859. "email": "fabien@symfony.com"
  9860. },
  9861. {
  9862. "name": "Symfony Community",
  9863. "homepage": "https://symfony.com/contributors"
  9864. }
  9865. ],
  9866. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9867. "homepage": "https://symfony.com",
  9868. "support": {
  9869. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  9870. },
  9871. "funding": [
  9872. {
  9873. "url": "https://symfony.com/sponsor",
  9874. "type": "custom"
  9875. },
  9876. {
  9877. "url": "https://github.com/fabpot",
  9878. "type": "github"
  9879. },
  9880. {
  9881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9882. "type": "tidelift"
  9883. }
  9884. ],
  9885. "time": "2024-05-31T14:49:08+00:00"
  9886. },
  9887. {
  9888. "name": "symfony/event-dispatcher-contracts",
  9889. "version": "v3.5.0",
  9890. "source": {
  9891. "type": "git",
  9892. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9893. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  9894. },
  9895. "dist": {
  9896. "type": "zip",
  9897. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  9898. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  9899. "shasum": ""
  9900. },
  9901. "require": {
  9902. "php": ">=8.1",
  9903. "psr/event-dispatcher": "^1"
  9904. },
  9905. "type": "library",
  9906. "extra": {
  9907. "branch-alias": {
  9908. "dev-main": "3.5-dev"
  9909. },
  9910. "thanks": {
  9911. "name": "symfony/contracts",
  9912. "url": "https://github.com/symfony/contracts"
  9913. }
  9914. },
  9915. "autoload": {
  9916. "psr-4": {
  9917. "Symfony\\Contracts\\EventDispatcher\\": ""
  9918. }
  9919. },
  9920. "notification-url": "https://packagist.org/downloads/",
  9921. "license": [
  9922. "MIT"
  9923. ],
  9924. "authors": [
  9925. {
  9926. "name": "Nicolas Grekas",
  9927. "email": "p@tchwork.com"
  9928. },
  9929. {
  9930. "name": "Symfony Community",
  9931. "homepage": "https://symfony.com/contributors"
  9932. }
  9933. ],
  9934. "description": "Generic abstractions related to dispatching event",
  9935. "homepage": "https://symfony.com",
  9936. "keywords": [
  9937. "abstractions",
  9938. "contracts",
  9939. "decoupling",
  9940. "interfaces",
  9941. "interoperability",
  9942. "standards"
  9943. ],
  9944. "support": {
  9945. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  9946. },
  9947. "funding": [
  9948. {
  9949. "url": "https://symfony.com/sponsor",
  9950. "type": "custom"
  9951. },
  9952. {
  9953. "url": "https://github.com/fabpot",
  9954. "type": "github"
  9955. },
  9956. {
  9957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9958. "type": "tidelift"
  9959. }
  9960. ],
  9961. "time": "2024-04-18T09:32:20+00:00"
  9962. },
  9963. {
  9964. "name": "symfony/filesystem",
  9965. "version": "v6.4.8",
  9966. "source": {
  9967. "type": "git",
  9968. "url": "https://github.com/symfony/filesystem.git",
  9969. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  9970. },
  9971. "dist": {
  9972. "type": "zip",
  9973. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  9974. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  9975. "shasum": ""
  9976. },
  9977. "require": {
  9978. "php": ">=8.1",
  9979. "symfony/polyfill-ctype": "~1.8",
  9980. "symfony/polyfill-mbstring": "~1.8"
  9981. },
  9982. "require-dev": {
  9983. "symfony/process": "^5.4|^6.4|^7.0"
  9984. },
  9985. "type": "library",
  9986. "autoload": {
  9987. "psr-4": {
  9988. "Symfony\\Component\\Filesystem\\": ""
  9989. },
  9990. "exclude-from-classmap": [
  9991. "/Tests/"
  9992. ]
  9993. },
  9994. "notification-url": "https://packagist.org/downloads/",
  9995. "license": [
  9996. "MIT"
  9997. ],
  9998. "authors": [
  9999. {
  10000. "name": "Fabien Potencier",
  10001. "email": "fabien@symfony.com"
  10002. },
  10003. {
  10004. "name": "Symfony Community",
  10005. "homepage": "https://symfony.com/contributors"
  10006. }
  10007. ],
  10008. "description": "Provides basic utilities for the filesystem",
  10009. "homepage": "https://symfony.com",
  10010. "support": {
  10011. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  10012. },
  10013. "funding": [
  10014. {
  10015. "url": "https://symfony.com/sponsor",
  10016. "type": "custom"
  10017. },
  10018. {
  10019. "url": "https://github.com/fabpot",
  10020. "type": "github"
  10021. },
  10022. {
  10023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10024. "type": "tidelift"
  10025. }
  10026. ],
  10027. "time": "2024-05-31T14:49:08+00:00"
  10028. },
  10029. {
  10030. "name": "symfony/http-foundation",
  10031. "version": "v6.4.8",
  10032. "source": {
  10033. "type": "git",
  10034. "url": "https://github.com/symfony/http-foundation.git",
  10035. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  10036. },
  10037. "dist": {
  10038. "type": "zip",
  10039. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  10040. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  10041. "shasum": ""
  10042. },
  10043. "require": {
  10044. "php": ">=8.1",
  10045. "symfony/deprecation-contracts": "^2.5|^3",
  10046. "symfony/polyfill-mbstring": "~1.1",
  10047. "symfony/polyfill-php83": "^1.27"
  10048. },
  10049. "conflict": {
  10050. "symfony/cache": "<6.3"
  10051. },
  10052. "require-dev": {
  10053. "doctrine/dbal": "^2.13.1|^3|^4",
  10054. "predis/predis": "^1.1|^2.0",
  10055. "symfony/cache": "^6.3|^7.0",
  10056. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10057. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10058. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10059. "symfony/mime": "^5.4|^6.0|^7.0",
  10060. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10061. },
  10062. "type": "library",
  10063. "autoload": {
  10064. "psr-4": {
  10065. "Symfony\\Component\\HttpFoundation\\": ""
  10066. },
  10067. "exclude-from-classmap": [
  10068. "/Tests/"
  10069. ]
  10070. },
  10071. "notification-url": "https://packagist.org/downloads/",
  10072. "license": [
  10073. "MIT"
  10074. ],
  10075. "authors": [
  10076. {
  10077. "name": "Fabien Potencier",
  10078. "email": "fabien@symfony.com"
  10079. },
  10080. {
  10081. "name": "Symfony Community",
  10082. "homepage": "https://symfony.com/contributors"
  10083. }
  10084. ],
  10085. "description": "Defines an object-oriented layer for the HTTP specification",
  10086. "homepage": "https://symfony.com",
  10087. "support": {
  10088. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  10089. },
  10090. "funding": [
  10091. {
  10092. "url": "https://symfony.com/sponsor",
  10093. "type": "custom"
  10094. },
  10095. {
  10096. "url": "https://github.com/fabpot",
  10097. "type": "github"
  10098. },
  10099. {
  10100. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10101. "type": "tidelift"
  10102. }
  10103. ],
  10104. "time": "2024-05-31T14:49:08+00:00"
  10105. },
  10106. {
  10107. "name": "symfony/options-resolver",
  10108. "version": "v6.4.8",
  10109. "source": {
  10110. "type": "git",
  10111. "url": "https://github.com/symfony/options-resolver.git",
  10112. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10113. },
  10114. "dist": {
  10115. "type": "zip",
  10116. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10117. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10118. "shasum": ""
  10119. },
  10120. "require": {
  10121. "php": ">=8.1",
  10122. "symfony/deprecation-contracts": "^2.5|^3"
  10123. },
  10124. "type": "library",
  10125. "autoload": {
  10126. "psr-4": {
  10127. "Symfony\\Component\\OptionsResolver\\": ""
  10128. },
  10129. "exclude-from-classmap": [
  10130. "/Tests/"
  10131. ]
  10132. },
  10133. "notification-url": "https://packagist.org/downloads/",
  10134. "license": [
  10135. "MIT"
  10136. ],
  10137. "authors": [
  10138. {
  10139. "name": "Fabien Potencier",
  10140. "email": "fabien@symfony.com"
  10141. },
  10142. {
  10143. "name": "Symfony Community",
  10144. "homepage": "https://symfony.com/contributors"
  10145. }
  10146. ],
  10147. "description": "Provides an improved replacement for the array_replace PHP function",
  10148. "homepage": "https://symfony.com",
  10149. "keywords": [
  10150. "config",
  10151. "configuration",
  10152. "options"
  10153. ],
  10154. "support": {
  10155. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10156. },
  10157. "funding": [
  10158. {
  10159. "url": "https://symfony.com/sponsor",
  10160. "type": "custom"
  10161. },
  10162. {
  10163. "url": "https://github.com/fabpot",
  10164. "type": "github"
  10165. },
  10166. {
  10167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10168. "type": "tidelift"
  10169. }
  10170. ],
  10171. "time": "2024-05-31T14:49:08+00:00"
  10172. },
  10173. {
  10174. "name": "symfony/polyfill-php81",
  10175. "version": "v1.29.0",
  10176. "source": {
  10177. "type": "git",
  10178. "url": "https://github.com/symfony/polyfill-php81.git",
  10179. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10180. },
  10181. "dist": {
  10182. "type": "zip",
  10183. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10184. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10185. "shasum": ""
  10186. },
  10187. "require": {
  10188. "php": ">=7.1"
  10189. },
  10190. "type": "library",
  10191. "extra": {
  10192. "thanks": {
  10193. "name": "symfony/polyfill",
  10194. "url": "https://github.com/symfony/polyfill"
  10195. }
  10196. },
  10197. "autoload": {
  10198. "files": [
  10199. "bootstrap.php"
  10200. ],
  10201. "psr-4": {
  10202. "Symfony\\Polyfill\\Php81\\": ""
  10203. },
  10204. "classmap": [
  10205. "Resources/stubs"
  10206. ]
  10207. },
  10208. "notification-url": "https://packagist.org/downloads/",
  10209. "license": [
  10210. "MIT"
  10211. ],
  10212. "authors": [
  10213. {
  10214. "name": "Nicolas Grekas",
  10215. "email": "p@tchwork.com"
  10216. },
  10217. {
  10218. "name": "Symfony Community",
  10219. "homepage": "https://symfony.com/contributors"
  10220. }
  10221. ],
  10222. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10223. "homepage": "https://symfony.com",
  10224. "keywords": [
  10225. "compatibility",
  10226. "polyfill",
  10227. "portable",
  10228. "shim"
  10229. ],
  10230. "support": {
  10231. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10232. },
  10233. "funding": [
  10234. {
  10235. "url": "https://symfony.com/sponsor",
  10236. "type": "custom"
  10237. },
  10238. {
  10239. "url": "https://github.com/fabpot",
  10240. "type": "github"
  10241. },
  10242. {
  10243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10244. "type": "tidelift"
  10245. }
  10246. ],
  10247. "time": "2024-01-29T20:11:03+00:00"
  10248. },
  10249. {
  10250. "name": "symfony/polyfill-php83",
  10251. "version": "v1.29.0",
  10252. "source": {
  10253. "type": "git",
  10254. "url": "https://github.com/symfony/polyfill-php83.git",
  10255. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10256. },
  10257. "dist": {
  10258. "type": "zip",
  10259. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10260. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10261. "shasum": ""
  10262. },
  10263. "require": {
  10264. "php": ">=7.1",
  10265. "symfony/polyfill-php80": "^1.14"
  10266. },
  10267. "type": "library",
  10268. "extra": {
  10269. "thanks": {
  10270. "name": "symfony/polyfill",
  10271. "url": "https://github.com/symfony/polyfill"
  10272. }
  10273. },
  10274. "autoload": {
  10275. "files": [
  10276. "bootstrap.php"
  10277. ],
  10278. "psr-4": {
  10279. "Symfony\\Polyfill\\Php83\\": ""
  10280. },
  10281. "classmap": [
  10282. "Resources/stubs"
  10283. ]
  10284. },
  10285. "notification-url": "https://packagist.org/downloads/",
  10286. "license": [
  10287. "MIT"
  10288. ],
  10289. "authors": [
  10290. {
  10291. "name": "Nicolas Grekas",
  10292. "email": "p@tchwork.com"
  10293. },
  10294. {
  10295. "name": "Symfony Community",
  10296. "homepage": "https://symfony.com/contributors"
  10297. }
  10298. ],
  10299. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10300. "homepage": "https://symfony.com",
  10301. "keywords": [
  10302. "compatibility",
  10303. "polyfill",
  10304. "portable",
  10305. "shim"
  10306. ],
  10307. "support": {
  10308. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  10309. },
  10310. "funding": [
  10311. {
  10312. "url": "https://symfony.com/sponsor",
  10313. "type": "custom"
  10314. },
  10315. {
  10316. "url": "https://github.com/fabpot",
  10317. "type": "github"
  10318. },
  10319. {
  10320. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10321. "type": "tidelift"
  10322. }
  10323. ],
  10324. "time": "2024-01-29T20:11:03+00:00"
  10325. },
  10326. {
  10327. "name": "symfony/process",
  10328. "version": "v6.4.8",
  10329. "source": {
  10330. "type": "git",
  10331. "url": "https://github.com/symfony/process.git",
  10332. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  10333. },
  10334. "dist": {
  10335. "type": "zip",
  10336. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10337. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10338. "shasum": ""
  10339. },
  10340. "require": {
  10341. "php": ">=8.1"
  10342. },
  10343. "type": "library",
  10344. "autoload": {
  10345. "psr-4": {
  10346. "Symfony\\Component\\Process\\": ""
  10347. },
  10348. "exclude-from-classmap": [
  10349. "/Tests/"
  10350. ]
  10351. },
  10352. "notification-url": "https://packagist.org/downloads/",
  10353. "license": [
  10354. "MIT"
  10355. ],
  10356. "authors": [
  10357. {
  10358. "name": "Fabien Potencier",
  10359. "email": "fabien@symfony.com"
  10360. },
  10361. {
  10362. "name": "Symfony Community",
  10363. "homepage": "https://symfony.com/contributors"
  10364. }
  10365. ],
  10366. "description": "Executes commands in sub-processes",
  10367. "homepage": "https://symfony.com",
  10368. "support": {
  10369. "source": "https://github.com/symfony/process/tree/v6.4.8"
  10370. },
  10371. "funding": [
  10372. {
  10373. "url": "https://symfony.com/sponsor",
  10374. "type": "custom"
  10375. },
  10376. {
  10377. "url": "https://github.com/fabpot",
  10378. "type": "github"
  10379. },
  10380. {
  10381. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10382. "type": "tidelift"
  10383. }
  10384. ],
  10385. "time": "2024-05-31T14:49:08+00:00"
  10386. },
  10387. {
  10388. "name": "symfony/stopwatch",
  10389. "version": "v6.4.8",
  10390. "source": {
  10391. "type": "git",
  10392. "url": "https://github.com/symfony/stopwatch.git",
  10393. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  10394. },
  10395. "dist": {
  10396. "type": "zip",
  10397. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  10398. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  10399. "shasum": ""
  10400. },
  10401. "require": {
  10402. "php": ">=8.1",
  10403. "symfony/service-contracts": "^2.5|^3"
  10404. },
  10405. "type": "library",
  10406. "autoload": {
  10407. "psr-4": {
  10408. "Symfony\\Component\\Stopwatch\\": ""
  10409. },
  10410. "exclude-from-classmap": [
  10411. "/Tests/"
  10412. ]
  10413. },
  10414. "notification-url": "https://packagist.org/downloads/",
  10415. "license": [
  10416. "MIT"
  10417. ],
  10418. "authors": [
  10419. {
  10420. "name": "Fabien Potencier",
  10421. "email": "fabien@symfony.com"
  10422. },
  10423. {
  10424. "name": "Symfony Community",
  10425. "homepage": "https://symfony.com/contributors"
  10426. }
  10427. ],
  10428. "description": "Provides a way to profile code",
  10429. "homepage": "https://symfony.com",
  10430. "support": {
  10431. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  10432. },
  10433. "funding": [
  10434. {
  10435. "url": "https://symfony.com/sponsor",
  10436. "type": "custom"
  10437. },
  10438. {
  10439. "url": "https://github.com/fabpot",
  10440. "type": "github"
  10441. },
  10442. {
  10443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10444. "type": "tidelift"
  10445. }
  10446. ],
  10447. "time": "2024-05-31T14:49:08+00:00"
  10448. },
  10449. {
  10450. "name": "theseer/tokenizer",
  10451. "version": "1.2.3",
  10452. "source": {
  10453. "type": "git",
  10454. "url": "https://github.com/theseer/tokenizer.git",
  10455. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10456. },
  10457. "dist": {
  10458. "type": "zip",
  10459. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10460. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10461. "shasum": ""
  10462. },
  10463. "require": {
  10464. "ext-dom": "*",
  10465. "ext-tokenizer": "*",
  10466. "ext-xmlwriter": "*",
  10467. "php": "^7.2 || ^8.0"
  10468. },
  10469. "type": "library",
  10470. "autoload": {
  10471. "classmap": [
  10472. "src/"
  10473. ]
  10474. },
  10475. "notification-url": "https://packagist.org/downloads/",
  10476. "license": [
  10477. "BSD-3-Clause"
  10478. ],
  10479. "authors": [
  10480. {
  10481. "name": "Arne Blankerts",
  10482. "email": "arne@blankerts.de",
  10483. "role": "Developer"
  10484. }
  10485. ],
  10486. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10487. "support": {
  10488. "issues": "https://github.com/theseer/tokenizer/issues",
  10489. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10490. },
  10491. "funding": [
  10492. {
  10493. "url": "https://github.com/theseer",
  10494. "type": "github"
  10495. }
  10496. ],
  10497. "time": "2024-03-03T12:36:25+00:00"
  10498. }
  10499. ],
  10500. "aliases": [],
  10501. "minimum-stability": "dev",
  10502. "stability-flags": [],
  10503. "prefer-stable": true,
  10504. "prefer-lowest": false,
  10505. "platform": {
  10506. "php": ">=8.1"
  10507. },
  10508. "platform-dev": [],
  10509. "plugin-api-version": "2.6.0"
  10510. }