composer.lock 405 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365
  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": "ac5ceda957860eaa6035deeb1d458258",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "[email protected]"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  59. },
  60. "time": "2022-10-14T20:31:46+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/credentials",
  64. "version": "1.1.5",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/credentials-php.git",
  68. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
  73. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.2",
  78. "alibabacloud/tea": "^3.0",
  79. "ext-curl": "*",
  80. "ext-json": "*",
  81. "ext-libxml": "*",
  82. "ext-mbstring": "*",
  83. "ext-openssl": "*",
  84. "ext-simplexml": "*",
  85. "ext-xmlwriter": "*",
  86. "guzzlehttp/guzzle": "^6.3|^7.0",
  87. "php": ">=5.6"
  88. },
  89. "require-dev": {
  90. "composer/composer": "^1.8",
  91. "drupal/coder": "^8.3",
  92. "ext-dom": "*",
  93. "ext-pcre": "*",
  94. "ext-sockets": "*",
  95. "ext-spl": "*",
  96. "mikey179/vfsstream": "^1.6",
  97. "monolog/monolog": "^1.24",
  98. "phpunit/phpunit": "^5.7|^6.6|^7.5",
  99. "psr/cache": "^1.0",
  100. "symfony/dotenv": "^3.4",
  101. "symfony/var-dumper": "^3.4"
  102. },
  103. "suggest": {
  104. "ext-sockets": "To use client-side monitoring"
  105. },
  106. "type": "library",
  107. "autoload": {
  108. "psr-4": {
  109. "AlibabaCloud\\Credentials\\": "src"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "Apache-2.0"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Alibaba Cloud SDK",
  119. "email": "[email protected]",
  120. "homepage": "http://www.alibabacloud.com"
  121. }
  122. ],
  123. "description": "Alibaba Cloud Credentials for PHP",
  124. "homepage": "https://www.alibabacloud.com/",
  125. "keywords": [
  126. "alibaba",
  127. "alibabacloud",
  128. "aliyun",
  129. "client",
  130. "cloud",
  131. "credentials",
  132. "library",
  133. "sdk",
  134. "tool"
  135. ],
  136. "support": {
  137. "issues": "https://github.com/aliyun/credentials-php/issues",
  138. "source": "https://github.com/aliyun/credentials-php"
  139. },
  140. "time": "2023-04-11T02:12:12+00:00"
  141. },
  142. {
  143. "name": "alibabacloud/darabonba-openapi",
  144. "version": "0.2.11",
  145. "source": {
  146. "type": "git",
  147. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  148. "reference": "1b5c5fc771eaf782cb792f9e975b8247683307c7"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/1b5c5fc771eaf782cb792f9e975b8247683307c7",
  153. "reference": "1b5c5fc771eaf782cb792f9e975b8247683307c7",
  154. "shasum": ""
  155. },
  156. "require": {
  157. "alibabacloud/credentials": "^1.1",
  158. "alibabacloud/gateway-spi": "^1",
  159. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  160. "alibabacloud/tea-utils": "^0.2.20",
  161. "alibabacloud/tea-xml": "^0.2",
  162. "php": ">5.5"
  163. },
  164. "type": "library",
  165. "autoload": {
  166. "psr-4": {
  167. "Darabonba\\OpenApi\\": "src"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "Apache-2.0"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Alibaba Cloud SDK",
  177. "email": "[email protected]"
  178. }
  179. ],
  180. "description": "Alibaba Cloud OpenApi Client",
  181. "support": {
  182. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  183. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.11"
  184. },
  185. "time": "2024-05-14T03:00:59+00:00"
  186. },
  187. {
  188. "name": "alibabacloud/dm-20170622",
  189. "version": "1.2.2",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/alibabacloud-sdk-php/dm-20170622.git",
  193. "reference": "400f9de65896f7fd2b854bb6a6c51bfe5d56e324"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dm-20170622/zipball/400f9de65896f7fd2b854bb6a6c51bfe5d56e324",
  198. "reference": "400f9de65896f7fd2b854bb6a6c51bfe5d56e324",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "alibabacloud/darabonba-openapi": "^0.2.10",
  203. "alibabacloud/endpoint-util": "^0.1.0",
  204. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  205. "alibabacloud/tea-utils": "^0.2.19",
  206. "php": ">5.5"
  207. },
  208. "type": "library",
  209. "autoload": {
  210. "psr-4": {
  211. "AlibabaCloud\\SDK\\Dm\\V20170622\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "Apache-2.0"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Alibaba Cloud SDK",
  221. "email": "[email protected]"
  222. }
  223. ],
  224. "description": "Alibaba Cloud Dm (20170622) SDK Library for PHP",
  225. "support": {
  226. "source": "https://github.com/alibabacloud-sdk-php/dm-20170622/tree/1.2.2"
  227. },
  228. "time": "2024-04-10T17:15:45+00:00"
  229. },
  230. {
  231. "name": "alibabacloud/endpoint-util",
  232. "version": "0.1.1",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  236. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  241. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "php": ">5.5"
  246. },
  247. "require-dev": {
  248. "phpunit/phpunit": "^4.8.35|^5.4.3"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "AlibabaCloud\\Endpoint\\": "src"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "Apache-2.0"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Alibaba Cloud SDK",
  263. "email": "[email protected]"
  264. }
  265. ],
  266. "description": "Alibaba Cloud Endpoint Library for PHP",
  267. "support": {
  268. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  269. },
  270. "time": "2020-06-04T10:57:15+00:00"
  271. },
  272. {
  273. "name": "alibabacloud/gateway-spi",
  274. "version": "1.0.0",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  278. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  283. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "alibabacloud/credentials": "^1.1",
  288. "php": ">5.5"
  289. },
  290. "type": "library",
  291. "autoload": {
  292. "psr-4": {
  293. "Darabonba\\GatewaySpi\\": "src"
  294. }
  295. },
  296. "notification-url": "https://packagist.org/downloads/",
  297. "license": [
  298. "Apache-2.0"
  299. ],
  300. "authors": [
  301. {
  302. "name": "Alibaba Cloud SDK",
  303. "email": "[email protected]"
  304. }
  305. ],
  306. "description": "Alibaba Cloud Gateway SPI Client",
  307. "support": {
  308. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  309. },
  310. "time": "2022-07-14T05:31:35+00:00"
  311. },
  312. {
  313. "name": "alibabacloud/openapi-util",
  314. "version": "0.2.1",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  318. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  323. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  324. "shasum": ""
  325. },
  326. "require": {
  327. "alibabacloud/tea": "^3.1",
  328. "alibabacloud/tea-utils": "^0.2",
  329. "lizhichao/one-sm": "^1.5",
  330. "php": ">5.5"
  331. },
  332. "require-dev": {
  333. "phpunit/phpunit": "*"
  334. },
  335. "type": "library",
  336. "autoload": {
  337. "psr-4": {
  338. "AlibabaCloud\\OpenApiUtil\\": "src"
  339. }
  340. },
  341. "notification-url": "https://packagist.org/downloads/",
  342. "license": [
  343. "Apache-2.0"
  344. ],
  345. "authors": [
  346. {
  347. "name": "Alibaba Cloud SDK",
  348. "email": "[email protected]"
  349. }
  350. ],
  351. "description": "Alibaba Cloud OpenApi Util",
  352. "support": {
  353. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  354. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  355. },
  356. "time": "2023-01-10T09:10:10+00:00"
  357. },
  358. {
  359. "name": "alibabacloud/tea",
  360. "version": "3.2.1",
  361. "source": {
  362. "type": "git",
  363. "url": "https://github.com/aliyun/tea-php.git",
  364. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  365. },
  366. "dist": {
  367. "type": "zip",
  368. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  369. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  370. "shasum": ""
  371. },
  372. "require": {
  373. "adbario/php-dot-notation": "^2.4",
  374. "ext-curl": "*",
  375. "ext-json": "*",
  376. "ext-libxml": "*",
  377. "ext-mbstring": "*",
  378. "ext-openssl": "*",
  379. "ext-simplexml": "*",
  380. "ext-xmlwriter": "*",
  381. "guzzlehttp/guzzle": "^6.3|^7.0",
  382. "php": ">=5.5"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "*",
  386. "symfony/dotenv": "^3.4",
  387. "symfony/var-dumper": "^3.4"
  388. },
  389. "suggest": {
  390. "ext-sockets": "To use client-side monitoring"
  391. },
  392. "type": "library",
  393. "autoload": {
  394. "psr-4": {
  395. "AlibabaCloud\\Tea\\": "src"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "Apache-2.0"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Alibaba Cloud SDK",
  405. "email": "[email protected]",
  406. "homepage": "http://www.alibabacloud.com"
  407. }
  408. ],
  409. "description": "Client of Tea for PHP",
  410. "homepage": "https://www.alibabacloud.com/",
  411. "keywords": [
  412. "alibabacloud",
  413. "client",
  414. "cloud",
  415. "tea"
  416. ],
  417. "support": {
  418. "issues": "https://github.com/aliyun/tea-php/issues",
  419. "source": "https://github.com/aliyun/tea-php"
  420. },
  421. "time": "2023-05-16T06:43:41+00:00"
  422. },
  423. {
  424. "name": "alibabacloud/tea-utils",
  425. "version": "0.2.20",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  429. "reference": "e924258773cb236617effc042fb1d19eefea1588"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/e924258773cb236617effc042fb1d19eefea1588",
  434. "reference": "e924258773cb236617effc042fb1d19eefea1588",
  435. "shasum": ""
  436. },
  437. "require": {
  438. "alibabacloud/tea": "^3.1",
  439. "php": ">5.5"
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "AlibabaCloud\\Tea\\Utils\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "Apache-2.0"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Alibaba Cloud SDK",
  454. "email": "[email protected]"
  455. }
  456. ],
  457. "description": "Alibaba Cloud Tea Utils for PHP",
  458. "support": {
  459. "issues": "https://github.com/aliyun/tea-util/issues",
  460. "source": "https://github.com/aliyun/tea-util"
  461. },
  462. "time": "2024-05-11T09:45:00+00:00"
  463. },
  464. {
  465. "name": "alibabacloud/tea-xml",
  466. "version": "0.2.4",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  470. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  475. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": ">5.5"
  480. },
  481. "require-dev": {
  482. "phpunit/phpunit": "*",
  483. "symfony/var-dumper": "*"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-4": {
  488. "AlibabaCloud\\Tea\\XML\\": "src"
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "Apache-2.0"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Alibaba Cloud SDK",
  498. "email": "[email protected]"
  499. }
  500. ],
  501. "description": "Alibaba Cloud Tea XML Library for PHP",
  502. "support": {
  503. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  504. },
  505. "time": "2022-08-02T04:12:58+00:00"
  506. },
  507. {
  508. "name": "alipaysdk/openapi",
  509. "version": "dev-master",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/alipay/alipay-sdk-php-all.git",
  513. "reference": "fa2be77aa421fff025c0adbc94ca3a7288e9be93"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/alipay/alipay-sdk-php-all/zipball/fa2be77aa421fff025c0adbc94ca3a7288e9be93",
  518. "reference": "fa2be77aa421fff025c0adbc94ca3a7288e9be93",
  519. "shasum": ""
  520. },
  521. "require": {
  522. "ext-bcmath": "*",
  523. "ext-curl": "*",
  524. "ext-dom": "*",
  525. "ext-json": "*",
  526. "ext-mbstring": "*",
  527. "ext-openssl": "*",
  528. "guzzlehttp/guzzle": "^7.3",
  529. "guzzlehttp/psr7": "^1.7 || ^2.0",
  530. "php": "^7.4 || ^8.0"
  531. },
  532. "require-dev": {
  533. "friendsofphp/php-cs-fixer": "^3.5",
  534. "phpunit/phpunit": "^8.0 || ^9.0"
  535. },
  536. "default-branch": true,
  537. "type": "library",
  538. "autoload": {
  539. "psr-4": {
  540. "Alipay\\OpenAPISDK\\": "v3/src/"
  541. }
  542. },
  543. "notification-url": "https://packagist.org/downloads/",
  544. "license": [
  545. "unlicense"
  546. ],
  547. "authors": [
  548. {
  549. "name": "OpenAPI-Generator contributors",
  550. "homepage": "https://openapi-generator.tech"
  551. }
  552. ],
  553. "description": "支付宝开放平台v3协议文档",
  554. "homepage": "https://openapi-generator.tech",
  555. "keywords": [
  556. "api",
  557. "openapi",
  558. "openapi-generator",
  559. "openapitools",
  560. "php",
  561. "rest",
  562. "sdk"
  563. ],
  564. "support": {
  565. "source": "https://github.com/alipay/alipay-sdk-php-all/tree/master"
  566. },
  567. "time": "2024-05-29T07:41:36+00:00"
  568. },
  569. {
  570. "name": "aws/aws-crt-php",
  571. "version": "v1.2.5",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/awslabs/aws-crt-php.git",
  575. "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/0ea1f04ec5aa9f049f97e012d1ed63b76834a31b",
  580. "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b",
  581. "shasum": ""
  582. },
  583. "require": {
  584. "php": ">=5.5"
  585. },
  586. "require-dev": {
  587. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  588. "yoast/phpunit-polyfills": "^1.0"
  589. },
  590. "suggest": {
  591. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  592. },
  593. "type": "library",
  594. "autoload": {
  595. "classmap": [
  596. "src/"
  597. ]
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "Apache-2.0"
  602. ],
  603. "authors": [
  604. {
  605. "name": "AWS SDK Common Runtime Team",
  606. "email": "[email protected]"
  607. }
  608. ],
  609. "description": "AWS Common Runtime for PHP",
  610. "homepage": "https://github.com/awslabs/aws-crt-php",
  611. "keywords": [
  612. "amazon",
  613. "aws",
  614. "crt",
  615. "sdk"
  616. ],
  617. "support": {
  618. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  619. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.5"
  620. },
  621. "time": "2024-04-19T21:30:56+00:00"
  622. },
  623. {
  624. "name": "aws/aws-sdk-php",
  625. "version": "3.314.2",
  626. "source": {
  627. "type": "git",
  628. "url": "https://github.com/aws/aws-sdk-php.git",
  629. "reference": "1f5ccf9c73a66fb85c7c5de8f11ed69e44c636ef"
  630. },
  631. "dist": {
  632. "type": "zip",
  633. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/1f5ccf9c73a66fb85c7c5de8f11ed69e44c636ef",
  634. "reference": "1f5ccf9c73a66fb85c7c5de8f11ed69e44c636ef",
  635. "shasum": ""
  636. },
  637. "require": {
  638. "aws/aws-crt-php": "^1.2.3",
  639. "ext-json": "*",
  640. "ext-pcre": "*",
  641. "ext-simplexml": "*",
  642. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  643. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  644. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  645. "mtdowling/jmespath.php": "^2.6",
  646. "php": ">=7.2.5",
  647. "psr/http-message": "^1.0 || ^2.0"
  648. },
  649. "require-dev": {
  650. "andrewsville/php-token-reflection": "^1.4",
  651. "aws/aws-php-sns-message-validator": "~1.0",
  652. "behat/behat": "~3.0",
  653. "composer/composer": "^1.10.22",
  654. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  655. "doctrine/cache": "~1.4",
  656. "ext-dom": "*",
  657. "ext-openssl": "*",
  658. "ext-pcntl": "*",
  659. "ext-sockets": "*",
  660. "nette/neon": "^2.3",
  661. "paragonie/random_compat": ">= 2",
  662. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  663. "psr/cache": "^1.0",
  664. "psr/simple-cache": "^1.0",
  665. "sebastian/comparator": "^1.2.3 || ^4.0",
  666. "yoast/phpunit-polyfills": "^1.0"
  667. },
  668. "suggest": {
  669. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  670. "doctrine/cache": "To use the DoctrineCacheAdapter",
  671. "ext-curl": "To send requests using cURL",
  672. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  673. "ext-sockets": "To use client-side monitoring"
  674. },
  675. "type": "library",
  676. "extra": {
  677. "branch-alias": {
  678. "dev-master": "3.0-dev"
  679. }
  680. },
  681. "autoload": {
  682. "files": [
  683. "src/functions.php"
  684. ],
  685. "psr-4": {
  686. "Aws\\": "src/"
  687. }
  688. },
  689. "notification-url": "https://packagist.org/downloads/",
  690. "license": [
  691. "Apache-2.0"
  692. ],
  693. "authors": [
  694. {
  695. "name": "Amazon Web Services",
  696. "homepage": "http://aws.amazon.com"
  697. }
  698. ],
  699. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  700. "homepage": "http://aws.amazon.com/sdkforphp",
  701. "keywords": [
  702. "amazon",
  703. "aws",
  704. "cloud",
  705. "dynamodb",
  706. "ec2",
  707. "glacier",
  708. "s3",
  709. "sdk"
  710. ],
  711. "support": {
  712. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  713. "issues": "https://github.com/aws/aws-sdk-php/issues",
  714. "source": "https://github.com/aws/aws-sdk-php/tree/3.314.2"
  715. },
  716. "time": "2024-06-14T18:11:34+00:00"
  717. },
  718. {
  719. "name": "bacon/bacon-qr-code",
  720. "version": "v3.0.0",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/Bacon/BaconQrCode.git",
  724. "reference": "510de6eca6248d77d31b339d62437cc995e2fb41"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/510de6eca6248d77d31b339d62437cc995e2fb41",
  729. "reference": "510de6eca6248d77d31b339d62437cc995e2fb41",
  730. "shasum": ""
  731. },
  732. "require": {
  733. "dasprid/enum": "^1.0.3",
  734. "ext-iconv": "*",
  735. "php": "^8.1"
  736. },
  737. "require-dev": {
  738. "phly/keep-a-changelog": "^2.12",
  739. "phpunit/phpunit": "^10.5.11 || 11.0.4",
  740. "spatie/phpunit-snapshot-assertions": "^5.1.5",
  741. "squizlabs/php_codesniffer": "^3.9"
  742. },
  743. "suggest": {
  744. "ext-imagick": "to generate QR code images"
  745. },
  746. "type": "library",
  747. "autoload": {
  748. "psr-4": {
  749. "BaconQrCode\\": "src/"
  750. }
  751. },
  752. "notification-url": "https://packagist.org/downloads/",
  753. "license": [
  754. "BSD-2-Clause"
  755. ],
  756. "authors": [
  757. {
  758. "name": "Ben Scholzen 'DASPRiD'",
  759. "email": "[email protected]",
  760. "homepage": "https://dasprids.de/",
  761. "role": "Developer"
  762. }
  763. ],
  764. "description": "BaconQrCode is a QR code generator for PHP.",
  765. "homepage": "https://github.com/Bacon/BaconQrCode",
  766. "support": {
  767. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  768. "source": "https://github.com/Bacon/BaconQrCode/tree/v3.0.0"
  769. },
  770. "time": "2024-04-18T11:16:25+00:00"
  771. },
  772. {
  773. "name": "beberlei/assert",
  774. "version": "v3.3.2",
  775. "source": {
  776. "type": "git",
  777. "url": "https://github.com/beberlei/assert.git",
  778. "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655"
  779. },
  780. "dist": {
  781. "type": "zip",
  782. "url": "https://api.github.com/repos/beberlei/assert/zipball/cb70015c04be1baee6f5f5c953703347c0ac1655",
  783. "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655",
  784. "shasum": ""
  785. },
  786. "require": {
  787. "ext-ctype": "*",
  788. "ext-json": "*",
  789. "ext-mbstring": "*",
  790. "ext-simplexml": "*",
  791. "php": "^7.0 || ^8.0"
  792. },
  793. "require-dev": {
  794. "friendsofphp/php-cs-fixer": "*",
  795. "phpstan/phpstan": "*",
  796. "phpunit/phpunit": ">=6.0.0",
  797. "yoast/phpunit-polyfills": "^0.1.0"
  798. },
  799. "suggest": {
  800. "ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles"
  801. },
  802. "type": "library",
  803. "autoload": {
  804. "files": [
  805. "lib/Assert/functions.php"
  806. ],
  807. "psr-4": {
  808. "Assert\\": "lib/Assert"
  809. }
  810. },
  811. "notification-url": "https://packagist.org/downloads/",
  812. "license": [
  813. "BSD-2-Clause"
  814. ],
  815. "authors": [
  816. {
  817. "name": "Benjamin Eberlei",
  818. "email": "[email protected]",
  819. "role": "Lead Developer"
  820. },
  821. {
  822. "name": "Richard Quadling",
  823. "email": "[email protected]",
  824. "role": "Collaborator"
  825. }
  826. ],
  827. "description": "Thin assertion library for input validation in business models.",
  828. "keywords": [
  829. "assert",
  830. "assertion",
  831. "validation"
  832. ],
  833. "support": {
  834. "issues": "https://github.com/beberlei/assert/issues",
  835. "source": "https://github.com/beberlei/assert/tree/v3.3.2"
  836. },
  837. "time": "2021-12-16T21:41:27+00:00"
  838. },
  839. {
  840. "name": "brick/math",
  841. "version": "0.12.1",
  842. "source": {
  843. "type": "git",
  844. "url": "https://github.com/brick/math.git",
  845. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  846. },
  847. "dist": {
  848. "type": "zip",
  849. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  850. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  851. "shasum": ""
  852. },
  853. "require": {
  854. "php": "^8.1"
  855. },
  856. "require-dev": {
  857. "php-coveralls/php-coveralls": "^2.2",
  858. "phpunit/phpunit": "^10.1",
  859. "vimeo/psalm": "5.16.0"
  860. },
  861. "type": "library",
  862. "autoload": {
  863. "psr-4": {
  864. "Brick\\Math\\": "src/"
  865. }
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "MIT"
  870. ],
  871. "description": "Arbitrary-precision arithmetic library",
  872. "keywords": [
  873. "Arbitrary-precision",
  874. "BigInteger",
  875. "BigRational",
  876. "arithmetic",
  877. "bigdecimal",
  878. "bignum",
  879. "bignumber",
  880. "brick",
  881. "decimal",
  882. "integer",
  883. "math",
  884. "mathematics",
  885. "rational"
  886. ],
  887. "support": {
  888. "issues": "https://github.com/brick/math/issues",
  889. "source": "https://github.com/brick/math/tree/0.12.1"
  890. },
  891. "funding": [
  892. {
  893. "url": "https://github.com/BenMorel",
  894. "type": "github"
  895. }
  896. ],
  897. "time": "2023-11-29T23:19:16+00:00"
  898. },
  899. {
  900. "name": "carbonphp/carbon-doctrine-types",
  901. "version": "3.2.0",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  905. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  910. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  911. "shasum": ""
  912. },
  913. "require": {
  914. "php": "^8.1"
  915. },
  916. "conflict": {
  917. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  918. },
  919. "require-dev": {
  920. "doctrine/dbal": "^4.0.0",
  921. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  922. "phpunit/phpunit": "^10.3"
  923. },
  924. "type": "library",
  925. "autoload": {
  926. "psr-4": {
  927. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  928. }
  929. },
  930. "notification-url": "https://packagist.org/downloads/",
  931. "license": [
  932. "MIT"
  933. ],
  934. "authors": [
  935. {
  936. "name": "KyleKatarn",
  937. "email": "[email protected]"
  938. }
  939. ],
  940. "description": "Types to use Carbon in Doctrine",
  941. "keywords": [
  942. "carbon",
  943. "date",
  944. "datetime",
  945. "doctrine",
  946. "time"
  947. ],
  948. "support": {
  949. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  950. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  951. },
  952. "funding": [
  953. {
  954. "url": "https://github.com/kylekatarnls",
  955. "type": "github"
  956. },
  957. {
  958. "url": "https://opencollective.com/Carbon",
  959. "type": "open_collective"
  960. },
  961. {
  962. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  963. "type": "tidelift"
  964. }
  965. ],
  966. "time": "2024-02-09T16:56:22+00:00"
  967. },
  968. {
  969. "name": "clue/stream-filter",
  970. "version": "v1.7.0",
  971. "source": {
  972. "type": "git",
  973. "url": "https://github.com/clue/stream-filter.git",
  974. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7"
  975. },
  976. "dist": {
  977. "type": "zip",
  978. "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7",
  979. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  980. "shasum": ""
  981. },
  982. "require": {
  983. "php": ">=5.3"
  984. },
  985. "require-dev": {
  986. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  987. },
  988. "type": "library",
  989. "autoload": {
  990. "files": [
  991. "src/functions_include.php"
  992. ],
  993. "psr-4": {
  994. "Clue\\StreamFilter\\": "src/"
  995. }
  996. },
  997. "notification-url": "https://packagist.org/downloads/",
  998. "license": [
  999. "MIT"
  1000. ],
  1001. "authors": [
  1002. {
  1003. "name": "Christian Lück",
  1004. "email": "[email protected]"
  1005. }
  1006. ],
  1007. "description": "A simple and modern approach to stream filtering in PHP",
  1008. "homepage": "https://github.com/clue/stream-filter",
  1009. "keywords": [
  1010. "bucket brigade",
  1011. "callback",
  1012. "filter",
  1013. "php_user_filter",
  1014. "stream",
  1015. "stream_filter_append",
  1016. "stream_filter_register"
  1017. ],
  1018. "support": {
  1019. "issues": "https://github.com/clue/stream-filter/issues",
  1020. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  1021. },
  1022. "funding": [
  1023. {
  1024. "url": "https://clue.engineering/support",
  1025. "type": "custom"
  1026. },
  1027. {
  1028. "url": "https://github.com/clue",
  1029. "type": "github"
  1030. }
  1031. ],
  1032. "time": "2023-12-20T15:40:13+00:00"
  1033. },
  1034. {
  1035. "name": "composer/ca-bundle",
  1036. "version": "1.5.0",
  1037. "source": {
  1038. "type": "git",
  1039. "url": "https://github.com/composer/ca-bundle.git",
  1040. "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99"
  1041. },
  1042. "dist": {
  1043. "type": "zip",
  1044. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/0c5ccfcfea312b5c5a190a21ac5cef93f74baf99",
  1045. "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99",
  1046. "shasum": ""
  1047. },
  1048. "require": {
  1049. "ext-openssl": "*",
  1050. "ext-pcre": "*",
  1051. "php": "^7.2 || ^8.0"
  1052. },
  1053. "require-dev": {
  1054. "phpstan/phpstan": "^1.10",
  1055. "psr/log": "^1.0",
  1056. "symfony/phpunit-bridge": "^4.2 || ^5",
  1057. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1058. },
  1059. "type": "library",
  1060. "extra": {
  1061. "branch-alias": {
  1062. "dev-main": "1.x-dev"
  1063. }
  1064. },
  1065. "autoload": {
  1066. "psr-4": {
  1067. "Composer\\CaBundle\\": "src"
  1068. }
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "license": [
  1072. "MIT"
  1073. ],
  1074. "authors": [
  1075. {
  1076. "name": "Jordi Boggiano",
  1077. "email": "[email protected]",
  1078. "homepage": "http://seld.be"
  1079. }
  1080. ],
  1081. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  1082. "keywords": [
  1083. "cabundle",
  1084. "cacert",
  1085. "certificate",
  1086. "ssl",
  1087. "tls"
  1088. ],
  1089. "support": {
  1090. "irc": "irc://irc.freenode.org/composer",
  1091. "issues": "https://github.com/composer/ca-bundle/issues",
  1092. "source": "https://github.com/composer/ca-bundle/tree/1.5.0"
  1093. },
  1094. "funding": [
  1095. {
  1096. "url": "https://packagist.com",
  1097. "type": "custom"
  1098. },
  1099. {
  1100. "url": "https://github.com/composer",
  1101. "type": "github"
  1102. },
  1103. {
  1104. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1105. "type": "tidelift"
  1106. }
  1107. ],
  1108. "time": "2024-03-15T14:00:32+00:00"
  1109. },
  1110. {
  1111. "name": "danielsreichenbach/geoip2-update",
  1112. "version": "v2.5.0",
  1113. "source": {
  1114. "type": "git",
  1115. "url": "https://github.com/danielsreichenbach/geoip2-update.git",
  1116. "reference": "d5d4f591b8f3e4eab5758b9e586008e396b6eb7d"
  1117. },
  1118. "dist": {
  1119. "type": "zip",
  1120. "url": "https://api.github.com/repos/danielsreichenbach/geoip2-update/zipball/d5d4f591b8f3e4eab5758b9e586008e396b6eb7d",
  1121. "reference": "d5d4f591b8f3e4eab5758b9e586008e396b6eb7d",
  1122. "shasum": ""
  1123. },
  1124. "require": {
  1125. "composer-plugin-api": "^2",
  1126. "ext-curl": "*",
  1127. "ext-json": "*",
  1128. "php": "^7.2.5 || ^8.0"
  1129. },
  1130. "require-dev": {
  1131. "composer/composer": "^2",
  1132. "symfony/console": "^5.4 || ^6.0 || ^7.0"
  1133. },
  1134. "type": "library",
  1135. "autoload": {
  1136. "psr-4": {
  1137. "danielsreichenbach\\GeoIP2Update\\": "src/"
  1138. }
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "authors": [
  1145. {
  1146. "name": "Andrey Tronov",
  1147. "email": "[email protected]"
  1148. },
  1149. {
  1150. "name": "Daniel S. Reichenbach",
  1151. "email": "[email protected]"
  1152. }
  1153. ],
  1154. "description": "Update GeoIP2/GeoLite2 databases from your script, program or via composer.",
  1155. "keywords": [
  1156. "geoip",
  1157. "geoip2",
  1158. "geolite2",
  1159. "geolocation",
  1160. "maxmind"
  1161. ],
  1162. "support": {
  1163. "email": "[email protected]",
  1164. "source": "https://github.com/danielsreichenbach/geoip2-update/tree/v2.5.0"
  1165. },
  1166. "time": "2024-05-08T11:17:24+00:00"
  1167. },
  1168. {
  1169. "name": "dasprid/enum",
  1170. "version": "1.0.5",
  1171. "source": {
  1172. "type": "git",
  1173. "url": "https://github.com/DASPRiD/Enum.git",
  1174. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
  1175. },
  1176. "dist": {
  1177. "type": "zip",
  1178. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
  1179. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
  1180. "shasum": ""
  1181. },
  1182. "require": {
  1183. "php": ">=7.1 <9.0"
  1184. },
  1185. "require-dev": {
  1186. "phpunit/phpunit": "^7 | ^8 | ^9",
  1187. "squizlabs/php_codesniffer": "*"
  1188. },
  1189. "type": "library",
  1190. "autoload": {
  1191. "psr-4": {
  1192. "DASPRiD\\Enum\\": "src/"
  1193. }
  1194. },
  1195. "notification-url": "https://packagist.org/downloads/",
  1196. "license": [
  1197. "BSD-2-Clause"
  1198. ],
  1199. "authors": [
  1200. {
  1201. "name": "Ben Scholzen 'DASPRiD'",
  1202. "email": "[email protected]",
  1203. "homepage": "https://dasprids.de/",
  1204. "role": "Developer"
  1205. }
  1206. ],
  1207. "description": "PHP 7.1 enum implementation",
  1208. "keywords": [
  1209. "enum",
  1210. "map"
  1211. ],
  1212. "support": {
  1213. "issues": "https://github.com/DASPRiD/Enum/issues",
  1214. "source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
  1215. },
  1216. "time": "2023-08-25T16:18:39+00:00"
  1217. },
  1218. {
  1219. "name": "doctrine/inflector",
  1220. "version": "2.0.10",
  1221. "source": {
  1222. "type": "git",
  1223. "url": "https://github.com/doctrine/inflector.git",
  1224. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1225. },
  1226. "dist": {
  1227. "type": "zip",
  1228. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1229. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1230. "shasum": ""
  1231. },
  1232. "require": {
  1233. "php": "^7.2 || ^8.0"
  1234. },
  1235. "require-dev": {
  1236. "doctrine/coding-standard": "^11.0",
  1237. "phpstan/phpstan": "^1.8",
  1238. "phpstan/phpstan-phpunit": "^1.1",
  1239. "phpstan/phpstan-strict-rules": "^1.3",
  1240. "phpunit/phpunit": "^8.5 || ^9.5",
  1241. "vimeo/psalm": "^4.25 || ^5.4"
  1242. },
  1243. "type": "library",
  1244. "autoload": {
  1245. "psr-4": {
  1246. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1247. }
  1248. },
  1249. "notification-url": "https://packagist.org/downloads/",
  1250. "license": [
  1251. "MIT"
  1252. ],
  1253. "authors": [
  1254. {
  1255. "name": "Guilherme Blanco",
  1256. "email": "[email protected]"
  1257. },
  1258. {
  1259. "name": "Roman Borschel",
  1260. "email": "[email protected]"
  1261. },
  1262. {
  1263. "name": "Benjamin Eberlei",
  1264. "email": "[email protected]"
  1265. },
  1266. {
  1267. "name": "Jonathan Wage",
  1268. "email": "[email protected]"
  1269. },
  1270. {
  1271. "name": "Johannes Schmitt",
  1272. "email": "[email protected]"
  1273. }
  1274. ],
  1275. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1276. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1277. "keywords": [
  1278. "inflection",
  1279. "inflector",
  1280. "lowercase",
  1281. "manipulation",
  1282. "php",
  1283. "plural",
  1284. "singular",
  1285. "strings",
  1286. "uppercase",
  1287. "words"
  1288. ],
  1289. "support": {
  1290. "issues": "https://github.com/doctrine/inflector/issues",
  1291. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1292. },
  1293. "funding": [
  1294. {
  1295. "url": "https://www.doctrine-project.org/sponsorship.html",
  1296. "type": "custom"
  1297. },
  1298. {
  1299. "url": "https://www.patreon.com/phpdoctrine",
  1300. "type": "patreon"
  1301. },
  1302. {
  1303. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1304. "type": "tidelift"
  1305. }
  1306. ],
  1307. "time": "2024-02-18T20:23:39+00:00"
  1308. },
  1309. {
  1310. "name": "endroid/qr-code",
  1311. "version": "5.0.9",
  1312. "source": {
  1313. "type": "git",
  1314. "url": "https://github.com/endroid/qr-code.git",
  1315. "reference": "3dcdfab4c9122874f3915d8bf80a43b9df11852d"
  1316. },
  1317. "dist": {
  1318. "type": "zip",
  1319. "url": "https://api.github.com/repos/endroid/qr-code/zipball/3dcdfab4c9122874f3915d8bf80a43b9df11852d",
  1320. "reference": "3dcdfab4c9122874f3915d8bf80a43b9df11852d",
  1321. "shasum": ""
  1322. },
  1323. "require": {
  1324. "bacon/bacon-qr-code": "^3.0",
  1325. "php": "^8.1"
  1326. },
  1327. "require-dev": {
  1328. "endroid/quality": "dev-main",
  1329. "ext-gd": "*",
  1330. "khanamiryan/qrcode-detector-decoder": "^2.0.2",
  1331. "setasign/fpdf": "^1.8.2"
  1332. },
  1333. "suggest": {
  1334. "ext-gd": "Enables you to write PNG images",
  1335. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  1336. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  1337. "setasign/fpdf": "Enables you to use the PDF writer"
  1338. },
  1339. "type": "library",
  1340. "extra": {
  1341. "branch-alias": {
  1342. "dev-main": "5.x-dev"
  1343. }
  1344. },
  1345. "autoload": {
  1346. "psr-4": {
  1347. "Endroid\\QrCode\\": "src/"
  1348. }
  1349. },
  1350. "notification-url": "https://packagist.org/downloads/",
  1351. "license": [
  1352. "MIT"
  1353. ],
  1354. "authors": [
  1355. {
  1356. "name": "Jeroen van den Enden",
  1357. "email": "[email protected]"
  1358. }
  1359. ],
  1360. "description": "Endroid QR Code",
  1361. "homepage": "https://github.com/endroid/qr-code",
  1362. "keywords": [
  1363. "code",
  1364. "endroid",
  1365. "php",
  1366. "qr",
  1367. "qrcode"
  1368. ],
  1369. "support": {
  1370. "issues": "https://github.com/endroid/qr-code/issues",
  1371. "source": "https://github.com/endroid/qr-code/tree/5.0.9"
  1372. },
  1373. "funding": [
  1374. {
  1375. "url": "https://github.com/endroid",
  1376. "type": "github"
  1377. }
  1378. ],
  1379. "time": "2024-05-08T08:09:28+00:00"
  1380. },
  1381. {
  1382. "name": "geoip2/geoip2",
  1383. "version": "v3.0.0",
  1384. "source": {
  1385. "type": "git",
  1386. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1387. "reference": "1a802ce9356cdd1c6b681c030fd9563750e11e6a"
  1388. },
  1389. "dist": {
  1390. "type": "zip",
  1391. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/1a802ce9356cdd1c6b681c030fd9563750e11e6a",
  1392. "reference": "1a802ce9356cdd1c6b681c030fd9563750e11e6a",
  1393. "shasum": ""
  1394. },
  1395. "require": {
  1396. "ext-json": "*",
  1397. "maxmind-db/reader": "^1.11.1",
  1398. "maxmind/web-service-common": "~0.8",
  1399. "php": ">=8.1"
  1400. },
  1401. "require-dev": {
  1402. "friendsofphp/php-cs-fixer": "3.*",
  1403. "phpstan/phpstan": "*",
  1404. "phpunit/phpunit": "^10.0",
  1405. "squizlabs/php_codesniffer": "3.*"
  1406. },
  1407. "type": "library",
  1408. "autoload": {
  1409. "psr-4": {
  1410. "GeoIp2\\": "src"
  1411. }
  1412. },
  1413. "notification-url": "https://packagist.org/downloads/",
  1414. "license": [
  1415. "Apache-2.0"
  1416. ],
  1417. "authors": [
  1418. {
  1419. "name": "Gregory J. Oschwald",
  1420. "email": "[email protected]",
  1421. "homepage": "https://www.maxmind.com/"
  1422. }
  1423. ],
  1424. "description": "MaxMind GeoIP2 PHP API",
  1425. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1426. "keywords": [
  1427. "IP",
  1428. "geoip",
  1429. "geoip2",
  1430. "geolocation",
  1431. "maxmind"
  1432. ],
  1433. "support": {
  1434. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1435. "source": "https://github.com/maxmind/GeoIP2-php/tree/v3.0.0"
  1436. },
  1437. "time": "2023-12-04T17:16:34+00:00"
  1438. },
  1439. {
  1440. "name": "guzzlehttp/guzzle",
  1441. "version": "7.8.1",
  1442. "source": {
  1443. "type": "git",
  1444. "url": "https://github.com/guzzle/guzzle.git",
  1445. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1446. },
  1447. "dist": {
  1448. "type": "zip",
  1449. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1450. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1451. "shasum": ""
  1452. },
  1453. "require": {
  1454. "ext-json": "*",
  1455. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1456. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1457. "php": "^7.2.5 || ^8.0",
  1458. "psr/http-client": "^1.0",
  1459. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1460. },
  1461. "provide": {
  1462. "psr/http-client-implementation": "1.0"
  1463. },
  1464. "require-dev": {
  1465. "bamarni/composer-bin-plugin": "^1.8.2",
  1466. "ext-curl": "*",
  1467. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1468. "php-http/message-factory": "^1.1",
  1469. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1470. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1471. },
  1472. "suggest": {
  1473. "ext-curl": "Required for CURL handler support",
  1474. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1475. "psr/log": "Required for using the Log middleware"
  1476. },
  1477. "type": "library",
  1478. "extra": {
  1479. "bamarni-bin": {
  1480. "bin-links": true,
  1481. "forward-command": false
  1482. }
  1483. },
  1484. "autoload": {
  1485. "files": [
  1486. "src/functions_include.php"
  1487. ],
  1488. "psr-4": {
  1489. "GuzzleHttp\\": "src/"
  1490. }
  1491. },
  1492. "notification-url": "https://packagist.org/downloads/",
  1493. "license": [
  1494. "MIT"
  1495. ],
  1496. "authors": [
  1497. {
  1498. "name": "Graham Campbell",
  1499. "email": "[email protected]",
  1500. "homepage": "https://github.com/GrahamCampbell"
  1501. },
  1502. {
  1503. "name": "Michael Dowling",
  1504. "email": "[email protected]",
  1505. "homepage": "https://github.com/mtdowling"
  1506. },
  1507. {
  1508. "name": "Jeremy Lindblom",
  1509. "email": "[email protected]",
  1510. "homepage": "https://github.com/jeremeamia"
  1511. },
  1512. {
  1513. "name": "George Mponos",
  1514. "email": "[email protected]",
  1515. "homepage": "https://github.com/gmponos"
  1516. },
  1517. {
  1518. "name": "Tobias Nyholm",
  1519. "email": "[email protected]",
  1520. "homepage": "https://github.com/Nyholm"
  1521. },
  1522. {
  1523. "name": "Márk Sági-Kazár",
  1524. "email": "[email protected]",
  1525. "homepage": "https://github.com/sagikazarmark"
  1526. },
  1527. {
  1528. "name": "Tobias Schultze",
  1529. "email": "[email protected]",
  1530. "homepage": "https://github.com/Tobion"
  1531. }
  1532. ],
  1533. "description": "Guzzle is a PHP HTTP client library",
  1534. "keywords": [
  1535. "client",
  1536. "curl",
  1537. "framework",
  1538. "http",
  1539. "http client",
  1540. "psr-18",
  1541. "psr-7",
  1542. "rest",
  1543. "web service"
  1544. ],
  1545. "support": {
  1546. "issues": "https://github.com/guzzle/guzzle/issues",
  1547. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1548. },
  1549. "funding": [
  1550. {
  1551. "url": "https://github.com/GrahamCampbell",
  1552. "type": "github"
  1553. },
  1554. {
  1555. "url": "https://github.com/Nyholm",
  1556. "type": "github"
  1557. },
  1558. {
  1559. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1560. "type": "tidelift"
  1561. }
  1562. ],
  1563. "time": "2023-12-03T20:35:24+00:00"
  1564. },
  1565. {
  1566. "name": "guzzlehttp/promises",
  1567. "version": "2.0.2",
  1568. "source": {
  1569. "type": "git",
  1570. "url": "https://github.com/guzzle/promises.git",
  1571. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  1572. },
  1573. "dist": {
  1574. "type": "zip",
  1575. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  1576. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  1577. "shasum": ""
  1578. },
  1579. "require": {
  1580. "php": "^7.2.5 || ^8.0"
  1581. },
  1582. "require-dev": {
  1583. "bamarni/composer-bin-plugin": "^1.8.2",
  1584. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1585. },
  1586. "type": "library",
  1587. "extra": {
  1588. "bamarni-bin": {
  1589. "bin-links": true,
  1590. "forward-command": false
  1591. }
  1592. },
  1593. "autoload": {
  1594. "psr-4": {
  1595. "GuzzleHttp\\Promise\\": "src/"
  1596. }
  1597. },
  1598. "notification-url": "https://packagist.org/downloads/",
  1599. "license": [
  1600. "MIT"
  1601. ],
  1602. "authors": [
  1603. {
  1604. "name": "Graham Campbell",
  1605. "email": "[email protected]",
  1606. "homepage": "https://github.com/GrahamCampbell"
  1607. },
  1608. {
  1609. "name": "Michael Dowling",
  1610. "email": "[email protected]",
  1611. "homepage": "https://github.com/mtdowling"
  1612. },
  1613. {
  1614. "name": "Tobias Nyholm",
  1615. "email": "[email protected]",
  1616. "homepage": "https://github.com/Nyholm"
  1617. },
  1618. {
  1619. "name": "Tobias Schultze",
  1620. "email": "[email protected]",
  1621. "homepage": "https://github.com/Tobion"
  1622. }
  1623. ],
  1624. "description": "Guzzle promises library",
  1625. "keywords": [
  1626. "promise"
  1627. ],
  1628. "support": {
  1629. "issues": "https://github.com/guzzle/promises/issues",
  1630. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  1631. },
  1632. "funding": [
  1633. {
  1634. "url": "https://github.com/GrahamCampbell",
  1635. "type": "github"
  1636. },
  1637. {
  1638. "url": "https://github.com/Nyholm",
  1639. "type": "github"
  1640. },
  1641. {
  1642. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1643. "type": "tidelift"
  1644. }
  1645. ],
  1646. "time": "2023-12-03T20:19:20+00:00"
  1647. },
  1648. {
  1649. "name": "guzzlehttp/psr7",
  1650. "version": "2.6.2",
  1651. "source": {
  1652. "type": "git",
  1653. "url": "https://github.com/guzzle/psr7.git",
  1654. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1655. },
  1656. "dist": {
  1657. "type": "zip",
  1658. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1659. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1660. "shasum": ""
  1661. },
  1662. "require": {
  1663. "php": "^7.2.5 || ^8.0",
  1664. "psr/http-factory": "^1.0",
  1665. "psr/http-message": "^1.1 || ^2.0",
  1666. "ralouphie/getallheaders": "^3.0"
  1667. },
  1668. "provide": {
  1669. "psr/http-factory-implementation": "1.0",
  1670. "psr/http-message-implementation": "1.0"
  1671. },
  1672. "require-dev": {
  1673. "bamarni/composer-bin-plugin": "^1.8.2",
  1674. "http-interop/http-factory-tests": "^0.9",
  1675. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1676. },
  1677. "suggest": {
  1678. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1679. },
  1680. "type": "library",
  1681. "extra": {
  1682. "bamarni-bin": {
  1683. "bin-links": true,
  1684. "forward-command": false
  1685. }
  1686. },
  1687. "autoload": {
  1688. "psr-4": {
  1689. "GuzzleHttp\\Psr7\\": "src/"
  1690. }
  1691. },
  1692. "notification-url": "https://packagist.org/downloads/",
  1693. "license": [
  1694. "MIT"
  1695. ],
  1696. "authors": [
  1697. {
  1698. "name": "Graham Campbell",
  1699. "email": "[email protected]",
  1700. "homepage": "https://github.com/GrahamCampbell"
  1701. },
  1702. {
  1703. "name": "Michael Dowling",
  1704. "email": "[email protected]",
  1705. "homepage": "https://github.com/mtdowling"
  1706. },
  1707. {
  1708. "name": "George Mponos",
  1709. "email": "[email protected]",
  1710. "homepage": "https://github.com/gmponos"
  1711. },
  1712. {
  1713. "name": "Tobias Nyholm",
  1714. "email": "[email protected]",
  1715. "homepage": "https://github.com/Nyholm"
  1716. },
  1717. {
  1718. "name": "Márk Sági-Kazár",
  1719. "email": "[email protected]",
  1720. "homepage": "https://github.com/sagikazarmark"
  1721. },
  1722. {
  1723. "name": "Tobias Schultze",
  1724. "email": "[email protected]",
  1725. "homepage": "https://github.com/Tobion"
  1726. },
  1727. {
  1728. "name": "Márk Sági-Kazár",
  1729. "email": "[email protected]",
  1730. "homepage": "https://sagikazarmark.hu"
  1731. }
  1732. ],
  1733. "description": "PSR-7 message implementation that also provides common utility methods",
  1734. "keywords": [
  1735. "http",
  1736. "message",
  1737. "psr-7",
  1738. "request",
  1739. "response",
  1740. "stream",
  1741. "uri",
  1742. "url"
  1743. ],
  1744. "support": {
  1745. "issues": "https://github.com/guzzle/psr7/issues",
  1746. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1747. },
  1748. "funding": [
  1749. {
  1750. "url": "https://github.com/GrahamCampbell",
  1751. "type": "github"
  1752. },
  1753. {
  1754. "url": "https://github.com/Nyholm",
  1755. "type": "github"
  1756. },
  1757. {
  1758. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1759. "type": "tidelift"
  1760. }
  1761. ],
  1762. "time": "2023-12-03T20:05:35+00:00"
  1763. },
  1764. {
  1765. "name": "illuminate/collections",
  1766. "version": "v11.10.0",
  1767. "source": {
  1768. "type": "git",
  1769. "url": "https://github.com/illuminate/collections.git",
  1770. "reference": "dad22e648ae0f4973470d82b4ae5f809540a87ff"
  1771. },
  1772. "dist": {
  1773. "type": "zip",
  1774. "url": "https://api.github.com/repos/illuminate/collections/zipball/dad22e648ae0f4973470d82b4ae5f809540a87ff",
  1775. "reference": "dad22e648ae0f4973470d82b4ae5f809540a87ff",
  1776. "shasum": ""
  1777. },
  1778. "require": {
  1779. "illuminate/conditionable": "^11.0",
  1780. "illuminate/contracts": "^11.0",
  1781. "illuminate/macroable": "^11.0",
  1782. "php": "^8.2"
  1783. },
  1784. "suggest": {
  1785. "symfony/var-dumper": "Required to use the dump method (^7.0)."
  1786. },
  1787. "type": "library",
  1788. "extra": {
  1789. "branch-alias": {
  1790. "dev-master": "11.x-dev"
  1791. }
  1792. },
  1793. "autoload": {
  1794. "files": [
  1795. "helpers.php"
  1796. ],
  1797. "psr-4": {
  1798. "Illuminate\\Support\\": ""
  1799. }
  1800. },
  1801. "notification-url": "https://packagist.org/downloads/",
  1802. "license": [
  1803. "MIT"
  1804. ],
  1805. "authors": [
  1806. {
  1807. "name": "Taylor Otwell",
  1808. "email": "[email protected]"
  1809. }
  1810. ],
  1811. "description": "The Illuminate Collections package.",
  1812. "homepage": "https://laravel.com",
  1813. "support": {
  1814. "issues": "https://github.com/laravel/framework/issues",
  1815. "source": "https://github.com/laravel/framework"
  1816. },
  1817. "time": "2024-05-20T13:26:28+00:00"
  1818. },
  1819. {
  1820. "name": "illuminate/conditionable",
  1821. "version": "v11.10.0",
  1822. "source": {
  1823. "type": "git",
  1824. "url": "https://github.com/illuminate/conditionable.git",
  1825. "reference": "8a558fec063b6a63da1c3af1d219c0f998edffeb"
  1826. },
  1827. "dist": {
  1828. "type": "zip",
  1829. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/8a558fec063b6a63da1c3af1d219c0f998edffeb",
  1830. "reference": "8a558fec063b6a63da1c3af1d219c0f998edffeb",
  1831. "shasum": ""
  1832. },
  1833. "require": {
  1834. "php": "^8.0.2"
  1835. },
  1836. "type": "library",
  1837. "extra": {
  1838. "branch-alias": {
  1839. "dev-master": "11.x-dev"
  1840. }
  1841. },
  1842. "autoload": {
  1843. "psr-4": {
  1844. "Illuminate\\Support\\": ""
  1845. }
  1846. },
  1847. "notification-url": "https://packagist.org/downloads/",
  1848. "license": [
  1849. "MIT"
  1850. ],
  1851. "authors": [
  1852. {
  1853. "name": "Taylor Otwell",
  1854. "email": "[email protected]"
  1855. }
  1856. ],
  1857. "description": "The Illuminate Conditionable package.",
  1858. "homepage": "https://laravel.com",
  1859. "support": {
  1860. "issues": "https://github.com/laravel/framework/issues",
  1861. "source": "https://github.com/laravel/framework"
  1862. },
  1863. "time": "2024-04-04T17:36:49+00:00"
  1864. },
  1865. {
  1866. "name": "illuminate/container",
  1867. "version": "v11.10.0",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/illuminate/container.git",
  1871. "reference": "af979ecfd6dfa6583eae5dfe2e9a8840358f4ca7"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/illuminate/container/zipball/af979ecfd6dfa6583eae5dfe2e9a8840358f4ca7",
  1876. "reference": "af979ecfd6dfa6583eae5dfe2e9a8840358f4ca7",
  1877. "shasum": ""
  1878. },
  1879. "require": {
  1880. "illuminate/contracts": "^11.0",
  1881. "php": "^8.2",
  1882. "psr/container": "^1.1.1|^2.0.1"
  1883. },
  1884. "provide": {
  1885. "psr/container-implementation": "1.1|2.0"
  1886. },
  1887. "type": "library",
  1888. "extra": {
  1889. "branch-alias": {
  1890. "dev-master": "11.x-dev"
  1891. }
  1892. },
  1893. "autoload": {
  1894. "psr-4": {
  1895. "Illuminate\\Container\\": ""
  1896. }
  1897. },
  1898. "notification-url": "https://packagist.org/downloads/",
  1899. "license": [
  1900. "MIT"
  1901. ],
  1902. "authors": [
  1903. {
  1904. "name": "Taylor Otwell",
  1905. "email": "[email protected]"
  1906. }
  1907. ],
  1908. "description": "The Illuminate Container package.",
  1909. "homepage": "https://laravel.com",
  1910. "support": {
  1911. "issues": "https://github.com/laravel/framework/issues",
  1912. "source": "https://github.com/laravel/framework"
  1913. },
  1914. "time": "2024-04-04T17:36:49+00:00"
  1915. },
  1916. {
  1917. "name": "illuminate/contracts",
  1918. "version": "v11.10.0",
  1919. "source": {
  1920. "type": "git",
  1921. "url": "https://github.com/illuminate/contracts.git",
  1922. "reference": "86c1331d0b06c59ca21723d8bfc9faaa19430b46"
  1923. },
  1924. "dist": {
  1925. "type": "zip",
  1926. "url": "https://api.github.com/repos/illuminate/contracts/zipball/86c1331d0b06c59ca21723d8bfc9faaa19430b46",
  1927. "reference": "86c1331d0b06c59ca21723d8bfc9faaa19430b46",
  1928. "shasum": ""
  1929. },
  1930. "require": {
  1931. "php": "^8.2",
  1932. "psr/container": "^1.1.1|^2.0.1",
  1933. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1934. },
  1935. "type": "library",
  1936. "extra": {
  1937. "branch-alias": {
  1938. "dev-master": "11.x-dev"
  1939. }
  1940. },
  1941. "autoload": {
  1942. "psr-4": {
  1943. "Illuminate\\Contracts\\": ""
  1944. }
  1945. },
  1946. "notification-url": "https://packagist.org/downloads/",
  1947. "license": [
  1948. "MIT"
  1949. ],
  1950. "authors": [
  1951. {
  1952. "name": "Taylor Otwell",
  1953. "email": "[email protected]"
  1954. }
  1955. ],
  1956. "description": "The Illuminate Contracts package.",
  1957. "homepage": "https://laravel.com",
  1958. "support": {
  1959. "issues": "https://github.com/laravel/framework/issues",
  1960. "source": "https://github.com/laravel/framework"
  1961. },
  1962. "time": "2024-05-21T17:42:34+00:00"
  1963. },
  1964. {
  1965. "name": "illuminate/database",
  1966. "version": "v11.10.0",
  1967. "source": {
  1968. "type": "git",
  1969. "url": "https://github.com/illuminate/database.git",
  1970. "reference": "c3bd851377cfde4a9079fa6014c280a2573a5855"
  1971. },
  1972. "dist": {
  1973. "type": "zip",
  1974. "url": "https://api.github.com/repos/illuminate/database/zipball/c3bd851377cfde4a9079fa6014c280a2573a5855",
  1975. "reference": "c3bd851377cfde4a9079fa6014c280a2573a5855",
  1976. "shasum": ""
  1977. },
  1978. "require": {
  1979. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1980. "ext-pdo": "*",
  1981. "illuminate/collections": "^11.0",
  1982. "illuminate/container": "^11.0",
  1983. "illuminate/contracts": "^11.0",
  1984. "illuminate/macroable": "^11.0",
  1985. "illuminate/support": "^11.0",
  1986. "php": "^8.2"
  1987. },
  1988. "suggest": {
  1989. "ext-filter": "Required to use the Postgres database driver.",
  1990. "fakerphp/faker": "Required to use the eloquent factory builder (^1.21).",
  1991. "illuminate/console": "Required to use the database commands (^11.0).",
  1992. "illuminate/events": "Required to use the observers with Eloquent (^11.0).",
  1993. "illuminate/filesystem": "Required to use the migrations (^11.0).",
  1994. "illuminate/pagination": "Required to paginate the result set (^11.0).",
  1995. "symfony/finder": "Required to use Eloquent model factories (^7.0)."
  1996. },
  1997. "type": "library",
  1998. "extra": {
  1999. "branch-alias": {
  2000. "dev-master": "11.x-dev"
  2001. }
  2002. },
  2003. "autoload": {
  2004. "psr-4": {
  2005. "Illuminate\\Database\\": ""
  2006. }
  2007. },
  2008. "notification-url": "https://packagist.org/downloads/",
  2009. "license": [
  2010. "MIT"
  2011. ],
  2012. "authors": [
  2013. {
  2014. "name": "Taylor Otwell",
  2015. "email": "[email protected]"
  2016. }
  2017. ],
  2018. "description": "The Illuminate Database package.",
  2019. "homepage": "https://laravel.com",
  2020. "keywords": [
  2021. "database",
  2022. "laravel",
  2023. "orm",
  2024. "sql"
  2025. ],
  2026. "support": {
  2027. "issues": "https://github.com/laravel/framework/issues",
  2028. "source": "https://github.com/laravel/framework"
  2029. },
  2030. "time": "2024-05-30T14:38:32+00:00"
  2031. },
  2032. {
  2033. "name": "illuminate/macroable",
  2034. "version": "v11.10.0",
  2035. "source": {
  2036. "type": "git",
  2037. "url": "https://github.com/illuminate/macroable.git",
  2038. "reference": "5b6c7c7c5951e6e8fc22dd7e4363602df8294dfa"
  2039. },
  2040. "dist": {
  2041. "type": "zip",
  2042. "url": "https://api.github.com/repos/illuminate/macroable/zipball/5b6c7c7c5951e6e8fc22dd7e4363602df8294dfa",
  2043. "reference": "5b6c7c7c5951e6e8fc22dd7e4363602df8294dfa",
  2044. "shasum": ""
  2045. },
  2046. "require": {
  2047. "php": "^8.2"
  2048. },
  2049. "type": "library",
  2050. "extra": {
  2051. "branch-alias": {
  2052. "dev-master": "11.x-dev"
  2053. }
  2054. },
  2055. "autoload": {
  2056. "psr-4": {
  2057. "Illuminate\\Support\\": ""
  2058. }
  2059. },
  2060. "notification-url": "https://packagist.org/downloads/",
  2061. "license": [
  2062. "MIT"
  2063. ],
  2064. "authors": [
  2065. {
  2066. "name": "Taylor Otwell",
  2067. "email": "[email protected]"
  2068. }
  2069. ],
  2070. "description": "The Illuminate Macroable package.",
  2071. "homepage": "https://laravel.com",
  2072. "support": {
  2073. "issues": "https://github.com/laravel/framework/issues",
  2074. "source": "https://github.com/laravel/framework"
  2075. },
  2076. "time": "2024-05-16T21:43:47+00:00"
  2077. },
  2078. {
  2079. "name": "illuminate/pagination",
  2080. "version": "v11.10.0",
  2081. "source": {
  2082. "type": "git",
  2083. "url": "https://github.com/illuminate/pagination.git",
  2084. "reference": "0752b63f17105b7de8fa3dea12acd3c4099db21e"
  2085. },
  2086. "dist": {
  2087. "type": "zip",
  2088. "url": "https://api.github.com/repos/illuminate/pagination/zipball/0752b63f17105b7de8fa3dea12acd3c4099db21e",
  2089. "reference": "0752b63f17105b7de8fa3dea12acd3c4099db21e",
  2090. "shasum": ""
  2091. },
  2092. "require": {
  2093. "ext-filter": "*",
  2094. "illuminate/collections": "^11.0",
  2095. "illuminate/contracts": "^11.0",
  2096. "illuminate/support": "^11.0",
  2097. "php": "^8.2"
  2098. },
  2099. "type": "library",
  2100. "extra": {
  2101. "branch-alias": {
  2102. "dev-master": "11.x-dev"
  2103. }
  2104. },
  2105. "autoload": {
  2106. "psr-4": {
  2107. "Illuminate\\Pagination\\": ""
  2108. }
  2109. },
  2110. "notification-url": "https://packagist.org/downloads/",
  2111. "license": [
  2112. "MIT"
  2113. ],
  2114. "authors": [
  2115. {
  2116. "name": "Taylor Otwell",
  2117. "email": "[email protected]"
  2118. }
  2119. ],
  2120. "description": "The Illuminate Pagination package.",
  2121. "homepage": "https://laravel.com",
  2122. "support": {
  2123. "issues": "https://github.com/laravel/framework/issues",
  2124. "source": "https://github.com/laravel/framework"
  2125. },
  2126. "time": "2024-04-16T14:29:11+00:00"
  2127. },
  2128. {
  2129. "name": "illuminate/support",
  2130. "version": "v11.10.0",
  2131. "source": {
  2132. "type": "git",
  2133. "url": "https://github.com/illuminate/support.git",
  2134. "reference": "5e5f7df8f2d26f386249b23405c46f953d0a6cdc"
  2135. },
  2136. "dist": {
  2137. "type": "zip",
  2138. "url": "https://api.github.com/repos/illuminate/support/zipball/5e5f7df8f2d26f386249b23405c46f953d0a6cdc",
  2139. "reference": "5e5f7df8f2d26f386249b23405c46f953d0a6cdc",
  2140. "shasum": ""
  2141. },
  2142. "require": {
  2143. "doctrine/inflector": "^2.0",
  2144. "ext-ctype": "*",
  2145. "ext-filter": "*",
  2146. "ext-mbstring": "*",
  2147. "illuminate/collections": "^11.0",
  2148. "illuminate/conditionable": "^11.0",
  2149. "illuminate/contracts": "^11.0",
  2150. "illuminate/macroable": "^11.0",
  2151. "nesbot/carbon": "^2.72.2|^3.0",
  2152. "php": "^8.2",
  2153. "voku/portable-ascii": "^2.0"
  2154. },
  2155. "conflict": {
  2156. "tightenco/collect": "<5.5.33"
  2157. },
  2158. "replace": {
  2159. "spatie/once": "*"
  2160. },
  2161. "suggest": {
  2162. "illuminate/filesystem": "Required to use the composer class (^11.0).",
  2163. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).",
  2164. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  2165. "symfony/process": "Required to use the composer class (^7.0).",
  2166. "symfony/uid": "Required to use Str::ulid() (^7.0).",
  2167. "symfony/var-dumper": "Required to use the dd function (^7.0).",
  2168. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  2169. },
  2170. "type": "library",
  2171. "extra": {
  2172. "branch-alias": {
  2173. "dev-master": "11.x-dev"
  2174. }
  2175. },
  2176. "autoload": {
  2177. "files": [
  2178. "helpers.php"
  2179. ],
  2180. "psr-4": {
  2181. "Illuminate\\Support\\": ""
  2182. }
  2183. },
  2184. "notification-url": "https://packagist.org/downloads/",
  2185. "license": [
  2186. "MIT"
  2187. ],
  2188. "authors": [
  2189. {
  2190. "name": "Taylor Otwell",
  2191. "email": "[email protected]"
  2192. }
  2193. ],
  2194. "description": "The Illuminate Support package.",
  2195. "homepage": "https://laravel.com",
  2196. "support": {
  2197. "issues": "https://github.com/laravel/framework/issues",
  2198. "source": "https://github.com/laravel/framework"
  2199. },
  2200. "time": "2024-05-30T14:36:53+00:00"
  2201. },
  2202. {
  2203. "name": "irazasyed/telegram-bot-sdk",
  2204. "version": "v3.14.0",
  2205. "source": {
  2206. "type": "git",
  2207. "url": "https://github.com/irazasyed/telegram-bot-sdk.git",
  2208. "reference": "c72ef585556578105c4d5cc56324575ef3677fd2"
  2209. },
  2210. "dist": {
  2211. "type": "zip",
  2212. "url": "https://api.github.com/repos/irazasyed/telegram-bot-sdk/zipball/c72ef585556578105c4d5cc56324575ef3677fd2",
  2213. "reference": "c72ef585556578105c4d5cc56324575ef3677fd2",
  2214. "shasum": ""
  2215. },
  2216. "require": {
  2217. "ext-json": "*",
  2218. "guzzlehttp/guzzle": "^7.5.1",
  2219. "guzzlehttp/psr7": "^2.5",
  2220. "illuminate/support": "9 - 11",
  2221. "league/event": "^2.2 || ^3.0",
  2222. "php": ">=8.0",
  2223. "psr/container": "^1.1 || ^2.0",
  2224. "psr/event-dispatcher": "^1.0"
  2225. },
  2226. "require-dev": {
  2227. "irazasyed/docgen": "^0.2",
  2228. "pestphp/pest": "^1.22 || ^2.0",
  2229. "php-parallel-lint/php-parallel-lint": "^1.3",
  2230. "phpspec/prophecy": "^1.17",
  2231. "phpspec/prophecy-phpunit": "^2.0",
  2232. "rector/rector": "^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^1.0.0"
  2233. },
  2234. "suggest": {
  2235. "illuminate/container": "Hold dependencies to be injected in commands constructors",
  2236. "irazasyed/larasupport": "Allows you to use any Laravel Package in Lumen by adding support!"
  2237. },
  2238. "type": "library",
  2239. "extra": {
  2240. "branch-alias": {
  2241. "dev-master": "3.0-dev"
  2242. },
  2243. "laravel": {
  2244. "aliases": {
  2245. "Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram"
  2246. },
  2247. "providers": [
  2248. "Telegram\\Bot\\Laravel\\TelegramServiceProvider"
  2249. ]
  2250. }
  2251. },
  2252. "autoload": {
  2253. "psr-4": {
  2254. "Telegram\\Bot\\": "src/"
  2255. }
  2256. },
  2257. "notification-url": "https://packagist.org/downloads/",
  2258. "license": [
  2259. "BSD-3-Clause"
  2260. ],
  2261. "authors": [
  2262. {
  2263. "name": "Irfaq Syed",
  2264. "email": "[email protected]",
  2265. "homepage": "https://github.com/irazasyed"
  2266. }
  2267. ],
  2268. "description": "The Unofficial Telegram Bot API PHP SDK",
  2269. "homepage": "https://github.com/irazasyed/telegram-bot-sdk",
  2270. "keywords": [
  2271. "laravel",
  2272. "laravel telegram",
  2273. "telegram",
  2274. "telegram bot",
  2275. "telegram bot api",
  2276. "telegram php",
  2277. "telegram sdk"
  2278. ],
  2279. "support": {
  2280. "issues": "https://github.com/irazasyed/telegram-bot-sdk/issues",
  2281. "source": "https://github.com/irazasyed/telegram-bot-sdk/tree/v3.14.0"
  2282. },
  2283. "time": "2024-03-11T03:11:26+00:00"
  2284. },
  2285. {
  2286. "name": "jean85/pretty-package-versions",
  2287. "version": "2.0.6",
  2288. "source": {
  2289. "type": "git",
  2290. "url": "https://github.com/Jean85/pretty-package-versions.git",
  2291. "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4"
  2292. },
  2293. "dist": {
  2294. "type": "zip",
  2295. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4",
  2296. "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4",
  2297. "shasum": ""
  2298. },
  2299. "require": {
  2300. "composer-runtime-api": "^2.0.0",
  2301. "php": "^7.1|^8.0"
  2302. },
  2303. "require-dev": {
  2304. "friendsofphp/php-cs-fixer": "^3.2",
  2305. "jean85/composer-provided-replaced-stub-package": "^1.0",
  2306. "phpstan/phpstan": "^1.4",
  2307. "phpunit/phpunit": "^7.5|^8.5|^9.4",
  2308. "vimeo/psalm": "^4.3"
  2309. },
  2310. "type": "library",
  2311. "extra": {
  2312. "branch-alias": {
  2313. "dev-master": "1.x-dev"
  2314. }
  2315. },
  2316. "autoload": {
  2317. "psr-4": {
  2318. "Jean85\\": "src/"
  2319. }
  2320. },
  2321. "notification-url": "https://packagist.org/downloads/",
  2322. "license": [
  2323. "MIT"
  2324. ],
  2325. "authors": [
  2326. {
  2327. "name": "Alessandro Lai",
  2328. "email": "[email protected]"
  2329. }
  2330. ],
  2331. "description": "A library to get pretty versions strings of installed dependencies",
  2332. "keywords": [
  2333. "composer",
  2334. "package",
  2335. "release",
  2336. "versions"
  2337. ],
  2338. "support": {
  2339. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  2340. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6"
  2341. },
  2342. "time": "2024-03-08T09:58:59+00:00"
  2343. },
  2344. {
  2345. "name": "lcobucci/jwt",
  2346. "version": "5.3.0",
  2347. "source": {
  2348. "type": "git",
  2349. "url": "https://github.com/lcobucci/jwt.git",
  2350. "reference": "08071d8d2c7f4b00222cc4b1fb6aa46990a80f83"
  2351. },
  2352. "dist": {
  2353. "type": "zip",
  2354. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/08071d8d2c7f4b00222cc4b1fb6aa46990a80f83",
  2355. "reference": "08071d8d2c7f4b00222cc4b1fb6aa46990a80f83",
  2356. "shasum": ""
  2357. },
  2358. "require": {
  2359. "ext-openssl": "*",
  2360. "ext-sodium": "*",
  2361. "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
  2362. "psr/clock": "^1.0"
  2363. },
  2364. "require-dev": {
  2365. "infection/infection": "^0.27.0",
  2366. "lcobucci/clock": "^3.0",
  2367. "lcobucci/coding-standard": "^11.0",
  2368. "phpbench/phpbench": "^1.2.9",
  2369. "phpstan/extension-installer": "^1.2",
  2370. "phpstan/phpstan": "^1.10.7",
  2371. "phpstan/phpstan-deprecation-rules": "^1.1.3",
  2372. "phpstan/phpstan-phpunit": "^1.3.10",
  2373. "phpstan/phpstan-strict-rules": "^1.5.0",
  2374. "phpunit/phpunit": "^10.2.6"
  2375. },
  2376. "suggest": {
  2377. "lcobucci/clock": ">= 3.0"
  2378. },
  2379. "type": "library",
  2380. "autoload": {
  2381. "psr-4": {
  2382. "Lcobucci\\JWT\\": "src"
  2383. }
  2384. },
  2385. "notification-url": "https://packagist.org/downloads/",
  2386. "license": [
  2387. "BSD-3-Clause"
  2388. ],
  2389. "authors": [
  2390. {
  2391. "name": "Luís Cobucci",
  2392. "email": "[email protected]",
  2393. "role": "Developer"
  2394. }
  2395. ],
  2396. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2397. "keywords": [
  2398. "JWS",
  2399. "jwt"
  2400. ],
  2401. "support": {
  2402. "issues": "https://github.com/lcobucci/jwt/issues",
  2403. "source": "https://github.com/lcobucci/jwt/tree/5.3.0"
  2404. },
  2405. "funding": [
  2406. {
  2407. "url": "https://github.com/lcobucci",
  2408. "type": "github"
  2409. },
  2410. {
  2411. "url": "https://www.patreon.com/lcobucci",
  2412. "type": "patreon"
  2413. }
  2414. ],
  2415. "time": "2024-04-11T23:07:54+00:00"
  2416. },
  2417. {
  2418. "name": "league/event",
  2419. "version": "3.0.2",
  2420. "source": {
  2421. "type": "git",
  2422. "url": "https://github.com/thephpleague/event.git",
  2423. "reference": "221867a61087ee265ca07bd39aa757879afca820"
  2424. },
  2425. "dist": {
  2426. "type": "zip",
  2427. "url": "https://api.github.com/repos/thephpleague/event/zipball/221867a61087ee265ca07bd39aa757879afca820",
  2428. "reference": "221867a61087ee265ca07bd39aa757879afca820",
  2429. "shasum": ""
  2430. },
  2431. "require": {
  2432. "php": ">=7.2.0",
  2433. "psr/event-dispatcher": "^1.0"
  2434. },
  2435. "provide": {
  2436. "psr/event-dispatcher-implementation": "1.0"
  2437. },
  2438. "require-dev": {
  2439. "friendsofphp/php-cs-fixer": "^2.16",
  2440. "phpstan/phpstan": "^0.12.45",
  2441. "phpunit/phpunit": "^8.5"
  2442. },
  2443. "type": "library",
  2444. "extra": {
  2445. "branch-alias": {
  2446. "dev-master": "3.0-dev"
  2447. }
  2448. },
  2449. "autoload": {
  2450. "psr-4": {
  2451. "League\\Event\\": "src/"
  2452. }
  2453. },
  2454. "notification-url": "https://packagist.org/downloads/",
  2455. "license": [
  2456. "MIT"
  2457. ],
  2458. "authors": [
  2459. {
  2460. "name": "Frank de Jonge",
  2461. "email": "[email protected]"
  2462. }
  2463. ],
  2464. "description": "Event package",
  2465. "keywords": [
  2466. "emitter",
  2467. "event",
  2468. "listener"
  2469. ],
  2470. "support": {
  2471. "issues": "https://github.com/thephpleague/event/issues",
  2472. "source": "https://github.com/thephpleague/event/tree/3.0.2"
  2473. },
  2474. "time": "2022-10-29T09:31:25+00:00"
  2475. },
  2476. {
  2477. "name": "league/html-to-markdown",
  2478. "version": "5.1.1",
  2479. "source": {
  2480. "type": "git",
  2481. "url": "https://github.com/thephpleague/html-to-markdown.git",
  2482. "reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd"
  2483. },
  2484. "dist": {
  2485. "type": "zip",
  2486. "url": "https://api.github.com/repos/thephpleague/html-to-markdown/zipball/0b4066eede55c48f38bcee4fb8f0aa85654390fd",
  2487. "reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd",
  2488. "shasum": ""
  2489. },
  2490. "require": {
  2491. "ext-dom": "*",
  2492. "ext-xml": "*",
  2493. "php": "^7.2.5 || ^8.0"
  2494. },
  2495. "require-dev": {
  2496. "mikehaertl/php-shellcommand": "^1.1.0",
  2497. "phpstan/phpstan": "^1.8.8",
  2498. "phpunit/phpunit": "^8.5 || ^9.2",
  2499. "scrutinizer/ocular": "^1.6",
  2500. "unleashedtech/php-coding-standard": "^2.7 || ^3.0",
  2501. "vimeo/psalm": "^4.22 || ^5.0"
  2502. },
  2503. "bin": [
  2504. "bin/html-to-markdown"
  2505. ],
  2506. "type": "library",
  2507. "extra": {
  2508. "branch-alias": {
  2509. "dev-master": "5.2-dev"
  2510. }
  2511. },
  2512. "autoload": {
  2513. "psr-4": {
  2514. "League\\HTMLToMarkdown\\": "src/"
  2515. }
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "authors": [
  2522. {
  2523. "name": "Colin O'Dell",
  2524. "email": "[email protected]",
  2525. "homepage": "https://www.colinodell.com",
  2526. "role": "Lead Developer"
  2527. },
  2528. {
  2529. "name": "Nick Cernis",
  2530. "email": "[email protected]",
  2531. "homepage": "http://modernnerd.net",
  2532. "role": "Original Author"
  2533. }
  2534. ],
  2535. "description": "An HTML-to-markdown conversion helper for PHP",
  2536. "homepage": "https://github.com/thephpleague/html-to-markdown",
  2537. "keywords": [
  2538. "html",
  2539. "markdown"
  2540. ],
  2541. "support": {
  2542. "issues": "https://github.com/thephpleague/html-to-markdown/issues",
  2543. "source": "https://github.com/thephpleague/html-to-markdown/tree/5.1.1"
  2544. },
  2545. "funding": [
  2546. {
  2547. "url": "https://www.colinodell.com/sponsor",
  2548. "type": "custom"
  2549. },
  2550. {
  2551. "url": "https://www.paypal.me/colinpodell/10.00",
  2552. "type": "custom"
  2553. },
  2554. {
  2555. "url": "https://github.com/colinodell",
  2556. "type": "github"
  2557. },
  2558. {
  2559. "url": "https://tidelift.com/funding/github/packagist/league/html-to-markdown",
  2560. "type": "tidelift"
  2561. }
  2562. ],
  2563. "time": "2023-07-12T21:21:09+00:00"
  2564. },
  2565. {
  2566. "name": "lizhichao/one-sm",
  2567. "version": "1.10",
  2568. "source": {
  2569. "type": "git",
  2570. "url": "https://github.com/lizhichao/sm.git",
  2571. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2572. },
  2573. "dist": {
  2574. "type": "zip",
  2575. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2576. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2577. "shasum": ""
  2578. },
  2579. "require": {
  2580. "php": ">=5.6"
  2581. },
  2582. "type": "library",
  2583. "autoload": {
  2584. "psr-4": {
  2585. "OneSm\\": "src/"
  2586. }
  2587. },
  2588. "notification-url": "https://packagist.org/downloads/",
  2589. "license": [
  2590. "Apache-2.0"
  2591. ],
  2592. "authors": [
  2593. {
  2594. "name": "tanszhe",
  2595. "email": "[email protected]"
  2596. }
  2597. ],
  2598. "description": "国密sm3",
  2599. "keywords": [
  2600. "php",
  2601. "sm3"
  2602. ],
  2603. "support": {
  2604. "issues": "https://github.com/lizhichao/sm/issues",
  2605. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2606. },
  2607. "funding": [
  2608. {
  2609. "url": "https://www.vicsdf.com/img/w.jpg",
  2610. "type": "custom"
  2611. },
  2612. {
  2613. "url": "https://www.vicsdf.com/img/z.jpg",
  2614. "type": "custom"
  2615. }
  2616. ],
  2617. "time": "2021-05-26T06:19:22+00:00"
  2618. },
  2619. {
  2620. "name": "mailchimp/transactional",
  2621. "version": "1.0.59",
  2622. "source": {
  2623. "type": "git",
  2624. "url": "https://github.com/mailchimp/mailchimp-transactional-php.git",
  2625. "reference": "1783927027820dc1c624fd04abf5012a57f96feb"
  2626. },
  2627. "dist": {
  2628. "type": "zip",
  2629. "url": "https://api.github.com/repos/mailchimp/mailchimp-transactional-php/zipball/1783927027820dc1c624fd04abf5012a57f96feb",
  2630. "reference": "1783927027820dc1c624fd04abf5012a57f96feb",
  2631. "shasum": ""
  2632. },
  2633. "require": {
  2634. "ext-curl": "*",
  2635. "ext-json": "*",
  2636. "ext-mbstring": "*",
  2637. "guzzlehttp/guzzle": "^6.4 || ^7.2",
  2638. "php": ">=7.2"
  2639. },
  2640. "require-dev": {
  2641. "friendsofphp/php-cs-fixer": "~2.12",
  2642. "phpunit/phpunit": "^7",
  2643. "squizlabs/php_codesniffer": "~2.6"
  2644. },
  2645. "type": "library",
  2646. "autoload": {
  2647. "psr-4": {
  2648. "MailchimpTransactional\\": "lib/"
  2649. }
  2650. },
  2651. "notification-url": "https://packagist.org/downloads/",
  2652. "license": [
  2653. "proprietary"
  2654. ],
  2655. "authors": [
  2656. {
  2657. "name": "Mailchimp",
  2658. "homepage": "https://github.com/mailchimp/mailchimp-transactional-php"
  2659. }
  2660. ],
  2661. "homepage": "http://swagger.io",
  2662. "keywords": [
  2663. "api",
  2664. "php",
  2665. "sdk",
  2666. "swagger"
  2667. ],
  2668. "support": {
  2669. "source": "https://github.com/mailchimp/mailchimp-transactional-php/tree/v1.0.59"
  2670. },
  2671. "time": "2024-02-10T01:12:26+00:00"
  2672. },
  2673. {
  2674. "name": "mailgun/mailgun-php",
  2675. "version": "v4.2.0",
  2676. "source": {
  2677. "type": "git",
  2678. "url": "https://github.com/mailgun/mailgun-php.git",
  2679. "reference": "6e31693370a254522118b9961ca675823c76c3c0"
  2680. },
  2681. "dist": {
  2682. "type": "zip",
  2683. "url": "https://api.github.com/repos/mailgun/mailgun-php/zipball/6e31693370a254522118b9961ca675823c76c3c0",
  2684. "reference": "6e31693370a254522118b9961ca675823c76c3c0",
  2685. "shasum": ""
  2686. },
  2687. "require": {
  2688. "php": "^7.3 || ^8.0",
  2689. "php-http/client-common": "^2.2.1",
  2690. "php-http/discovery": "^1.19",
  2691. "php-http/multipart-stream-builder": "^1.1.2",
  2692. "psr/http-client": "^1.0",
  2693. "webmozart/assert": "^1.9.1"
  2694. },
  2695. "require-dev": {
  2696. "nyholm/nsa": "^1.2.1",
  2697. "nyholm/psr7": "^1.3.1",
  2698. "phpunit/phpunit": "^9.3",
  2699. "squizlabs/php_codesniffer": "^3.7",
  2700. "symfony/http-client": "^5.4 || ^6.3"
  2701. },
  2702. "suggest": {
  2703. "nyholm/psr7": "PSR-7 message implementation",
  2704. "symfony/http-client": "HTTP client"
  2705. },
  2706. "type": "library",
  2707. "extra": {
  2708. "branch-alias": {
  2709. "dev-master": "3.0-dev"
  2710. }
  2711. },
  2712. "autoload": {
  2713. "psr-4": {
  2714. "Mailgun\\": "src/"
  2715. }
  2716. },
  2717. "notification-url": "https://packagist.org/downloads/",
  2718. "license": [
  2719. "MIT"
  2720. ],
  2721. "authors": [
  2722. {
  2723. "name": "Travis Swientek",
  2724. "email": "[email protected]"
  2725. }
  2726. ],
  2727. "description": "The Mailgun SDK provides methods for all API functions.",
  2728. "support": {
  2729. "issues": "https://github.com/mailgun/mailgun-php/issues",
  2730. "source": "https://github.com/mailgun/mailgun-php/tree/v4.2.0"
  2731. },
  2732. "time": "2024-03-09T11:07:21+00:00"
  2733. },
  2734. {
  2735. "name": "maxmind-db/reader",
  2736. "version": "v1.11.1",
  2737. "source": {
  2738. "type": "git",
  2739. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2740. "reference": "1e66f73ffcf25e17c7a910a1317e9720a95497c7"
  2741. },
  2742. "dist": {
  2743. "type": "zip",
  2744. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/1e66f73ffcf25e17c7a910a1317e9720a95497c7",
  2745. "reference": "1e66f73ffcf25e17c7a910a1317e9720a95497c7",
  2746. "shasum": ""
  2747. },
  2748. "require": {
  2749. "php": ">=7.2"
  2750. },
  2751. "conflict": {
  2752. "ext-maxminddb": "<1.11.1,>=2.0.0"
  2753. },
  2754. "require-dev": {
  2755. "friendsofphp/php-cs-fixer": "3.*",
  2756. "php-coveralls/php-coveralls": "^2.1",
  2757. "phpstan/phpstan": "*",
  2758. "phpunit/phpcov": ">=6.0.0",
  2759. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2760. "squizlabs/php_codesniffer": "3.*"
  2761. },
  2762. "suggest": {
  2763. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2764. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2765. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2766. },
  2767. "type": "library",
  2768. "autoload": {
  2769. "psr-4": {
  2770. "MaxMind\\Db\\": "src/MaxMind/Db"
  2771. }
  2772. },
  2773. "notification-url": "https://packagist.org/downloads/",
  2774. "license": [
  2775. "Apache-2.0"
  2776. ],
  2777. "authors": [
  2778. {
  2779. "name": "Gregory J. Oschwald",
  2780. "email": "[email protected]",
  2781. "homepage": "https://www.maxmind.com/"
  2782. }
  2783. ],
  2784. "description": "MaxMind DB Reader API",
  2785. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2786. "keywords": [
  2787. "database",
  2788. "geoip",
  2789. "geoip2",
  2790. "geolocation",
  2791. "maxmind"
  2792. ],
  2793. "support": {
  2794. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2795. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.11.1"
  2796. },
  2797. "time": "2023-12-02T00:09:23+00:00"
  2798. },
  2799. {
  2800. "name": "maxmind/web-service-common",
  2801. "version": "v0.9.0",
  2802. "source": {
  2803. "type": "git",
  2804. "url": "https://github.com/maxmind/web-service-common-php.git",
  2805. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53"
  2806. },
  2807. "dist": {
  2808. "type": "zip",
  2809. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2810. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2811. "shasum": ""
  2812. },
  2813. "require": {
  2814. "composer/ca-bundle": "^1.0.3",
  2815. "ext-curl": "*",
  2816. "ext-json": "*",
  2817. "php": ">=7.2"
  2818. },
  2819. "require-dev": {
  2820. "friendsofphp/php-cs-fixer": "3.*",
  2821. "phpstan/phpstan": "*",
  2822. "phpunit/phpunit": "^8.0 || ^9.0",
  2823. "squizlabs/php_codesniffer": "3.*"
  2824. },
  2825. "type": "library",
  2826. "autoload": {
  2827. "psr-4": {
  2828. "MaxMind\\Exception\\": "src/Exception",
  2829. "MaxMind\\WebService\\": "src/WebService"
  2830. }
  2831. },
  2832. "notification-url": "https://packagist.org/downloads/",
  2833. "license": [
  2834. "Apache-2.0"
  2835. ],
  2836. "authors": [
  2837. {
  2838. "name": "Gregory Oschwald",
  2839. "email": "[email protected]"
  2840. }
  2841. ],
  2842. "description": "Internal MaxMind Web Service API",
  2843. "homepage": "https://github.com/maxmind/web-service-common-php",
  2844. "support": {
  2845. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2846. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.9.0"
  2847. },
  2848. "time": "2022-03-28T17:43:20+00:00"
  2849. },
  2850. {
  2851. "name": "monolog/monolog",
  2852. "version": "3.6.0",
  2853. "source": {
  2854. "type": "git",
  2855. "url": "https://github.com/Seldaek/monolog.git",
  2856. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  2857. },
  2858. "dist": {
  2859. "type": "zip",
  2860. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  2861. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  2862. "shasum": ""
  2863. },
  2864. "require": {
  2865. "php": ">=8.1",
  2866. "psr/log": "^2.0 || ^3.0"
  2867. },
  2868. "provide": {
  2869. "psr/log-implementation": "3.0.0"
  2870. },
  2871. "require-dev": {
  2872. "aws/aws-sdk-php": "^3.0",
  2873. "doctrine/couchdb": "~1.0@dev",
  2874. "elasticsearch/elasticsearch": "^7 || ^8",
  2875. "ext-json": "*",
  2876. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2877. "guzzlehttp/guzzle": "^7.4.5",
  2878. "guzzlehttp/psr7": "^2.2",
  2879. "mongodb/mongodb": "^1.8",
  2880. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2881. "phpstan/phpstan": "^1.9",
  2882. "phpstan/phpstan-deprecation-rules": "^1.0",
  2883. "phpstan/phpstan-strict-rules": "^1.4",
  2884. "phpunit/phpunit": "^10.5.17",
  2885. "predis/predis": "^1.1 || ^2",
  2886. "ruflin/elastica": "^7",
  2887. "symfony/mailer": "^5.4 || ^6",
  2888. "symfony/mime": "^5.4 || ^6"
  2889. },
  2890. "suggest": {
  2891. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2892. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2893. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2894. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2895. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2896. "ext-mbstring": "Allow to work properly with unicode symbols",
  2897. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2898. "ext-openssl": "Required to send log messages using SSL",
  2899. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2900. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2901. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2902. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2903. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2904. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2905. },
  2906. "type": "library",
  2907. "extra": {
  2908. "branch-alias": {
  2909. "dev-main": "3.x-dev"
  2910. }
  2911. },
  2912. "autoload": {
  2913. "psr-4": {
  2914. "Monolog\\": "src/Monolog"
  2915. }
  2916. },
  2917. "notification-url": "https://packagist.org/downloads/",
  2918. "license": [
  2919. "MIT"
  2920. ],
  2921. "authors": [
  2922. {
  2923. "name": "Jordi Boggiano",
  2924. "email": "[email protected]",
  2925. "homepage": "https://seld.be"
  2926. }
  2927. ],
  2928. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2929. "homepage": "https://github.com/Seldaek/monolog",
  2930. "keywords": [
  2931. "log",
  2932. "logging",
  2933. "psr-3"
  2934. ],
  2935. "support": {
  2936. "issues": "https://github.com/Seldaek/monolog/issues",
  2937. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  2938. },
  2939. "funding": [
  2940. {
  2941. "url": "https://github.com/Seldaek",
  2942. "type": "github"
  2943. },
  2944. {
  2945. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2946. "type": "tidelift"
  2947. }
  2948. ],
  2949. "time": "2024-04-12T21:02:21+00:00"
  2950. },
  2951. {
  2952. "name": "mtdowling/jmespath.php",
  2953. "version": "2.7.0",
  2954. "source": {
  2955. "type": "git",
  2956. "url": "https://github.com/jmespath/jmespath.php.git",
  2957. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  2958. },
  2959. "dist": {
  2960. "type": "zip",
  2961. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2962. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2963. "shasum": ""
  2964. },
  2965. "require": {
  2966. "php": "^7.2.5 || ^8.0",
  2967. "symfony/polyfill-mbstring": "^1.17"
  2968. },
  2969. "require-dev": {
  2970. "composer/xdebug-handler": "^3.0.3",
  2971. "phpunit/phpunit": "^8.5.33"
  2972. },
  2973. "bin": [
  2974. "bin/jp.php"
  2975. ],
  2976. "type": "library",
  2977. "extra": {
  2978. "branch-alias": {
  2979. "dev-master": "2.7-dev"
  2980. }
  2981. },
  2982. "autoload": {
  2983. "files": [
  2984. "src/JmesPath.php"
  2985. ],
  2986. "psr-4": {
  2987. "JmesPath\\": "src/"
  2988. }
  2989. },
  2990. "notification-url": "https://packagist.org/downloads/",
  2991. "license": [
  2992. "MIT"
  2993. ],
  2994. "authors": [
  2995. {
  2996. "name": "Graham Campbell",
  2997. "email": "[email protected]",
  2998. "homepage": "https://github.com/GrahamCampbell"
  2999. },
  3000. {
  3001. "name": "Michael Dowling",
  3002. "email": "[email protected]",
  3003. "homepage": "https://github.com/mtdowling"
  3004. }
  3005. ],
  3006. "description": "Declaratively specify how to extract elements from a JSON document",
  3007. "keywords": [
  3008. "json",
  3009. "jsonpath"
  3010. ],
  3011. "support": {
  3012. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3013. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  3014. },
  3015. "time": "2023-08-25T10:54:48+00:00"
  3016. },
  3017. {
  3018. "name": "nesbot/carbon",
  3019. "version": "3.5.0",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://github.com/briannesbitt/Carbon.git",
  3023. "reference": "415782b7e48223342f1a616c16c45a95b15b2318"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/415782b7e48223342f1a616c16c45a95b15b2318",
  3028. "reference": "415782b7e48223342f1a616c16c45a95b15b2318",
  3029. "shasum": ""
  3030. },
  3031. "require": {
  3032. "carbonphp/carbon-doctrine-types": "*",
  3033. "ext-json": "*",
  3034. "php": "^8.1",
  3035. "psr/clock": "^1.0",
  3036. "symfony/clock": "^6.3 || ^7.0",
  3037. "symfony/polyfill-mbstring": "^1.0",
  3038. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  3039. },
  3040. "provide": {
  3041. "psr/clock-implementation": "1.0"
  3042. },
  3043. "require-dev": {
  3044. "doctrine/dbal": "^3.6.3 || ^4.0",
  3045. "doctrine/orm": "^2.15.2 || ^3.0",
  3046. "friendsofphp/php-cs-fixer": "^3.57.2",
  3047. "kylekatarnls/multi-tester": "^2.5.3",
  3048. "ondrejmirtes/better-reflection": "^6.25.0.4",
  3049. "phpmd/phpmd": "^2.15.0",
  3050. "phpstan/extension-installer": "^1.3.1",
  3051. "phpstan/phpstan": "^1.11.2",
  3052. "phpunit/phpunit": "^10.5.20",
  3053. "squizlabs/php_codesniffer": "^3.9.0"
  3054. },
  3055. "bin": [
  3056. "bin/carbon"
  3057. ],
  3058. "type": "library",
  3059. "extra": {
  3060. "branch-alias": {
  3061. "dev-master": "3.x-dev",
  3062. "dev-2.x": "2.x-dev"
  3063. },
  3064. "laravel": {
  3065. "providers": [
  3066. "Carbon\\Laravel\\ServiceProvider"
  3067. ]
  3068. },
  3069. "phpstan": {
  3070. "includes": [
  3071. "extension.neon"
  3072. ]
  3073. }
  3074. },
  3075. "autoload": {
  3076. "psr-4": {
  3077. "Carbon\\": "src/Carbon/"
  3078. }
  3079. },
  3080. "notification-url": "https://packagist.org/downloads/",
  3081. "license": [
  3082. "MIT"
  3083. ],
  3084. "authors": [
  3085. {
  3086. "name": "Brian Nesbitt",
  3087. "email": "[email protected]",
  3088. "homepage": "https://markido.com"
  3089. },
  3090. {
  3091. "name": "kylekatarnls",
  3092. "homepage": "https://github.com/kylekatarnls"
  3093. }
  3094. ],
  3095. "description": "An API extension for DateTime that supports 281 different languages.",
  3096. "homepage": "https://carbon.nesbot.com",
  3097. "keywords": [
  3098. "date",
  3099. "datetime",
  3100. "time"
  3101. ],
  3102. "support": {
  3103. "docs": "https://carbon.nesbot.com/docs",
  3104. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3105. "source": "https://github.com/briannesbitt/Carbon"
  3106. },
  3107. "funding": [
  3108. {
  3109. "url": "https://github.com/sponsors/kylekatarnls",
  3110. "type": "github"
  3111. },
  3112. {
  3113. "url": "https://opencollective.com/Carbon#sponsor",
  3114. "type": "opencollective"
  3115. },
  3116. {
  3117. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3118. "type": "tidelift"
  3119. }
  3120. ],
  3121. "time": "2024-06-03T17:25:54+00:00"
  3122. },
  3123. {
  3124. "name": "nikic/fast-route",
  3125. "version": "v1.3.0",
  3126. "source": {
  3127. "type": "git",
  3128. "url": "https://github.com/nikic/FastRoute.git",
  3129. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  3130. },
  3131. "dist": {
  3132. "type": "zip",
  3133. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  3134. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  3135. "shasum": ""
  3136. },
  3137. "require": {
  3138. "php": ">=5.4.0"
  3139. },
  3140. "require-dev": {
  3141. "phpunit/phpunit": "^4.8.35|~5.7"
  3142. },
  3143. "type": "library",
  3144. "autoload": {
  3145. "files": [
  3146. "src/functions.php"
  3147. ],
  3148. "psr-4": {
  3149. "FastRoute\\": "src/"
  3150. }
  3151. },
  3152. "notification-url": "https://packagist.org/downloads/",
  3153. "license": [
  3154. "BSD-3-Clause"
  3155. ],
  3156. "authors": [
  3157. {
  3158. "name": "Nikita Popov",
  3159. "email": "[email protected]"
  3160. }
  3161. ],
  3162. "description": "Fast request router for PHP",
  3163. "keywords": [
  3164. "router",
  3165. "routing"
  3166. ],
  3167. "support": {
  3168. "issues": "https://github.com/nikic/FastRoute/issues",
  3169. "source": "https://github.com/nikic/FastRoute/tree/master"
  3170. },
  3171. "time": "2018-02-13T20:26:39+00:00"
  3172. },
  3173. {
  3174. "name": "nikolaposa/rate-limit",
  3175. "version": "3.2.0",
  3176. "source": {
  3177. "type": "git",
  3178. "url": "https://github.com/nikolaposa/rate-limit.git",
  3179. "reference": "80a1badf8157c6f206074defd752bd00f9cf08e9"
  3180. },
  3181. "dist": {
  3182. "type": "zip",
  3183. "url": "https://api.github.com/repos/nikolaposa/rate-limit/zipball/80a1badf8157c6f206074defd752bd00f9cf08e9",
  3184. "reference": "80a1badf8157c6f206074defd752bd00f9cf08e9",
  3185. "shasum": ""
  3186. },
  3187. "require": {
  3188. "beberlei/assert": "^3.2",
  3189. "php": "^8.1"
  3190. },
  3191. "require-dev": {
  3192. "ext-apcu": ">=5.1.12",
  3193. "ext-redis": "*",
  3194. "friendsofphp/php-cs-fixer": "3.44",
  3195. "phpstan/phpstan": "^1.10",
  3196. "phpstan/phpstan-beberlei-assert": "^1.1",
  3197. "phpstan/phpstan-phpunit": "^1.3",
  3198. "phpunit/phpunit": "^10.5",
  3199. "predis/predis": "^1.1"
  3200. },
  3201. "suggest": {
  3202. "ext-apcu": "In order to use ApcuRateLimiter",
  3203. "ext-memcached": "In order to use MemcachedRateLimiter",
  3204. "ext-redis": "In order to use RedisRateLimiter",
  3205. "predis/predis": "In order to use PredisRateLimiter"
  3206. },
  3207. "type": "library",
  3208. "extra": {
  3209. "branch-alias": {
  3210. "dev-master": "3.2.x-dev"
  3211. }
  3212. },
  3213. "autoload": {
  3214. "psr-4": {
  3215. "RateLimit\\": "src/"
  3216. }
  3217. },
  3218. "notification-url": "https://packagist.org/downloads/",
  3219. "license": [
  3220. "MIT"
  3221. ],
  3222. "authors": [
  3223. {
  3224. "name": "Nikola Poša",
  3225. "email": "[email protected]",
  3226. "homepage": "https://www.nikolaposa.in.rs"
  3227. }
  3228. ],
  3229. "description": "General purpose rate limiter implementation.",
  3230. "keywords": [
  3231. "rate limit",
  3232. "redis"
  3233. ],
  3234. "support": {
  3235. "issues": "https://github.com/nikolaposa/rate-limit/issues",
  3236. "source": "https://github.com/nikolaposa/rate-limit/tree/3.2.0"
  3237. },
  3238. "time": "2024-05-17T14:39:51+00:00"
  3239. },
  3240. {
  3241. "name": "openai-php/client",
  3242. "version": "v0.10.1",
  3243. "source": {
  3244. "type": "git",
  3245. "url": "https://github.com/openai-php/client.git",
  3246. "reference": "8b63d27a2f009a7ce4714fda77769e93d883c8da"
  3247. },
  3248. "dist": {
  3249. "type": "zip",
  3250. "url": "https://api.github.com/repos/openai-php/client/zipball/8b63d27a2f009a7ce4714fda77769e93d883c8da",
  3251. "reference": "8b63d27a2f009a7ce4714fda77769e93d883c8da",
  3252. "shasum": ""
  3253. },
  3254. "require": {
  3255. "php": "^8.1.0",
  3256. "php-http/discovery": "^1.19.4",
  3257. "php-http/multipart-stream-builder": "^1.3.0",
  3258. "psr/http-client": "^1.0.3",
  3259. "psr/http-client-implementation": "^1.0.1",
  3260. "psr/http-factory-implementation": "*",
  3261. "psr/http-message": "^1.1.0|^2.0.0"
  3262. },
  3263. "require-dev": {
  3264. "guzzlehttp/guzzle": "^7.8.1",
  3265. "guzzlehttp/psr7": "^2.6.2",
  3266. "laravel/pint": "^1.16.0",
  3267. "mockery/mockery": "^1.6.12",
  3268. "nunomaduro/collision": "^7.10.0",
  3269. "pestphp/pest": "^2.34.7",
  3270. "pestphp/pest-plugin-arch": "^2.7",
  3271. "pestphp/pest-plugin-type-coverage": "^2.8.2",
  3272. "phpstan/phpstan": "^1.11.2",
  3273. "rector/rector": "^1.1.0",
  3274. "symfony/var-dumper": "^6.4.7"
  3275. },
  3276. "type": "library",
  3277. "autoload": {
  3278. "files": [
  3279. "src/OpenAI.php"
  3280. ],
  3281. "psr-4": {
  3282. "OpenAI\\": "src/"
  3283. }
  3284. },
  3285. "notification-url": "https://packagist.org/downloads/",
  3286. "license": [
  3287. "MIT"
  3288. ],
  3289. "authors": [
  3290. {
  3291. "name": "Nuno Maduro",
  3292. "email": "[email protected]"
  3293. },
  3294. {
  3295. "name": "Sandro Gehri"
  3296. }
  3297. ],
  3298. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  3299. "keywords": [
  3300. "GPT-3",
  3301. "api",
  3302. "client",
  3303. "codex",
  3304. "dall-e",
  3305. "language",
  3306. "natural",
  3307. "openai",
  3308. "php",
  3309. "processing",
  3310. "sdk"
  3311. ],
  3312. "support": {
  3313. "issues": "https://github.com/openai-php/client/issues",
  3314. "source": "https://github.com/openai-php/client/tree/v0.10.1"
  3315. },
  3316. "funding": [
  3317. {
  3318. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3319. "type": "custom"
  3320. },
  3321. {
  3322. "url": "https://github.com/gehrisandro",
  3323. "type": "github"
  3324. },
  3325. {
  3326. "url": "https://github.com/nunomaduro",
  3327. "type": "github"
  3328. }
  3329. ],
  3330. "time": "2024-06-06T20:27:51+00:00"
  3331. },
  3332. {
  3333. "name": "php-http/client-common",
  3334. "version": "2.7.1",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://github.com/php-http/client-common.git",
  3338. "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://api.github.com/repos/php-http/client-common/zipball/1e19c059b0e4d5f717bf5d524d616165aeab0612",
  3343. "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612",
  3344. "shasum": ""
  3345. },
  3346. "require": {
  3347. "php": "^7.1 || ^8.0",
  3348. "php-http/httplug": "^2.0",
  3349. "php-http/message": "^1.6",
  3350. "psr/http-client": "^1.0",
  3351. "psr/http-factory": "^1.0",
  3352. "psr/http-message": "^1.0 || ^2.0",
  3353. "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0 || ^7.0",
  3354. "symfony/polyfill-php80": "^1.17"
  3355. },
  3356. "require-dev": {
  3357. "doctrine/instantiator": "^1.1",
  3358. "guzzlehttp/psr7": "^1.4",
  3359. "nyholm/psr7": "^1.2",
  3360. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  3361. "phpspec/prophecy": "^1.10.2",
  3362. "phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7"
  3363. },
  3364. "suggest": {
  3365. "ext-json": "To detect JSON responses with the ContentTypePlugin",
  3366. "ext-libxml": "To detect XML responses with the ContentTypePlugin",
  3367. "php-http/cache-plugin": "PSR-6 Cache plugin",
  3368. "php-http/logger-plugin": "PSR-3 Logger plugin",
  3369. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  3370. },
  3371. "type": "library",
  3372. "autoload": {
  3373. "psr-4": {
  3374. "Http\\Client\\Common\\": "src/"
  3375. }
  3376. },
  3377. "notification-url": "https://packagist.org/downloads/",
  3378. "license": [
  3379. "MIT"
  3380. ],
  3381. "authors": [
  3382. {
  3383. "name": "Márk Sági-Kazár",
  3384. "email": "[email protected]"
  3385. }
  3386. ],
  3387. "description": "Common HTTP Client implementations and tools for HTTPlug",
  3388. "homepage": "http://httplug.io",
  3389. "keywords": [
  3390. "client",
  3391. "common",
  3392. "http",
  3393. "httplug"
  3394. ],
  3395. "support": {
  3396. "issues": "https://github.com/php-http/client-common/issues",
  3397. "source": "https://github.com/php-http/client-common/tree/2.7.1"
  3398. },
  3399. "time": "2023-11-30T10:31:25+00:00"
  3400. },
  3401. {
  3402. "name": "php-http/discovery",
  3403. "version": "1.19.4",
  3404. "source": {
  3405. "type": "git",
  3406. "url": "https://github.com/php-http/discovery.git",
  3407. "reference": "0700efda8d7526335132360167315fdab3aeb599"
  3408. },
  3409. "dist": {
  3410. "type": "zip",
  3411. "url": "https://api.github.com/repos/php-http/discovery/zipball/0700efda8d7526335132360167315fdab3aeb599",
  3412. "reference": "0700efda8d7526335132360167315fdab3aeb599",
  3413. "shasum": ""
  3414. },
  3415. "require": {
  3416. "composer-plugin-api": "^1.0|^2.0",
  3417. "php": "^7.1 || ^8.0"
  3418. },
  3419. "conflict": {
  3420. "nyholm/psr7": "<1.0",
  3421. "zendframework/zend-diactoros": "*"
  3422. },
  3423. "provide": {
  3424. "php-http/async-client-implementation": "*",
  3425. "php-http/client-implementation": "*",
  3426. "psr/http-client-implementation": "*",
  3427. "psr/http-factory-implementation": "*",
  3428. "psr/http-message-implementation": "*"
  3429. },
  3430. "require-dev": {
  3431. "composer/composer": "^1.0.2|^2.0",
  3432. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  3433. "php-http/httplug": "^1.0 || ^2.0",
  3434. "php-http/message-factory": "^1.0",
  3435. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  3436. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  3437. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  3438. },
  3439. "type": "composer-plugin",
  3440. "extra": {
  3441. "class": "Http\\Discovery\\Composer\\Plugin",
  3442. "plugin-optional": true
  3443. },
  3444. "autoload": {
  3445. "psr-4": {
  3446. "Http\\Discovery\\": "src/"
  3447. },
  3448. "exclude-from-classmap": [
  3449. "src/Composer/Plugin.php"
  3450. ]
  3451. },
  3452. "notification-url": "https://packagist.org/downloads/",
  3453. "license": [
  3454. "MIT"
  3455. ],
  3456. "authors": [
  3457. {
  3458. "name": "Márk Sági-Kazár",
  3459. "email": "[email protected]"
  3460. }
  3461. ],
  3462. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  3463. "homepage": "http://php-http.org",
  3464. "keywords": [
  3465. "adapter",
  3466. "client",
  3467. "discovery",
  3468. "factory",
  3469. "http",
  3470. "message",
  3471. "psr17",
  3472. "psr7"
  3473. ],
  3474. "support": {
  3475. "issues": "https://github.com/php-http/discovery/issues",
  3476. "source": "https://github.com/php-http/discovery/tree/1.19.4"
  3477. },
  3478. "time": "2024-03-29T13:00:05+00:00"
  3479. },
  3480. {
  3481. "name": "php-http/httplug",
  3482. "version": "2.4.0",
  3483. "source": {
  3484. "type": "git",
  3485. "url": "https://github.com/php-http/httplug.git",
  3486. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67"
  3487. },
  3488. "dist": {
  3489. "type": "zip",
  3490. "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67",
  3491. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67",
  3492. "shasum": ""
  3493. },
  3494. "require": {
  3495. "php": "^7.1 || ^8.0",
  3496. "php-http/promise": "^1.1",
  3497. "psr/http-client": "^1.0",
  3498. "psr/http-message": "^1.0 || ^2.0"
  3499. },
  3500. "require-dev": {
  3501. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  3502. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  3503. },
  3504. "type": "library",
  3505. "autoload": {
  3506. "psr-4": {
  3507. "Http\\Client\\": "src/"
  3508. }
  3509. },
  3510. "notification-url": "https://packagist.org/downloads/",
  3511. "license": [
  3512. "MIT"
  3513. ],
  3514. "authors": [
  3515. {
  3516. "name": "Eric GELOEN",
  3517. "email": "[email protected]"
  3518. },
  3519. {
  3520. "name": "Márk Sági-Kazár",
  3521. "email": "[email protected]",
  3522. "homepage": "https://sagikazarmark.hu"
  3523. }
  3524. ],
  3525. "description": "HTTPlug, the HTTP client abstraction for PHP",
  3526. "homepage": "http://httplug.io",
  3527. "keywords": [
  3528. "client",
  3529. "http"
  3530. ],
  3531. "support": {
  3532. "issues": "https://github.com/php-http/httplug/issues",
  3533. "source": "https://github.com/php-http/httplug/tree/2.4.0"
  3534. },
  3535. "time": "2023-04-14T15:10:03+00:00"
  3536. },
  3537. {
  3538. "name": "php-http/message",
  3539. "version": "1.16.1",
  3540. "source": {
  3541. "type": "git",
  3542. "url": "https://github.com/php-http/message.git",
  3543. "reference": "5997f3289332c699fa2545c427826272498a2088"
  3544. },
  3545. "dist": {
  3546. "type": "zip",
  3547. "url": "https://api.github.com/repos/php-http/message/zipball/5997f3289332c699fa2545c427826272498a2088",
  3548. "reference": "5997f3289332c699fa2545c427826272498a2088",
  3549. "shasum": ""
  3550. },
  3551. "require": {
  3552. "clue/stream-filter": "^1.5",
  3553. "php": "^7.2 || ^8.0",
  3554. "psr/http-message": "^1.1 || ^2.0"
  3555. },
  3556. "provide": {
  3557. "php-http/message-factory-implementation": "1.0"
  3558. },
  3559. "require-dev": {
  3560. "ergebnis/composer-normalize": "^2.6",
  3561. "ext-zlib": "*",
  3562. "guzzlehttp/psr7": "^1.0 || ^2.0",
  3563. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  3564. "php-http/message-factory": "^1.0.2",
  3565. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  3566. "slim/slim": "^3.0"
  3567. },
  3568. "suggest": {
  3569. "ext-zlib": "Used with compressor/decompressor streams",
  3570. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  3571. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  3572. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  3573. },
  3574. "type": "library",
  3575. "autoload": {
  3576. "files": [
  3577. "src/filters.php"
  3578. ],
  3579. "psr-4": {
  3580. "Http\\Message\\": "src/"
  3581. }
  3582. },
  3583. "notification-url": "https://packagist.org/downloads/",
  3584. "license": [
  3585. "MIT"
  3586. ],
  3587. "authors": [
  3588. {
  3589. "name": "Márk Sági-Kazár",
  3590. "email": "[email protected]"
  3591. }
  3592. ],
  3593. "description": "HTTP Message related tools",
  3594. "homepage": "http://php-http.org",
  3595. "keywords": [
  3596. "http",
  3597. "message",
  3598. "psr-7"
  3599. ],
  3600. "support": {
  3601. "issues": "https://github.com/php-http/message/issues",
  3602. "source": "https://github.com/php-http/message/tree/1.16.1"
  3603. },
  3604. "time": "2024-03-07T13:22:09+00:00"
  3605. },
  3606. {
  3607. "name": "php-http/multipart-stream-builder",
  3608. "version": "1.3.1",
  3609. "source": {
  3610. "type": "git",
  3611. "url": "https://github.com/php-http/multipart-stream-builder.git",
  3612. "reference": "ed56da23b95949ae4747378bed8a5b61a2fdae24"
  3613. },
  3614. "dist": {
  3615. "type": "zip",
  3616. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/ed56da23b95949ae4747378bed8a5b61a2fdae24",
  3617. "reference": "ed56da23b95949ae4747378bed8a5b61a2fdae24",
  3618. "shasum": ""
  3619. },
  3620. "require": {
  3621. "php": "^7.1 || ^8.0",
  3622. "php-http/discovery": "^1.15",
  3623. "psr/http-factory-implementation": "^1.0"
  3624. },
  3625. "require-dev": {
  3626. "nyholm/psr7": "^1.0",
  3627. "php-http/message": "^1.5",
  3628. "php-http/message-factory": "^1.0.2",
  3629. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  3630. },
  3631. "type": "library",
  3632. "autoload": {
  3633. "psr-4": {
  3634. "Http\\Message\\MultipartStream\\": "src/"
  3635. }
  3636. },
  3637. "notification-url": "https://packagist.org/downloads/",
  3638. "license": [
  3639. "MIT"
  3640. ],
  3641. "authors": [
  3642. {
  3643. "name": "Tobias Nyholm",
  3644. "email": "[email protected]"
  3645. }
  3646. ],
  3647. "description": "A builder class that help you create a multipart stream",
  3648. "homepage": "http://php-http.org",
  3649. "keywords": [
  3650. "factory",
  3651. "http",
  3652. "message",
  3653. "multipart stream",
  3654. "stream"
  3655. ],
  3656. "support": {
  3657. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  3658. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.3.1"
  3659. },
  3660. "time": "2024-06-10T14:51:55+00:00"
  3661. },
  3662. {
  3663. "name": "php-http/promise",
  3664. "version": "1.3.1",
  3665. "source": {
  3666. "type": "git",
  3667. "url": "https://github.com/php-http/promise.git",
  3668. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  3669. },
  3670. "dist": {
  3671. "type": "zip",
  3672. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  3673. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  3674. "shasum": ""
  3675. },
  3676. "require": {
  3677. "php": "^7.1 || ^8.0"
  3678. },
  3679. "require-dev": {
  3680. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  3681. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  3682. },
  3683. "type": "library",
  3684. "autoload": {
  3685. "psr-4": {
  3686. "Http\\Promise\\": "src/"
  3687. }
  3688. },
  3689. "notification-url": "https://packagist.org/downloads/",
  3690. "license": [
  3691. "MIT"
  3692. ],
  3693. "authors": [
  3694. {
  3695. "name": "Joel Wurtz",
  3696. "email": "[email protected]"
  3697. },
  3698. {
  3699. "name": "Márk Sági-Kazár",
  3700. "email": "[email protected]"
  3701. }
  3702. ],
  3703. "description": "Promise used for asynchronous HTTP requests",
  3704. "homepage": "http://httplug.io",
  3705. "keywords": [
  3706. "promise"
  3707. ],
  3708. "support": {
  3709. "issues": "https://github.com/php-http/promise/issues",
  3710. "source": "https://github.com/php-http/promise/tree/1.3.1"
  3711. },
  3712. "time": "2024-03-15T13:55:21+00:00"
  3713. },
  3714. {
  3715. "name": "phpmailer/phpmailer",
  3716. "version": "v6.9.1",
  3717. "source": {
  3718. "type": "git",
  3719. "url": "https://github.com/PHPMailer/PHPMailer.git",
  3720. "reference": "039de174cd9c17a8389754d3b877a2ed22743e18"
  3721. },
  3722. "dist": {
  3723. "type": "zip",
  3724. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/039de174cd9c17a8389754d3b877a2ed22743e18",
  3725. "reference": "039de174cd9c17a8389754d3b877a2ed22743e18",
  3726. "shasum": ""
  3727. },
  3728. "require": {
  3729. "ext-ctype": "*",
  3730. "ext-filter": "*",
  3731. "ext-hash": "*",
  3732. "php": ">=5.5.0"
  3733. },
  3734. "require-dev": {
  3735. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  3736. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  3737. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  3738. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  3739. "phpcompatibility/php-compatibility": "^9.3.5",
  3740. "roave/security-advisories": "dev-latest",
  3741. "squizlabs/php_codesniffer": "^3.7.2",
  3742. "yoast/phpunit-polyfills": "^1.0.4"
  3743. },
  3744. "suggest": {
  3745. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  3746. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  3747. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  3748. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  3749. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  3750. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  3751. "psr/log": "For optional PSR-3 debug logging",
  3752. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  3753. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  3754. },
  3755. "type": "library",
  3756. "autoload": {
  3757. "psr-4": {
  3758. "PHPMailer\\PHPMailer\\": "src/"
  3759. }
  3760. },
  3761. "notification-url": "https://packagist.org/downloads/",
  3762. "license": [
  3763. "LGPL-2.1-only"
  3764. ],
  3765. "authors": [
  3766. {
  3767. "name": "Marcus Bointon",
  3768. "email": "[email protected]"
  3769. },
  3770. {
  3771. "name": "Jim Jagielski",
  3772. "email": "[email protected]"
  3773. },
  3774. {
  3775. "name": "Andy Prevost",
  3776. "email": "[email protected]"
  3777. },
  3778. {
  3779. "name": "Brent R. Matzelle"
  3780. }
  3781. ],
  3782. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  3783. "support": {
  3784. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  3785. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.9.1"
  3786. },
  3787. "funding": [
  3788. {
  3789. "url": "https://github.com/Synchro",
  3790. "type": "github"
  3791. }
  3792. ],
  3793. "time": "2023-11-25T22:23:28+00:00"
  3794. },
  3795. {
  3796. "name": "postal/postal",
  3797. "version": "v2.0.1",
  3798. "source": {
  3799. "type": "git",
  3800. "url": "https://github.com/postalserver/postal-php.git",
  3801. "reference": "e361d11aadb724a482092784ebfe00461c492b5d"
  3802. },
  3803. "dist": {
  3804. "type": "zip",
  3805. "url": "https://api.github.com/repos/postalserver/postal-php/zipball/e361d11aadb724a482092784ebfe00461c492b5d",
  3806. "reference": "e361d11aadb724a482092784ebfe00461c492b5d",
  3807. "shasum": ""
  3808. },
  3809. "require": {
  3810. "guzzlehttp/guzzle": "^6 || ^7",
  3811. "php": "^7.4 || ^8.0"
  3812. },
  3813. "require-dev": {
  3814. "phpstan/phpstan": "^1.10",
  3815. "phpunit/phpunit": "^9.6",
  3816. "symplify/easy-coding-standard": "^11.3"
  3817. },
  3818. "type": "library",
  3819. "autoload": {
  3820. "psr-4": {
  3821. "Postal\\": "src/"
  3822. }
  3823. },
  3824. "notification-url": "https://packagist.org/downloads/",
  3825. "license": [
  3826. "MIT"
  3827. ],
  3828. "authors": [
  3829. {
  3830. "name": "Adam Cooke",
  3831. "email": "[email protected]"
  3832. },
  3833. {
  3834. "name": "Josh Grant",
  3835. "email": "[email protected]"
  3836. },
  3837. {
  3838. "name": "William Hall",
  3839. "email": "[email protected]"
  3840. }
  3841. ],
  3842. "description": "Postal for PHP library.",
  3843. "homepage": "https://github.com/atech/postal",
  3844. "keywords": [
  3845. "mail",
  3846. "postal"
  3847. ],
  3848. "support": {
  3849. "issues": "https://github.com/postalserver/postal-php/issues",
  3850. "source": "https://github.com/postalserver/postal-php/tree/v2.0.1"
  3851. },
  3852. "time": "2023-12-19T09:49:41+00:00"
  3853. },
  3854. {
  3855. "name": "psr/clock",
  3856. "version": "1.0.0",
  3857. "source": {
  3858. "type": "git",
  3859. "url": "https://github.com/php-fig/clock.git",
  3860. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3861. },
  3862. "dist": {
  3863. "type": "zip",
  3864. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3865. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3866. "shasum": ""
  3867. },
  3868. "require": {
  3869. "php": "^7.0 || ^8.0"
  3870. },
  3871. "type": "library",
  3872. "autoload": {
  3873. "psr-4": {
  3874. "Psr\\Clock\\": "src/"
  3875. }
  3876. },
  3877. "notification-url": "https://packagist.org/downloads/",
  3878. "license": [
  3879. "MIT"
  3880. ],
  3881. "authors": [
  3882. {
  3883. "name": "PHP-FIG",
  3884. "homepage": "https://www.php-fig.org/"
  3885. }
  3886. ],
  3887. "description": "Common interface for reading the clock.",
  3888. "homepage": "https://github.com/php-fig/clock",
  3889. "keywords": [
  3890. "clock",
  3891. "now",
  3892. "psr",
  3893. "psr-20",
  3894. "time"
  3895. ],
  3896. "support": {
  3897. "issues": "https://github.com/php-fig/clock/issues",
  3898. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3899. },
  3900. "time": "2022-11-25T14:36:26+00:00"
  3901. },
  3902. {
  3903. "name": "psr/container",
  3904. "version": "2.0.2",
  3905. "source": {
  3906. "type": "git",
  3907. "url": "https://github.com/php-fig/container.git",
  3908. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3909. },
  3910. "dist": {
  3911. "type": "zip",
  3912. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3913. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3914. "shasum": ""
  3915. },
  3916. "require": {
  3917. "php": ">=7.4.0"
  3918. },
  3919. "type": "library",
  3920. "extra": {
  3921. "branch-alias": {
  3922. "dev-master": "2.0.x-dev"
  3923. }
  3924. },
  3925. "autoload": {
  3926. "psr-4": {
  3927. "Psr\\Container\\": "src/"
  3928. }
  3929. },
  3930. "notification-url": "https://packagist.org/downloads/",
  3931. "license": [
  3932. "MIT"
  3933. ],
  3934. "authors": [
  3935. {
  3936. "name": "PHP-FIG",
  3937. "homepage": "https://www.php-fig.org/"
  3938. }
  3939. ],
  3940. "description": "Common Container Interface (PHP FIG PSR-11)",
  3941. "homepage": "https://github.com/php-fig/container",
  3942. "keywords": [
  3943. "PSR-11",
  3944. "container",
  3945. "container-interface",
  3946. "container-interop",
  3947. "psr"
  3948. ],
  3949. "support": {
  3950. "issues": "https://github.com/php-fig/container/issues",
  3951. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3952. },
  3953. "time": "2021-11-05T16:47:00+00:00"
  3954. },
  3955. {
  3956. "name": "psr/event-dispatcher",
  3957. "version": "1.0.0",
  3958. "source": {
  3959. "type": "git",
  3960. "url": "https://github.com/php-fig/event-dispatcher.git",
  3961. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3962. },
  3963. "dist": {
  3964. "type": "zip",
  3965. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3966. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3967. "shasum": ""
  3968. },
  3969. "require": {
  3970. "php": ">=7.2.0"
  3971. },
  3972. "type": "library",
  3973. "extra": {
  3974. "branch-alias": {
  3975. "dev-master": "1.0.x-dev"
  3976. }
  3977. },
  3978. "autoload": {
  3979. "psr-4": {
  3980. "Psr\\EventDispatcher\\": "src/"
  3981. }
  3982. },
  3983. "notification-url": "https://packagist.org/downloads/",
  3984. "license": [
  3985. "MIT"
  3986. ],
  3987. "authors": [
  3988. {
  3989. "name": "PHP-FIG",
  3990. "homepage": "http://www.php-fig.org/"
  3991. }
  3992. ],
  3993. "description": "Standard interfaces for event handling.",
  3994. "keywords": [
  3995. "events",
  3996. "psr",
  3997. "psr-14"
  3998. ],
  3999. "support": {
  4000. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4001. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4002. },
  4003. "time": "2019-01-08T18:20:26+00:00"
  4004. },
  4005. {
  4006. "name": "psr/http-client",
  4007. "version": "1.0.3",
  4008. "source": {
  4009. "type": "git",
  4010. "url": "https://github.com/php-fig/http-client.git",
  4011. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4012. },
  4013. "dist": {
  4014. "type": "zip",
  4015. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4016. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4017. "shasum": ""
  4018. },
  4019. "require": {
  4020. "php": "^7.0 || ^8.0",
  4021. "psr/http-message": "^1.0 || ^2.0"
  4022. },
  4023. "type": "library",
  4024. "extra": {
  4025. "branch-alias": {
  4026. "dev-master": "1.0.x-dev"
  4027. }
  4028. },
  4029. "autoload": {
  4030. "psr-4": {
  4031. "Psr\\Http\\Client\\": "src/"
  4032. }
  4033. },
  4034. "notification-url": "https://packagist.org/downloads/",
  4035. "license": [
  4036. "MIT"
  4037. ],
  4038. "authors": [
  4039. {
  4040. "name": "PHP-FIG",
  4041. "homepage": "https://www.php-fig.org/"
  4042. }
  4043. ],
  4044. "description": "Common interface for HTTP clients",
  4045. "homepage": "https://github.com/php-fig/http-client",
  4046. "keywords": [
  4047. "http",
  4048. "http-client",
  4049. "psr",
  4050. "psr-18"
  4051. ],
  4052. "support": {
  4053. "source": "https://github.com/php-fig/http-client"
  4054. },
  4055. "time": "2023-09-23T14:17:50+00:00"
  4056. },
  4057. {
  4058. "name": "psr/http-factory",
  4059. "version": "1.1.0",
  4060. "source": {
  4061. "type": "git",
  4062. "url": "https://github.com/php-fig/http-factory.git",
  4063. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  4064. },
  4065. "dist": {
  4066. "type": "zip",
  4067. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4068. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4069. "shasum": ""
  4070. },
  4071. "require": {
  4072. "php": ">=7.1",
  4073. "psr/http-message": "^1.0 || ^2.0"
  4074. },
  4075. "type": "library",
  4076. "extra": {
  4077. "branch-alias": {
  4078. "dev-master": "1.0.x-dev"
  4079. }
  4080. },
  4081. "autoload": {
  4082. "psr-4": {
  4083. "Psr\\Http\\Message\\": "src/"
  4084. }
  4085. },
  4086. "notification-url": "https://packagist.org/downloads/",
  4087. "license": [
  4088. "MIT"
  4089. ],
  4090. "authors": [
  4091. {
  4092. "name": "PHP-FIG",
  4093. "homepage": "https://www.php-fig.org/"
  4094. }
  4095. ],
  4096. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  4097. "keywords": [
  4098. "factory",
  4099. "http",
  4100. "message",
  4101. "psr",
  4102. "psr-17",
  4103. "psr-7",
  4104. "request",
  4105. "response"
  4106. ],
  4107. "support": {
  4108. "source": "https://github.com/php-fig/http-factory"
  4109. },
  4110. "time": "2024-04-15T12:06:14+00:00"
  4111. },
  4112. {
  4113. "name": "psr/http-message",
  4114. "version": "1.1",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/php-fig/http-message.git",
  4118. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4123. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4124. "shasum": ""
  4125. },
  4126. "require": {
  4127. "php": "^7.2 || ^8.0"
  4128. },
  4129. "type": "library",
  4130. "extra": {
  4131. "branch-alias": {
  4132. "dev-master": "1.1.x-dev"
  4133. }
  4134. },
  4135. "autoload": {
  4136. "psr-4": {
  4137. "Psr\\Http\\Message\\": "src/"
  4138. }
  4139. },
  4140. "notification-url": "https://packagist.org/downloads/",
  4141. "license": [
  4142. "MIT"
  4143. ],
  4144. "authors": [
  4145. {
  4146. "name": "PHP-FIG",
  4147. "homepage": "http://www.php-fig.org/"
  4148. }
  4149. ],
  4150. "description": "Common interface for HTTP messages",
  4151. "homepage": "https://github.com/php-fig/http-message",
  4152. "keywords": [
  4153. "http",
  4154. "http-message",
  4155. "psr",
  4156. "psr-7",
  4157. "request",
  4158. "response"
  4159. ],
  4160. "support": {
  4161. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4162. },
  4163. "time": "2023-04-04T09:50:52+00:00"
  4164. },
  4165. {
  4166. "name": "psr/http-server-handler",
  4167. "version": "1.0.2",
  4168. "source": {
  4169. "type": "git",
  4170. "url": "https://github.com/php-fig/http-server-handler.git",
  4171. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  4172. },
  4173. "dist": {
  4174. "type": "zip",
  4175. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  4176. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  4177. "shasum": ""
  4178. },
  4179. "require": {
  4180. "php": ">=7.0",
  4181. "psr/http-message": "^1.0 || ^2.0"
  4182. },
  4183. "type": "library",
  4184. "extra": {
  4185. "branch-alias": {
  4186. "dev-master": "1.0.x-dev"
  4187. }
  4188. },
  4189. "autoload": {
  4190. "psr-4": {
  4191. "Psr\\Http\\Server\\": "src/"
  4192. }
  4193. },
  4194. "notification-url": "https://packagist.org/downloads/",
  4195. "license": [
  4196. "MIT"
  4197. ],
  4198. "authors": [
  4199. {
  4200. "name": "PHP-FIG",
  4201. "homepage": "https://www.php-fig.org/"
  4202. }
  4203. ],
  4204. "description": "Common interface for HTTP server-side request handler",
  4205. "keywords": [
  4206. "handler",
  4207. "http",
  4208. "http-interop",
  4209. "psr",
  4210. "psr-15",
  4211. "psr-7",
  4212. "request",
  4213. "response",
  4214. "server"
  4215. ],
  4216. "support": {
  4217. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  4218. },
  4219. "time": "2023-04-10T20:06:20+00:00"
  4220. },
  4221. {
  4222. "name": "psr/http-server-middleware",
  4223. "version": "1.0.2",
  4224. "source": {
  4225. "type": "git",
  4226. "url": "https://github.com/php-fig/http-server-middleware.git",
  4227. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  4228. },
  4229. "dist": {
  4230. "type": "zip",
  4231. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  4232. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  4233. "shasum": ""
  4234. },
  4235. "require": {
  4236. "php": ">=7.0",
  4237. "psr/http-message": "^1.0 || ^2.0",
  4238. "psr/http-server-handler": "^1.0"
  4239. },
  4240. "type": "library",
  4241. "extra": {
  4242. "branch-alias": {
  4243. "dev-master": "1.0.x-dev"
  4244. }
  4245. },
  4246. "autoload": {
  4247. "psr-4": {
  4248. "Psr\\Http\\Server\\": "src/"
  4249. }
  4250. },
  4251. "notification-url": "https://packagist.org/downloads/",
  4252. "license": [
  4253. "MIT"
  4254. ],
  4255. "authors": [
  4256. {
  4257. "name": "PHP-FIG",
  4258. "homepage": "https://www.php-fig.org/"
  4259. }
  4260. ],
  4261. "description": "Common interface for HTTP server-side middleware",
  4262. "keywords": [
  4263. "http",
  4264. "http-interop",
  4265. "middleware",
  4266. "psr",
  4267. "psr-15",
  4268. "psr-7",
  4269. "request",
  4270. "response"
  4271. ],
  4272. "support": {
  4273. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  4274. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  4275. },
  4276. "time": "2023-04-11T06:14:47+00:00"
  4277. },
  4278. {
  4279. "name": "psr/log",
  4280. "version": "3.0.0",
  4281. "source": {
  4282. "type": "git",
  4283. "url": "https://github.com/php-fig/log.git",
  4284. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4285. },
  4286. "dist": {
  4287. "type": "zip",
  4288. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4289. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4290. "shasum": ""
  4291. },
  4292. "require": {
  4293. "php": ">=8.0.0"
  4294. },
  4295. "type": "library",
  4296. "extra": {
  4297. "branch-alias": {
  4298. "dev-master": "3.x-dev"
  4299. }
  4300. },
  4301. "autoload": {
  4302. "psr-4": {
  4303. "Psr\\Log\\": "src"
  4304. }
  4305. },
  4306. "notification-url": "https://packagist.org/downloads/",
  4307. "license": [
  4308. "MIT"
  4309. ],
  4310. "authors": [
  4311. {
  4312. "name": "PHP-FIG",
  4313. "homepage": "https://www.php-fig.org/"
  4314. }
  4315. ],
  4316. "description": "Common interface for logging libraries",
  4317. "homepage": "https://github.com/php-fig/log",
  4318. "keywords": [
  4319. "log",
  4320. "psr",
  4321. "psr-3"
  4322. ],
  4323. "support": {
  4324. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4325. },
  4326. "time": "2021-07-14T16:46:02+00:00"
  4327. },
  4328. {
  4329. "name": "psr/simple-cache",
  4330. "version": "3.0.0",
  4331. "source": {
  4332. "type": "git",
  4333. "url": "https://github.com/php-fig/simple-cache.git",
  4334. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4335. },
  4336. "dist": {
  4337. "type": "zip",
  4338. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4339. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4340. "shasum": ""
  4341. },
  4342. "require": {
  4343. "php": ">=8.0.0"
  4344. },
  4345. "type": "library",
  4346. "extra": {
  4347. "branch-alias": {
  4348. "dev-master": "3.0.x-dev"
  4349. }
  4350. },
  4351. "autoload": {
  4352. "psr-4": {
  4353. "Psr\\SimpleCache\\": "src/"
  4354. }
  4355. },
  4356. "notification-url": "https://packagist.org/downloads/",
  4357. "license": [
  4358. "MIT"
  4359. ],
  4360. "authors": [
  4361. {
  4362. "name": "PHP-FIG",
  4363. "homepage": "https://www.php-fig.org/"
  4364. }
  4365. ],
  4366. "description": "Common interfaces for simple caching",
  4367. "keywords": [
  4368. "cache",
  4369. "caching",
  4370. "psr",
  4371. "psr-16",
  4372. "simple-cache"
  4373. ],
  4374. "support": {
  4375. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4376. },
  4377. "time": "2021-10-29T13:26:27+00:00"
  4378. },
  4379. {
  4380. "name": "ralouphie/getallheaders",
  4381. "version": "3.0.3",
  4382. "source": {
  4383. "type": "git",
  4384. "url": "https://github.com/ralouphie/getallheaders.git",
  4385. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4386. },
  4387. "dist": {
  4388. "type": "zip",
  4389. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4390. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4391. "shasum": ""
  4392. },
  4393. "require": {
  4394. "php": ">=5.6"
  4395. },
  4396. "require-dev": {
  4397. "php-coveralls/php-coveralls": "^2.1",
  4398. "phpunit/phpunit": "^5 || ^6.5"
  4399. },
  4400. "type": "library",
  4401. "autoload": {
  4402. "files": [
  4403. "src/getallheaders.php"
  4404. ]
  4405. },
  4406. "notification-url": "https://packagist.org/downloads/",
  4407. "license": [
  4408. "MIT"
  4409. ],
  4410. "authors": [
  4411. {
  4412. "name": "Ralph Khattar",
  4413. "email": "[email protected]"
  4414. }
  4415. ],
  4416. "description": "A polyfill for getallheaders.",
  4417. "support": {
  4418. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4419. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4420. },
  4421. "time": "2019-03-08T08:55:37+00:00"
  4422. },
  4423. {
  4424. "name": "ramsey/collection",
  4425. "version": "2.0.0",
  4426. "source": {
  4427. "type": "git",
  4428. "url": "https://github.com/ramsey/collection.git",
  4429. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4430. },
  4431. "dist": {
  4432. "type": "zip",
  4433. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4434. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4435. "shasum": ""
  4436. },
  4437. "require": {
  4438. "php": "^8.1"
  4439. },
  4440. "require-dev": {
  4441. "captainhook/plugin-composer": "^5.3",
  4442. "ergebnis/composer-normalize": "^2.28.3",
  4443. "fakerphp/faker": "^1.21",
  4444. "hamcrest/hamcrest-php": "^2.0",
  4445. "jangregor/phpstan-prophecy": "^1.0",
  4446. "mockery/mockery": "^1.5",
  4447. "php-parallel-lint/php-console-highlighter": "^1.0",
  4448. "php-parallel-lint/php-parallel-lint": "^1.3",
  4449. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4450. "phpspec/prophecy-phpunit": "^2.0",
  4451. "phpstan/extension-installer": "^1.2",
  4452. "phpstan/phpstan": "^1.9",
  4453. "phpstan/phpstan-mockery": "^1.1",
  4454. "phpstan/phpstan-phpunit": "^1.3",
  4455. "phpunit/phpunit": "^9.5",
  4456. "psalm/plugin-mockery": "^1.1",
  4457. "psalm/plugin-phpunit": "^0.18.4",
  4458. "ramsey/coding-standard": "^2.0.3",
  4459. "ramsey/conventional-commits": "^1.3",
  4460. "vimeo/psalm": "^5.4"
  4461. },
  4462. "type": "library",
  4463. "extra": {
  4464. "captainhook": {
  4465. "force-install": true
  4466. },
  4467. "ramsey/conventional-commits": {
  4468. "configFile": "conventional-commits.json"
  4469. }
  4470. },
  4471. "autoload": {
  4472. "psr-4": {
  4473. "Ramsey\\Collection\\": "src/"
  4474. }
  4475. },
  4476. "notification-url": "https://packagist.org/downloads/",
  4477. "license": [
  4478. "MIT"
  4479. ],
  4480. "authors": [
  4481. {
  4482. "name": "Ben Ramsey",
  4483. "email": "[email protected]",
  4484. "homepage": "https://benramsey.com"
  4485. }
  4486. ],
  4487. "description": "A PHP library for representing and manipulating collections.",
  4488. "keywords": [
  4489. "array",
  4490. "collection",
  4491. "hash",
  4492. "map",
  4493. "queue",
  4494. "set"
  4495. ],
  4496. "support": {
  4497. "issues": "https://github.com/ramsey/collection/issues",
  4498. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4499. },
  4500. "funding": [
  4501. {
  4502. "url": "https://github.com/ramsey",
  4503. "type": "github"
  4504. },
  4505. {
  4506. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4507. "type": "tidelift"
  4508. }
  4509. ],
  4510. "time": "2022-12-31T21:50:55+00:00"
  4511. },
  4512. {
  4513. "name": "ramsey/uuid",
  4514. "version": "4.7.6",
  4515. "source": {
  4516. "type": "git",
  4517. "url": "https://github.com/ramsey/uuid.git",
  4518. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  4519. },
  4520. "dist": {
  4521. "type": "zip",
  4522. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  4523. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  4524. "shasum": ""
  4525. },
  4526. "require": {
  4527. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  4528. "ext-json": "*",
  4529. "php": "^8.0",
  4530. "ramsey/collection": "^1.2 || ^2.0"
  4531. },
  4532. "replace": {
  4533. "rhumsaa/uuid": "self.version"
  4534. },
  4535. "require-dev": {
  4536. "captainhook/captainhook": "^5.10",
  4537. "captainhook/plugin-composer": "^5.3",
  4538. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4539. "doctrine/annotations": "^1.8",
  4540. "ergebnis/composer-normalize": "^2.15",
  4541. "mockery/mockery": "^1.3",
  4542. "paragonie/random-lib": "^2",
  4543. "php-mock/php-mock": "^2.2",
  4544. "php-mock/php-mock-mockery": "^1.3",
  4545. "php-parallel-lint/php-parallel-lint": "^1.1",
  4546. "phpbench/phpbench": "^1.0",
  4547. "phpstan/extension-installer": "^1.1",
  4548. "phpstan/phpstan": "^1.8",
  4549. "phpstan/phpstan-mockery": "^1.1",
  4550. "phpstan/phpstan-phpunit": "^1.1",
  4551. "phpunit/phpunit": "^8.5 || ^9",
  4552. "ramsey/composer-repl": "^1.4",
  4553. "slevomat/coding-standard": "^8.4",
  4554. "squizlabs/php_codesniffer": "^3.5",
  4555. "vimeo/psalm": "^4.9"
  4556. },
  4557. "suggest": {
  4558. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4559. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4560. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4561. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4562. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4563. },
  4564. "type": "library",
  4565. "extra": {
  4566. "captainhook": {
  4567. "force-install": true
  4568. }
  4569. },
  4570. "autoload": {
  4571. "files": [
  4572. "src/functions.php"
  4573. ],
  4574. "psr-4": {
  4575. "Ramsey\\Uuid\\": "src/"
  4576. }
  4577. },
  4578. "notification-url": "https://packagist.org/downloads/",
  4579. "license": [
  4580. "MIT"
  4581. ],
  4582. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4583. "keywords": [
  4584. "guid",
  4585. "identifier",
  4586. "uuid"
  4587. ],
  4588. "support": {
  4589. "issues": "https://github.com/ramsey/uuid/issues",
  4590. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  4591. },
  4592. "funding": [
  4593. {
  4594. "url": "https://github.com/ramsey",
  4595. "type": "github"
  4596. },
  4597. {
  4598. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4599. "type": "tidelift"
  4600. }
  4601. ],
  4602. "time": "2024-04-27T21:32:50+00:00"
  4603. },
  4604. {
  4605. "name": "sendgrid/php-http-client",
  4606. "version": "4.1.1",
  4607. "source": {
  4608. "type": "git",
  4609. "url": "https://github.com/sendgrid/php-http-client.git",
  4610. "reference": "ec09bcfccabeb21d69e245a1e1c0e51f2813fc35"
  4611. },
  4612. "dist": {
  4613. "type": "zip",
  4614. "url": "https://api.github.com/repos/sendgrid/php-http-client/zipball/ec09bcfccabeb21d69e245a1e1c0e51f2813fc35",
  4615. "reference": "ec09bcfccabeb21d69e245a1e1c0e51f2813fc35",
  4616. "shasum": ""
  4617. },
  4618. "require": {
  4619. "ext-curl": "*",
  4620. "ext-json": "*",
  4621. "ext-mbstring": "*",
  4622. "php": ">=7.3"
  4623. },
  4624. "require-dev": {
  4625. "friendsofphp/php-cs-fixer": "^2.16",
  4626. "phpunit/phpunit": "^9",
  4627. "squizlabs/php_codesniffer": "~2.0"
  4628. },
  4629. "suggest": {
  4630. "composer/ca-bundle": "Including this library will ensure that a valid CA bundle is available for secure connections"
  4631. },
  4632. "type": "library",
  4633. "autoload": {
  4634. "psr-4": {
  4635. "SendGrid\\": "lib/"
  4636. }
  4637. },
  4638. "notification-url": "https://packagist.org/downloads/",
  4639. "license": [
  4640. "MIT"
  4641. ],
  4642. "authors": [
  4643. {
  4644. "name": "Matt Bernier",
  4645. "email": "[email protected]"
  4646. },
  4647. {
  4648. "name": "Elmer Thomas",
  4649. "email": "[email protected]"
  4650. }
  4651. ],
  4652. "description": "HTTP REST client, simplified for PHP",
  4653. "homepage": "http://github.com/sendgrid/php-http-client",
  4654. "keywords": [
  4655. "api",
  4656. "fluent",
  4657. "http",
  4658. "rest",
  4659. "sendgrid"
  4660. ],
  4661. "support": {
  4662. "source": "https://github.com/sendgrid/php-http-client/tree/4.1.1"
  4663. },
  4664. "time": "2023-12-14T08:50:59+00:00"
  4665. },
  4666. {
  4667. "name": "sendgrid/sendgrid",
  4668. "version": "8.1.2",
  4669. "source": {
  4670. "type": "git",
  4671. "url": "https://github.com/sendgrid/sendgrid-php.git",
  4672. "reference": "6700d2cf50df38915fa2d9a03affbca58c48599f"
  4673. },
  4674. "dist": {
  4675. "type": "zip",
  4676. "url": "https://api.github.com/repos/sendgrid/sendgrid-php/zipball/6700d2cf50df38915fa2d9a03affbca58c48599f",
  4677. "reference": "6700d2cf50df38915fa2d9a03affbca58c48599f",
  4678. "shasum": ""
  4679. },
  4680. "require": {
  4681. "ext-curl": "*",
  4682. "ext-json": "*",
  4683. "ext-mbstring": "*",
  4684. "ext-openssl": "*",
  4685. "php": ">=7.3",
  4686. "sendgrid/php-http-client": "~4.1",
  4687. "starkbank/ecdsa": "0.*"
  4688. },
  4689. "replace": {
  4690. "sendgrid/sendgrid-php": "*"
  4691. },
  4692. "require-dev": {
  4693. "phpstan/phpstan": "^1.5",
  4694. "phpunit/phpunit": "^9",
  4695. "squizlabs/php_codesniffer": "3.*",
  4696. "swaggest/json-diff": "^3.4"
  4697. },
  4698. "type": "library",
  4699. "autoload": {
  4700. "psr-4": {
  4701. "SendGrid\\Mail\\": "lib/mail/",
  4702. "SendGrid\\Stats\\": "lib/stats/",
  4703. "SendGrid\\Helper\\": "lib/helper/",
  4704. "SendGrid\\Contacts\\": "lib/contacts/",
  4705. "SendGrid\\EventWebhook\\": "lib/eventwebhook/"
  4706. },
  4707. "classmap": [
  4708. "lib/BaseSendGridClientInterface.php",
  4709. "lib/SendGrid.php",
  4710. "lib/TwilioEmail.php"
  4711. ]
  4712. },
  4713. "notification-url": "https://packagist.org/downloads/",
  4714. "license": [
  4715. "MIT"
  4716. ],
  4717. "description": "This library allows you to quickly and easily send emails through Twilio SendGrid using PHP.",
  4718. "homepage": "http://github.com/sendgrid/sendgrid-php",
  4719. "keywords": [
  4720. "email",
  4721. "grid",
  4722. "send",
  4723. "sendgrid",
  4724. "twilio sendgrid"
  4725. ],
  4726. "support": {
  4727. "source": "https://github.com/sendgrid/sendgrid-php/tree/8.1.2"
  4728. },
  4729. "time": "2024-04-18T11:09:09+00:00"
  4730. },
  4731. {
  4732. "name": "sentry/sdk",
  4733. "version": "4.0.0",
  4734. "source": {
  4735. "type": "git",
  4736. "url": "https://github.com/getsentry/sentry-php-sdk.git",
  4737. "reference": "fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53"
  4738. },
  4739. "dist": {
  4740. "type": "zip",
  4741. "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53",
  4742. "reference": "fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53",
  4743. "shasum": ""
  4744. },
  4745. "require": {
  4746. "sentry/sentry": "^4.0"
  4747. },
  4748. "type": "metapackage",
  4749. "notification-url": "https://packagist.org/downloads/",
  4750. "license": [
  4751. "MIT"
  4752. ],
  4753. "authors": [
  4754. {
  4755. "name": "Sentry",
  4756. "email": "[email protected]"
  4757. }
  4758. ],
  4759. "description": "This is a meta package of sentry/sentry. We recommend using sentry/sentry directly.",
  4760. "homepage": "http://sentry.io",
  4761. "keywords": [
  4762. "crash-reporting",
  4763. "crash-reports",
  4764. "error-handler",
  4765. "error-monitoring",
  4766. "log",
  4767. "logging",
  4768. "sentry"
  4769. ],
  4770. "support": {
  4771. "issues": "https://github.com/getsentry/sentry-php-sdk/issues",
  4772. "source": "https://github.com/getsentry/sentry-php-sdk/tree/4.0.0"
  4773. },
  4774. "funding": [
  4775. {
  4776. "url": "https://sentry.io/",
  4777. "type": "custom"
  4778. },
  4779. {
  4780. "url": "https://sentry.io/pricing/",
  4781. "type": "custom"
  4782. }
  4783. ],
  4784. "time": "2023-11-06T10:23:19+00:00"
  4785. },
  4786. {
  4787. "name": "sentry/sentry",
  4788. "version": "4.8.0",
  4789. "source": {
  4790. "type": "git",
  4791. "url": "https://github.com/getsentry/sentry-php.git",
  4792. "reference": "3cf5778ff425a23f2d22ed41b423691d36f47163"
  4793. },
  4794. "dist": {
  4795. "type": "zip",
  4796. "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/3cf5778ff425a23f2d22ed41b423691d36f47163",
  4797. "reference": "3cf5778ff425a23f2d22ed41b423691d36f47163",
  4798. "shasum": ""
  4799. },
  4800. "require": {
  4801. "ext-curl": "*",
  4802. "ext-json": "*",
  4803. "ext-mbstring": "*",
  4804. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4805. "jean85/pretty-package-versions": "^1.5|^2.0.4",
  4806. "php": "^7.2|^8.0",
  4807. "psr/log": "^1.0|^2.0|^3.0",
  4808. "symfony/options-resolver": "^4.4.30|^5.0.11|^6.0|^7.0"
  4809. },
  4810. "conflict": {
  4811. "raven/raven": "*"
  4812. },
  4813. "require-dev": {
  4814. "friendsofphp/php-cs-fixer": "^3.4",
  4815. "guzzlehttp/promises": "^1.0|^2.0",
  4816. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4817. "monolog/monolog": "^1.6|^2.0|^3.0",
  4818. "phpbench/phpbench": "^1.0",
  4819. "phpstan/phpstan": "^1.3",
  4820. "phpunit/phpunit": "^8.5.14|^9.4",
  4821. "symfony/phpunit-bridge": "^5.2|^6.0|^7.0",
  4822. "vimeo/psalm": "^4.17"
  4823. },
  4824. "suggest": {
  4825. "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
  4826. },
  4827. "type": "library",
  4828. "autoload": {
  4829. "files": [
  4830. "src/functions.php"
  4831. ],
  4832. "psr-4": {
  4833. "Sentry\\": "src/"
  4834. }
  4835. },
  4836. "notification-url": "https://packagist.org/downloads/",
  4837. "license": [
  4838. "MIT"
  4839. ],
  4840. "authors": [
  4841. {
  4842. "name": "Sentry",
  4843. "email": "[email protected]"
  4844. }
  4845. ],
  4846. "description": "PHP SDK for Sentry (http://sentry.io)",
  4847. "homepage": "http://sentry.io",
  4848. "keywords": [
  4849. "crash-reporting",
  4850. "crash-reports",
  4851. "error-handler",
  4852. "error-monitoring",
  4853. "log",
  4854. "logging",
  4855. "profiling",
  4856. "sentry",
  4857. "tracing"
  4858. ],
  4859. "support": {
  4860. "issues": "https://github.com/getsentry/sentry-php/issues",
  4861. "source": "https://github.com/getsentry/sentry-php/tree/4.8.0"
  4862. },
  4863. "funding": [
  4864. {
  4865. "url": "https://sentry.io/",
  4866. "type": "custom"
  4867. },
  4868. {
  4869. "url": "https://sentry.io/pricing/",
  4870. "type": "custom"
  4871. }
  4872. ],
  4873. "time": "2024-06-05T13:18:43+00:00"
  4874. },
  4875. {
  4876. "name": "slim/http",
  4877. "version": "1.3",
  4878. "source": {
  4879. "type": "git",
  4880. "url": "https://github.com/slimphp/Slim-Http.git",
  4881. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb"
  4882. },
  4883. "dist": {
  4884. "type": "zip",
  4885. "url": "https://api.github.com/repos/slimphp/Slim-Http/zipball/9542edbe469b7c0f3084c2467efea972387f5beb",
  4886. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb",
  4887. "shasum": ""
  4888. },
  4889. "require": {
  4890. "ext-fileinfo": "*",
  4891. "ext-json": "*",
  4892. "ext-libxml": "*",
  4893. "ext-simplexml": "*",
  4894. "php": "^7.4 || ^8.0",
  4895. "psr/http-factory": "^1.0",
  4896. "psr/http-message": "^1.0"
  4897. },
  4898. "require-dev": {
  4899. "adriansuter/php-autoload-override": "^1.3",
  4900. "laminas/laminas-diactoros": "^2.17",
  4901. "nyholm/psr7": "^1.5",
  4902. "php-http/psr7-integration-tests": "dev-master",
  4903. "phpstan/phpstan": "^1.8",
  4904. "phpunit/phpunit": "^9.5",
  4905. "squizlabs/php_codesniffer": "^3.7"
  4906. },
  4907. "type": "library",
  4908. "autoload": {
  4909. "psr-4": {
  4910. "Slim\\Http\\": "src/"
  4911. }
  4912. },
  4913. "notification-url": "https://packagist.org/downloads/",
  4914. "license": [
  4915. "MIT"
  4916. ],
  4917. "authors": [
  4918. {
  4919. "name": "Josh Lockhart",
  4920. "email": "[email protected]",
  4921. "homepage": "http://joshlockhart.com"
  4922. },
  4923. {
  4924. "name": "Andrew Smith",
  4925. "email": "[email protected]",
  4926. "homepage": "http://silentworks.co.uk"
  4927. },
  4928. {
  4929. "name": "Rob Allen",
  4930. "email": "[email protected]",
  4931. "homepage": "http://akrabat.com"
  4932. },
  4933. {
  4934. "name": "Pierre Berube",
  4935. "email": "[email protected]",
  4936. "homepage": "http://www.lgse.com"
  4937. }
  4938. ],
  4939. "description": "Slim PSR-7 Object Decorators",
  4940. "homepage": "http://slimframework.com",
  4941. "keywords": [
  4942. "http",
  4943. "psr-7",
  4944. "psr7"
  4945. ],
  4946. "support": {
  4947. "issues": "https://github.com/slimphp/Slim-Http/issues",
  4948. "source": "https://github.com/slimphp/Slim-Http/tree/1.3"
  4949. },
  4950. "time": "2022-09-14T15:45:07+00:00"
  4951. },
  4952. {
  4953. "name": "slim/slim",
  4954. "version": "4.14.0",
  4955. "source": {
  4956. "type": "git",
  4957. "url": "https://github.com/slimphp/Slim.git",
  4958. "reference": "5943393b88716eb9e82c4161caa956af63423913"
  4959. },
  4960. "dist": {
  4961. "type": "zip",
  4962. "url": "https://api.github.com/repos/slimphp/Slim/zipball/5943393b88716eb9e82c4161caa956af63423913",
  4963. "reference": "5943393b88716eb9e82c4161caa956af63423913",
  4964. "shasum": ""
  4965. },
  4966. "require": {
  4967. "ext-json": "*",
  4968. "nikic/fast-route": "^1.3",
  4969. "php": "^7.4 || ^8.0",
  4970. "psr/container": "^1.0 || ^2.0",
  4971. "psr/http-factory": "^1.1",
  4972. "psr/http-message": "^1.1 || ^2.0",
  4973. "psr/http-server-handler": "^1.0",
  4974. "psr/http-server-middleware": "^1.0",
  4975. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4976. },
  4977. "require-dev": {
  4978. "adriansuter/php-autoload-override": "^1.4",
  4979. "ext-simplexml": "*",
  4980. "guzzlehttp/psr7": "^2.6",
  4981. "httpsoft/http-message": "^1.1",
  4982. "httpsoft/http-server-request": "^1.1",
  4983. "laminas/laminas-diactoros": "^2.17 || ^3",
  4984. "nyholm/psr7": "^1.8",
  4985. "nyholm/psr7-server": "^1.1",
  4986. "phpspec/prophecy": "^1.19",
  4987. "phpspec/prophecy-phpunit": "^2.1",
  4988. "phpstan/phpstan": "^1.11",
  4989. "phpunit/phpunit": "^9.6",
  4990. "slim/http": "^1.3",
  4991. "slim/psr7": "^1.6",
  4992. "squizlabs/php_codesniffer": "^3.10",
  4993. "vimeo/psalm": "^5.24"
  4994. },
  4995. "suggest": {
  4996. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  4997. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  4998. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  4999. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  5000. },
  5001. "type": "library",
  5002. "autoload": {
  5003. "psr-4": {
  5004. "Slim\\": "Slim"
  5005. }
  5006. },
  5007. "notification-url": "https://packagist.org/downloads/",
  5008. "license": [
  5009. "MIT"
  5010. ],
  5011. "authors": [
  5012. {
  5013. "name": "Josh Lockhart",
  5014. "email": "[email protected]",
  5015. "homepage": "https://joshlockhart.com"
  5016. },
  5017. {
  5018. "name": "Andrew Smith",
  5019. "email": "[email protected]",
  5020. "homepage": "http://silentworks.co.uk"
  5021. },
  5022. {
  5023. "name": "Rob Allen",
  5024. "email": "[email protected]",
  5025. "homepage": "http://akrabat.com"
  5026. },
  5027. {
  5028. "name": "Pierre Berube",
  5029. "email": "[email protected]",
  5030. "homepage": "http://www.lgse.com"
  5031. },
  5032. {
  5033. "name": "Gabriel Manricks",
  5034. "email": "[email protected]",
  5035. "homepage": "http://gabrielmanricks.com"
  5036. }
  5037. ],
  5038. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  5039. "homepage": "https://www.slimframework.com",
  5040. "keywords": [
  5041. "api",
  5042. "framework",
  5043. "micro",
  5044. "router"
  5045. ],
  5046. "support": {
  5047. "docs": "https://www.slimframework.com/docs/v4/",
  5048. "forum": "https://discourse.slimframework.com/",
  5049. "irc": "irc://irc.freenode.net:6667/slimphp",
  5050. "issues": "https://github.com/slimphp/Slim/issues",
  5051. "rss": "https://www.slimframework.com/blog/feed.rss",
  5052. "slack": "https://slimphp.slack.com/",
  5053. "source": "https://github.com/slimphp/Slim",
  5054. "wiki": "https://github.com/slimphp/Slim/wiki"
  5055. },
  5056. "funding": [
  5057. {
  5058. "url": "https://opencollective.com/slimphp",
  5059. "type": "open_collective"
  5060. },
  5061. {
  5062. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  5063. "type": "tidelift"
  5064. }
  5065. ],
  5066. "time": "2024-06-13T08:54:48+00:00"
  5067. },
  5068. {
  5069. "name": "smarty/smarty",
  5070. "version": "v5.3.0",
  5071. "source": {
  5072. "type": "git",
  5073. "url": "https://github.com/smarty-php/smarty.git",
  5074. "reference": "353ca06d076da46964b0c709d8e4dd87677195b8"
  5075. },
  5076. "dist": {
  5077. "type": "zip",
  5078. "url": "https://api.github.com/repos/smarty-php/smarty/zipball/353ca06d076da46964b0c709d8e4dd87677195b8",
  5079. "reference": "353ca06d076da46964b0c709d8e4dd87677195b8",
  5080. "shasum": ""
  5081. },
  5082. "require": {
  5083. "php": "^7.2 || ^8.0",
  5084. "symfony/polyfill-mbstring": "^1.27"
  5085. },
  5086. "require-dev": {
  5087. "phpunit/phpunit": "^8.5 || ^7.5",
  5088. "smarty/smarty-lexer": "^4.0.2"
  5089. },
  5090. "type": "library",
  5091. "extra": {
  5092. "branch-alias": {
  5093. "dev-master": "5.0.x-dev"
  5094. }
  5095. },
  5096. "autoload": {
  5097. "files": [
  5098. "src/functions.php"
  5099. ],
  5100. "psr-4": {
  5101. "Smarty\\": "src/"
  5102. }
  5103. },
  5104. "notification-url": "https://packagist.org/downloads/",
  5105. "license": [
  5106. "LGPL-3.0"
  5107. ],
  5108. "authors": [
  5109. {
  5110. "name": "Monte Ohrt",
  5111. "email": "[email protected]"
  5112. },
  5113. {
  5114. "name": "Uwe Tews",
  5115. "email": "[email protected]"
  5116. },
  5117. {
  5118. "name": "Rodney Rehm",
  5119. "email": "[email protected]"
  5120. },
  5121. {
  5122. "name": "Simon Wisselink",
  5123. "homepage": "https://www.iwink.nl/"
  5124. }
  5125. ],
  5126. "description": "Smarty - the compiling PHP template engine",
  5127. "homepage": "https://smarty-php.github.io/smarty/",
  5128. "keywords": [
  5129. "templating"
  5130. ],
  5131. "support": {
  5132. "forum": "https://github.com/smarty-php/smarty/discussions",
  5133. "issues": "https://github.com/smarty-php/smarty/issues",
  5134. "source": "https://github.com/smarty-php/smarty/tree/v5.3.0"
  5135. },
  5136. "time": "2024-05-30T11:14:56+00:00"
  5137. },
  5138. {
  5139. "name": "srmklive/paypal",
  5140. "version": "3.0.31",
  5141. "source": {
  5142. "type": "git",
  5143. "url": "https://github.com/srmklive/laravel-paypal.git",
  5144. "reference": "378ac23b264c02481d15ece97a041520fc0814da"
  5145. },
  5146. "dist": {
  5147. "type": "zip",
  5148. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/378ac23b264c02481d15ece97a041520fc0814da",
  5149. "reference": "378ac23b264c02481d15ece97a041520fc0814da",
  5150. "shasum": ""
  5151. },
  5152. "require": {
  5153. "ext-curl": "*",
  5154. "guzzlehttp/guzzle": "~7.0",
  5155. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|^10.0|^11.0",
  5156. "nesbot/carbon": "~2.0|^3.0",
  5157. "php": ">=7.2|^8.0"
  5158. },
  5159. "require-dev": {
  5160. "phpstan/phpstan": "^1.10",
  5161. "phpunit/phpunit": "^8.0|^9.0|^10.0|^11.0",
  5162. "symfony/var-dumper": "~5.0|^6.0|^7.0"
  5163. },
  5164. "type": "library",
  5165. "extra": {
  5166. "laravel": {
  5167. "providers": [
  5168. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  5169. ],
  5170. "aliases": {
  5171. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  5172. }
  5173. }
  5174. },
  5175. "autoload": {
  5176. "psr-4": {
  5177. "Srmklive\\PayPal\\": "src/"
  5178. }
  5179. },
  5180. "notification-url": "https://packagist.org/downloads/",
  5181. "license": [
  5182. "MIT"
  5183. ],
  5184. "authors": [
  5185. {
  5186. "name": "Raza Mehdi",
  5187. "email": "[email protected]"
  5188. }
  5189. ],
  5190. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  5191. "keywords": [
  5192. "http",
  5193. "laravel paypal",
  5194. "paypal",
  5195. "rest",
  5196. "web service"
  5197. ],
  5198. "support": {
  5199. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  5200. "source": "https://github.com/srmklive/laravel-paypal/tree/3.0.31"
  5201. },
  5202. "time": "2024-05-29T11:03:10+00:00"
  5203. },
  5204. {
  5205. "name": "starkbank/ecdsa",
  5206. "version": "0.0.5",
  5207. "source": {
  5208. "type": "git",
  5209. "url": "https://github.com/starkbank/ecdsa-php.git",
  5210. "reference": "484bedac47bac4012dc73df91da221f0a66845cb"
  5211. },
  5212. "dist": {
  5213. "type": "zip",
  5214. "url": "https://api.github.com/repos/starkbank/ecdsa-php/zipball/484bedac47bac4012dc73df91da221f0a66845cb",
  5215. "reference": "484bedac47bac4012dc73df91da221f0a66845cb",
  5216. "shasum": ""
  5217. },
  5218. "require": {
  5219. "php": ">=5.5"
  5220. },
  5221. "type": "library",
  5222. "autoload": {
  5223. "files": [
  5224. "src/ellipticcurve.php"
  5225. ]
  5226. },
  5227. "notification-url": "https://packagist.org/downloads/",
  5228. "license": [
  5229. "MIT"
  5230. ],
  5231. "authors": [
  5232. {
  5233. "name": "StarkBank",
  5234. "email": "[email protected]",
  5235. "homepage": "https://starkbank.com",
  5236. "role": "Developer"
  5237. }
  5238. ],
  5239. "description": "fast openSSL-compatible implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA)",
  5240. "homepage": "https://github.com/starkbank/ecdsa-php",
  5241. "support": {
  5242. "issues": "https://github.com/starkbank/ecdsa-php/issues",
  5243. "source": "https://github.com/starkbank/ecdsa-php/tree/v0.0.5"
  5244. },
  5245. "time": "2021-06-06T22:24:49+00:00"
  5246. },
  5247. {
  5248. "name": "stripe/stripe-php",
  5249. "version": "v14.10.0",
  5250. "source": {
  5251. "type": "git",
  5252. "url": "https://github.com/stripe/stripe-php.git",
  5253. "reference": "7e1c4b5d2beadeaeddc42fd1f8a50fdb18b37f30"
  5254. },
  5255. "dist": {
  5256. "type": "zip",
  5257. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/7e1c4b5d2beadeaeddc42fd1f8a50fdb18b37f30",
  5258. "reference": "7e1c4b5d2beadeaeddc42fd1f8a50fdb18b37f30",
  5259. "shasum": ""
  5260. },
  5261. "require": {
  5262. "ext-curl": "*",
  5263. "ext-json": "*",
  5264. "ext-mbstring": "*",
  5265. "php": ">=5.6.0"
  5266. },
  5267. "require-dev": {
  5268. "friendsofphp/php-cs-fixer": "3.5.0",
  5269. "phpstan/phpstan": "^1.2",
  5270. "phpunit/phpunit": "^5.7 || ^9.0"
  5271. },
  5272. "type": "library",
  5273. "extra": {
  5274. "branch-alias": {
  5275. "dev-master": "2.0-dev"
  5276. }
  5277. },
  5278. "autoload": {
  5279. "psr-4": {
  5280. "Stripe\\": "lib/"
  5281. }
  5282. },
  5283. "notification-url": "https://packagist.org/downloads/",
  5284. "license": [
  5285. "MIT"
  5286. ],
  5287. "authors": [
  5288. {
  5289. "name": "Stripe and contributors",
  5290. "homepage": "https://github.com/stripe/stripe-php/contributors"
  5291. }
  5292. ],
  5293. "description": "Stripe PHP Library",
  5294. "homepage": "https://stripe.com/",
  5295. "keywords": [
  5296. "api",
  5297. "payment processing",
  5298. "stripe"
  5299. ],
  5300. "support": {
  5301. "issues": "https://github.com/stripe/stripe-php/issues",
  5302. "source": "https://github.com/stripe/stripe-php/tree/v14.10.0"
  5303. },
  5304. "time": "2024-06-13T21:04:47+00:00"
  5305. },
  5306. {
  5307. "name": "symfony/clock",
  5308. "version": "v7.1.1",
  5309. "source": {
  5310. "type": "git",
  5311. "url": "https://github.com/symfony/clock.git",
  5312. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  5313. },
  5314. "dist": {
  5315. "type": "zip",
  5316. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  5317. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  5318. "shasum": ""
  5319. },
  5320. "require": {
  5321. "php": ">=8.2",
  5322. "psr/clock": "^1.0",
  5323. "symfony/polyfill-php83": "^1.28"
  5324. },
  5325. "provide": {
  5326. "psr/clock-implementation": "1.0"
  5327. },
  5328. "type": "library",
  5329. "autoload": {
  5330. "files": [
  5331. "Resources/now.php"
  5332. ],
  5333. "psr-4": {
  5334. "Symfony\\Component\\Clock\\": ""
  5335. },
  5336. "exclude-from-classmap": [
  5337. "/Tests/"
  5338. ]
  5339. },
  5340. "notification-url": "https://packagist.org/downloads/",
  5341. "license": [
  5342. "MIT"
  5343. ],
  5344. "authors": [
  5345. {
  5346. "name": "Nicolas Grekas",
  5347. "email": "[email protected]"
  5348. },
  5349. {
  5350. "name": "Symfony Community",
  5351. "homepage": "https://symfony.com/contributors"
  5352. }
  5353. ],
  5354. "description": "Decouples applications from the system clock",
  5355. "homepage": "https://symfony.com",
  5356. "keywords": [
  5357. "clock",
  5358. "psr20",
  5359. "time"
  5360. ],
  5361. "support": {
  5362. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  5363. },
  5364. "funding": [
  5365. {
  5366. "url": "https://symfony.com/sponsor",
  5367. "type": "custom"
  5368. },
  5369. {
  5370. "url": "https://github.com/fabpot",
  5371. "type": "github"
  5372. },
  5373. {
  5374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5375. "type": "tidelift"
  5376. }
  5377. ],
  5378. "time": "2024-05-31T14:57:53+00:00"
  5379. },
  5380. {
  5381. "name": "symfony/deprecation-contracts",
  5382. "version": "v3.5.0",
  5383. "source": {
  5384. "type": "git",
  5385. "url": "https://github.com/symfony/deprecation-contracts.git",
  5386. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5387. },
  5388. "dist": {
  5389. "type": "zip",
  5390. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5391. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5392. "shasum": ""
  5393. },
  5394. "require": {
  5395. "php": ">=8.1"
  5396. },
  5397. "type": "library",
  5398. "extra": {
  5399. "branch-alias": {
  5400. "dev-main": "3.5-dev"
  5401. },
  5402. "thanks": {
  5403. "name": "symfony/contracts",
  5404. "url": "https://github.com/symfony/contracts"
  5405. }
  5406. },
  5407. "autoload": {
  5408. "files": [
  5409. "function.php"
  5410. ]
  5411. },
  5412. "notification-url": "https://packagist.org/downloads/",
  5413. "license": [
  5414. "MIT"
  5415. ],
  5416. "authors": [
  5417. {
  5418. "name": "Nicolas Grekas",
  5419. "email": "[email protected]"
  5420. },
  5421. {
  5422. "name": "Symfony Community",
  5423. "homepage": "https://symfony.com/contributors"
  5424. }
  5425. ],
  5426. "description": "A generic function and convention to trigger deprecation notices",
  5427. "homepage": "https://symfony.com",
  5428. "support": {
  5429. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5430. },
  5431. "funding": [
  5432. {
  5433. "url": "https://symfony.com/sponsor",
  5434. "type": "custom"
  5435. },
  5436. {
  5437. "url": "https://github.com/fabpot",
  5438. "type": "github"
  5439. },
  5440. {
  5441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5442. "type": "tidelift"
  5443. }
  5444. ],
  5445. "time": "2024-04-18T09:32:20+00:00"
  5446. },
  5447. {
  5448. "name": "symfony/http-client",
  5449. "version": "v7.1.1",
  5450. "source": {
  5451. "type": "git",
  5452. "url": "https://github.com/symfony/http-client.git",
  5453. "reference": "1ec24a54d1885b11e862d6ddab31bd6749720d20"
  5454. },
  5455. "dist": {
  5456. "type": "zip",
  5457. "url": "https://api.github.com/repos/symfony/http-client/zipball/1ec24a54d1885b11e862d6ddab31bd6749720d20",
  5458. "reference": "1ec24a54d1885b11e862d6ddab31bd6749720d20",
  5459. "shasum": ""
  5460. },
  5461. "require": {
  5462. "php": ">=8.2",
  5463. "psr/log": "^1|^2|^3",
  5464. "symfony/deprecation-contracts": "^2.5|^3",
  5465. "symfony/http-client-contracts": "^3.4.1",
  5466. "symfony/service-contracts": "^2.5|^3"
  5467. },
  5468. "conflict": {
  5469. "php-http/discovery": "<1.15",
  5470. "symfony/http-foundation": "<6.4"
  5471. },
  5472. "provide": {
  5473. "php-http/async-client-implementation": "*",
  5474. "php-http/client-implementation": "*",
  5475. "psr/http-client-implementation": "1.0",
  5476. "symfony/http-client-implementation": "3.0"
  5477. },
  5478. "require-dev": {
  5479. "amphp/amp": "^2.5",
  5480. "amphp/http-client": "^4.2.1",
  5481. "amphp/http-tunnel": "^1.0",
  5482. "amphp/socket": "^1.1",
  5483. "guzzlehttp/promises": "^1.4|^2.0",
  5484. "nyholm/psr7": "^1.0",
  5485. "php-http/httplug": "^1.0|^2.0",
  5486. "psr/http-client": "^1.0",
  5487. "symfony/dependency-injection": "^6.4|^7.0",
  5488. "symfony/http-kernel": "^6.4|^7.0",
  5489. "symfony/messenger": "^6.4|^7.0",
  5490. "symfony/process": "^6.4|^7.0",
  5491. "symfony/rate-limiter": "^6.4|^7.0",
  5492. "symfony/stopwatch": "^6.4|^7.0"
  5493. },
  5494. "type": "library",
  5495. "autoload": {
  5496. "psr-4": {
  5497. "Symfony\\Component\\HttpClient\\": ""
  5498. },
  5499. "exclude-from-classmap": [
  5500. "/Tests/"
  5501. ]
  5502. },
  5503. "notification-url": "https://packagist.org/downloads/",
  5504. "license": [
  5505. "MIT"
  5506. ],
  5507. "authors": [
  5508. {
  5509. "name": "Nicolas Grekas",
  5510. "email": "[email protected]"
  5511. },
  5512. {
  5513. "name": "Symfony Community",
  5514. "homepage": "https://symfony.com/contributors"
  5515. }
  5516. ],
  5517. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5518. "homepage": "https://symfony.com",
  5519. "keywords": [
  5520. "http"
  5521. ],
  5522. "support": {
  5523. "source": "https://github.com/symfony/http-client/tree/v7.1.1"
  5524. },
  5525. "funding": [
  5526. {
  5527. "url": "https://symfony.com/sponsor",
  5528. "type": "custom"
  5529. },
  5530. {
  5531. "url": "https://github.com/fabpot",
  5532. "type": "github"
  5533. },
  5534. {
  5535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5536. "type": "tidelift"
  5537. }
  5538. ],
  5539. "time": "2024-05-31T14:57:53+00:00"
  5540. },
  5541. {
  5542. "name": "symfony/http-client-contracts",
  5543. "version": "v3.5.0",
  5544. "source": {
  5545. "type": "git",
  5546. "url": "https://github.com/symfony/http-client-contracts.git",
  5547. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  5548. },
  5549. "dist": {
  5550. "type": "zip",
  5551. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  5552. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  5553. "shasum": ""
  5554. },
  5555. "require": {
  5556. "php": ">=8.1"
  5557. },
  5558. "type": "library",
  5559. "extra": {
  5560. "branch-alias": {
  5561. "dev-main": "3.5-dev"
  5562. },
  5563. "thanks": {
  5564. "name": "symfony/contracts",
  5565. "url": "https://github.com/symfony/contracts"
  5566. }
  5567. },
  5568. "autoload": {
  5569. "psr-4": {
  5570. "Symfony\\Contracts\\HttpClient\\": ""
  5571. },
  5572. "exclude-from-classmap": [
  5573. "/Test/"
  5574. ]
  5575. },
  5576. "notification-url": "https://packagist.org/downloads/",
  5577. "license": [
  5578. "MIT"
  5579. ],
  5580. "authors": [
  5581. {
  5582. "name": "Nicolas Grekas",
  5583. "email": "[email protected]"
  5584. },
  5585. {
  5586. "name": "Symfony Community",
  5587. "homepage": "https://symfony.com/contributors"
  5588. }
  5589. ],
  5590. "description": "Generic abstractions related to HTTP clients",
  5591. "homepage": "https://symfony.com",
  5592. "keywords": [
  5593. "abstractions",
  5594. "contracts",
  5595. "decoupling",
  5596. "interfaces",
  5597. "interoperability",
  5598. "standards"
  5599. ],
  5600. "support": {
  5601. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  5602. },
  5603. "funding": [
  5604. {
  5605. "url": "https://symfony.com/sponsor",
  5606. "type": "custom"
  5607. },
  5608. {
  5609. "url": "https://github.com/fabpot",
  5610. "type": "github"
  5611. },
  5612. {
  5613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5614. "type": "tidelift"
  5615. }
  5616. ],
  5617. "time": "2024-04-18T09:32:20+00:00"
  5618. },
  5619. {
  5620. "name": "symfony/options-resolver",
  5621. "version": "v7.1.1",
  5622. "source": {
  5623. "type": "git",
  5624. "url": "https://github.com/symfony/options-resolver.git",
  5625. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55"
  5626. },
  5627. "dist": {
  5628. "type": "zip",
  5629. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5630. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5631. "shasum": ""
  5632. },
  5633. "require": {
  5634. "php": ">=8.2",
  5635. "symfony/deprecation-contracts": "^2.5|^3"
  5636. },
  5637. "type": "library",
  5638. "autoload": {
  5639. "psr-4": {
  5640. "Symfony\\Component\\OptionsResolver\\": ""
  5641. },
  5642. "exclude-from-classmap": [
  5643. "/Tests/"
  5644. ]
  5645. },
  5646. "notification-url": "https://packagist.org/downloads/",
  5647. "license": [
  5648. "MIT"
  5649. ],
  5650. "authors": [
  5651. {
  5652. "name": "Fabien Potencier",
  5653. "email": "[email protected]"
  5654. },
  5655. {
  5656. "name": "Symfony Community",
  5657. "homepage": "https://symfony.com/contributors"
  5658. }
  5659. ],
  5660. "description": "Provides an improved replacement for the array_replace PHP function",
  5661. "homepage": "https://symfony.com",
  5662. "keywords": [
  5663. "config",
  5664. "configuration",
  5665. "options"
  5666. ],
  5667. "support": {
  5668. "source": "https://github.com/symfony/options-resolver/tree/v7.1.1"
  5669. },
  5670. "funding": [
  5671. {
  5672. "url": "https://symfony.com/sponsor",
  5673. "type": "custom"
  5674. },
  5675. {
  5676. "url": "https://github.com/fabpot",
  5677. "type": "github"
  5678. },
  5679. {
  5680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5681. "type": "tidelift"
  5682. }
  5683. ],
  5684. "time": "2024-05-31T14:57:53+00:00"
  5685. },
  5686. {
  5687. "name": "symfony/polyfill-ctype",
  5688. "version": "v1.29.0",
  5689. "source": {
  5690. "type": "git",
  5691. "url": "https://github.com/symfony/polyfill-ctype.git",
  5692. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  5693. },
  5694. "dist": {
  5695. "type": "zip",
  5696. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5697. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5698. "shasum": ""
  5699. },
  5700. "require": {
  5701. "php": ">=7.1"
  5702. },
  5703. "provide": {
  5704. "ext-ctype": "*"
  5705. },
  5706. "suggest": {
  5707. "ext-ctype": "For best performance"
  5708. },
  5709. "type": "library",
  5710. "extra": {
  5711. "thanks": {
  5712. "name": "symfony/polyfill",
  5713. "url": "https://github.com/symfony/polyfill"
  5714. }
  5715. },
  5716. "autoload": {
  5717. "files": [
  5718. "bootstrap.php"
  5719. ],
  5720. "psr-4": {
  5721. "Symfony\\Polyfill\\Ctype\\": ""
  5722. }
  5723. },
  5724. "notification-url": "https://packagist.org/downloads/",
  5725. "license": [
  5726. "MIT"
  5727. ],
  5728. "authors": [
  5729. {
  5730. "name": "Gert de Pagter",
  5731. "email": "[email protected]"
  5732. },
  5733. {
  5734. "name": "Symfony Community",
  5735. "homepage": "https://symfony.com/contributors"
  5736. }
  5737. ],
  5738. "description": "Symfony polyfill for ctype functions",
  5739. "homepage": "https://symfony.com",
  5740. "keywords": [
  5741. "compatibility",
  5742. "ctype",
  5743. "polyfill",
  5744. "portable"
  5745. ],
  5746. "support": {
  5747. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  5748. },
  5749. "funding": [
  5750. {
  5751. "url": "https://symfony.com/sponsor",
  5752. "type": "custom"
  5753. },
  5754. {
  5755. "url": "https://github.com/fabpot",
  5756. "type": "github"
  5757. },
  5758. {
  5759. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5760. "type": "tidelift"
  5761. }
  5762. ],
  5763. "time": "2024-01-29T20:11:03+00:00"
  5764. },
  5765. {
  5766. "name": "symfony/polyfill-iconv",
  5767. "version": "v1.29.0",
  5768. "source": {
  5769. "type": "git",
  5770. "url": "https://github.com/symfony/polyfill-iconv.git",
  5771. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f"
  5772. },
  5773. "dist": {
  5774. "type": "zip",
  5775. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  5776. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  5777. "shasum": ""
  5778. },
  5779. "require": {
  5780. "php": ">=7.1"
  5781. },
  5782. "provide": {
  5783. "ext-iconv": "*"
  5784. },
  5785. "suggest": {
  5786. "ext-iconv": "For best performance"
  5787. },
  5788. "type": "library",
  5789. "extra": {
  5790. "thanks": {
  5791. "name": "symfony/polyfill",
  5792. "url": "https://github.com/symfony/polyfill"
  5793. }
  5794. },
  5795. "autoload": {
  5796. "files": [
  5797. "bootstrap.php"
  5798. ],
  5799. "psr-4": {
  5800. "Symfony\\Polyfill\\Iconv\\": ""
  5801. }
  5802. },
  5803. "notification-url": "https://packagist.org/downloads/",
  5804. "license": [
  5805. "MIT"
  5806. ],
  5807. "authors": [
  5808. {
  5809. "name": "Nicolas Grekas",
  5810. "email": "[email protected]"
  5811. },
  5812. {
  5813. "name": "Symfony Community",
  5814. "homepage": "https://symfony.com/contributors"
  5815. }
  5816. ],
  5817. "description": "Symfony polyfill for the Iconv extension",
  5818. "homepage": "https://symfony.com",
  5819. "keywords": [
  5820. "compatibility",
  5821. "iconv",
  5822. "polyfill",
  5823. "portable",
  5824. "shim"
  5825. ],
  5826. "support": {
  5827. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0"
  5828. },
  5829. "funding": [
  5830. {
  5831. "url": "https://symfony.com/sponsor",
  5832. "type": "custom"
  5833. },
  5834. {
  5835. "url": "https://github.com/fabpot",
  5836. "type": "github"
  5837. },
  5838. {
  5839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5840. "type": "tidelift"
  5841. }
  5842. ],
  5843. "time": "2024-01-29T20:11:03+00:00"
  5844. },
  5845. {
  5846. "name": "symfony/polyfill-intl-grapheme",
  5847. "version": "v1.29.0",
  5848. "source": {
  5849. "type": "git",
  5850. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5851. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  5852. },
  5853. "dist": {
  5854. "type": "zip",
  5855. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5856. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5857. "shasum": ""
  5858. },
  5859. "require": {
  5860. "php": ">=7.1"
  5861. },
  5862. "suggest": {
  5863. "ext-intl": "For best performance"
  5864. },
  5865. "type": "library",
  5866. "extra": {
  5867. "thanks": {
  5868. "name": "symfony/polyfill",
  5869. "url": "https://github.com/symfony/polyfill"
  5870. }
  5871. },
  5872. "autoload": {
  5873. "files": [
  5874. "bootstrap.php"
  5875. ],
  5876. "psr-4": {
  5877. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5878. }
  5879. },
  5880. "notification-url": "https://packagist.org/downloads/",
  5881. "license": [
  5882. "MIT"
  5883. ],
  5884. "authors": [
  5885. {
  5886. "name": "Nicolas Grekas",
  5887. "email": "[email protected]"
  5888. },
  5889. {
  5890. "name": "Symfony Community",
  5891. "homepage": "https://symfony.com/contributors"
  5892. }
  5893. ],
  5894. "description": "Symfony polyfill for intl's grapheme_* functions",
  5895. "homepage": "https://symfony.com",
  5896. "keywords": [
  5897. "compatibility",
  5898. "grapheme",
  5899. "intl",
  5900. "polyfill",
  5901. "portable",
  5902. "shim"
  5903. ],
  5904. "support": {
  5905. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  5906. },
  5907. "funding": [
  5908. {
  5909. "url": "https://symfony.com/sponsor",
  5910. "type": "custom"
  5911. },
  5912. {
  5913. "url": "https://github.com/fabpot",
  5914. "type": "github"
  5915. },
  5916. {
  5917. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5918. "type": "tidelift"
  5919. }
  5920. ],
  5921. "time": "2024-01-29T20:11:03+00:00"
  5922. },
  5923. {
  5924. "name": "symfony/polyfill-intl-normalizer",
  5925. "version": "v1.29.0",
  5926. "source": {
  5927. "type": "git",
  5928. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5929. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  5930. },
  5931. "dist": {
  5932. "type": "zip",
  5933. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  5934. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  5935. "shasum": ""
  5936. },
  5937. "require": {
  5938. "php": ">=7.1"
  5939. },
  5940. "suggest": {
  5941. "ext-intl": "For best performance"
  5942. },
  5943. "type": "library",
  5944. "extra": {
  5945. "thanks": {
  5946. "name": "symfony/polyfill",
  5947. "url": "https://github.com/symfony/polyfill"
  5948. }
  5949. },
  5950. "autoload": {
  5951. "files": [
  5952. "bootstrap.php"
  5953. ],
  5954. "psr-4": {
  5955. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5956. },
  5957. "classmap": [
  5958. "Resources/stubs"
  5959. ]
  5960. },
  5961. "notification-url": "https://packagist.org/downloads/",
  5962. "license": [
  5963. "MIT"
  5964. ],
  5965. "authors": [
  5966. {
  5967. "name": "Nicolas Grekas",
  5968. "email": "[email protected]"
  5969. },
  5970. {
  5971. "name": "Symfony Community",
  5972. "homepage": "https://symfony.com/contributors"
  5973. }
  5974. ],
  5975. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5976. "homepage": "https://symfony.com",
  5977. "keywords": [
  5978. "compatibility",
  5979. "intl",
  5980. "normalizer",
  5981. "polyfill",
  5982. "portable",
  5983. "shim"
  5984. ],
  5985. "support": {
  5986. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  5987. },
  5988. "funding": [
  5989. {
  5990. "url": "https://symfony.com/sponsor",
  5991. "type": "custom"
  5992. },
  5993. {
  5994. "url": "https://github.com/fabpot",
  5995. "type": "github"
  5996. },
  5997. {
  5998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5999. "type": "tidelift"
  6000. }
  6001. ],
  6002. "time": "2024-01-29T20:11:03+00:00"
  6003. },
  6004. {
  6005. "name": "symfony/polyfill-mbstring",
  6006. "version": "v1.29.0",
  6007. "source": {
  6008. "type": "git",
  6009. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6010. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6011. },
  6012. "dist": {
  6013. "type": "zip",
  6014. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6015. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6016. "shasum": ""
  6017. },
  6018. "require": {
  6019. "php": ">=7.1"
  6020. },
  6021. "provide": {
  6022. "ext-mbstring": "*"
  6023. },
  6024. "suggest": {
  6025. "ext-mbstring": "For best performance"
  6026. },
  6027. "type": "library",
  6028. "extra": {
  6029. "thanks": {
  6030. "name": "symfony/polyfill",
  6031. "url": "https://github.com/symfony/polyfill"
  6032. }
  6033. },
  6034. "autoload": {
  6035. "files": [
  6036. "bootstrap.php"
  6037. ],
  6038. "psr-4": {
  6039. "Symfony\\Polyfill\\Mbstring\\": ""
  6040. }
  6041. },
  6042. "notification-url": "https://packagist.org/downloads/",
  6043. "license": [
  6044. "MIT"
  6045. ],
  6046. "authors": [
  6047. {
  6048. "name": "Nicolas Grekas",
  6049. "email": "[email protected]"
  6050. },
  6051. {
  6052. "name": "Symfony Community",
  6053. "homepage": "https://symfony.com/contributors"
  6054. }
  6055. ],
  6056. "description": "Symfony polyfill for the Mbstring extension",
  6057. "homepage": "https://symfony.com",
  6058. "keywords": [
  6059. "compatibility",
  6060. "mbstring",
  6061. "polyfill",
  6062. "portable",
  6063. "shim"
  6064. ],
  6065. "support": {
  6066. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6067. },
  6068. "funding": [
  6069. {
  6070. "url": "https://symfony.com/sponsor",
  6071. "type": "custom"
  6072. },
  6073. {
  6074. "url": "https://github.com/fabpot",
  6075. "type": "github"
  6076. },
  6077. {
  6078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6079. "type": "tidelift"
  6080. }
  6081. ],
  6082. "time": "2024-01-29T20:11:03+00:00"
  6083. },
  6084. {
  6085. "name": "symfony/polyfill-php72",
  6086. "version": "v1.29.0",
  6087. "source": {
  6088. "type": "git",
  6089. "url": "https://github.com/symfony/polyfill-php72.git",
  6090. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  6091. },
  6092. "dist": {
  6093. "type": "zip",
  6094. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  6095. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  6096. "shasum": ""
  6097. },
  6098. "require": {
  6099. "php": ">=7.1"
  6100. },
  6101. "type": "library",
  6102. "extra": {
  6103. "thanks": {
  6104. "name": "symfony/polyfill",
  6105. "url": "https://github.com/symfony/polyfill"
  6106. }
  6107. },
  6108. "autoload": {
  6109. "files": [
  6110. "bootstrap.php"
  6111. ],
  6112. "psr-4": {
  6113. "Symfony\\Polyfill\\Php72\\": ""
  6114. }
  6115. },
  6116. "notification-url": "https://packagist.org/downloads/",
  6117. "license": [
  6118. "MIT"
  6119. ],
  6120. "authors": [
  6121. {
  6122. "name": "Nicolas Grekas",
  6123. "email": "[email protected]"
  6124. },
  6125. {
  6126. "name": "Symfony Community",
  6127. "homepage": "https://symfony.com/contributors"
  6128. }
  6129. ],
  6130. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6131. "homepage": "https://symfony.com",
  6132. "keywords": [
  6133. "compatibility",
  6134. "polyfill",
  6135. "portable",
  6136. "shim"
  6137. ],
  6138. "support": {
  6139. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  6140. },
  6141. "funding": [
  6142. {
  6143. "url": "https://symfony.com/sponsor",
  6144. "type": "custom"
  6145. },
  6146. {
  6147. "url": "https://github.com/fabpot",
  6148. "type": "github"
  6149. },
  6150. {
  6151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6152. "type": "tidelift"
  6153. }
  6154. ],
  6155. "time": "2024-01-29T20:11:03+00:00"
  6156. },
  6157. {
  6158. "name": "symfony/polyfill-php80",
  6159. "version": "v1.29.0",
  6160. "source": {
  6161. "type": "git",
  6162. "url": "https://github.com/symfony/polyfill-php80.git",
  6163. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6164. },
  6165. "dist": {
  6166. "type": "zip",
  6167. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6168. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6169. "shasum": ""
  6170. },
  6171. "require": {
  6172. "php": ">=7.1"
  6173. },
  6174. "type": "library",
  6175. "extra": {
  6176. "thanks": {
  6177. "name": "symfony/polyfill",
  6178. "url": "https://github.com/symfony/polyfill"
  6179. }
  6180. },
  6181. "autoload": {
  6182. "files": [
  6183. "bootstrap.php"
  6184. ],
  6185. "psr-4": {
  6186. "Symfony\\Polyfill\\Php80\\": ""
  6187. },
  6188. "classmap": [
  6189. "Resources/stubs"
  6190. ]
  6191. },
  6192. "notification-url": "https://packagist.org/downloads/",
  6193. "license": [
  6194. "MIT"
  6195. ],
  6196. "authors": [
  6197. {
  6198. "name": "Ion Bazan",
  6199. "email": "[email protected]"
  6200. },
  6201. {
  6202. "name": "Nicolas Grekas",
  6203. "email": "[email protected]"
  6204. },
  6205. {
  6206. "name": "Symfony Community",
  6207. "homepage": "https://symfony.com/contributors"
  6208. }
  6209. ],
  6210. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6211. "homepage": "https://symfony.com",
  6212. "keywords": [
  6213. "compatibility",
  6214. "polyfill",
  6215. "portable",
  6216. "shim"
  6217. ],
  6218. "support": {
  6219. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6220. },
  6221. "funding": [
  6222. {
  6223. "url": "https://symfony.com/sponsor",
  6224. "type": "custom"
  6225. },
  6226. {
  6227. "url": "https://github.com/fabpot",
  6228. "type": "github"
  6229. },
  6230. {
  6231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6232. "type": "tidelift"
  6233. }
  6234. ],
  6235. "time": "2024-01-29T20:11:03+00:00"
  6236. },
  6237. {
  6238. "name": "symfony/polyfill-php83",
  6239. "version": "v1.29.0",
  6240. "source": {
  6241. "type": "git",
  6242. "url": "https://github.com/symfony/polyfill-php83.git",
  6243. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  6244. },
  6245. "dist": {
  6246. "type": "zip",
  6247. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  6248. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  6249. "shasum": ""
  6250. },
  6251. "require": {
  6252. "php": ">=7.1",
  6253. "symfony/polyfill-php80": "^1.14"
  6254. },
  6255. "type": "library",
  6256. "extra": {
  6257. "thanks": {
  6258. "name": "symfony/polyfill",
  6259. "url": "https://github.com/symfony/polyfill"
  6260. }
  6261. },
  6262. "autoload": {
  6263. "files": [
  6264. "bootstrap.php"
  6265. ],
  6266. "psr-4": {
  6267. "Symfony\\Polyfill\\Php83\\": ""
  6268. },
  6269. "classmap": [
  6270. "Resources/stubs"
  6271. ]
  6272. },
  6273. "notification-url": "https://packagist.org/downloads/",
  6274. "license": [
  6275. "MIT"
  6276. ],
  6277. "authors": [
  6278. {
  6279. "name": "Nicolas Grekas",
  6280. "email": "[email protected]"
  6281. },
  6282. {
  6283. "name": "Symfony Community",
  6284. "homepage": "https://symfony.com/contributors"
  6285. }
  6286. ],
  6287. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6288. "homepage": "https://symfony.com",
  6289. "keywords": [
  6290. "compatibility",
  6291. "polyfill",
  6292. "portable",
  6293. "shim"
  6294. ],
  6295. "support": {
  6296. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  6297. },
  6298. "funding": [
  6299. {
  6300. "url": "https://symfony.com/sponsor",
  6301. "type": "custom"
  6302. },
  6303. {
  6304. "url": "https://github.com/fabpot",
  6305. "type": "github"
  6306. },
  6307. {
  6308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6309. "type": "tidelift"
  6310. }
  6311. ],
  6312. "time": "2024-01-29T20:11:03+00:00"
  6313. },
  6314. {
  6315. "name": "symfony/service-contracts",
  6316. "version": "v3.5.0",
  6317. "source": {
  6318. "type": "git",
  6319. "url": "https://github.com/symfony/service-contracts.git",
  6320. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6321. },
  6322. "dist": {
  6323. "type": "zip",
  6324. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6325. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6326. "shasum": ""
  6327. },
  6328. "require": {
  6329. "php": ">=8.1",
  6330. "psr/container": "^1.1|^2.0",
  6331. "symfony/deprecation-contracts": "^2.5|^3"
  6332. },
  6333. "conflict": {
  6334. "ext-psr": "<1.1|>=2"
  6335. },
  6336. "type": "library",
  6337. "extra": {
  6338. "branch-alias": {
  6339. "dev-main": "3.5-dev"
  6340. },
  6341. "thanks": {
  6342. "name": "symfony/contracts",
  6343. "url": "https://github.com/symfony/contracts"
  6344. }
  6345. },
  6346. "autoload": {
  6347. "psr-4": {
  6348. "Symfony\\Contracts\\Service\\": ""
  6349. },
  6350. "exclude-from-classmap": [
  6351. "/Test/"
  6352. ]
  6353. },
  6354. "notification-url": "https://packagist.org/downloads/",
  6355. "license": [
  6356. "MIT"
  6357. ],
  6358. "authors": [
  6359. {
  6360. "name": "Nicolas Grekas",
  6361. "email": "[email protected]"
  6362. },
  6363. {
  6364. "name": "Symfony Community",
  6365. "homepage": "https://symfony.com/contributors"
  6366. }
  6367. ],
  6368. "description": "Generic abstractions related to writing services",
  6369. "homepage": "https://symfony.com",
  6370. "keywords": [
  6371. "abstractions",
  6372. "contracts",
  6373. "decoupling",
  6374. "interfaces",
  6375. "interoperability",
  6376. "standards"
  6377. ],
  6378. "support": {
  6379. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6380. },
  6381. "funding": [
  6382. {
  6383. "url": "https://symfony.com/sponsor",
  6384. "type": "custom"
  6385. },
  6386. {
  6387. "url": "https://github.com/fabpot",
  6388. "type": "github"
  6389. },
  6390. {
  6391. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6392. "type": "tidelift"
  6393. }
  6394. ],
  6395. "time": "2024-04-18T09:32:20+00:00"
  6396. },
  6397. {
  6398. "name": "symfony/translation",
  6399. "version": "v7.1.1",
  6400. "source": {
  6401. "type": "git",
  6402. "url": "https://github.com/symfony/translation.git",
  6403. "reference": "cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3"
  6404. },
  6405. "dist": {
  6406. "type": "zip",
  6407. "url": "https://api.github.com/repos/symfony/translation/zipball/cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3",
  6408. "reference": "cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3",
  6409. "shasum": ""
  6410. },
  6411. "require": {
  6412. "php": ">=8.2",
  6413. "symfony/polyfill-mbstring": "~1.0",
  6414. "symfony/translation-contracts": "^2.5|^3.0"
  6415. },
  6416. "conflict": {
  6417. "symfony/config": "<6.4",
  6418. "symfony/console": "<6.4",
  6419. "symfony/dependency-injection": "<6.4",
  6420. "symfony/http-client-contracts": "<2.5",
  6421. "symfony/http-kernel": "<6.4",
  6422. "symfony/service-contracts": "<2.5",
  6423. "symfony/twig-bundle": "<6.4",
  6424. "symfony/yaml": "<6.4"
  6425. },
  6426. "provide": {
  6427. "symfony/translation-implementation": "2.3|3.0"
  6428. },
  6429. "require-dev": {
  6430. "nikic/php-parser": "^4.18|^5.0",
  6431. "psr/log": "^1|^2|^3",
  6432. "symfony/config": "^6.4|^7.0",
  6433. "symfony/console": "^6.4|^7.0",
  6434. "symfony/dependency-injection": "^6.4|^7.0",
  6435. "symfony/finder": "^6.4|^7.0",
  6436. "symfony/http-client-contracts": "^2.5|^3.0",
  6437. "symfony/http-kernel": "^6.4|^7.0",
  6438. "symfony/intl": "^6.4|^7.0",
  6439. "symfony/polyfill-intl-icu": "^1.21",
  6440. "symfony/routing": "^6.4|^7.0",
  6441. "symfony/service-contracts": "^2.5|^3",
  6442. "symfony/yaml": "^6.4|^7.0"
  6443. },
  6444. "type": "library",
  6445. "autoload": {
  6446. "files": [
  6447. "Resources/functions.php"
  6448. ],
  6449. "psr-4": {
  6450. "Symfony\\Component\\Translation\\": ""
  6451. },
  6452. "exclude-from-classmap": [
  6453. "/Tests/"
  6454. ]
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "license": [
  6458. "MIT"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "Fabien Potencier",
  6463. "email": "[email protected]"
  6464. },
  6465. {
  6466. "name": "Symfony Community",
  6467. "homepage": "https://symfony.com/contributors"
  6468. }
  6469. ],
  6470. "description": "Provides tools to internationalize your application",
  6471. "homepage": "https://symfony.com",
  6472. "support": {
  6473. "source": "https://github.com/symfony/translation/tree/v7.1.1"
  6474. },
  6475. "funding": [
  6476. {
  6477. "url": "https://symfony.com/sponsor",
  6478. "type": "custom"
  6479. },
  6480. {
  6481. "url": "https://github.com/fabpot",
  6482. "type": "github"
  6483. },
  6484. {
  6485. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6486. "type": "tidelift"
  6487. }
  6488. ],
  6489. "time": "2024-05-31T14:57:53+00:00"
  6490. },
  6491. {
  6492. "name": "symfony/translation-contracts",
  6493. "version": "v3.5.0",
  6494. "source": {
  6495. "type": "git",
  6496. "url": "https://github.com/symfony/translation-contracts.git",
  6497. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6498. },
  6499. "dist": {
  6500. "type": "zip",
  6501. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6502. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6503. "shasum": ""
  6504. },
  6505. "require": {
  6506. "php": ">=8.1"
  6507. },
  6508. "type": "library",
  6509. "extra": {
  6510. "branch-alias": {
  6511. "dev-main": "3.5-dev"
  6512. },
  6513. "thanks": {
  6514. "name": "symfony/contracts",
  6515. "url": "https://github.com/symfony/contracts"
  6516. }
  6517. },
  6518. "autoload": {
  6519. "psr-4": {
  6520. "Symfony\\Contracts\\Translation\\": ""
  6521. },
  6522. "exclude-from-classmap": [
  6523. "/Test/"
  6524. ]
  6525. },
  6526. "notification-url": "https://packagist.org/downloads/",
  6527. "license": [
  6528. "MIT"
  6529. ],
  6530. "authors": [
  6531. {
  6532. "name": "Nicolas Grekas",
  6533. "email": "[email protected]"
  6534. },
  6535. {
  6536. "name": "Symfony Community",
  6537. "homepage": "https://symfony.com/contributors"
  6538. }
  6539. ],
  6540. "description": "Generic abstractions related to translation",
  6541. "homepage": "https://symfony.com",
  6542. "keywords": [
  6543. "abstractions",
  6544. "contracts",
  6545. "decoupling",
  6546. "interfaces",
  6547. "interoperability",
  6548. "standards"
  6549. ],
  6550. "support": {
  6551. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6552. },
  6553. "funding": [
  6554. {
  6555. "url": "https://symfony.com/sponsor",
  6556. "type": "custom"
  6557. },
  6558. {
  6559. "url": "https://github.com/fabpot",
  6560. "type": "github"
  6561. },
  6562. {
  6563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6564. "type": "tidelift"
  6565. }
  6566. ],
  6567. "time": "2024-04-18T09:32:20+00:00"
  6568. },
  6569. {
  6570. "name": "twig/twig",
  6571. "version": "v3.10.3",
  6572. "source": {
  6573. "type": "git",
  6574. "url": "https://github.com/twigphp/Twig.git",
  6575. "reference": "67f29781ffafa520b0bbfbd8384674b42db04572"
  6576. },
  6577. "dist": {
  6578. "type": "zip",
  6579. "url": "https://api.github.com/repos/twigphp/Twig/zipball/67f29781ffafa520b0bbfbd8384674b42db04572",
  6580. "reference": "67f29781ffafa520b0bbfbd8384674b42db04572",
  6581. "shasum": ""
  6582. },
  6583. "require": {
  6584. "php": ">=7.2.5",
  6585. "symfony/deprecation-contracts": "^2.5|^3",
  6586. "symfony/polyfill-ctype": "^1.8",
  6587. "symfony/polyfill-mbstring": "^1.3",
  6588. "symfony/polyfill-php80": "^1.22"
  6589. },
  6590. "require-dev": {
  6591. "psr/container": "^1.0|^2.0",
  6592. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  6593. },
  6594. "type": "library",
  6595. "autoload": {
  6596. "files": [
  6597. "src/Resources/core.php",
  6598. "src/Resources/debug.php",
  6599. "src/Resources/escaper.php",
  6600. "src/Resources/string_loader.php"
  6601. ],
  6602. "psr-4": {
  6603. "Twig\\": "src/"
  6604. }
  6605. },
  6606. "notification-url": "https://packagist.org/downloads/",
  6607. "license": [
  6608. "BSD-3-Clause"
  6609. ],
  6610. "authors": [
  6611. {
  6612. "name": "Fabien Potencier",
  6613. "email": "[email protected]",
  6614. "homepage": "http://fabien.potencier.org",
  6615. "role": "Lead Developer"
  6616. },
  6617. {
  6618. "name": "Twig Team",
  6619. "role": "Contributors"
  6620. },
  6621. {
  6622. "name": "Armin Ronacher",
  6623. "email": "[email protected]",
  6624. "role": "Project Founder"
  6625. }
  6626. ],
  6627. "description": "Twig, the flexible, fast, and secure template language for PHP",
  6628. "homepage": "https://twig.symfony.com",
  6629. "keywords": [
  6630. "templating"
  6631. ],
  6632. "support": {
  6633. "issues": "https://github.com/twigphp/Twig/issues",
  6634. "source": "https://github.com/twigphp/Twig/tree/v3.10.3"
  6635. },
  6636. "funding": [
  6637. {
  6638. "url": "https://github.com/fabpot",
  6639. "type": "github"
  6640. },
  6641. {
  6642. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  6643. "type": "tidelift"
  6644. }
  6645. ],
  6646. "time": "2024-05-16T10:04:27+00:00"
  6647. },
  6648. {
  6649. "name": "vectorface/googleauthenticator",
  6650. "version": "v3.2",
  6651. "source": {
  6652. "type": "git",
  6653. "url": "https://github.com/Vectorface/GoogleAuthenticator.git",
  6654. "reference": "c98adc40a5a1df104693d16908de74b85e107a1d"
  6655. },
  6656. "dist": {
  6657. "type": "zip",
  6658. "url": "https://api.github.com/repos/Vectorface/GoogleAuthenticator/zipball/c98adc40a5a1df104693d16908de74b85e107a1d",
  6659. "reference": "c98adc40a5a1df104693d16908de74b85e107a1d",
  6660. "shasum": ""
  6661. },
  6662. "require": {
  6663. "endroid/qr-code": "^5.0.0",
  6664. "php": ">=8.1"
  6665. },
  6666. "require-dev": {
  6667. "phpunit/phpunit": "^9"
  6668. },
  6669. "type": "library",
  6670. "autoload": {
  6671. "psr-4": {
  6672. "Vectorface\\": "src/"
  6673. }
  6674. },
  6675. "notification-url": "https://packagist.org/downloads/",
  6676. "license": [
  6677. "BSD-2-Clause"
  6678. ],
  6679. "authors": [
  6680. {
  6681. "name": "Michael Kliewe",
  6682. "email": "[email protected]",
  6683. "homepage": "http://www.phpgangsta.de/",
  6684. "role": "Developer"
  6685. },
  6686. {
  6687. "name": "Francis Lavoie",
  6688. "email": "[email protected]",
  6689. "homepage": "http://vectorface.com/",
  6690. "role": "Developer"
  6691. }
  6692. ],
  6693. "description": "Google Authenticator 2-factor authentication",
  6694. "keywords": [
  6695. "googleauthenticator",
  6696. "rfc6238",
  6697. "totp"
  6698. ],
  6699. "support": {
  6700. "issues": "https://github.com/Vectorface/GoogleAuthenticator/issues",
  6701. "source": "https://github.com/Vectorface/GoogleAuthenticator"
  6702. },
  6703. "time": "2024-01-31T13:05:32+00:00"
  6704. },
  6705. {
  6706. "name": "voku/anti-xss",
  6707. "version": "4.1.42",
  6708. "source": {
  6709. "type": "git",
  6710. "url": "https://github.com/voku/anti-xss.git",
  6711. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675"
  6712. },
  6713. "dist": {
  6714. "type": "zip",
  6715. "url": "https://api.github.com/repos/voku/anti-xss/zipball/bca1f8607e55a3c5077483615cd93bd8f11bd675",
  6716. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675",
  6717. "shasum": ""
  6718. },
  6719. "require": {
  6720. "php": ">=7.0.0",
  6721. "voku/portable-utf8": "~6.0.2"
  6722. },
  6723. "require-dev": {
  6724. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6725. },
  6726. "type": "library",
  6727. "extra": {
  6728. "branch-alias": {
  6729. "dev-master": "4.1.x-dev"
  6730. }
  6731. },
  6732. "autoload": {
  6733. "psr-4": {
  6734. "voku\\helper\\": "src/voku/helper/"
  6735. }
  6736. },
  6737. "notification-url": "https://packagist.org/downloads/",
  6738. "license": [
  6739. "MIT"
  6740. ],
  6741. "authors": [
  6742. {
  6743. "name": "EllisLab Dev Team",
  6744. "homepage": "http://ellislab.com/"
  6745. },
  6746. {
  6747. "name": "Lars Moelleken",
  6748. "email": "[email protected]",
  6749. "homepage": "https://www.moelleken.org/"
  6750. }
  6751. ],
  6752. "description": "anti xss-library",
  6753. "homepage": "https://github.com/voku/anti-xss",
  6754. "keywords": [
  6755. "anti-xss",
  6756. "clean",
  6757. "security",
  6758. "xss"
  6759. ],
  6760. "support": {
  6761. "issues": "https://github.com/voku/anti-xss/issues",
  6762. "source": "https://github.com/voku/anti-xss/tree/4.1.42"
  6763. },
  6764. "funding": [
  6765. {
  6766. "url": "https://www.paypal.me/moelleken",
  6767. "type": "custom"
  6768. },
  6769. {
  6770. "url": "https://github.com/voku",
  6771. "type": "github"
  6772. },
  6773. {
  6774. "url": "https://opencollective.com/anti-xss",
  6775. "type": "open_collective"
  6776. },
  6777. {
  6778. "url": "https://www.patreon.com/voku",
  6779. "type": "patreon"
  6780. },
  6781. {
  6782. "url": "https://tidelift.com/funding/github/packagist/voku/anti-xss",
  6783. "type": "tidelift"
  6784. }
  6785. ],
  6786. "time": "2023-07-03T14:40:46+00:00"
  6787. },
  6788. {
  6789. "name": "voku/portable-ascii",
  6790. "version": "2.0.1",
  6791. "source": {
  6792. "type": "git",
  6793. "url": "https://github.com/voku/portable-ascii.git",
  6794. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  6795. },
  6796. "dist": {
  6797. "type": "zip",
  6798. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  6799. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  6800. "shasum": ""
  6801. },
  6802. "require": {
  6803. "php": ">=7.0.0"
  6804. },
  6805. "require-dev": {
  6806. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6807. },
  6808. "suggest": {
  6809. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6810. },
  6811. "type": "library",
  6812. "autoload": {
  6813. "psr-4": {
  6814. "voku\\": "src/voku/"
  6815. }
  6816. },
  6817. "notification-url": "https://packagist.org/downloads/",
  6818. "license": [
  6819. "MIT"
  6820. ],
  6821. "authors": [
  6822. {
  6823. "name": "Lars Moelleken",
  6824. "homepage": "http://www.moelleken.org/"
  6825. }
  6826. ],
  6827. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6828. "homepage": "https://github.com/voku/portable-ascii",
  6829. "keywords": [
  6830. "ascii",
  6831. "clean",
  6832. "php"
  6833. ],
  6834. "support": {
  6835. "issues": "https://github.com/voku/portable-ascii/issues",
  6836. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  6837. },
  6838. "funding": [
  6839. {
  6840. "url": "https://www.paypal.me/moelleken",
  6841. "type": "custom"
  6842. },
  6843. {
  6844. "url": "https://github.com/voku",
  6845. "type": "github"
  6846. },
  6847. {
  6848. "url": "https://opencollective.com/portable-ascii",
  6849. "type": "open_collective"
  6850. },
  6851. {
  6852. "url": "https://www.patreon.com/voku",
  6853. "type": "patreon"
  6854. },
  6855. {
  6856. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6857. "type": "tidelift"
  6858. }
  6859. ],
  6860. "time": "2022-03-08T17:03:00+00:00"
  6861. },
  6862. {
  6863. "name": "voku/portable-utf8",
  6864. "version": "6.0.13",
  6865. "source": {
  6866. "type": "git",
  6867. "url": "https://github.com/voku/portable-utf8.git",
  6868. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f"
  6869. },
  6870. "dist": {
  6871. "type": "zip",
  6872. "url": "https://api.github.com/repos/voku/portable-utf8/zipball/b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6873. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6874. "shasum": ""
  6875. },
  6876. "require": {
  6877. "php": ">=7.0.0",
  6878. "symfony/polyfill-iconv": "~1.0",
  6879. "symfony/polyfill-intl-grapheme": "~1.0",
  6880. "symfony/polyfill-intl-normalizer": "~1.0",
  6881. "symfony/polyfill-mbstring": "~1.0",
  6882. "symfony/polyfill-php72": "~1.0",
  6883. "voku/portable-ascii": "~2.0.0"
  6884. },
  6885. "require-dev": {
  6886. "phpstan/phpstan": "1.9.*@dev",
  6887. "phpstan/phpstan-strict-rules": "1.4.*@dev",
  6888. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0",
  6889. "thecodingmachine/phpstan-strict-rules": "1.0.*@dev",
  6890. "voku/phpstan-rules": "3.1.*@dev"
  6891. },
  6892. "suggest": {
  6893. "ext-ctype": "Use Ctype for e.g. hexadecimal digit detection",
  6894. "ext-fileinfo": "Use Fileinfo for better binary file detection",
  6895. "ext-iconv": "Use iconv for best performance",
  6896. "ext-intl": "Use Intl for best performance",
  6897. "ext-json": "Use JSON for string detection",
  6898. "ext-mbstring": "Use Mbstring for best performance"
  6899. },
  6900. "type": "library",
  6901. "autoload": {
  6902. "files": [
  6903. "bootstrap.php"
  6904. ],
  6905. "psr-4": {
  6906. "voku\\": "src/voku/"
  6907. }
  6908. },
  6909. "notification-url": "https://packagist.org/downloads/",
  6910. "license": [
  6911. "(Apache-2.0 or GPL-2.0)"
  6912. ],
  6913. "authors": [
  6914. {
  6915. "name": "Nicolas Grekas",
  6916. "email": "[email protected]"
  6917. },
  6918. {
  6919. "name": "Hamid Sarfraz",
  6920. "homepage": "http://pageconfig.com/"
  6921. },
  6922. {
  6923. "name": "Lars Moelleken",
  6924. "homepage": "http://www.moelleken.org/"
  6925. }
  6926. ],
  6927. "description": "Portable UTF-8 library - performance optimized (unicode) string functions for php.",
  6928. "homepage": "https://github.com/voku/portable-utf8",
  6929. "keywords": [
  6930. "UTF",
  6931. "clean",
  6932. "php",
  6933. "unicode",
  6934. "utf-8",
  6935. "utf8"
  6936. ],
  6937. "support": {
  6938. "issues": "https://github.com/voku/portable-utf8/issues",
  6939. "source": "https://github.com/voku/portable-utf8/tree/6.0.13"
  6940. },
  6941. "funding": [
  6942. {
  6943. "url": "https://www.paypal.me/moelleken",
  6944. "type": "custom"
  6945. },
  6946. {
  6947. "url": "https://github.com/voku",
  6948. "type": "github"
  6949. },
  6950. {
  6951. "url": "https://opencollective.com/portable-utf8",
  6952. "type": "open_collective"
  6953. },
  6954. {
  6955. "url": "https://www.patreon.com/voku",
  6956. "type": "patreon"
  6957. },
  6958. {
  6959. "url": "https://tidelift.com/funding/github/packagist/voku/portable-utf8",
  6960. "type": "tidelift"
  6961. }
  6962. ],
  6963. "time": "2023-03-08T08:35:38+00:00"
  6964. },
  6965. {
  6966. "name": "webmozart/assert",
  6967. "version": "1.11.0",
  6968. "source": {
  6969. "type": "git",
  6970. "url": "https://github.com/webmozarts/assert.git",
  6971. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6972. },
  6973. "dist": {
  6974. "type": "zip",
  6975. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6976. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6977. "shasum": ""
  6978. },
  6979. "require": {
  6980. "ext-ctype": "*",
  6981. "php": "^7.2 || ^8.0"
  6982. },
  6983. "conflict": {
  6984. "phpstan/phpstan": "<0.12.20",
  6985. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6986. },
  6987. "require-dev": {
  6988. "phpunit/phpunit": "^8.5.13"
  6989. },
  6990. "type": "library",
  6991. "extra": {
  6992. "branch-alias": {
  6993. "dev-master": "1.10-dev"
  6994. }
  6995. },
  6996. "autoload": {
  6997. "psr-4": {
  6998. "Webmozart\\Assert\\": "src/"
  6999. }
  7000. },
  7001. "notification-url": "https://packagist.org/downloads/",
  7002. "license": [
  7003. "MIT"
  7004. ],
  7005. "authors": [
  7006. {
  7007. "name": "Bernhard Schussek",
  7008. "email": "[email protected]"
  7009. }
  7010. ],
  7011. "description": "Assertions to validate method input/output with nice error messages.",
  7012. "keywords": [
  7013. "assert",
  7014. "check",
  7015. "validate"
  7016. ],
  7017. "support": {
  7018. "issues": "https://github.com/webmozarts/assert/issues",
  7019. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7020. },
  7021. "time": "2022-06-03T18:03:27+00:00"
  7022. }
  7023. ],
  7024. "packages-dev": [
  7025. {
  7026. "name": "clue/ndjson-react",
  7027. "version": "v1.3.0",
  7028. "source": {
  7029. "type": "git",
  7030. "url": "https://github.com/clue/reactphp-ndjson.git",
  7031. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7032. },
  7033. "dist": {
  7034. "type": "zip",
  7035. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7036. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7037. "shasum": ""
  7038. },
  7039. "require": {
  7040. "php": ">=5.3",
  7041. "react/stream": "^1.2"
  7042. },
  7043. "require-dev": {
  7044. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7045. "react/event-loop": "^1.2"
  7046. },
  7047. "type": "library",
  7048. "autoload": {
  7049. "psr-4": {
  7050. "Clue\\React\\NDJson\\": "src/"
  7051. }
  7052. },
  7053. "notification-url": "https://packagist.org/downloads/",
  7054. "license": [
  7055. "MIT"
  7056. ],
  7057. "authors": [
  7058. {
  7059. "name": "Christian Lück",
  7060. "email": "[email protected]"
  7061. }
  7062. ],
  7063. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7064. "homepage": "https://github.com/clue/reactphp-ndjson",
  7065. "keywords": [
  7066. "NDJSON",
  7067. "json",
  7068. "jsonlines",
  7069. "newline",
  7070. "reactphp",
  7071. "streaming"
  7072. ],
  7073. "support": {
  7074. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7075. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7076. },
  7077. "funding": [
  7078. {
  7079. "url": "https://clue.engineering/support",
  7080. "type": "custom"
  7081. },
  7082. {
  7083. "url": "https://github.com/clue",
  7084. "type": "github"
  7085. }
  7086. ],
  7087. "time": "2022-12-23T10:58:28+00:00"
  7088. },
  7089. {
  7090. "name": "cmgmyr/phploc",
  7091. "version": "8.0.3",
  7092. "source": {
  7093. "type": "git",
  7094. "url": "https://github.com/cmgmyr/phploc.git",
  7095. "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f"
  7096. },
  7097. "dist": {
  7098. "type": "zip",
  7099. "url": "https://api.github.com/repos/cmgmyr/phploc/zipball/e61d4729df46c5920ab61973bfa3f70f81a70b5f",
  7100. "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f",
  7101. "shasum": ""
  7102. },
  7103. "require": {
  7104. "ext-dom": "*",
  7105. "ext-json": "*",
  7106. "php": "^7.4 || ^8.0",
  7107. "phpunit/php-file-iterator": "^3.0|^4.0",
  7108. "sebastian/cli-parser": "^1.0|^2.0"
  7109. },
  7110. "require-dev": {
  7111. "friendsofphp/php-cs-fixer": "^3.2",
  7112. "phpunit/phpunit": "^9.0|^10.0",
  7113. "vimeo/psalm": "^5.7"
  7114. },
  7115. "bin": [
  7116. "phploc"
  7117. ],
  7118. "type": "library",
  7119. "extra": {
  7120. "branch-alias": {
  7121. "dev-main": "8.0-dev"
  7122. }
  7123. },
  7124. "autoload": {
  7125. "classmap": [
  7126. "src/"
  7127. ]
  7128. },
  7129. "notification-url": "https://packagist.org/downloads/",
  7130. "license": [
  7131. "BSD-3-Clause"
  7132. ],
  7133. "authors": [
  7134. {
  7135. "name": "Chris Gmyr",
  7136. "email": "[email protected]",
  7137. "role": "lead"
  7138. }
  7139. ],
  7140. "description": "A tool for quickly measuring the size of a PHP project.",
  7141. "homepage": "https://github.com/cmgmyr/phploc",
  7142. "support": {
  7143. "issues": "https://github.com/cmgmyr/phploc/issues",
  7144. "source": "https://github.com/cmgmyr/phploc/tree/8.0.3"
  7145. },
  7146. "funding": [
  7147. {
  7148. "url": "https://github.com/cmgmyr",
  7149. "type": "github"
  7150. }
  7151. ],
  7152. "time": "2023-08-05T16:49:39+00:00"
  7153. },
  7154. {
  7155. "name": "composer/pcre",
  7156. "version": "3.1.4",
  7157. "source": {
  7158. "type": "git",
  7159. "url": "https://github.com/composer/pcre.git",
  7160. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  7161. },
  7162. "dist": {
  7163. "type": "zip",
  7164. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  7165. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  7166. "shasum": ""
  7167. },
  7168. "require": {
  7169. "php": "^7.4 || ^8.0"
  7170. },
  7171. "require-dev": {
  7172. "phpstan/phpstan": "^1.3",
  7173. "phpstan/phpstan-strict-rules": "^1.1",
  7174. "symfony/phpunit-bridge": "^5"
  7175. },
  7176. "type": "library",
  7177. "extra": {
  7178. "branch-alias": {
  7179. "dev-main": "3.x-dev"
  7180. }
  7181. },
  7182. "autoload": {
  7183. "psr-4": {
  7184. "Composer\\Pcre\\": "src"
  7185. }
  7186. },
  7187. "notification-url": "https://packagist.org/downloads/",
  7188. "license": [
  7189. "MIT"
  7190. ],
  7191. "authors": [
  7192. {
  7193. "name": "Jordi Boggiano",
  7194. "email": "[email protected]",
  7195. "homepage": "http://seld.be"
  7196. }
  7197. ],
  7198. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7199. "keywords": [
  7200. "PCRE",
  7201. "preg",
  7202. "regex",
  7203. "regular expression"
  7204. ],
  7205. "support": {
  7206. "issues": "https://github.com/composer/pcre/issues",
  7207. "source": "https://github.com/composer/pcre/tree/3.1.4"
  7208. },
  7209. "funding": [
  7210. {
  7211. "url": "https://packagist.com",
  7212. "type": "custom"
  7213. },
  7214. {
  7215. "url": "https://github.com/composer",
  7216. "type": "github"
  7217. },
  7218. {
  7219. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7220. "type": "tidelift"
  7221. }
  7222. ],
  7223. "time": "2024-05-27T13:40:54+00:00"
  7224. },
  7225. {
  7226. "name": "composer/semver",
  7227. "version": "3.4.0",
  7228. "source": {
  7229. "type": "git",
  7230. "url": "https://github.com/composer/semver.git",
  7231. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  7232. },
  7233. "dist": {
  7234. "type": "zip",
  7235. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  7236. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  7237. "shasum": ""
  7238. },
  7239. "require": {
  7240. "php": "^5.3.2 || ^7.0 || ^8.0"
  7241. },
  7242. "require-dev": {
  7243. "phpstan/phpstan": "^1.4",
  7244. "symfony/phpunit-bridge": "^4.2 || ^5"
  7245. },
  7246. "type": "library",
  7247. "extra": {
  7248. "branch-alias": {
  7249. "dev-main": "3.x-dev"
  7250. }
  7251. },
  7252. "autoload": {
  7253. "psr-4": {
  7254. "Composer\\Semver\\": "src"
  7255. }
  7256. },
  7257. "notification-url": "https://packagist.org/downloads/",
  7258. "license": [
  7259. "MIT"
  7260. ],
  7261. "authors": [
  7262. {
  7263. "name": "Nils Adermann",
  7264. "email": "[email protected]",
  7265. "homepage": "http://www.naderman.de"
  7266. },
  7267. {
  7268. "name": "Jordi Boggiano",
  7269. "email": "[email protected]",
  7270. "homepage": "http://seld.be"
  7271. },
  7272. {
  7273. "name": "Rob Bast",
  7274. "email": "[email protected]",
  7275. "homepage": "http://robbast.nl"
  7276. }
  7277. ],
  7278. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7279. "keywords": [
  7280. "semantic",
  7281. "semver",
  7282. "validation",
  7283. "versioning"
  7284. ],
  7285. "support": {
  7286. "irc": "ircs://irc.libera.chat:6697/composer",
  7287. "issues": "https://github.com/composer/semver/issues",
  7288. "source": "https://github.com/composer/semver/tree/3.4.0"
  7289. },
  7290. "funding": [
  7291. {
  7292. "url": "https://packagist.com",
  7293. "type": "custom"
  7294. },
  7295. {
  7296. "url": "https://github.com/composer",
  7297. "type": "github"
  7298. },
  7299. {
  7300. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7301. "type": "tidelift"
  7302. }
  7303. ],
  7304. "time": "2023-08-31T09:50:34+00:00"
  7305. },
  7306. {
  7307. "name": "composer/xdebug-handler",
  7308. "version": "3.0.5",
  7309. "source": {
  7310. "type": "git",
  7311. "url": "https://github.com/composer/xdebug-handler.git",
  7312. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7313. },
  7314. "dist": {
  7315. "type": "zip",
  7316. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7317. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7318. "shasum": ""
  7319. },
  7320. "require": {
  7321. "composer/pcre": "^1 || ^2 || ^3",
  7322. "php": "^7.2.5 || ^8.0",
  7323. "psr/log": "^1 || ^2 || ^3"
  7324. },
  7325. "require-dev": {
  7326. "phpstan/phpstan": "^1.0",
  7327. "phpstan/phpstan-strict-rules": "^1.1",
  7328. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7329. },
  7330. "type": "library",
  7331. "autoload": {
  7332. "psr-4": {
  7333. "Composer\\XdebugHandler\\": "src"
  7334. }
  7335. },
  7336. "notification-url": "https://packagist.org/downloads/",
  7337. "license": [
  7338. "MIT"
  7339. ],
  7340. "authors": [
  7341. {
  7342. "name": "John Stevenson",
  7343. "email": "[email protected]"
  7344. }
  7345. ],
  7346. "description": "Restarts a process without Xdebug.",
  7347. "keywords": [
  7348. "Xdebug",
  7349. "performance"
  7350. ],
  7351. "support": {
  7352. "irc": "ircs://irc.libera.chat:6697/composer",
  7353. "issues": "https://github.com/composer/xdebug-handler/issues",
  7354. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7355. },
  7356. "funding": [
  7357. {
  7358. "url": "https://packagist.com",
  7359. "type": "custom"
  7360. },
  7361. {
  7362. "url": "https://github.com/composer",
  7363. "type": "github"
  7364. },
  7365. {
  7366. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7367. "type": "tidelift"
  7368. }
  7369. ],
  7370. "time": "2024-05-06T16:37:16+00:00"
  7371. },
  7372. {
  7373. "name": "dealerdirect/phpcodesniffer-composer-installer",
  7374. "version": "v1.0.0",
  7375. "source": {
  7376. "type": "git",
  7377. "url": "https://github.com/PHPCSStandards/composer-installer.git",
  7378. "reference": "4be43904336affa5c2f70744a348312336afd0da"
  7379. },
  7380. "dist": {
  7381. "type": "zip",
  7382. "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da",
  7383. "reference": "4be43904336affa5c2f70744a348312336afd0da",
  7384. "shasum": ""
  7385. },
  7386. "require": {
  7387. "composer-plugin-api": "^1.0 || ^2.0",
  7388. "php": ">=5.4",
  7389. "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
  7390. },
  7391. "require-dev": {
  7392. "composer/composer": "*",
  7393. "ext-json": "*",
  7394. "ext-zip": "*",
  7395. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  7396. "phpcompatibility/php-compatibility": "^9.0",
  7397. "yoast/phpunit-polyfills": "^1.0"
  7398. },
  7399. "type": "composer-plugin",
  7400. "extra": {
  7401. "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  7402. },
  7403. "autoload": {
  7404. "psr-4": {
  7405. "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  7406. }
  7407. },
  7408. "notification-url": "https://packagist.org/downloads/",
  7409. "license": [
  7410. "MIT"
  7411. ],
  7412. "authors": [
  7413. {
  7414. "name": "Franck Nijhof",
  7415. "email": "[email protected]",
  7416. "homepage": "http://www.frenck.nl",
  7417. "role": "Developer / IT Manager"
  7418. },
  7419. {
  7420. "name": "Contributors",
  7421. "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
  7422. }
  7423. ],
  7424. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  7425. "homepage": "http://www.dealerdirect.com",
  7426. "keywords": [
  7427. "PHPCodeSniffer",
  7428. "PHP_CodeSniffer",
  7429. "code quality",
  7430. "codesniffer",
  7431. "composer",
  7432. "installer",
  7433. "phpcbf",
  7434. "phpcs",
  7435. "plugin",
  7436. "qa",
  7437. "quality",
  7438. "standard",
  7439. "standards",
  7440. "style guide",
  7441. "stylecheck",
  7442. "tests"
  7443. ],
  7444. "support": {
  7445. "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
  7446. "source": "https://github.com/PHPCSStandards/composer-installer"
  7447. },
  7448. "time": "2023-01-05T11:28:13+00:00"
  7449. },
  7450. {
  7451. "name": "dg/bypass-finals",
  7452. "version": "v1.7.0",
  7453. "source": {
  7454. "type": "git",
  7455. "url": "https://github.com/dg/bypass-finals.git",
  7456. "reference": "dbe238be99c8d2406ce09d254cbcc93d90578c88"
  7457. },
  7458. "dist": {
  7459. "type": "zip",
  7460. "url": "https://api.github.com/repos/dg/bypass-finals/zipball/dbe238be99c8d2406ce09d254cbcc93d90578c88",
  7461. "reference": "dbe238be99c8d2406ce09d254cbcc93d90578c88",
  7462. "shasum": ""
  7463. },
  7464. "require": {
  7465. "php": ">=7.1"
  7466. },
  7467. "require-dev": {
  7468. "nette/tester": "^2.3",
  7469. "phpstan/phpstan": "^0.12"
  7470. },
  7471. "type": "library",
  7472. "autoload": {
  7473. "classmap": [
  7474. "src/"
  7475. ]
  7476. },
  7477. "notification-url": "https://packagist.org/downloads/",
  7478. "license": [
  7479. "BSD-3-Clause",
  7480. "GPL-2.0",
  7481. "GPL-3.0"
  7482. ],
  7483. "authors": [
  7484. {
  7485. "name": "David Grudl",
  7486. "homepage": "https://davidgrudl.com"
  7487. }
  7488. ],
  7489. "description": "Removes final keyword from source code on-the-fly and allows mocking of final methods and classes",
  7490. "keywords": [
  7491. "finals",
  7492. "mocking",
  7493. "phpunit",
  7494. "testing",
  7495. "unit"
  7496. ],
  7497. "support": {
  7498. "issues": "https://github.com/dg/bypass-finals/issues",
  7499. "source": "https://github.com/dg/bypass-finals/tree/v1.7.0"
  7500. },
  7501. "time": "2024-05-17T01:03:44+00:00"
  7502. },
  7503. {
  7504. "name": "evenement/evenement",
  7505. "version": "v3.0.2",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/igorw/evenement.git",
  7509. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7514. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7515. "shasum": ""
  7516. },
  7517. "require": {
  7518. "php": ">=7.0"
  7519. },
  7520. "require-dev": {
  7521. "phpunit/phpunit": "^9 || ^6"
  7522. },
  7523. "type": "library",
  7524. "autoload": {
  7525. "psr-4": {
  7526. "Evenement\\": "src/"
  7527. }
  7528. },
  7529. "notification-url": "https://packagist.org/downloads/",
  7530. "license": [
  7531. "MIT"
  7532. ],
  7533. "authors": [
  7534. {
  7535. "name": "Igor Wiedler",
  7536. "email": "[email protected]"
  7537. }
  7538. ],
  7539. "description": "Événement is a very simple event dispatching library for PHP",
  7540. "keywords": [
  7541. "event-dispatcher",
  7542. "event-emitter"
  7543. ],
  7544. "support": {
  7545. "issues": "https://github.com/igorw/evenement/issues",
  7546. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7547. },
  7548. "time": "2023-08-08T05:53:35+00:00"
  7549. },
  7550. {
  7551. "name": "fidry/cpu-core-counter",
  7552. "version": "1.1.0",
  7553. "source": {
  7554. "type": "git",
  7555. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7556. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7557. },
  7558. "dist": {
  7559. "type": "zip",
  7560. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7561. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7562. "shasum": ""
  7563. },
  7564. "require": {
  7565. "php": "^7.2 || ^8.0"
  7566. },
  7567. "require-dev": {
  7568. "fidry/makefile": "^0.2.0",
  7569. "fidry/php-cs-fixer-config": "^1.1.2",
  7570. "phpstan/extension-installer": "^1.2.0",
  7571. "phpstan/phpstan": "^1.9.2",
  7572. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7573. "phpstan/phpstan-phpunit": "^1.2.2",
  7574. "phpstan/phpstan-strict-rules": "^1.4.4",
  7575. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7576. "webmozarts/strict-phpunit": "^7.5"
  7577. },
  7578. "type": "library",
  7579. "autoload": {
  7580. "psr-4": {
  7581. "Fidry\\CpuCoreCounter\\": "src/"
  7582. }
  7583. },
  7584. "notification-url": "https://packagist.org/downloads/",
  7585. "license": [
  7586. "MIT"
  7587. ],
  7588. "authors": [
  7589. {
  7590. "name": "Théo FIDRY",
  7591. "email": "[email protected]"
  7592. }
  7593. ],
  7594. "description": "Tiny utility to get the number of CPU cores.",
  7595. "keywords": [
  7596. "CPU",
  7597. "core"
  7598. ],
  7599. "support": {
  7600. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7601. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7602. },
  7603. "funding": [
  7604. {
  7605. "url": "https://github.com/theofidry",
  7606. "type": "github"
  7607. }
  7608. ],
  7609. "time": "2024-02-07T09:43:46+00:00"
  7610. },
  7611. {
  7612. "name": "friendsofphp/php-cs-fixer",
  7613. "version": "v3.58.1",
  7614. "source": {
  7615. "type": "git",
  7616. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7617. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7618. },
  7619. "dist": {
  7620. "type": "zip",
  7621. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7622. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7623. "shasum": ""
  7624. },
  7625. "require": {
  7626. "clue/ndjson-react": "^1.0",
  7627. "composer/semver": "^3.4",
  7628. "composer/xdebug-handler": "^3.0.3",
  7629. "ext-filter": "*",
  7630. "ext-json": "*",
  7631. "ext-tokenizer": "*",
  7632. "fidry/cpu-core-counter": "^1.0",
  7633. "php": "^7.4 || ^8.0",
  7634. "react/child-process": "^0.6.5",
  7635. "react/event-loop": "^1.0",
  7636. "react/promise": "^2.0 || ^3.0",
  7637. "react/socket": "^1.0",
  7638. "react/stream": "^1.0",
  7639. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7640. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7641. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7642. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7643. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7644. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7645. "symfony/polyfill-mbstring": "^1.28",
  7646. "symfony/polyfill-php80": "^1.28",
  7647. "symfony/polyfill-php81": "^1.28",
  7648. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7649. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7650. },
  7651. "require-dev": {
  7652. "facile-it/paraunit": "^1.3 || ^2.0",
  7653. "infection/infection": "^0.27.11",
  7654. "justinrainbow/json-schema": "^5.2",
  7655. "keradus/cli-executor": "^2.1",
  7656. "mikey179/vfsstream": "^1.6.11",
  7657. "php-coveralls/php-coveralls": "^2.7",
  7658. "php-cs-fixer/accessible-object": "^1.1",
  7659. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7660. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7661. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7662. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7663. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7664. },
  7665. "suggest": {
  7666. "ext-dom": "For handling output formats in XML",
  7667. "ext-mbstring": "For handling non-UTF8 characters."
  7668. },
  7669. "bin": [
  7670. "php-cs-fixer"
  7671. ],
  7672. "type": "application",
  7673. "autoload": {
  7674. "psr-4": {
  7675. "PhpCsFixer\\": "src/"
  7676. }
  7677. },
  7678. "notification-url": "https://packagist.org/downloads/",
  7679. "license": [
  7680. "MIT"
  7681. ],
  7682. "authors": [
  7683. {
  7684. "name": "Fabien Potencier",
  7685. "email": "[email protected]"
  7686. },
  7687. {
  7688. "name": "Dariusz Rumiński",
  7689. "email": "[email protected]"
  7690. }
  7691. ],
  7692. "description": "A tool to automatically fix PHP code style",
  7693. "keywords": [
  7694. "Static code analysis",
  7695. "fixer",
  7696. "standards",
  7697. "static analysis"
  7698. ],
  7699. "support": {
  7700. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7701. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7702. },
  7703. "funding": [
  7704. {
  7705. "url": "https://github.com/keradus",
  7706. "type": "github"
  7707. }
  7708. ],
  7709. "time": "2024-05-29T16:39:07+00:00"
  7710. },
  7711. {
  7712. "name": "justinrainbow/json-schema",
  7713. "version": "v5.2.13",
  7714. "source": {
  7715. "type": "git",
  7716. "url": "https://github.com/jsonrainbow/json-schema.git",
  7717. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
  7718. },
  7719. "dist": {
  7720. "type": "zip",
  7721. "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
  7722. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
  7723. "shasum": ""
  7724. },
  7725. "require": {
  7726. "php": ">=5.3.3"
  7727. },
  7728. "require-dev": {
  7729. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  7730. "json-schema/json-schema-test-suite": "1.2.0",
  7731. "phpunit/phpunit": "^4.8.35"
  7732. },
  7733. "bin": [
  7734. "bin/validate-json"
  7735. ],
  7736. "type": "library",
  7737. "extra": {
  7738. "branch-alias": {
  7739. "dev-master": "5.0.x-dev"
  7740. }
  7741. },
  7742. "autoload": {
  7743. "psr-4": {
  7744. "JsonSchema\\": "src/JsonSchema/"
  7745. }
  7746. },
  7747. "notification-url": "https://packagist.org/downloads/",
  7748. "license": [
  7749. "MIT"
  7750. ],
  7751. "authors": [
  7752. {
  7753. "name": "Bruno Prieto Reis",
  7754. "email": "[email protected]"
  7755. },
  7756. {
  7757. "name": "Justin Rainbow",
  7758. "email": "[email protected]"
  7759. },
  7760. {
  7761. "name": "Igor Wiedler",
  7762. "email": "[email protected]"
  7763. },
  7764. {
  7765. "name": "Robert Schönthal",
  7766. "email": "[email protected]"
  7767. }
  7768. ],
  7769. "description": "A library to validate a json schema.",
  7770. "homepage": "https://github.com/justinrainbow/json-schema",
  7771. "keywords": [
  7772. "json",
  7773. "schema"
  7774. ],
  7775. "support": {
  7776. "issues": "https://github.com/jsonrainbow/json-schema/issues",
  7777. "source": "https://github.com/jsonrainbow/json-schema/tree/v5.2.13"
  7778. },
  7779. "time": "2023-09-26T02:20:38+00:00"
  7780. },
  7781. {
  7782. "name": "league/container",
  7783. "version": "4.2.2",
  7784. "source": {
  7785. "type": "git",
  7786. "url": "https://github.com/thephpleague/container.git",
  7787. "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88"
  7788. },
  7789. "dist": {
  7790. "type": "zip",
  7791. "url": "https://api.github.com/repos/thephpleague/container/zipball/ff346319ca1ff0e78277dc2311a42107cc1aab88",
  7792. "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88",
  7793. "shasum": ""
  7794. },
  7795. "require": {
  7796. "php": "^7.2 || ^8.0",
  7797. "psr/container": "^1.1 || ^2.0"
  7798. },
  7799. "provide": {
  7800. "psr/container-implementation": "^1.0"
  7801. },
  7802. "replace": {
  7803. "orno/di": "~2.0"
  7804. },
  7805. "require-dev": {
  7806. "nette/php-generator": "^3.4",
  7807. "nikic/php-parser": "^4.10",
  7808. "phpstan/phpstan": "^0.12.47",
  7809. "phpunit/phpunit": "^8.5.17",
  7810. "roave/security-advisories": "dev-latest",
  7811. "scrutinizer/ocular": "^1.8",
  7812. "squizlabs/php_codesniffer": "^3.6"
  7813. },
  7814. "type": "library",
  7815. "extra": {
  7816. "branch-alias": {
  7817. "dev-master": "4.x-dev",
  7818. "dev-4.x": "4.x-dev",
  7819. "dev-3.x": "3.x-dev",
  7820. "dev-2.x": "2.x-dev",
  7821. "dev-1.x": "1.x-dev"
  7822. }
  7823. },
  7824. "autoload": {
  7825. "psr-4": {
  7826. "League\\Container\\": "src"
  7827. }
  7828. },
  7829. "notification-url": "https://packagist.org/downloads/",
  7830. "license": [
  7831. "MIT"
  7832. ],
  7833. "authors": [
  7834. {
  7835. "name": "Phil Bennett",
  7836. "email": "[email protected]",
  7837. "role": "Developer"
  7838. }
  7839. ],
  7840. "description": "A fast and intuitive dependency injection container.",
  7841. "homepage": "https://github.com/thephpleague/container",
  7842. "keywords": [
  7843. "container",
  7844. "dependency",
  7845. "di",
  7846. "injection",
  7847. "league",
  7848. "provider",
  7849. "service"
  7850. ],
  7851. "support": {
  7852. "issues": "https://github.com/thephpleague/container/issues",
  7853. "source": "https://github.com/thephpleague/container/tree/4.2.2"
  7854. },
  7855. "funding": [
  7856. {
  7857. "url": "https://github.com/philipobenito",
  7858. "type": "github"
  7859. }
  7860. ],
  7861. "time": "2024-03-13T13:12:53+00:00"
  7862. },
  7863. {
  7864. "name": "myclabs/deep-copy",
  7865. "version": "1.12.0",
  7866. "source": {
  7867. "type": "git",
  7868. "url": "https://github.com/myclabs/DeepCopy.git",
  7869. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  7870. },
  7871. "dist": {
  7872. "type": "zip",
  7873. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7874. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7875. "shasum": ""
  7876. },
  7877. "require": {
  7878. "php": "^7.1 || ^8.0"
  7879. },
  7880. "conflict": {
  7881. "doctrine/collections": "<1.6.8",
  7882. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7883. },
  7884. "require-dev": {
  7885. "doctrine/collections": "^1.6.8",
  7886. "doctrine/common": "^2.13.3 || ^3.2.2",
  7887. "phpspec/prophecy": "^1.10",
  7888. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7889. },
  7890. "type": "library",
  7891. "autoload": {
  7892. "files": [
  7893. "src/DeepCopy/deep_copy.php"
  7894. ],
  7895. "psr-4": {
  7896. "DeepCopy\\": "src/DeepCopy/"
  7897. }
  7898. },
  7899. "notification-url": "https://packagist.org/downloads/",
  7900. "license": [
  7901. "MIT"
  7902. ],
  7903. "description": "Create deep copies (clones) of your objects",
  7904. "keywords": [
  7905. "clone",
  7906. "copy",
  7907. "duplicate",
  7908. "object",
  7909. "object graph"
  7910. ],
  7911. "support": {
  7912. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7913. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  7914. },
  7915. "funding": [
  7916. {
  7917. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7918. "type": "tidelift"
  7919. }
  7920. ],
  7921. "time": "2024-06-12T14:39:25+00:00"
  7922. },
  7923. {
  7924. "name": "nikic/php-parser",
  7925. "version": "v5.0.2",
  7926. "source": {
  7927. "type": "git",
  7928. "url": "https://github.com/nikic/PHP-Parser.git",
  7929. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13"
  7930. },
  7931. "dist": {
  7932. "type": "zip",
  7933. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13",
  7934. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13",
  7935. "shasum": ""
  7936. },
  7937. "require": {
  7938. "ext-ctype": "*",
  7939. "ext-json": "*",
  7940. "ext-tokenizer": "*",
  7941. "php": ">=7.4"
  7942. },
  7943. "require-dev": {
  7944. "ircmaxell/php-yacc": "^0.0.7",
  7945. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7946. },
  7947. "bin": [
  7948. "bin/php-parse"
  7949. ],
  7950. "type": "library",
  7951. "extra": {
  7952. "branch-alias": {
  7953. "dev-master": "5.0-dev"
  7954. }
  7955. },
  7956. "autoload": {
  7957. "psr-4": {
  7958. "PhpParser\\": "lib/PhpParser"
  7959. }
  7960. },
  7961. "notification-url": "https://packagist.org/downloads/",
  7962. "license": [
  7963. "BSD-3-Clause"
  7964. ],
  7965. "authors": [
  7966. {
  7967. "name": "Nikita Popov"
  7968. }
  7969. ],
  7970. "description": "A PHP parser written in PHP",
  7971. "keywords": [
  7972. "parser",
  7973. "php"
  7974. ],
  7975. "support": {
  7976. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7977. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2"
  7978. },
  7979. "time": "2024-03-05T20:51:40+00:00"
  7980. },
  7981. {
  7982. "name": "nunomaduro/phpinsights",
  7983. "version": "v2.11.0",
  7984. "source": {
  7985. "type": "git",
  7986. "url": "https://github.com/nunomaduro/phpinsights.git",
  7987. "reference": "f476219759a61aad988641476259465c77203383"
  7988. },
  7989. "dist": {
  7990. "type": "zip",
  7991. "url": "https://api.github.com/repos/nunomaduro/phpinsights/zipball/f476219759a61aad988641476259465c77203383",
  7992. "reference": "f476219759a61aad988641476259465c77203383",
  7993. "shasum": ""
  7994. },
  7995. "require": {
  7996. "cmgmyr/phploc": "^8.0.3",
  7997. "composer/semver": "^3.4",
  7998. "ext-iconv": "*",
  7999. "ext-json": "*",
  8000. "ext-mbstring": "*",
  8001. "ext-tokenizer": "*",
  8002. "friendsofphp/php-cs-fixer": "^3.40.0",
  8003. "justinrainbow/json-schema": "^5.2.13",
  8004. "league/container": "^3.2|^4.2",
  8005. "php": "^7.4|^8.0",
  8006. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  8007. "psr/container": "^1.0|^2.0.2",
  8008. "psr/simple-cache": "^1.0|^2.0|^3.0",
  8009. "sebastian/diff": "^4.0|^5.0.3",
  8010. "slevomat/coding-standard": "^8.14.1",
  8011. "squizlabs/php_codesniffer": "^3.7.2",
  8012. "symfony/cache": "^5.4|^6.0|^7.0",
  8013. "symfony/console": "^5.4|^6.4|^7.0",
  8014. "symfony/finder": "^5.4|^6.0|^7.0",
  8015. "symfony/http-client": "^5.4|^6.0|^7.0",
  8016. "symfony/process": "^5.4|^6.4|^7.0"
  8017. },
  8018. "require-dev": {
  8019. "ergebnis/phpstan-rules": "^0.15.3",
  8020. "illuminate/console": "^5.8|^6.0|^7.0|^8.0|^9.20|^10.0",
  8021. "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.52.16|^10.0",
  8022. "mockery/mockery": "^1.6.6",
  8023. "phpstan/phpstan-strict-rules": "^0.12.11",
  8024. "phpunit/phpunit": "^8.0|^9.0|^10.4.2",
  8025. "rector/rector": "0.11.56",
  8026. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  8027. "thecodingmachine/phpstan-strict-rules": "^0.12.2"
  8028. },
  8029. "suggest": {
  8030. "ext-simplexml": "It is needed for the checkstyle formatter"
  8031. },
  8032. "bin": [
  8033. "bin/phpinsights"
  8034. ],
  8035. "type": "library",
  8036. "extra": {
  8037. "laravel": {
  8038. "providers": [
  8039. "NunoMaduro\\PhpInsights\\Application\\Adapters\\Laravel\\InsightsServiceProvider"
  8040. ]
  8041. }
  8042. },
  8043. "autoload": {
  8044. "psr-4": {
  8045. "NunoMaduro\\PhpInsights\\": "src"
  8046. }
  8047. },
  8048. "notification-url": "https://packagist.org/downloads/",
  8049. "license": [
  8050. "MIT"
  8051. ],
  8052. "authors": [
  8053. {
  8054. "name": "Nuno Maduro",
  8055. "email": "[email protected]"
  8056. }
  8057. ],
  8058. "description": "Instant PHP quality checks from your console.",
  8059. "keywords": [
  8060. "Insights",
  8061. "code",
  8062. "console",
  8063. "php",
  8064. "quality",
  8065. "source"
  8066. ],
  8067. "support": {
  8068. "issues": "https://github.com/nunomaduro/phpinsights/issues",
  8069. "source": "https://github.com/nunomaduro/phpinsights/tree/v2.11.0"
  8070. },
  8071. "funding": [
  8072. {
  8073. "url": "https://github.com/JustSteveKing",
  8074. "type": "github"
  8075. },
  8076. {
  8077. "url": "https://github.com/cmgmyr",
  8078. "type": "github"
  8079. },
  8080. {
  8081. "url": "https://github.com/nunomaduro",
  8082. "type": "github"
  8083. }
  8084. ],
  8085. "time": "2023-11-30T10:54:50+00:00"
  8086. },
  8087. {
  8088. "name": "phar-io/manifest",
  8089. "version": "2.0.4",
  8090. "source": {
  8091. "type": "git",
  8092. "url": "https://github.com/phar-io/manifest.git",
  8093. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8094. },
  8095. "dist": {
  8096. "type": "zip",
  8097. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8098. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8099. "shasum": ""
  8100. },
  8101. "require": {
  8102. "ext-dom": "*",
  8103. "ext-libxml": "*",
  8104. "ext-phar": "*",
  8105. "ext-xmlwriter": "*",
  8106. "phar-io/version": "^3.0.1",
  8107. "php": "^7.2 || ^8.0"
  8108. },
  8109. "type": "library",
  8110. "extra": {
  8111. "branch-alias": {
  8112. "dev-master": "2.0.x-dev"
  8113. }
  8114. },
  8115. "autoload": {
  8116. "classmap": [
  8117. "src/"
  8118. ]
  8119. },
  8120. "notification-url": "https://packagist.org/downloads/",
  8121. "license": [
  8122. "BSD-3-Clause"
  8123. ],
  8124. "authors": [
  8125. {
  8126. "name": "Arne Blankerts",
  8127. "email": "[email protected]",
  8128. "role": "Developer"
  8129. },
  8130. {
  8131. "name": "Sebastian Heuer",
  8132. "email": "[email protected]",
  8133. "role": "Developer"
  8134. },
  8135. {
  8136. "name": "Sebastian Bergmann",
  8137. "email": "[email protected]",
  8138. "role": "Developer"
  8139. }
  8140. ],
  8141. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8142. "support": {
  8143. "issues": "https://github.com/phar-io/manifest/issues",
  8144. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8145. },
  8146. "funding": [
  8147. {
  8148. "url": "https://github.com/theseer",
  8149. "type": "github"
  8150. }
  8151. ],
  8152. "time": "2024-03-03T12:33:53+00:00"
  8153. },
  8154. {
  8155. "name": "phar-io/version",
  8156. "version": "3.2.1",
  8157. "source": {
  8158. "type": "git",
  8159. "url": "https://github.com/phar-io/version.git",
  8160. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8161. },
  8162. "dist": {
  8163. "type": "zip",
  8164. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8165. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8166. "shasum": ""
  8167. },
  8168. "require": {
  8169. "php": "^7.2 || ^8.0"
  8170. },
  8171. "type": "library",
  8172. "autoload": {
  8173. "classmap": [
  8174. "src/"
  8175. ]
  8176. },
  8177. "notification-url": "https://packagist.org/downloads/",
  8178. "license": [
  8179. "BSD-3-Clause"
  8180. ],
  8181. "authors": [
  8182. {
  8183. "name": "Arne Blankerts",
  8184. "email": "[email protected]",
  8185. "role": "Developer"
  8186. },
  8187. {
  8188. "name": "Sebastian Heuer",
  8189. "email": "[email protected]",
  8190. "role": "Developer"
  8191. },
  8192. {
  8193. "name": "Sebastian Bergmann",
  8194. "email": "[email protected]",
  8195. "role": "Developer"
  8196. }
  8197. ],
  8198. "description": "Library for handling version information and constraints",
  8199. "support": {
  8200. "issues": "https://github.com/phar-io/version/issues",
  8201. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8202. },
  8203. "time": "2022-02-21T01:04:05+00:00"
  8204. },
  8205. {
  8206. "name": "php-parallel-lint/php-parallel-lint",
  8207. "version": "v1.4.0",
  8208. "source": {
  8209. "type": "git",
  8210. "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
  8211. "reference": "6db563514f27e19595a19f45a4bf757b6401194e"
  8212. },
  8213. "dist": {
  8214. "type": "zip",
  8215. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6db563514f27e19595a19f45a4bf757b6401194e",
  8216. "reference": "6db563514f27e19595a19f45a4bf757b6401194e",
  8217. "shasum": ""
  8218. },
  8219. "require": {
  8220. "ext-json": "*",
  8221. "php": ">=5.3.0"
  8222. },
  8223. "replace": {
  8224. "grogy/php-parallel-lint": "*",
  8225. "jakub-onderka/php-parallel-lint": "*"
  8226. },
  8227. "require-dev": {
  8228. "nette/tester": "^1.3 || ^2.0",
  8229. "php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
  8230. "squizlabs/php_codesniffer": "^3.6"
  8231. },
  8232. "suggest": {
  8233. "php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
  8234. },
  8235. "bin": [
  8236. "parallel-lint"
  8237. ],
  8238. "type": "library",
  8239. "autoload": {
  8240. "classmap": [
  8241. "./src/"
  8242. ]
  8243. },
  8244. "notification-url": "https://packagist.org/downloads/",
  8245. "license": [
  8246. "BSD-2-Clause"
  8247. ],
  8248. "authors": [
  8249. {
  8250. "name": "Jakub Onderka",
  8251. "email": "[email protected]"
  8252. }
  8253. ],
  8254. "description": "This tool checks the syntax of PHP files about 20x faster than serial check.",
  8255. "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
  8256. "keywords": [
  8257. "lint",
  8258. "static analysis"
  8259. ],
  8260. "support": {
  8261. "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
  8262. "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.4.0"
  8263. },
  8264. "time": "2024-03-27T12:14:49+00:00"
  8265. },
  8266. {
  8267. "name": "phpstan/phpdoc-parser",
  8268. "version": "1.29.1",
  8269. "source": {
  8270. "type": "git",
  8271. "url": "https://github.com/phpstan/phpdoc-parser.git",
  8272. "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4"
  8273. },
  8274. "dist": {
  8275. "type": "zip",
  8276. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fcaefacf2d5c417e928405b71b400d4ce10daaf4",
  8277. "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4",
  8278. "shasum": ""
  8279. },
  8280. "require": {
  8281. "php": "^7.2 || ^8.0"
  8282. },
  8283. "require-dev": {
  8284. "doctrine/annotations": "^2.0",
  8285. "nikic/php-parser": "^4.15",
  8286. "php-parallel-lint/php-parallel-lint": "^1.2",
  8287. "phpstan/extension-installer": "^1.0",
  8288. "phpstan/phpstan": "^1.5",
  8289. "phpstan/phpstan-phpunit": "^1.1",
  8290. "phpstan/phpstan-strict-rules": "^1.0",
  8291. "phpunit/phpunit": "^9.5",
  8292. "symfony/process": "^5.2"
  8293. },
  8294. "type": "library",
  8295. "autoload": {
  8296. "psr-4": {
  8297. "PHPStan\\PhpDocParser\\": [
  8298. "src/"
  8299. ]
  8300. }
  8301. },
  8302. "notification-url": "https://packagist.org/downloads/",
  8303. "license": [
  8304. "MIT"
  8305. ],
  8306. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  8307. "support": {
  8308. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  8309. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.29.1"
  8310. },
  8311. "time": "2024-05-31T08:52:43+00:00"
  8312. },
  8313. {
  8314. "name": "phpunit/php-code-coverage",
  8315. "version": "10.1.14",
  8316. "source": {
  8317. "type": "git",
  8318. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8319. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  8320. },
  8321. "dist": {
  8322. "type": "zip",
  8323. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8324. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8325. "shasum": ""
  8326. },
  8327. "require": {
  8328. "ext-dom": "*",
  8329. "ext-libxml": "*",
  8330. "ext-xmlwriter": "*",
  8331. "nikic/php-parser": "^4.18 || ^5.0",
  8332. "php": ">=8.1",
  8333. "phpunit/php-file-iterator": "^4.0",
  8334. "phpunit/php-text-template": "^3.0",
  8335. "sebastian/code-unit-reverse-lookup": "^3.0",
  8336. "sebastian/complexity": "^3.0",
  8337. "sebastian/environment": "^6.0",
  8338. "sebastian/lines-of-code": "^2.0",
  8339. "sebastian/version": "^4.0",
  8340. "theseer/tokenizer": "^1.2.0"
  8341. },
  8342. "require-dev": {
  8343. "phpunit/phpunit": "^10.1"
  8344. },
  8345. "suggest": {
  8346. "ext-pcov": "PHP extension that provides line coverage",
  8347. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8348. },
  8349. "type": "library",
  8350. "extra": {
  8351. "branch-alias": {
  8352. "dev-main": "10.1-dev"
  8353. }
  8354. },
  8355. "autoload": {
  8356. "classmap": [
  8357. "src/"
  8358. ]
  8359. },
  8360. "notification-url": "https://packagist.org/downloads/",
  8361. "license": [
  8362. "BSD-3-Clause"
  8363. ],
  8364. "authors": [
  8365. {
  8366. "name": "Sebastian Bergmann",
  8367. "email": "[email protected]",
  8368. "role": "lead"
  8369. }
  8370. ],
  8371. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8372. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8373. "keywords": [
  8374. "coverage",
  8375. "testing",
  8376. "xunit"
  8377. ],
  8378. "support": {
  8379. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8380. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8381. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8382. },
  8383. "funding": [
  8384. {
  8385. "url": "https://github.com/sebastianbergmann",
  8386. "type": "github"
  8387. }
  8388. ],
  8389. "time": "2024-03-12T15:33:41+00:00"
  8390. },
  8391. {
  8392. "name": "phpunit/php-file-iterator",
  8393. "version": "4.1.0",
  8394. "source": {
  8395. "type": "git",
  8396. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8397. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8398. },
  8399. "dist": {
  8400. "type": "zip",
  8401. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8402. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8403. "shasum": ""
  8404. },
  8405. "require": {
  8406. "php": ">=8.1"
  8407. },
  8408. "require-dev": {
  8409. "phpunit/phpunit": "^10.0"
  8410. },
  8411. "type": "library",
  8412. "extra": {
  8413. "branch-alias": {
  8414. "dev-main": "4.0-dev"
  8415. }
  8416. },
  8417. "autoload": {
  8418. "classmap": [
  8419. "src/"
  8420. ]
  8421. },
  8422. "notification-url": "https://packagist.org/downloads/",
  8423. "license": [
  8424. "BSD-3-Clause"
  8425. ],
  8426. "authors": [
  8427. {
  8428. "name": "Sebastian Bergmann",
  8429. "email": "[email protected]",
  8430. "role": "lead"
  8431. }
  8432. ],
  8433. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8434. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8435. "keywords": [
  8436. "filesystem",
  8437. "iterator"
  8438. ],
  8439. "support": {
  8440. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8441. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8442. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8443. },
  8444. "funding": [
  8445. {
  8446. "url": "https://github.com/sebastianbergmann",
  8447. "type": "github"
  8448. }
  8449. ],
  8450. "time": "2023-08-31T06:24:48+00:00"
  8451. },
  8452. {
  8453. "name": "phpunit/php-invoker",
  8454. "version": "4.0.0",
  8455. "source": {
  8456. "type": "git",
  8457. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8458. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8459. },
  8460. "dist": {
  8461. "type": "zip",
  8462. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8463. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8464. "shasum": ""
  8465. },
  8466. "require": {
  8467. "php": ">=8.1"
  8468. },
  8469. "require-dev": {
  8470. "ext-pcntl": "*",
  8471. "phpunit/phpunit": "^10.0"
  8472. },
  8473. "suggest": {
  8474. "ext-pcntl": "*"
  8475. },
  8476. "type": "library",
  8477. "extra": {
  8478. "branch-alias": {
  8479. "dev-main": "4.0-dev"
  8480. }
  8481. },
  8482. "autoload": {
  8483. "classmap": [
  8484. "src/"
  8485. ]
  8486. },
  8487. "notification-url": "https://packagist.org/downloads/",
  8488. "license": [
  8489. "BSD-3-Clause"
  8490. ],
  8491. "authors": [
  8492. {
  8493. "name": "Sebastian Bergmann",
  8494. "email": "[email protected]",
  8495. "role": "lead"
  8496. }
  8497. ],
  8498. "description": "Invoke callables with a timeout",
  8499. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8500. "keywords": [
  8501. "process"
  8502. ],
  8503. "support": {
  8504. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8505. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8506. },
  8507. "funding": [
  8508. {
  8509. "url": "https://github.com/sebastianbergmann",
  8510. "type": "github"
  8511. }
  8512. ],
  8513. "time": "2023-02-03T06:56:09+00:00"
  8514. },
  8515. {
  8516. "name": "phpunit/php-text-template",
  8517. "version": "3.0.1",
  8518. "source": {
  8519. "type": "git",
  8520. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8521. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8522. },
  8523. "dist": {
  8524. "type": "zip",
  8525. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8526. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8527. "shasum": ""
  8528. },
  8529. "require": {
  8530. "php": ">=8.1"
  8531. },
  8532. "require-dev": {
  8533. "phpunit/phpunit": "^10.0"
  8534. },
  8535. "type": "library",
  8536. "extra": {
  8537. "branch-alias": {
  8538. "dev-main": "3.0-dev"
  8539. }
  8540. },
  8541. "autoload": {
  8542. "classmap": [
  8543. "src/"
  8544. ]
  8545. },
  8546. "notification-url": "https://packagist.org/downloads/",
  8547. "license": [
  8548. "BSD-3-Clause"
  8549. ],
  8550. "authors": [
  8551. {
  8552. "name": "Sebastian Bergmann",
  8553. "email": "[email protected]",
  8554. "role": "lead"
  8555. }
  8556. ],
  8557. "description": "Simple template engine.",
  8558. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8559. "keywords": [
  8560. "template"
  8561. ],
  8562. "support": {
  8563. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8564. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8565. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8566. },
  8567. "funding": [
  8568. {
  8569. "url": "https://github.com/sebastianbergmann",
  8570. "type": "github"
  8571. }
  8572. ],
  8573. "time": "2023-08-31T14:07:24+00:00"
  8574. },
  8575. {
  8576. "name": "phpunit/php-timer",
  8577. "version": "6.0.0",
  8578. "source": {
  8579. "type": "git",
  8580. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8581. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8582. },
  8583. "dist": {
  8584. "type": "zip",
  8585. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8586. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8587. "shasum": ""
  8588. },
  8589. "require": {
  8590. "php": ">=8.1"
  8591. },
  8592. "require-dev": {
  8593. "phpunit/phpunit": "^10.0"
  8594. },
  8595. "type": "library",
  8596. "extra": {
  8597. "branch-alias": {
  8598. "dev-main": "6.0-dev"
  8599. }
  8600. },
  8601. "autoload": {
  8602. "classmap": [
  8603. "src/"
  8604. ]
  8605. },
  8606. "notification-url": "https://packagist.org/downloads/",
  8607. "license": [
  8608. "BSD-3-Clause"
  8609. ],
  8610. "authors": [
  8611. {
  8612. "name": "Sebastian Bergmann",
  8613. "email": "[email protected]",
  8614. "role": "lead"
  8615. }
  8616. ],
  8617. "description": "Utility class for timing",
  8618. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8619. "keywords": [
  8620. "timer"
  8621. ],
  8622. "support": {
  8623. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8624. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8625. },
  8626. "funding": [
  8627. {
  8628. "url": "https://github.com/sebastianbergmann",
  8629. "type": "github"
  8630. }
  8631. ],
  8632. "time": "2023-02-03T06:57:52+00:00"
  8633. },
  8634. {
  8635. "name": "phpunit/phpunit",
  8636. "version": "10.5.20",
  8637. "source": {
  8638. "type": "git",
  8639. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8640. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8641. },
  8642. "dist": {
  8643. "type": "zip",
  8644. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8645. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8646. "shasum": ""
  8647. },
  8648. "require": {
  8649. "ext-dom": "*",
  8650. "ext-json": "*",
  8651. "ext-libxml": "*",
  8652. "ext-mbstring": "*",
  8653. "ext-xml": "*",
  8654. "ext-xmlwriter": "*",
  8655. "myclabs/deep-copy": "^1.10.1",
  8656. "phar-io/manifest": "^2.0.3",
  8657. "phar-io/version": "^3.0.2",
  8658. "php": ">=8.1",
  8659. "phpunit/php-code-coverage": "^10.1.5",
  8660. "phpunit/php-file-iterator": "^4.0",
  8661. "phpunit/php-invoker": "^4.0",
  8662. "phpunit/php-text-template": "^3.0",
  8663. "phpunit/php-timer": "^6.0",
  8664. "sebastian/cli-parser": "^2.0",
  8665. "sebastian/code-unit": "^2.0",
  8666. "sebastian/comparator": "^5.0",
  8667. "sebastian/diff": "^5.0",
  8668. "sebastian/environment": "^6.0",
  8669. "sebastian/exporter": "^5.1",
  8670. "sebastian/global-state": "^6.0.1",
  8671. "sebastian/object-enumerator": "^5.0",
  8672. "sebastian/recursion-context": "^5.0",
  8673. "sebastian/type": "^4.0",
  8674. "sebastian/version": "^4.0"
  8675. },
  8676. "suggest": {
  8677. "ext-soap": "To be able to generate mocks based on WSDL files"
  8678. },
  8679. "bin": [
  8680. "phpunit"
  8681. ],
  8682. "type": "library",
  8683. "extra": {
  8684. "branch-alias": {
  8685. "dev-main": "10.5-dev"
  8686. }
  8687. },
  8688. "autoload": {
  8689. "files": [
  8690. "src/Framework/Assert/Functions.php"
  8691. ],
  8692. "classmap": [
  8693. "src/"
  8694. ]
  8695. },
  8696. "notification-url": "https://packagist.org/downloads/",
  8697. "license": [
  8698. "BSD-3-Clause"
  8699. ],
  8700. "authors": [
  8701. {
  8702. "name": "Sebastian Bergmann",
  8703. "email": "[email protected]",
  8704. "role": "lead"
  8705. }
  8706. ],
  8707. "description": "The PHP Unit Testing framework.",
  8708. "homepage": "https://phpunit.de/",
  8709. "keywords": [
  8710. "phpunit",
  8711. "testing",
  8712. "xunit"
  8713. ],
  8714. "support": {
  8715. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8716. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8717. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8718. },
  8719. "funding": [
  8720. {
  8721. "url": "https://phpunit.de/sponsors.html",
  8722. "type": "custom"
  8723. },
  8724. {
  8725. "url": "https://github.com/sebastianbergmann",
  8726. "type": "github"
  8727. },
  8728. {
  8729. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8730. "type": "tidelift"
  8731. }
  8732. ],
  8733. "time": "2024-04-24T06:32:35+00:00"
  8734. },
  8735. {
  8736. "name": "psr/cache",
  8737. "version": "3.0.0",
  8738. "source": {
  8739. "type": "git",
  8740. "url": "https://github.com/php-fig/cache.git",
  8741. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  8742. },
  8743. "dist": {
  8744. "type": "zip",
  8745. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8746. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8747. "shasum": ""
  8748. },
  8749. "require": {
  8750. "php": ">=8.0.0"
  8751. },
  8752. "type": "library",
  8753. "extra": {
  8754. "branch-alias": {
  8755. "dev-master": "1.0.x-dev"
  8756. }
  8757. },
  8758. "autoload": {
  8759. "psr-4": {
  8760. "Psr\\Cache\\": "src/"
  8761. }
  8762. },
  8763. "notification-url": "https://packagist.org/downloads/",
  8764. "license": [
  8765. "MIT"
  8766. ],
  8767. "authors": [
  8768. {
  8769. "name": "PHP-FIG",
  8770. "homepage": "https://www.php-fig.org/"
  8771. }
  8772. ],
  8773. "description": "Common interface for caching libraries",
  8774. "keywords": [
  8775. "cache",
  8776. "psr",
  8777. "psr-6"
  8778. ],
  8779. "support": {
  8780. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  8781. },
  8782. "time": "2021-02-03T23:26:27+00:00"
  8783. },
  8784. {
  8785. "name": "react/cache",
  8786. "version": "v1.2.0",
  8787. "source": {
  8788. "type": "git",
  8789. "url": "https://github.com/reactphp/cache.git",
  8790. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8791. },
  8792. "dist": {
  8793. "type": "zip",
  8794. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8795. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8796. "shasum": ""
  8797. },
  8798. "require": {
  8799. "php": ">=5.3.0",
  8800. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8801. },
  8802. "require-dev": {
  8803. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8804. },
  8805. "type": "library",
  8806. "autoload": {
  8807. "psr-4": {
  8808. "React\\Cache\\": "src/"
  8809. }
  8810. },
  8811. "notification-url": "https://packagist.org/downloads/",
  8812. "license": [
  8813. "MIT"
  8814. ],
  8815. "authors": [
  8816. {
  8817. "name": "Christian Lück",
  8818. "email": "[email protected]",
  8819. "homepage": "https://clue.engineering/"
  8820. },
  8821. {
  8822. "name": "Cees-Jan Kiewiet",
  8823. "email": "[email protected]",
  8824. "homepage": "https://wyrihaximus.net/"
  8825. },
  8826. {
  8827. "name": "Jan Sorgalla",
  8828. "email": "[email protected]",
  8829. "homepage": "https://sorgalla.com/"
  8830. },
  8831. {
  8832. "name": "Chris Boden",
  8833. "email": "[email protected]",
  8834. "homepage": "https://cboden.dev/"
  8835. }
  8836. ],
  8837. "description": "Async, Promise-based cache interface for ReactPHP",
  8838. "keywords": [
  8839. "cache",
  8840. "caching",
  8841. "promise",
  8842. "reactphp"
  8843. ],
  8844. "support": {
  8845. "issues": "https://github.com/reactphp/cache/issues",
  8846. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8847. },
  8848. "funding": [
  8849. {
  8850. "url": "https://opencollective.com/reactphp",
  8851. "type": "open_collective"
  8852. }
  8853. ],
  8854. "time": "2022-11-30T15:59:55+00:00"
  8855. },
  8856. {
  8857. "name": "react/child-process",
  8858. "version": "v0.6.5",
  8859. "source": {
  8860. "type": "git",
  8861. "url": "https://github.com/reactphp/child-process.git",
  8862. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8863. },
  8864. "dist": {
  8865. "type": "zip",
  8866. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8867. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8868. "shasum": ""
  8869. },
  8870. "require": {
  8871. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8872. "php": ">=5.3.0",
  8873. "react/event-loop": "^1.2",
  8874. "react/stream": "^1.2"
  8875. },
  8876. "require-dev": {
  8877. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8878. "react/socket": "^1.8",
  8879. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8880. },
  8881. "type": "library",
  8882. "autoload": {
  8883. "psr-4": {
  8884. "React\\ChildProcess\\": "src"
  8885. }
  8886. },
  8887. "notification-url": "https://packagist.org/downloads/",
  8888. "license": [
  8889. "MIT"
  8890. ],
  8891. "authors": [
  8892. {
  8893. "name": "Christian Lück",
  8894. "email": "[email protected]",
  8895. "homepage": "https://clue.engineering/"
  8896. },
  8897. {
  8898. "name": "Cees-Jan Kiewiet",
  8899. "email": "[email protected]",
  8900. "homepage": "https://wyrihaximus.net/"
  8901. },
  8902. {
  8903. "name": "Jan Sorgalla",
  8904. "email": "[email protected]",
  8905. "homepage": "https://sorgalla.com/"
  8906. },
  8907. {
  8908. "name": "Chris Boden",
  8909. "email": "[email protected]",
  8910. "homepage": "https://cboden.dev/"
  8911. }
  8912. ],
  8913. "description": "Event-driven library for executing child processes with ReactPHP.",
  8914. "keywords": [
  8915. "event-driven",
  8916. "process",
  8917. "reactphp"
  8918. ],
  8919. "support": {
  8920. "issues": "https://github.com/reactphp/child-process/issues",
  8921. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8922. },
  8923. "funding": [
  8924. {
  8925. "url": "https://github.com/WyriHaximus",
  8926. "type": "github"
  8927. },
  8928. {
  8929. "url": "https://github.com/clue",
  8930. "type": "github"
  8931. }
  8932. ],
  8933. "time": "2022-09-16T13:41:56+00:00"
  8934. },
  8935. {
  8936. "name": "react/dns",
  8937. "version": "v1.13.0",
  8938. "source": {
  8939. "type": "git",
  8940. "url": "https://github.com/reactphp/dns.git",
  8941. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  8942. },
  8943. "dist": {
  8944. "type": "zip",
  8945. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8946. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8947. "shasum": ""
  8948. },
  8949. "require": {
  8950. "php": ">=5.3.0",
  8951. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8952. "react/event-loop": "^1.2",
  8953. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  8954. },
  8955. "require-dev": {
  8956. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8957. "react/async": "^4.3 || ^3 || ^2",
  8958. "react/promise-timer": "^1.11"
  8959. },
  8960. "type": "library",
  8961. "autoload": {
  8962. "psr-4": {
  8963. "React\\Dns\\": "src/"
  8964. }
  8965. },
  8966. "notification-url": "https://packagist.org/downloads/",
  8967. "license": [
  8968. "MIT"
  8969. ],
  8970. "authors": [
  8971. {
  8972. "name": "Christian Lück",
  8973. "email": "[email protected]",
  8974. "homepage": "https://clue.engineering/"
  8975. },
  8976. {
  8977. "name": "Cees-Jan Kiewiet",
  8978. "email": "[email protected]",
  8979. "homepage": "https://wyrihaximus.net/"
  8980. },
  8981. {
  8982. "name": "Jan Sorgalla",
  8983. "email": "[email protected]",
  8984. "homepage": "https://sorgalla.com/"
  8985. },
  8986. {
  8987. "name": "Chris Boden",
  8988. "email": "[email protected]",
  8989. "homepage": "https://cboden.dev/"
  8990. }
  8991. ],
  8992. "description": "Async DNS resolver for ReactPHP",
  8993. "keywords": [
  8994. "async",
  8995. "dns",
  8996. "dns-resolver",
  8997. "reactphp"
  8998. ],
  8999. "support": {
  9000. "issues": "https://github.com/reactphp/dns/issues",
  9001. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9002. },
  9003. "funding": [
  9004. {
  9005. "url": "https://opencollective.com/reactphp",
  9006. "type": "open_collective"
  9007. }
  9008. ],
  9009. "time": "2024-06-13T14:18:03+00:00"
  9010. },
  9011. {
  9012. "name": "react/event-loop",
  9013. "version": "v1.5.0",
  9014. "source": {
  9015. "type": "git",
  9016. "url": "https://github.com/reactphp/event-loop.git",
  9017. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9018. },
  9019. "dist": {
  9020. "type": "zip",
  9021. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9022. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9023. "shasum": ""
  9024. },
  9025. "require": {
  9026. "php": ">=5.3.0"
  9027. },
  9028. "require-dev": {
  9029. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9030. },
  9031. "suggest": {
  9032. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9033. },
  9034. "type": "library",
  9035. "autoload": {
  9036. "psr-4": {
  9037. "React\\EventLoop\\": "src/"
  9038. }
  9039. },
  9040. "notification-url": "https://packagist.org/downloads/",
  9041. "license": [
  9042. "MIT"
  9043. ],
  9044. "authors": [
  9045. {
  9046. "name": "Christian Lück",
  9047. "email": "[email protected]",
  9048. "homepage": "https://clue.engineering/"
  9049. },
  9050. {
  9051. "name": "Cees-Jan Kiewiet",
  9052. "email": "[email protected]",
  9053. "homepage": "https://wyrihaximus.net/"
  9054. },
  9055. {
  9056. "name": "Jan Sorgalla",
  9057. "email": "[email protected]",
  9058. "homepage": "https://sorgalla.com/"
  9059. },
  9060. {
  9061. "name": "Chris Boden",
  9062. "email": "[email protected]",
  9063. "homepage": "https://cboden.dev/"
  9064. }
  9065. ],
  9066. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9067. "keywords": [
  9068. "asynchronous",
  9069. "event-loop"
  9070. ],
  9071. "support": {
  9072. "issues": "https://github.com/reactphp/event-loop/issues",
  9073. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9074. },
  9075. "funding": [
  9076. {
  9077. "url": "https://opencollective.com/reactphp",
  9078. "type": "open_collective"
  9079. }
  9080. ],
  9081. "time": "2023-11-13T13:48:05+00:00"
  9082. },
  9083. {
  9084. "name": "react/promise",
  9085. "version": "v3.2.0",
  9086. "source": {
  9087. "type": "git",
  9088. "url": "https://github.com/reactphp/promise.git",
  9089. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9090. },
  9091. "dist": {
  9092. "type": "zip",
  9093. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9094. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9095. "shasum": ""
  9096. },
  9097. "require": {
  9098. "php": ">=7.1.0"
  9099. },
  9100. "require-dev": {
  9101. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9102. "phpunit/phpunit": "^9.6 || ^7.5"
  9103. },
  9104. "type": "library",
  9105. "autoload": {
  9106. "files": [
  9107. "src/functions_include.php"
  9108. ],
  9109. "psr-4": {
  9110. "React\\Promise\\": "src/"
  9111. }
  9112. },
  9113. "notification-url": "https://packagist.org/downloads/",
  9114. "license": [
  9115. "MIT"
  9116. ],
  9117. "authors": [
  9118. {
  9119. "name": "Jan Sorgalla",
  9120. "email": "[email protected]",
  9121. "homepage": "https://sorgalla.com/"
  9122. },
  9123. {
  9124. "name": "Christian Lück",
  9125. "email": "[email protected]",
  9126. "homepage": "https://clue.engineering/"
  9127. },
  9128. {
  9129. "name": "Cees-Jan Kiewiet",
  9130. "email": "[email protected]",
  9131. "homepage": "https://wyrihaximus.net/"
  9132. },
  9133. {
  9134. "name": "Chris Boden",
  9135. "email": "[email protected]",
  9136. "homepage": "https://cboden.dev/"
  9137. }
  9138. ],
  9139. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9140. "keywords": [
  9141. "promise",
  9142. "promises"
  9143. ],
  9144. "support": {
  9145. "issues": "https://github.com/reactphp/promise/issues",
  9146. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9147. },
  9148. "funding": [
  9149. {
  9150. "url": "https://opencollective.com/reactphp",
  9151. "type": "open_collective"
  9152. }
  9153. ],
  9154. "time": "2024-05-24T10:39:05+00:00"
  9155. },
  9156. {
  9157. "name": "react/socket",
  9158. "version": "v1.15.0",
  9159. "source": {
  9160. "type": "git",
  9161. "url": "https://github.com/reactphp/socket.git",
  9162. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  9163. },
  9164. "dist": {
  9165. "type": "zip",
  9166. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9167. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9168. "shasum": ""
  9169. },
  9170. "require": {
  9171. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9172. "php": ">=5.3.0",
  9173. "react/dns": "^1.11",
  9174. "react/event-loop": "^1.2",
  9175. "react/promise": "^3 || ^2.6 || ^1.2.1",
  9176. "react/stream": "^1.2"
  9177. },
  9178. "require-dev": {
  9179. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9180. "react/async": "^4 || ^3 || ^2",
  9181. "react/promise-stream": "^1.4",
  9182. "react/promise-timer": "^1.10"
  9183. },
  9184. "type": "library",
  9185. "autoload": {
  9186. "psr-4": {
  9187. "React\\Socket\\": "src/"
  9188. }
  9189. },
  9190. "notification-url": "https://packagist.org/downloads/",
  9191. "license": [
  9192. "MIT"
  9193. ],
  9194. "authors": [
  9195. {
  9196. "name": "Christian Lück",
  9197. "email": "[email protected]",
  9198. "homepage": "https://clue.engineering/"
  9199. },
  9200. {
  9201. "name": "Cees-Jan Kiewiet",
  9202. "email": "[email protected]",
  9203. "homepage": "https://wyrihaximus.net/"
  9204. },
  9205. {
  9206. "name": "Jan Sorgalla",
  9207. "email": "[email protected]",
  9208. "homepage": "https://sorgalla.com/"
  9209. },
  9210. {
  9211. "name": "Chris Boden",
  9212. "email": "[email protected]",
  9213. "homepage": "https://cboden.dev/"
  9214. }
  9215. ],
  9216. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9217. "keywords": [
  9218. "Connection",
  9219. "Socket",
  9220. "async",
  9221. "reactphp",
  9222. "stream"
  9223. ],
  9224. "support": {
  9225. "issues": "https://github.com/reactphp/socket/issues",
  9226. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  9227. },
  9228. "funding": [
  9229. {
  9230. "url": "https://opencollective.com/reactphp",
  9231. "type": "open_collective"
  9232. }
  9233. ],
  9234. "time": "2023-12-15T11:02:10+00:00"
  9235. },
  9236. {
  9237. "name": "react/stream",
  9238. "version": "v1.4.0",
  9239. "source": {
  9240. "type": "git",
  9241. "url": "https://github.com/reactphp/stream.git",
  9242. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9243. },
  9244. "dist": {
  9245. "type": "zip",
  9246. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9247. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9248. "shasum": ""
  9249. },
  9250. "require": {
  9251. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9252. "php": ">=5.3.8",
  9253. "react/event-loop": "^1.2"
  9254. },
  9255. "require-dev": {
  9256. "clue/stream-filter": "~1.2",
  9257. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9258. },
  9259. "type": "library",
  9260. "autoload": {
  9261. "psr-4": {
  9262. "React\\Stream\\": "src/"
  9263. }
  9264. },
  9265. "notification-url": "https://packagist.org/downloads/",
  9266. "license": [
  9267. "MIT"
  9268. ],
  9269. "authors": [
  9270. {
  9271. "name": "Christian Lück",
  9272. "email": "[email protected]",
  9273. "homepage": "https://clue.engineering/"
  9274. },
  9275. {
  9276. "name": "Cees-Jan Kiewiet",
  9277. "email": "[email protected]",
  9278. "homepage": "https://wyrihaximus.net/"
  9279. },
  9280. {
  9281. "name": "Jan Sorgalla",
  9282. "email": "[email protected]",
  9283. "homepage": "https://sorgalla.com/"
  9284. },
  9285. {
  9286. "name": "Chris Boden",
  9287. "email": "[email protected]",
  9288. "homepage": "https://cboden.dev/"
  9289. }
  9290. ],
  9291. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9292. "keywords": [
  9293. "event-driven",
  9294. "io",
  9295. "non-blocking",
  9296. "pipe",
  9297. "reactphp",
  9298. "readable",
  9299. "stream",
  9300. "writable"
  9301. ],
  9302. "support": {
  9303. "issues": "https://github.com/reactphp/stream/issues",
  9304. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9305. },
  9306. "funding": [
  9307. {
  9308. "url": "https://opencollective.com/reactphp",
  9309. "type": "open_collective"
  9310. }
  9311. ],
  9312. "time": "2024-06-11T12:45:25+00:00"
  9313. },
  9314. {
  9315. "name": "sebastian/cli-parser",
  9316. "version": "2.0.1",
  9317. "source": {
  9318. "type": "git",
  9319. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9320. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9321. },
  9322. "dist": {
  9323. "type": "zip",
  9324. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9325. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9326. "shasum": ""
  9327. },
  9328. "require": {
  9329. "php": ">=8.1"
  9330. },
  9331. "require-dev": {
  9332. "phpunit/phpunit": "^10.0"
  9333. },
  9334. "type": "library",
  9335. "extra": {
  9336. "branch-alias": {
  9337. "dev-main": "2.0-dev"
  9338. }
  9339. },
  9340. "autoload": {
  9341. "classmap": [
  9342. "src/"
  9343. ]
  9344. },
  9345. "notification-url": "https://packagist.org/downloads/",
  9346. "license": [
  9347. "BSD-3-Clause"
  9348. ],
  9349. "authors": [
  9350. {
  9351. "name": "Sebastian Bergmann",
  9352. "email": "[email protected]",
  9353. "role": "lead"
  9354. }
  9355. ],
  9356. "description": "Library for parsing CLI options",
  9357. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9358. "support": {
  9359. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9360. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9361. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9362. },
  9363. "funding": [
  9364. {
  9365. "url": "https://github.com/sebastianbergmann",
  9366. "type": "github"
  9367. }
  9368. ],
  9369. "time": "2024-03-02T07:12:49+00:00"
  9370. },
  9371. {
  9372. "name": "sebastian/code-unit",
  9373. "version": "2.0.0",
  9374. "source": {
  9375. "type": "git",
  9376. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9377. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9378. },
  9379. "dist": {
  9380. "type": "zip",
  9381. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9382. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9383. "shasum": ""
  9384. },
  9385. "require": {
  9386. "php": ">=8.1"
  9387. },
  9388. "require-dev": {
  9389. "phpunit/phpunit": "^10.0"
  9390. },
  9391. "type": "library",
  9392. "extra": {
  9393. "branch-alias": {
  9394. "dev-main": "2.0-dev"
  9395. }
  9396. },
  9397. "autoload": {
  9398. "classmap": [
  9399. "src/"
  9400. ]
  9401. },
  9402. "notification-url": "https://packagist.org/downloads/",
  9403. "license": [
  9404. "BSD-3-Clause"
  9405. ],
  9406. "authors": [
  9407. {
  9408. "name": "Sebastian Bergmann",
  9409. "email": "[email protected]",
  9410. "role": "lead"
  9411. }
  9412. ],
  9413. "description": "Collection of value objects that represent the PHP code units",
  9414. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9415. "support": {
  9416. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9417. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9418. },
  9419. "funding": [
  9420. {
  9421. "url": "https://github.com/sebastianbergmann",
  9422. "type": "github"
  9423. }
  9424. ],
  9425. "time": "2023-02-03T06:58:43+00:00"
  9426. },
  9427. {
  9428. "name": "sebastian/code-unit-reverse-lookup",
  9429. "version": "3.0.0",
  9430. "source": {
  9431. "type": "git",
  9432. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9433. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9434. },
  9435. "dist": {
  9436. "type": "zip",
  9437. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9438. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9439. "shasum": ""
  9440. },
  9441. "require": {
  9442. "php": ">=8.1"
  9443. },
  9444. "require-dev": {
  9445. "phpunit/phpunit": "^10.0"
  9446. },
  9447. "type": "library",
  9448. "extra": {
  9449. "branch-alias": {
  9450. "dev-main": "3.0-dev"
  9451. }
  9452. },
  9453. "autoload": {
  9454. "classmap": [
  9455. "src/"
  9456. ]
  9457. },
  9458. "notification-url": "https://packagist.org/downloads/",
  9459. "license": [
  9460. "BSD-3-Clause"
  9461. ],
  9462. "authors": [
  9463. {
  9464. "name": "Sebastian Bergmann",
  9465. "email": "[email protected]"
  9466. }
  9467. ],
  9468. "description": "Looks up which function or method a line of code belongs to",
  9469. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9470. "support": {
  9471. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9472. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9473. },
  9474. "funding": [
  9475. {
  9476. "url": "https://github.com/sebastianbergmann",
  9477. "type": "github"
  9478. }
  9479. ],
  9480. "time": "2023-02-03T06:59:15+00:00"
  9481. },
  9482. {
  9483. "name": "sebastian/comparator",
  9484. "version": "5.0.1",
  9485. "source": {
  9486. "type": "git",
  9487. "url": "https://github.com/sebastianbergmann/comparator.git",
  9488. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9489. },
  9490. "dist": {
  9491. "type": "zip",
  9492. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9493. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9494. "shasum": ""
  9495. },
  9496. "require": {
  9497. "ext-dom": "*",
  9498. "ext-mbstring": "*",
  9499. "php": ">=8.1",
  9500. "sebastian/diff": "^5.0",
  9501. "sebastian/exporter": "^5.0"
  9502. },
  9503. "require-dev": {
  9504. "phpunit/phpunit": "^10.3"
  9505. },
  9506. "type": "library",
  9507. "extra": {
  9508. "branch-alias": {
  9509. "dev-main": "5.0-dev"
  9510. }
  9511. },
  9512. "autoload": {
  9513. "classmap": [
  9514. "src/"
  9515. ]
  9516. },
  9517. "notification-url": "https://packagist.org/downloads/",
  9518. "license": [
  9519. "BSD-3-Clause"
  9520. ],
  9521. "authors": [
  9522. {
  9523. "name": "Sebastian Bergmann",
  9524. "email": "[email protected]"
  9525. },
  9526. {
  9527. "name": "Jeff Welch",
  9528. "email": "[email protected]"
  9529. },
  9530. {
  9531. "name": "Volker Dusch",
  9532. "email": "[email protected]"
  9533. },
  9534. {
  9535. "name": "Bernhard Schussek",
  9536. "email": "[email protected]"
  9537. }
  9538. ],
  9539. "description": "Provides the functionality to compare PHP values for equality",
  9540. "homepage": "https://github.com/sebastianbergmann/comparator",
  9541. "keywords": [
  9542. "comparator",
  9543. "compare",
  9544. "equality"
  9545. ],
  9546. "support": {
  9547. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9548. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9549. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9550. },
  9551. "funding": [
  9552. {
  9553. "url": "https://github.com/sebastianbergmann",
  9554. "type": "github"
  9555. }
  9556. ],
  9557. "time": "2023-08-14T13:18:12+00:00"
  9558. },
  9559. {
  9560. "name": "sebastian/complexity",
  9561. "version": "3.2.0",
  9562. "source": {
  9563. "type": "git",
  9564. "url": "https://github.com/sebastianbergmann/complexity.git",
  9565. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9566. },
  9567. "dist": {
  9568. "type": "zip",
  9569. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9570. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9571. "shasum": ""
  9572. },
  9573. "require": {
  9574. "nikic/php-parser": "^4.18 || ^5.0",
  9575. "php": ">=8.1"
  9576. },
  9577. "require-dev": {
  9578. "phpunit/phpunit": "^10.0"
  9579. },
  9580. "type": "library",
  9581. "extra": {
  9582. "branch-alias": {
  9583. "dev-main": "3.2-dev"
  9584. }
  9585. },
  9586. "autoload": {
  9587. "classmap": [
  9588. "src/"
  9589. ]
  9590. },
  9591. "notification-url": "https://packagist.org/downloads/",
  9592. "license": [
  9593. "BSD-3-Clause"
  9594. ],
  9595. "authors": [
  9596. {
  9597. "name": "Sebastian Bergmann",
  9598. "email": "[email protected]",
  9599. "role": "lead"
  9600. }
  9601. ],
  9602. "description": "Library for calculating the complexity of PHP code units",
  9603. "homepage": "https://github.com/sebastianbergmann/complexity",
  9604. "support": {
  9605. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9606. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9607. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9608. },
  9609. "funding": [
  9610. {
  9611. "url": "https://github.com/sebastianbergmann",
  9612. "type": "github"
  9613. }
  9614. ],
  9615. "time": "2023-12-21T08:37:17+00:00"
  9616. },
  9617. {
  9618. "name": "sebastian/diff",
  9619. "version": "5.1.1",
  9620. "source": {
  9621. "type": "git",
  9622. "url": "https://github.com/sebastianbergmann/diff.git",
  9623. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9624. },
  9625. "dist": {
  9626. "type": "zip",
  9627. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9628. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9629. "shasum": ""
  9630. },
  9631. "require": {
  9632. "php": ">=8.1"
  9633. },
  9634. "require-dev": {
  9635. "phpunit/phpunit": "^10.0",
  9636. "symfony/process": "^6.4"
  9637. },
  9638. "type": "library",
  9639. "extra": {
  9640. "branch-alias": {
  9641. "dev-main": "5.1-dev"
  9642. }
  9643. },
  9644. "autoload": {
  9645. "classmap": [
  9646. "src/"
  9647. ]
  9648. },
  9649. "notification-url": "https://packagist.org/downloads/",
  9650. "license": [
  9651. "BSD-3-Clause"
  9652. ],
  9653. "authors": [
  9654. {
  9655. "name": "Sebastian Bergmann",
  9656. "email": "[email protected]"
  9657. },
  9658. {
  9659. "name": "Kore Nordmann",
  9660. "email": "[email protected]"
  9661. }
  9662. ],
  9663. "description": "Diff implementation",
  9664. "homepage": "https://github.com/sebastianbergmann/diff",
  9665. "keywords": [
  9666. "diff",
  9667. "udiff",
  9668. "unidiff",
  9669. "unified diff"
  9670. ],
  9671. "support": {
  9672. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9673. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9674. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9675. },
  9676. "funding": [
  9677. {
  9678. "url": "https://github.com/sebastianbergmann",
  9679. "type": "github"
  9680. }
  9681. ],
  9682. "time": "2024-03-02T07:15:17+00:00"
  9683. },
  9684. {
  9685. "name": "sebastian/environment",
  9686. "version": "6.1.0",
  9687. "source": {
  9688. "type": "git",
  9689. "url": "https://github.com/sebastianbergmann/environment.git",
  9690. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9691. },
  9692. "dist": {
  9693. "type": "zip",
  9694. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9695. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9696. "shasum": ""
  9697. },
  9698. "require": {
  9699. "php": ">=8.1"
  9700. },
  9701. "require-dev": {
  9702. "phpunit/phpunit": "^10.0"
  9703. },
  9704. "suggest": {
  9705. "ext-posix": "*"
  9706. },
  9707. "type": "library",
  9708. "extra": {
  9709. "branch-alias": {
  9710. "dev-main": "6.1-dev"
  9711. }
  9712. },
  9713. "autoload": {
  9714. "classmap": [
  9715. "src/"
  9716. ]
  9717. },
  9718. "notification-url": "https://packagist.org/downloads/",
  9719. "license": [
  9720. "BSD-3-Clause"
  9721. ],
  9722. "authors": [
  9723. {
  9724. "name": "Sebastian Bergmann",
  9725. "email": "[email protected]"
  9726. }
  9727. ],
  9728. "description": "Provides functionality to handle HHVM/PHP environments",
  9729. "homepage": "https://github.com/sebastianbergmann/environment",
  9730. "keywords": [
  9731. "Xdebug",
  9732. "environment",
  9733. "hhvm"
  9734. ],
  9735. "support": {
  9736. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9737. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9738. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9739. },
  9740. "funding": [
  9741. {
  9742. "url": "https://github.com/sebastianbergmann",
  9743. "type": "github"
  9744. }
  9745. ],
  9746. "time": "2024-03-23T08:47:14+00:00"
  9747. },
  9748. {
  9749. "name": "sebastian/exporter",
  9750. "version": "5.1.2",
  9751. "source": {
  9752. "type": "git",
  9753. "url": "https://github.com/sebastianbergmann/exporter.git",
  9754. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9755. },
  9756. "dist": {
  9757. "type": "zip",
  9758. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9759. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9760. "shasum": ""
  9761. },
  9762. "require": {
  9763. "ext-mbstring": "*",
  9764. "php": ">=8.1",
  9765. "sebastian/recursion-context": "^5.0"
  9766. },
  9767. "require-dev": {
  9768. "phpunit/phpunit": "^10.0"
  9769. },
  9770. "type": "library",
  9771. "extra": {
  9772. "branch-alias": {
  9773. "dev-main": "5.1-dev"
  9774. }
  9775. },
  9776. "autoload": {
  9777. "classmap": [
  9778. "src/"
  9779. ]
  9780. },
  9781. "notification-url": "https://packagist.org/downloads/",
  9782. "license": [
  9783. "BSD-3-Clause"
  9784. ],
  9785. "authors": [
  9786. {
  9787. "name": "Sebastian Bergmann",
  9788. "email": "[email protected]"
  9789. },
  9790. {
  9791. "name": "Jeff Welch",
  9792. "email": "[email protected]"
  9793. },
  9794. {
  9795. "name": "Volker Dusch",
  9796. "email": "[email protected]"
  9797. },
  9798. {
  9799. "name": "Adam Harvey",
  9800. "email": "[email protected]"
  9801. },
  9802. {
  9803. "name": "Bernhard Schussek",
  9804. "email": "[email protected]"
  9805. }
  9806. ],
  9807. "description": "Provides the functionality to export PHP variables for visualization",
  9808. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9809. "keywords": [
  9810. "export",
  9811. "exporter"
  9812. ],
  9813. "support": {
  9814. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9815. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9816. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9817. },
  9818. "funding": [
  9819. {
  9820. "url": "https://github.com/sebastianbergmann",
  9821. "type": "github"
  9822. }
  9823. ],
  9824. "time": "2024-03-02T07:17:12+00:00"
  9825. },
  9826. {
  9827. "name": "sebastian/global-state",
  9828. "version": "6.0.2",
  9829. "source": {
  9830. "type": "git",
  9831. "url": "https://github.com/sebastianbergmann/global-state.git",
  9832. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9833. },
  9834. "dist": {
  9835. "type": "zip",
  9836. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9837. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9838. "shasum": ""
  9839. },
  9840. "require": {
  9841. "php": ">=8.1",
  9842. "sebastian/object-reflector": "^3.0",
  9843. "sebastian/recursion-context": "^5.0"
  9844. },
  9845. "require-dev": {
  9846. "ext-dom": "*",
  9847. "phpunit/phpunit": "^10.0"
  9848. },
  9849. "type": "library",
  9850. "extra": {
  9851. "branch-alias": {
  9852. "dev-main": "6.0-dev"
  9853. }
  9854. },
  9855. "autoload": {
  9856. "classmap": [
  9857. "src/"
  9858. ]
  9859. },
  9860. "notification-url": "https://packagist.org/downloads/",
  9861. "license": [
  9862. "BSD-3-Clause"
  9863. ],
  9864. "authors": [
  9865. {
  9866. "name": "Sebastian Bergmann",
  9867. "email": "[email protected]"
  9868. }
  9869. ],
  9870. "description": "Snapshotting of global state",
  9871. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9872. "keywords": [
  9873. "global state"
  9874. ],
  9875. "support": {
  9876. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9877. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9878. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9879. },
  9880. "funding": [
  9881. {
  9882. "url": "https://github.com/sebastianbergmann",
  9883. "type": "github"
  9884. }
  9885. ],
  9886. "time": "2024-03-02T07:19:19+00:00"
  9887. },
  9888. {
  9889. "name": "sebastian/lines-of-code",
  9890. "version": "2.0.2",
  9891. "source": {
  9892. "type": "git",
  9893. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9894. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9895. },
  9896. "dist": {
  9897. "type": "zip",
  9898. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9899. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9900. "shasum": ""
  9901. },
  9902. "require": {
  9903. "nikic/php-parser": "^4.18 || ^5.0",
  9904. "php": ">=8.1"
  9905. },
  9906. "require-dev": {
  9907. "phpunit/phpunit": "^10.0"
  9908. },
  9909. "type": "library",
  9910. "extra": {
  9911. "branch-alias": {
  9912. "dev-main": "2.0-dev"
  9913. }
  9914. },
  9915. "autoload": {
  9916. "classmap": [
  9917. "src/"
  9918. ]
  9919. },
  9920. "notification-url": "https://packagist.org/downloads/",
  9921. "license": [
  9922. "BSD-3-Clause"
  9923. ],
  9924. "authors": [
  9925. {
  9926. "name": "Sebastian Bergmann",
  9927. "email": "[email protected]",
  9928. "role": "lead"
  9929. }
  9930. ],
  9931. "description": "Library for counting the lines of code in PHP source code",
  9932. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9933. "support": {
  9934. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9935. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9936. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9937. },
  9938. "funding": [
  9939. {
  9940. "url": "https://github.com/sebastianbergmann",
  9941. "type": "github"
  9942. }
  9943. ],
  9944. "time": "2023-12-21T08:38:20+00:00"
  9945. },
  9946. {
  9947. "name": "sebastian/object-enumerator",
  9948. "version": "5.0.0",
  9949. "source": {
  9950. "type": "git",
  9951. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9952. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9953. },
  9954. "dist": {
  9955. "type": "zip",
  9956. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9957. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9958. "shasum": ""
  9959. },
  9960. "require": {
  9961. "php": ">=8.1",
  9962. "sebastian/object-reflector": "^3.0",
  9963. "sebastian/recursion-context": "^5.0"
  9964. },
  9965. "require-dev": {
  9966. "phpunit/phpunit": "^10.0"
  9967. },
  9968. "type": "library",
  9969. "extra": {
  9970. "branch-alias": {
  9971. "dev-main": "5.0-dev"
  9972. }
  9973. },
  9974. "autoload": {
  9975. "classmap": [
  9976. "src/"
  9977. ]
  9978. },
  9979. "notification-url": "https://packagist.org/downloads/",
  9980. "license": [
  9981. "BSD-3-Clause"
  9982. ],
  9983. "authors": [
  9984. {
  9985. "name": "Sebastian Bergmann",
  9986. "email": "[email protected]"
  9987. }
  9988. ],
  9989. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9990. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9991. "support": {
  9992. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9993. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9994. },
  9995. "funding": [
  9996. {
  9997. "url": "https://github.com/sebastianbergmann",
  9998. "type": "github"
  9999. }
  10000. ],
  10001. "time": "2023-02-03T07:08:32+00:00"
  10002. },
  10003. {
  10004. "name": "sebastian/object-reflector",
  10005. "version": "3.0.0",
  10006. "source": {
  10007. "type": "git",
  10008. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10009. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10010. },
  10011. "dist": {
  10012. "type": "zip",
  10013. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10014. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10015. "shasum": ""
  10016. },
  10017. "require": {
  10018. "php": ">=8.1"
  10019. },
  10020. "require-dev": {
  10021. "phpunit/phpunit": "^10.0"
  10022. },
  10023. "type": "library",
  10024. "extra": {
  10025. "branch-alias": {
  10026. "dev-main": "3.0-dev"
  10027. }
  10028. },
  10029. "autoload": {
  10030. "classmap": [
  10031. "src/"
  10032. ]
  10033. },
  10034. "notification-url": "https://packagist.org/downloads/",
  10035. "license": [
  10036. "BSD-3-Clause"
  10037. ],
  10038. "authors": [
  10039. {
  10040. "name": "Sebastian Bergmann",
  10041. "email": "[email protected]"
  10042. }
  10043. ],
  10044. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10045. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10046. "support": {
  10047. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10048. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10049. },
  10050. "funding": [
  10051. {
  10052. "url": "https://github.com/sebastianbergmann",
  10053. "type": "github"
  10054. }
  10055. ],
  10056. "time": "2023-02-03T07:06:18+00:00"
  10057. },
  10058. {
  10059. "name": "sebastian/recursion-context",
  10060. "version": "5.0.0",
  10061. "source": {
  10062. "type": "git",
  10063. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10064. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10065. },
  10066. "dist": {
  10067. "type": "zip",
  10068. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10069. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10070. "shasum": ""
  10071. },
  10072. "require": {
  10073. "php": ">=8.1"
  10074. },
  10075. "require-dev": {
  10076. "phpunit/phpunit": "^10.0"
  10077. },
  10078. "type": "library",
  10079. "extra": {
  10080. "branch-alias": {
  10081. "dev-main": "5.0-dev"
  10082. }
  10083. },
  10084. "autoload": {
  10085. "classmap": [
  10086. "src/"
  10087. ]
  10088. },
  10089. "notification-url": "https://packagist.org/downloads/",
  10090. "license": [
  10091. "BSD-3-Clause"
  10092. ],
  10093. "authors": [
  10094. {
  10095. "name": "Sebastian Bergmann",
  10096. "email": "[email protected]"
  10097. },
  10098. {
  10099. "name": "Jeff Welch",
  10100. "email": "[email protected]"
  10101. },
  10102. {
  10103. "name": "Adam Harvey",
  10104. "email": "[email protected]"
  10105. }
  10106. ],
  10107. "description": "Provides functionality to recursively process PHP variables",
  10108. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10109. "support": {
  10110. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10111. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10112. },
  10113. "funding": [
  10114. {
  10115. "url": "https://github.com/sebastianbergmann",
  10116. "type": "github"
  10117. }
  10118. ],
  10119. "time": "2023-02-03T07:05:40+00:00"
  10120. },
  10121. {
  10122. "name": "sebastian/type",
  10123. "version": "4.0.0",
  10124. "source": {
  10125. "type": "git",
  10126. "url": "https://github.com/sebastianbergmann/type.git",
  10127. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10128. },
  10129. "dist": {
  10130. "type": "zip",
  10131. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10132. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10133. "shasum": ""
  10134. },
  10135. "require": {
  10136. "php": ">=8.1"
  10137. },
  10138. "require-dev": {
  10139. "phpunit/phpunit": "^10.0"
  10140. },
  10141. "type": "library",
  10142. "extra": {
  10143. "branch-alias": {
  10144. "dev-main": "4.0-dev"
  10145. }
  10146. },
  10147. "autoload": {
  10148. "classmap": [
  10149. "src/"
  10150. ]
  10151. },
  10152. "notification-url": "https://packagist.org/downloads/",
  10153. "license": [
  10154. "BSD-3-Clause"
  10155. ],
  10156. "authors": [
  10157. {
  10158. "name": "Sebastian Bergmann",
  10159. "email": "[email protected]",
  10160. "role": "lead"
  10161. }
  10162. ],
  10163. "description": "Collection of value objects that represent the types of the PHP type system",
  10164. "homepage": "https://github.com/sebastianbergmann/type",
  10165. "support": {
  10166. "issues": "https://github.com/sebastianbergmann/type/issues",
  10167. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10168. },
  10169. "funding": [
  10170. {
  10171. "url": "https://github.com/sebastianbergmann",
  10172. "type": "github"
  10173. }
  10174. ],
  10175. "time": "2023-02-03T07:10:45+00:00"
  10176. },
  10177. {
  10178. "name": "sebastian/version",
  10179. "version": "4.0.1",
  10180. "source": {
  10181. "type": "git",
  10182. "url": "https://github.com/sebastianbergmann/version.git",
  10183. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10184. },
  10185. "dist": {
  10186. "type": "zip",
  10187. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10188. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10189. "shasum": ""
  10190. },
  10191. "require": {
  10192. "php": ">=8.1"
  10193. },
  10194. "type": "library",
  10195. "extra": {
  10196. "branch-alias": {
  10197. "dev-main": "4.0-dev"
  10198. }
  10199. },
  10200. "autoload": {
  10201. "classmap": [
  10202. "src/"
  10203. ]
  10204. },
  10205. "notification-url": "https://packagist.org/downloads/",
  10206. "license": [
  10207. "BSD-3-Clause"
  10208. ],
  10209. "authors": [
  10210. {
  10211. "name": "Sebastian Bergmann",
  10212. "email": "[email protected]",
  10213. "role": "lead"
  10214. }
  10215. ],
  10216. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10217. "homepage": "https://github.com/sebastianbergmann/version",
  10218. "support": {
  10219. "issues": "https://github.com/sebastianbergmann/version/issues",
  10220. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10221. },
  10222. "funding": [
  10223. {
  10224. "url": "https://github.com/sebastianbergmann",
  10225. "type": "github"
  10226. }
  10227. ],
  10228. "time": "2023-02-07T11:34:05+00:00"
  10229. },
  10230. {
  10231. "name": "slevomat/coding-standard",
  10232. "version": "8.15.0",
  10233. "source": {
  10234. "type": "git",
  10235. "url": "https://github.com/slevomat/coding-standard.git",
  10236. "reference": "7d1d957421618a3803b593ec31ace470177d7817"
  10237. },
  10238. "dist": {
  10239. "type": "zip",
  10240. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/7d1d957421618a3803b593ec31ace470177d7817",
  10241. "reference": "7d1d957421618a3803b593ec31ace470177d7817",
  10242. "shasum": ""
  10243. },
  10244. "require": {
  10245. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0",
  10246. "php": "^7.2 || ^8.0",
  10247. "phpstan/phpdoc-parser": "^1.23.1",
  10248. "squizlabs/php_codesniffer": "^3.9.0"
  10249. },
  10250. "require-dev": {
  10251. "phing/phing": "2.17.4",
  10252. "php-parallel-lint/php-parallel-lint": "1.3.2",
  10253. "phpstan/phpstan": "1.10.60",
  10254. "phpstan/phpstan-deprecation-rules": "1.1.4",
  10255. "phpstan/phpstan-phpunit": "1.3.16",
  10256. "phpstan/phpstan-strict-rules": "1.5.2",
  10257. "phpunit/phpunit": "8.5.21|9.6.8|10.5.11"
  10258. },
  10259. "type": "phpcodesniffer-standard",
  10260. "extra": {
  10261. "branch-alias": {
  10262. "dev-master": "8.x-dev"
  10263. }
  10264. },
  10265. "autoload": {
  10266. "psr-4": {
  10267. "SlevomatCodingStandard\\": "SlevomatCodingStandard/"
  10268. }
  10269. },
  10270. "notification-url": "https://packagist.org/downloads/",
  10271. "license": [
  10272. "MIT"
  10273. ],
  10274. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  10275. "keywords": [
  10276. "dev",
  10277. "phpcs"
  10278. ],
  10279. "support": {
  10280. "issues": "https://github.com/slevomat/coding-standard/issues",
  10281. "source": "https://github.com/slevomat/coding-standard/tree/8.15.0"
  10282. },
  10283. "funding": [
  10284. {
  10285. "url": "https://github.com/kukulich",
  10286. "type": "github"
  10287. },
  10288. {
  10289. "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
  10290. "type": "tidelift"
  10291. }
  10292. ],
  10293. "time": "2024-03-09T15:20:58+00:00"
  10294. },
  10295. {
  10296. "name": "squizlabs/php_codesniffer",
  10297. "version": "3.10.1",
  10298. "source": {
  10299. "type": "git",
  10300. "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
  10301. "reference": "8f90f7a53ce271935282967f53d0894f8f1ff877"
  10302. },
  10303. "dist": {
  10304. "type": "zip",
  10305. "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/8f90f7a53ce271935282967f53d0894f8f1ff877",
  10306. "reference": "8f90f7a53ce271935282967f53d0894f8f1ff877",
  10307. "shasum": ""
  10308. },
  10309. "require": {
  10310. "ext-simplexml": "*",
  10311. "ext-tokenizer": "*",
  10312. "ext-xmlwriter": "*",
  10313. "php": ">=5.4.0"
  10314. },
  10315. "require-dev": {
  10316. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
  10317. },
  10318. "bin": [
  10319. "bin/phpcbf",
  10320. "bin/phpcs"
  10321. ],
  10322. "type": "library",
  10323. "extra": {
  10324. "branch-alias": {
  10325. "dev-master": "3.x-dev"
  10326. }
  10327. },
  10328. "notification-url": "https://packagist.org/downloads/",
  10329. "license": [
  10330. "BSD-3-Clause"
  10331. ],
  10332. "authors": [
  10333. {
  10334. "name": "Greg Sherwood",
  10335. "role": "Former lead"
  10336. },
  10337. {
  10338. "name": "Juliette Reinders Folmer",
  10339. "role": "Current lead"
  10340. },
  10341. {
  10342. "name": "Contributors",
  10343. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
  10344. }
  10345. ],
  10346. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  10347. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  10348. "keywords": [
  10349. "phpcs",
  10350. "standards",
  10351. "static analysis"
  10352. ],
  10353. "support": {
  10354. "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
  10355. "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
  10356. "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  10357. "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
  10358. },
  10359. "funding": [
  10360. {
  10361. "url": "https://github.com/PHPCSStandards",
  10362. "type": "github"
  10363. },
  10364. {
  10365. "url": "https://github.com/jrfnl",
  10366. "type": "github"
  10367. },
  10368. {
  10369. "url": "https://opencollective.com/php_codesniffer",
  10370. "type": "open_collective"
  10371. }
  10372. ],
  10373. "time": "2024-05-22T21:24:41+00:00"
  10374. },
  10375. {
  10376. "name": "symfony/cache",
  10377. "version": "v7.1.1",
  10378. "source": {
  10379. "type": "git",
  10380. "url": "https://github.com/symfony/cache.git",
  10381. "reference": "760294dc7158372699dccd077965c16c328f8719"
  10382. },
  10383. "dist": {
  10384. "type": "zip",
  10385. "url": "https://api.github.com/repos/symfony/cache/zipball/760294dc7158372699dccd077965c16c328f8719",
  10386. "reference": "760294dc7158372699dccd077965c16c328f8719",
  10387. "shasum": ""
  10388. },
  10389. "require": {
  10390. "php": ">=8.2",
  10391. "psr/cache": "^2.0|^3.0",
  10392. "psr/log": "^1.1|^2|^3",
  10393. "symfony/cache-contracts": "^2.5|^3",
  10394. "symfony/deprecation-contracts": "^2.5|^3.0",
  10395. "symfony/service-contracts": "^2.5|^3",
  10396. "symfony/var-exporter": "^6.4|^7.0"
  10397. },
  10398. "conflict": {
  10399. "doctrine/dbal": "<3.6",
  10400. "symfony/dependency-injection": "<6.4",
  10401. "symfony/http-kernel": "<6.4",
  10402. "symfony/var-dumper": "<6.4"
  10403. },
  10404. "provide": {
  10405. "psr/cache-implementation": "2.0|3.0",
  10406. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  10407. "symfony/cache-implementation": "1.1|2.0|3.0"
  10408. },
  10409. "require-dev": {
  10410. "cache/integration-tests": "dev-master",
  10411. "doctrine/dbal": "^3.6|^4",
  10412. "predis/predis": "^1.1|^2.0",
  10413. "psr/simple-cache": "^1.0|^2.0|^3.0",
  10414. "symfony/config": "^6.4|^7.0",
  10415. "symfony/dependency-injection": "^6.4|^7.0",
  10416. "symfony/filesystem": "^6.4|^7.0",
  10417. "symfony/http-kernel": "^6.4|^7.0",
  10418. "symfony/messenger": "^6.4|^7.0",
  10419. "symfony/var-dumper": "^6.4|^7.0"
  10420. },
  10421. "type": "library",
  10422. "autoload": {
  10423. "psr-4": {
  10424. "Symfony\\Component\\Cache\\": ""
  10425. },
  10426. "classmap": [
  10427. "Traits/ValueWrapper.php"
  10428. ],
  10429. "exclude-from-classmap": [
  10430. "/Tests/"
  10431. ]
  10432. },
  10433. "notification-url": "https://packagist.org/downloads/",
  10434. "license": [
  10435. "MIT"
  10436. ],
  10437. "authors": [
  10438. {
  10439. "name": "Nicolas Grekas",
  10440. "email": "[email protected]"
  10441. },
  10442. {
  10443. "name": "Symfony Community",
  10444. "homepage": "https://symfony.com/contributors"
  10445. }
  10446. ],
  10447. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  10448. "homepage": "https://symfony.com",
  10449. "keywords": [
  10450. "caching",
  10451. "psr6"
  10452. ],
  10453. "support": {
  10454. "source": "https://github.com/symfony/cache/tree/v7.1.1"
  10455. },
  10456. "funding": [
  10457. {
  10458. "url": "https://symfony.com/sponsor",
  10459. "type": "custom"
  10460. },
  10461. {
  10462. "url": "https://github.com/fabpot",
  10463. "type": "github"
  10464. },
  10465. {
  10466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10467. "type": "tidelift"
  10468. }
  10469. ],
  10470. "time": "2024-05-31T14:57:53+00:00"
  10471. },
  10472. {
  10473. "name": "symfony/cache-contracts",
  10474. "version": "v3.5.0",
  10475. "source": {
  10476. "type": "git",
  10477. "url": "https://github.com/symfony/cache-contracts.git",
  10478. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  10479. },
  10480. "dist": {
  10481. "type": "zip",
  10482. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  10483. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  10484. "shasum": ""
  10485. },
  10486. "require": {
  10487. "php": ">=8.1",
  10488. "psr/cache": "^3.0"
  10489. },
  10490. "type": "library",
  10491. "extra": {
  10492. "branch-alias": {
  10493. "dev-main": "3.5-dev"
  10494. },
  10495. "thanks": {
  10496. "name": "symfony/contracts",
  10497. "url": "https://github.com/symfony/contracts"
  10498. }
  10499. },
  10500. "autoload": {
  10501. "psr-4": {
  10502. "Symfony\\Contracts\\Cache\\": ""
  10503. }
  10504. },
  10505. "notification-url": "https://packagist.org/downloads/",
  10506. "license": [
  10507. "MIT"
  10508. ],
  10509. "authors": [
  10510. {
  10511. "name": "Nicolas Grekas",
  10512. "email": "[email protected]"
  10513. },
  10514. {
  10515. "name": "Symfony Community",
  10516. "homepage": "https://symfony.com/contributors"
  10517. }
  10518. ],
  10519. "description": "Generic abstractions related to caching",
  10520. "homepage": "https://symfony.com",
  10521. "keywords": [
  10522. "abstractions",
  10523. "contracts",
  10524. "decoupling",
  10525. "interfaces",
  10526. "interoperability",
  10527. "standards"
  10528. ],
  10529. "support": {
  10530. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  10531. },
  10532. "funding": [
  10533. {
  10534. "url": "https://symfony.com/sponsor",
  10535. "type": "custom"
  10536. },
  10537. {
  10538. "url": "https://github.com/fabpot",
  10539. "type": "github"
  10540. },
  10541. {
  10542. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10543. "type": "tidelift"
  10544. }
  10545. ],
  10546. "time": "2024-04-18T09:32:20+00:00"
  10547. },
  10548. {
  10549. "name": "symfony/console",
  10550. "version": "v7.1.1",
  10551. "source": {
  10552. "type": "git",
  10553. "url": "https://github.com/symfony/console.git",
  10554. "reference": "9b008f2d7b21c74ef4d0c3de6077a642bc55ece3"
  10555. },
  10556. "dist": {
  10557. "type": "zip",
  10558. "url": "https://api.github.com/repos/symfony/console/zipball/9b008f2d7b21c74ef4d0c3de6077a642bc55ece3",
  10559. "reference": "9b008f2d7b21c74ef4d0c3de6077a642bc55ece3",
  10560. "shasum": ""
  10561. },
  10562. "require": {
  10563. "php": ">=8.2",
  10564. "symfony/polyfill-mbstring": "~1.0",
  10565. "symfony/service-contracts": "^2.5|^3",
  10566. "symfony/string": "^6.4|^7.0"
  10567. },
  10568. "conflict": {
  10569. "symfony/dependency-injection": "<6.4",
  10570. "symfony/dotenv": "<6.4",
  10571. "symfony/event-dispatcher": "<6.4",
  10572. "symfony/lock": "<6.4",
  10573. "symfony/process": "<6.4"
  10574. },
  10575. "provide": {
  10576. "psr/log-implementation": "1.0|2.0|3.0"
  10577. },
  10578. "require-dev": {
  10579. "psr/log": "^1|^2|^3",
  10580. "symfony/config": "^6.4|^7.0",
  10581. "symfony/dependency-injection": "^6.4|^7.0",
  10582. "symfony/event-dispatcher": "^6.4|^7.0",
  10583. "symfony/http-foundation": "^6.4|^7.0",
  10584. "symfony/http-kernel": "^6.4|^7.0",
  10585. "symfony/lock": "^6.4|^7.0",
  10586. "symfony/messenger": "^6.4|^7.0",
  10587. "symfony/process": "^6.4|^7.0",
  10588. "symfony/stopwatch": "^6.4|^7.0",
  10589. "symfony/var-dumper": "^6.4|^7.0"
  10590. },
  10591. "type": "library",
  10592. "autoload": {
  10593. "psr-4": {
  10594. "Symfony\\Component\\Console\\": ""
  10595. },
  10596. "exclude-from-classmap": [
  10597. "/Tests/"
  10598. ]
  10599. },
  10600. "notification-url": "https://packagist.org/downloads/",
  10601. "license": [
  10602. "MIT"
  10603. ],
  10604. "authors": [
  10605. {
  10606. "name": "Fabien Potencier",
  10607. "email": "[email protected]"
  10608. },
  10609. {
  10610. "name": "Symfony Community",
  10611. "homepage": "https://symfony.com/contributors"
  10612. }
  10613. ],
  10614. "description": "Eases the creation of beautiful and testable command line interfaces",
  10615. "homepage": "https://symfony.com",
  10616. "keywords": [
  10617. "cli",
  10618. "command-line",
  10619. "console",
  10620. "terminal"
  10621. ],
  10622. "support": {
  10623. "source": "https://github.com/symfony/console/tree/v7.1.1"
  10624. },
  10625. "funding": [
  10626. {
  10627. "url": "https://symfony.com/sponsor",
  10628. "type": "custom"
  10629. },
  10630. {
  10631. "url": "https://github.com/fabpot",
  10632. "type": "github"
  10633. },
  10634. {
  10635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10636. "type": "tidelift"
  10637. }
  10638. ],
  10639. "time": "2024-05-31T14:57:53+00:00"
  10640. },
  10641. {
  10642. "name": "symfony/event-dispatcher",
  10643. "version": "v7.1.1",
  10644. "source": {
  10645. "type": "git",
  10646. "url": "https://github.com/symfony/event-dispatcher.git",
  10647. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  10648. },
  10649. "dist": {
  10650. "type": "zip",
  10651. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  10652. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  10653. "shasum": ""
  10654. },
  10655. "require": {
  10656. "php": ">=8.2",
  10657. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10658. },
  10659. "conflict": {
  10660. "symfony/dependency-injection": "<6.4",
  10661. "symfony/service-contracts": "<2.5"
  10662. },
  10663. "provide": {
  10664. "psr/event-dispatcher-implementation": "1.0",
  10665. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10666. },
  10667. "require-dev": {
  10668. "psr/log": "^1|^2|^3",
  10669. "symfony/config": "^6.4|^7.0",
  10670. "symfony/dependency-injection": "^6.4|^7.0",
  10671. "symfony/error-handler": "^6.4|^7.0",
  10672. "symfony/expression-language": "^6.4|^7.0",
  10673. "symfony/http-foundation": "^6.4|^7.0",
  10674. "symfony/service-contracts": "^2.5|^3",
  10675. "symfony/stopwatch": "^6.4|^7.0"
  10676. },
  10677. "type": "library",
  10678. "autoload": {
  10679. "psr-4": {
  10680. "Symfony\\Component\\EventDispatcher\\": ""
  10681. },
  10682. "exclude-from-classmap": [
  10683. "/Tests/"
  10684. ]
  10685. },
  10686. "notification-url": "https://packagist.org/downloads/",
  10687. "license": [
  10688. "MIT"
  10689. ],
  10690. "authors": [
  10691. {
  10692. "name": "Fabien Potencier",
  10693. "email": "[email protected]"
  10694. },
  10695. {
  10696. "name": "Symfony Community",
  10697. "homepage": "https://symfony.com/contributors"
  10698. }
  10699. ],
  10700. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10701. "homepage": "https://symfony.com",
  10702. "support": {
  10703. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  10704. },
  10705. "funding": [
  10706. {
  10707. "url": "https://symfony.com/sponsor",
  10708. "type": "custom"
  10709. },
  10710. {
  10711. "url": "https://github.com/fabpot",
  10712. "type": "github"
  10713. },
  10714. {
  10715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10716. "type": "tidelift"
  10717. }
  10718. ],
  10719. "time": "2024-05-31T14:57:53+00:00"
  10720. },
  10721. {
  10722. "name": "symfony/event-dispatcher-contracts",
  10723. "version": "v3.5.0",
  10724. "source": {
  10725. "type": "git",
  10726. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10727. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10728. },
  10729. "dist": {
  10730. "type": "zip",
  10731. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10732. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10733. "shasum": ""
  10734. },
  10735. "require": {
  10736. "php": ">=8.1",
  10737. "psr/event-dispatcher": "^1"
  10738. },
  10739. "type": "library",
  10740. "extra": {
  10741. "branch-alias": {
  10742. "dev-main": "3.5-dev"
  10743. },
  10744. "thanks": {
  10745. "name": "symfony/contracts",
  10746. "url": "https://github.com/symfony/contracts"
  10747. }
  10748. },
  10749. "autoload": {
  10750. "psr-4": {
  10751. "Symfony\\Contracts\\EventDispatcher\\": ""
  10752. }
  10753. },
  10754. "notification-url": "https://packagist.org/downloads/",
  10755. "license": [
  10756. "MIT"
  10757. ],
  10758. "authors": [
  10759. {
  10760. "name": "Nicolas Grekas",
  10761. "email": "[email protected]"
  10762. },
  10763. {
  10764. "name": "Symfony Community",
  10765. "homepage": "https://symfony.com/contributors"
  10766. }
  10767. ],
  10768. "description": "Generic abstractions related to dispatching event",
  10769. "homepage": "https://symfony.com",
  10770. "keywords": [
  10771. "abstractions",
  10772. "contracts",
  10773. "decoupling",
  10774. "interfaces",
  10775. "interoperability",
  10776. "standards"
  10777. ],
  10778. "support": {
  10779. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10780. },
  10781. "funding": [
  10782. {
  10783. "url": "https://symfony.com/sponsor",
  10784. "type": "custom"
  10785. },
  10786. {
  10787. "url": "https://github.com/fabpot",
  10788. "type": "github"
  10789. },
  10790. {
  10791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10792. "type": "tidelift"
  10793. }
  10794. ],
  10795. "time": "2024-04-18T09:32:20+00:00"
  10796. },
  10797. {
  10798. "name": "symfony/filesystem",
  10799. "version": "v7.1.1",
  10800. "source": {
  10801. "type": "git",
  10802. "url": "https://github.com/symfony/filesystem.git",
  10803. "reference": "802e87002f919296c9f606457d9fa327a0b3d6b2"
  10804. },
  10805. "dist": {
  10806. "type": "zip",
  10807. "url": "https://api.github.com/repos/symfony/filesystem/zipball/802e87002f919296c9f606457d9fa327a0b3d6b2",
  10808. "reference": "802e87002f919296c9f606457d9fa327a0b3d6b2",
  10809. "shasum": ""
  10810. },
  10811. "require": {
  10812. "php": ">=8.2",
  10813. "symfony/polyfill-ctype": "~1.8",
  10814. "symfony/polyfill-mbstring": "~1.8"
  10815. },
  10816. "require-dev": {
  10817. "symfony/process": "^6.4|^7.0"
  10818. },
  10819. "type": "library",
  10820. "autoload": {
  10821. "psr-4": {
  10822. "Symfony\\Component\\Filesystem\\": ""
  10823. },
  10824. "exclude-from-classmap": [
  10825. "/Tests/"
  10826. ]
  10827. },
  10828. "notification-url": "https://packagist.org/downloads/",
  10829. "license": [
  10830. "MIT"
  10831. ],
  10832. "authors": [
  10833. {
  10834. "name": "Fabien Potencier",
  10835. "email": "[email protected]"
  10836. },
  10837. {
  10838. "name": "Symfony Community",
  10839. "homepage": "https://symfony.com/contributors"
  10840. }
  10841. ],
  10842. "description": "Provides basic utilities for the filesystem",
  10843. "homepage": "https://symfony.com",
  10844. "support": {
  10845. "source": "https://github.com/symfony/filesystem/tree/v7.1.1"
  10846. },
  10847. "funding": [
  10848. {
  10849. "url": "https://symfony.com/sponsor",
  10850. "type": "custom"
  10851. },
  10852. {
  10853. "url": "https://github.com/fabpot",
  10854. "type": "github"
  10855. },
  10856. {
  10857. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10858. "type": "tidelift"
  10859. }
  10860. ],
  10861. "time": "2024-05-31T14:57:53+00:00"
  10862. },
  10863. {
  10864. "name": "symfony/finder",
  10865. "version": "v7.1.1",
  10866. "source": {
  10867. "type": "git",
  10868. "url": "https://github.com/symfony/finder.git",
  10869. "reference": "fbb0ba67688b780efbc886c1a0a0948dcf7205d6"
  10870. },
  10871. "dist": {
  10872. "type": "zip",
  10873. "url": "https://api.github.com/repos/symfony/finder/zipball/fbb0ba67688b780efbc886c1a0a0948dcf7205d6",
  10874. "reference": "fbb0ba67688b780efbc886c1a0a0948dcf7205d6",
  10875. "shasum": ""
  10876. },
  10877. "require": {
  10878. "php": ">=8.2"
  10879. },
  10880. "require-dev": {
  10881. "symfony/filesystem": "^6.4|^7.0"
  10882. },
  10883. "type": "library",
  10884. "autoload": {
  10885. "psr-4": {
  10886. "Symfony\\Component\\Finder\\": ""
  10887. },
  10888. "exclude-from-classmap": [
  10889. "/Tests/"
  10890. ]
  10891. },
  10892. "notification-url": "https://packagist.org/downloads/",
  10893. "license": [
  10894. "MIT"
  10895. ],
  10896. "authors": [
  10897. {
  10898. "name": "Fabien Potencier",
  10899. "email": "[email protected]"
  10900. },
  10901. {
  10902. "name": "Symfony Community",
  10903. "homepage": "https://symfony.com/contributors"
  10904. }
  10905. ],
  10906. "description": "Finds files and directories via an intuitive fluent interface",
  10907. "homepage": "https://symfony.com",
  10908. "support": {
  10909. "source": "https://github.com/symfony/finder/tree/v7.1.1"
  10910. },
  10911. "funding": [
  10912. {
  10913. "url": "https://symfony.com/sponsor",
  10914. "type": "custom"
  10915. },
  10916. {
  10917. "url": "https://github.com/fabpot",
  10918. "type": "github"
  10919. },
  10920. {
  10921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10922. "type": "tidelift"
  10923. }
  10924. ],
  10925. "time": "2024-05-31T14:57:53+00:00"
  10926. },
  10927. {
  10928. "name": "symfony/polyfill-php81",
  10929. "version": "v1.29.0",
  10930. "source": {
  10931. "type": "git",
  10932. "url": "https://github.com/symfony/polyfill-php81.git",
  10933. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10934. },
  10935. "dist": {
  10936. "type": "zip",
  10937. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10938. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10939. "shasum": ""
  10940. },
  10941. "require": {
  10942. "php": ">=7.1"
  10943. },
  10944. "type": "library",
  10945. "extra": {
  10946. "thanks": {
  10947. "name": "symfony/polyfill",
  10948. "url": "https://github.com/symfony/polyfill"
  10949. }
  10950. },
  10951. "autoload": {
  10952. "files": [
  10953. "bootstrap.php"
  10954. ],
  10955. "psr-4": {
  10956. "Symfony\\Polyfill\\Php81\\": ""
  10957. },
  10958. "classmap": [
  10959. "Resources/stubs"
  10960. ]
  10961. },
  10962. "notification-url": "https://packagist.org/downloads/",
  10963. "license": [
  10964. "MIT"
  10965. ],
  10966. "authors": [
  10967. {
  10968. "name": "Nicolas Grekas",
  10969. "email": "[email protected]"
  10970. },
  10971. {
  10972. "name": "Symfony Community",
  10973. "homepage": "https://symfony.com/contributors"
  10974. }
  10975. ],
  10976. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10977. "homepage": "https://symfony.com",
  10978. "keywords": [
  10979. "compatibility",
  10980. "polyfill",
  10981. "portable",
  10982. "shim"
  10983. ],
  10984. "support": {
  10985. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10986. },
  10987. "funding": [
  10988. {
  10989. "url": "https://symfony.com/sponsor",
  10990. "type": "custom"
  10991. },
  10992. {
  10993. "url": "https://github.com/fabpot",
  10994. "type": "github"
  10995. },
  10996. {
  10997. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10998. "type": "tidelift"
  10999. }
  11000. ],
  11001. "time": "2024-01-29T20:11:03+00:00"
  11002. },
  11003. {
  11004. "name": "symfony/process",
  11005. "version": "v7.1.1",
  11006. "source": {
  11007. "type": "git",
  11008. "url": "https://github.com/symfony/process.git",
  11009. "reference": "febf90124323a093c7ee06fdb30e765ca3c20028"
  11010. },
  11011. "dist": {
  11012. "type": "zip",
  11013. "url": "https://api.github.com/repos/symfony/process/zipball/febf90124323a093c7ee06fdb30e765ca3c20028",
  11014. "reference": "febf90124323a093c7ee06fdb30e765ca3c20028",
  11015. "shasum": ""
  11016. },
  11017. "require": {
  11018. "php": ">=8.2"
  11019. },
  11020. "type": "library",
  11021. "autoload": {
  11022. "psr-4": {
  11023. "Symfony\\Component\\Process\\": ""
  11024. },
  11025. "exclude-from-classmap": [
  11026. "/Tests/"
  11027. ]
  11028. },
  11029. "notification-url": "https://packagist.org/downloads/",
  11030. "license": [
  11031. "MIT"
  11032. ],
  11033. "authors": [
  11034. {
  11035. "name": "Fabien Potencier",
  11036. "email": "[email protected]"
  11037. },
  11038. {
  11039. "name": "Symfony Community",
  11040. "homepage": "https://symfony.com/contributors"
  11041. }
  11042. ],
  11043. "description": "Executes commands in sub-processes",
  11044. "homepage": "https://symfony.com",
  11045. "support": {
  11046. "source": "https://github.com/symfony/process/tree/v7.1.1"
  11047. },
  11048. "funding": [
  11049. {
  11050. "url": "https://symfony.com/sponsor",
  11051. "type": "custom"
  11052. },
  11053. {
  11054. "url": "https://github.com/fabpot",
  11055. "type": "github"
  11056. },
  11057. {
  11058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11059. "type": "tidelift"
  11060. }
  11061. ],
  11062. "time": "2024-05-31T14:57:53+00:00"
  11063. },
  11064. {
  11065. "name": "symfony/stopwatch",
  11066. "version": "v7.1.1",
  11067. "source": {
  11068. "type": "git",
  11069. "url": "https://github.com/symfony/stopwatch.git",
  11070. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  11071. },
  11072. "dist": {
  11073. "type": "zip",
  11074. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  11075. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  11076. "shasum": ""
  11077. },
  11078. "require": {
  11079. "php": ">=8.2",
  11080. "symfony/service-contracts": "^2.5|^3"
  11081. },
  11082. "type": "library",
  11083. "autoload": {
  11084. "psr-4": {
  11085. "Symfony\\Component\\Stopwatch\\": ""
  11086. },
  11087. "exclude-from-classmap": [
  11088. "/Tests/"
  11089. ]
  11090. },
  11091. "notification-url": "https://packagist.org/downloads/",
  11092. "license": [
  11093. "MIT"
  11094. ],
  11095. "authors": [
  11096. {
  11097. "name": "Fabien Potencier",
  11098. "email": "[email protected]"
  11099. },
  11100. {
  11101. "name": "Symfony Community",
  11102. "homepage": "https://symfony.com/contributors"
  11103. }
  11104. ],
  11105. "description": "Provides a way to profile code",
  11106. "homepage": "https://symfony.com",
  11107. "support": {
  11108. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  11109. },
  11110. "funding": [
  11111. {
  11112. "url": "https://symfony.com/sponsor",
  11113. "type": "custom"
  11114. },
  11115. {
  11116. "url": "https://github.com/fabpot",
  11117. "type": "github"
  11118. },
  11119. {
  11120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11121. "type": "tidelift"
  11122. }
  11123. ],
  11124. "time": "2024-05-31T14:57:53+00:00"
  11125. },
  11126. {
  11127. "name": "symfony/string",
  11128. "version": "v7.1.1",
  11129. "source": {
  11130. "type": "git",
  11131. "url": "https://github.com/symfony/string.git",
  11132. "reference": "60bc311c74e0af215101235aa6f471bcbc032df2"
  11133. },
  11134. "dist": {
  11135. "type": "zip",
  11136. "url": "https://api.github.com/repos/symfony/string/zipball/60bc311c74e0af215101235aa6f471bcbc032df2",
  11137. "reference": "60bc311c74e0af215101235aa6f471bcbc032df2",
  11138. "shasum": ""
  11139. },
  11140. "require": {
  11141. "php": ">=8.2",
  11142. "symfony/polyfill-ctype": "~1.8",
  11143. "symfony/polyfill-intl-grapheme": "~1.0",
  11144. "symfony/polyfill-intl-normalizer": "~1.0",
  11145. "symfony/polyfill-mbstring": "~1.0"
  11146. },
  11147. "conflict": {
  11148. "symfony/translation-contracts": "<2.5"
  11149. },
  11150. "require-dev": {
  11151. "symfony/emoji": "^7.1",
  11152. "symfony/error-handler": "^6.4|^7.0",
  11153. "symfony/http-client": "^6.4|^7.0",
  11154. "symfony/intl": "^6.4|^7.0",
  11155. "symfony/translation-contracts": "^2.5|^3.0",
  11156. "symfony/var-exporter": "^6.4|^7.0"
  11157. },
  11158. "type": "library",
  11159. "autoload": {
  11160. "files": [
  11161. "Resources/functions.php"
  11162. ],
  11163. "psr-4": {
  11164. "Symfony\\Component\\String\\": ""
  11165. },
  11166. "exclude-from-classmap": [
  11167. "/Tests/"
  11168. ]
  11169. },
  11170. "notification-url": "https://packagist.org/downloads/",
  11171. "license": [
  11172. "MIT"
  11173. ],
  11174. "authors": [
  11175. {
  11176. "name": "Nicolas Grekas",
  11177. "email": "[email protected]"
  11178. },
  11179. {
  11180. "name": "Symfony Community",
  11181. "homepage": "https://symfony.com/contributors"
  11182. }
  11183. ],
  11184. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  11185. "homepage": "https://symfony.com",
  11186. "keywords": [
  11187. "grapheme",
  11188. "i18n",
  11189. "string",
  11190. "unicode",
  11191. "utf-8",
  11192. "utf8"
  11193. ],
  11194. "support": {
  11195. "source": "https://github.com/symfony/string/tree/v7.1.1"
  11196. },
  11197. "funding": [
  11198. {
  11199. "url": "https://symfony.com/sponsor",
  11200. "type": "custom"
  11201. },
  11202. {
  11203. "url": "https://github.com/fabpot",
  11204. "type": "github"
  11205. },
  11206. {
  11207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11208. "type": "tidelift"
  11209. }
  11210. ],
  11211. "time": "2024-06-04T06:40:14+00:00"
  11212. },
  11213. {
  11214. "name": "symfony/var-exporter",
  11215. "version": "v7.1.1",
  11216. "source": {
  11217. "type": "git",
  11218. "url": "https://github.com/symfony/var-exporter.git",
  11219. "reference": "db82c2b73b88734557cfc30e3270d83fa651b712"
  11220. },
  11221. "dist": {
  11222. "type": "zip",
  11223. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/db82c2b73b88734557cfc30e3270d83fa651b712",
  11224. "reference": "db82c2b73b88734557cfc30e3270d83fa651b712",
  11225. "shasum": ""
  11226. },
  11227. "require": {
  11228. "php": ">=8.2"
  11229. },
  11230. "require-dev": {
  11231. "symfony/property-access": "^6.4|^7.0",
  11232. "symfony/serializer": "^6.4|^7.0",
  11233. "symfony/var-dumper": "^6.4|^7.0"
  11234. },
  11235. "type": "library",
  11236. "autoload": {
  11237. "psr-4": {
  11238. "Symfony\\Component\\VarExporter\\": ""
  11239. },
  11240. "exclude-from-classmap": [
  11241. "/Tests/"
  11242. ]
  11243. },
  11244. "notification-url": "https://packagist.org/downloads/",
  11245. "license": [
  11246. "MIT"
  11247. ],
  11248. "authors": [
  11249. {
  11250. "name": "Nicolas Grekas",
  11251. "email": "[email protected]"
  11252. },
  11253. {
  11254. "name": "Symfony Community",
  11255. "homepage": "https://symfony.com/contributors"
  11256. }
  11257. ],
  11258. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  11259. "homepage": "https://symfony.com",
  11260. "keywords": [
  11261. "clone",
  11262. "construct",
  11263. "export",
  11264. "hydrate",
  11265. "instantiate",
  11266. "lazy-loading",
  11267. "proxy",
  11268. "serialize"
  11269. ],
  11270. "support": {
  11271. "source": "https://github.com/symfony/var-exporter/tree/v7.1.1"
  11272. },
  11273. "funding": [
  11274. {
  11275. "url": "https://symfony.com/sponsor",
  11276. "type": "custom"
  11277. },
  11278. {
  11279. "url": "https://github.com/fabpot",
  11280. "type": "github"
  11281. },
  11282. {
  11283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11284. "type": "tidelift"
  11285. }
  11286. ],
  11287. "time": "2024-05-31T14:57:53+00:00"
  11288. },
  11289. {
  11290. "name": "theseer/tokenizer",
  11291. "version": "1.2.3",
  11292. "source": {
  11293. "type": "git",
  11294. "url": "https://github.com/theseer/tokenizer.git",
  11295. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11296. },
  11297. "dist": {
  11298. "type": "zip",
  11299. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11300. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11301. "shasum": ""
  11302. },
  11303. "require": {
  11304. "ext-dom": "*",
  11305. "ext-tokenizer": "*",
  11306. "ext-xmlwriter": "*",
  11307. "php": "^7.2 || ^8.0"
  11308. },
  11309. "type": "library",
  11310. "autoload": {
  11311. "classmap": [
  11312. "src/"
  11313. ]
  11314. },
  11315. "notification-url": "https://packagist.org/downloads/",
  11316. "license": [
  11317. "BSD-3-Clause"
  11318. ],
  11319. "authors": [
  11320. {
  11321. "name": "Arne Blankerts",
  11322. "email": "[email protected]",
  11323. "role": "Developer"
  11324. }
  11325. ],
  11326. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11327. "support": {
  11328. "issues": "https://github.com/theseer/tokenizer/issues",
  11329. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11330. },
  11331. "funding": [
  11332. {
  11333. "url": "https://github.com/theseer",
  11334. "type": "github"
  11335. }
  11336. ],
  11337. "time": "2024-03-03T12:36:25+00:00"
  11338. }
  11339. ],
  11340. "aliases": [],
  11341. "minimum-stability": "stable",
  11342. "stability-flags": {
  11343. "alipaysdk/openapi": 20
  11344. },
  11345. "prefer-stable": false,
  11346. "prefer-lowest": false,
  11347. "platform": {
  11348. "php": "^8.2",
  11349. "ext-bcmath": "*",
  11350. "ext-curl": "*",
  11351. "ext-fileinfo": "*",
  11352. "ext-json": "*",
  11353. "ext-mbstring": "*",
  11354. "ext-mysqli": "*",
  11355. "ext-openssl": "*",
  11356. "ext-pdo": "*",
  11357. "ext-posix": "*",
  11358. "ext-redis": "*",
  11359. "ext-xml": "*",
  11360. "ext-yaml": "*",
  11361. "ext-zip": "*"
  11362. },
  11363. "platform-dev": [],
  11364. "plugin-api-version": "2.6.0"
  11365. }