composer.lock 348 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770
  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": "03de1f31b0fae31274317471f8bb4e16",
  8. "packages": [
  9. {
  10. "name": "alipaysdk/openapi",
  11. "version": "dev-master",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alipay/alipay-sdk-php-all.git",
  15. "reference": "f570f7f978c18677da934913d191eb9da89ecfc6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alipay/alipay-sdk-php-all/zipball/f570f7f978c18677da934913d191eb9da89ecfc6",
  20. "reference": "f570f7f978c18677da934913d191eb9da89ecfc6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-bcmath": "*",
  25. "ext-curl": "*",
  26. "ext-dom": "*",
  27. "ext-json": "*",
  28. "ext-mbstring": "*",
  29. "ext-openssl": "*",
  30. "guzzlehttp/guzzle": "^7.3",
  31. "guzzlehttp/psr7": "^1.7 || ^2.0",
  32. "php": "^7.4 || ^8.0"
  33. },
  34. "require-dev": {
  35. "friendsofphp/php-cs-fixer": "^3.5",
  36. "phpunit/phpunit": "^8.0 || ^9.0"
  37. },
  38. "default-branch": true,
  39. "type": "library",
  40. "autoload": {
  41. "psr-4": {
  42. "Alipay\\OpenAPISDK\\": "v3/src/"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "unlicense"
  48. ],
  49. "authors": [
  50. {
  51. "name": "OpenAPI-Generator contributors",
  52. "homepage": "https://openapi-generator.tech"
  53. }
  54. ],
  55. "description": "支付宝开放平台v3协议文档",
  56. "homepage": "https://openapi-generator.tech",
  57. "keywords": [
  58. "api",
  59. "openapi",
  60. "openapi-generator",
  61. "openapitools",
  62. "php",
  63. "rest",
  64. "sdk"
  65. ],
  66. "support": {
  67. "source": "https://github.com/alipay/alipay-sdk-php-all/tree/master"
  68. },
  69. "time": "2024-01-25T09:33:38+00:00"
  70. },
  71. {
  72. "name": "aws/aws-crt-php",
  73. "version": "v1.2.4",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/awslabs/aws-crt-php.git",
  77. "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/eb0c6e4e142224a10b08f49ebf87f32611d162b2",
  82. "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2",
  83. "shasum": ""
  84. },
  85. "require": {
  86. "php": ">=5.5"
  87. },
  88. "require-dev": {
  89. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  90. "yoast/phpunit-polyfills": "^1.0"
  91. },
  92. "suggest": {
  93. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  94. },
  95. "type": "library",
  96. "autoload": {
  97. "classmap": [
  98. "src/"
  99. ]
  100. },
  101. "notification-url": "https://packagist.org/downloads/",
  102. "license": [
  103. "Apache-2.0"
  104. ],
  105. "authors": [
  106. {
  107. "name": "AWS SDK Common Runtime Team",
  108. "email": "[email protected]"
  109. }
  110. ],
  111. "description": "AWS Common Runtime for PHP",
  112. "homepage": "https://github.com/awslabs/aws-crt-php",
  113. "keywords": [
  114. "amazon",
  115. "aws",
  116. "crt",
  117. "sdk"
  118. ],
  119. "support": {
  120. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  121. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.4"
  122. },
  123. "time": "2023-11-08T00:42:13+00:00"
  124. },
  125. {
  126. "name": "aws/aws-sdk-php",
  127. "version": "3.300.11",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/aws/aws-sdk-php.git",
  131. "reference": "b1c05a5d3cb429aa5d9ffa69066ce46e3d7aca52"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/b1c05a5d3cb429aa5d9ffa69066ce46e3d7aca52",
  136. "reference": "b1c05a5d3cb429aa5d9ffa69066ce46e3d7aca52",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "aws/aws-crt-php": "^1.2.3",
  141. "ext-json": "*",
  142. "ext-pcre": "*",
  143. "ext-simplexml": "*",
  144. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  145. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  146. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  147. "mtdowling/jmespath.php": "^2.6",
  148. "php": ">=7.2.5",
  149. "psr/http-message": "^1.0 || ^2.0"
  150. },
  151. "require-dev": {
  152. "andrewsville/php-token-reflection": "^1.4",
  153. "aws/aws-php-sns-message-validator": "~1.0",
  154. "behat/behat": "~3.0",
  155. "composer/composer": "^1.10.22",
  156. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  157. "doctrine/cache": "~1.4",
  158. "ext-dom": "*",
  159. "ext-openssl": "*",
  160. "ext-pcntl": "*",
  161. "ext-sockets": "*",
  162. "nette/neon": "^2.3",
  163. "paragonie/random_compat": ">= 2",
  164. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  165. "psr/cache": "^1.0",
  166. "psr/simple-cache": "^1.0",
  167. "sebastian/comparator": "^1.2.3 || ^4.0",
  168. "yoast/phpunit-polyfills": "^1.0"
  169. },
  170. "suggest": {
  171. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  172. "doctrine/cache": "To use the DoctrineCacheAdapter",
  173. "ext-curl": "To send requests using cURL",
  174. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  175. "ext-sockets": "To use client-side monitoring"
  176. },
  177. "type": "library",
  178. "extra": {
  179. "branch-alias": {
  180. "dev-master": "3.0-dev"
  181. }
  182. },
  183. "autoload": {
  184. "files": [
  185. "src/functions.php"
  186. ],
  187. "psr-4": {
  188. "Aws\\": "src/"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "Apache-2.0"
  194. ],
  195. "authors": [
  196. {
  197. "name": "Amazon Web Services",
  198. "homepage": "http://aws.amazon.com"
  199. }
  200. ],
  201. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  202. "homepage": "http://aws.amazon.com/sdkforphp",
  203. "keywords": [
  204. "amazon",
  205. "aws",
  206. "cloud",
  207. "dynamodb",
  208. "ec2",
  209. "glacier",
  210. "s3",
  211. "sdk"
  212. ],
  213. "support": {
  214. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  215. "issues": "https://github.com/aws/aws-sdk-php/issues",
  216. "source": "https://github.com/aws/aws-sdk-php/tree/3.300.11"
  217. },
  218. "time": "2024-03-05T19:08:14+00:00"
  219. },
  220. {
  221. "name": "bacon/bacon-qr-code",
  222. "version": "2.0.8",
  223. "source": {
  224. "type": "git",
  225. "url": "https://github.com/Bacon/BaconQrCode.git",
  226. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  227. },
  228. "dist": {
  229. "type": "zip",
  230. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  231. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  232. "shasum": ""
  233. },
  234. "require": {
  235. "dasprid/enum": "^1.0.3",
  236. "ext-iconv": "*",
  237. "php": "^7.1 || ^8.0"
  238. },
  239. "require-dev": {
  240. "phly/keep-a-changelog": "^2.1",
  241. "phpunit/phpunit": "^7 | ^8 | ^9",
  242. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  243. "squizlabs/php_codesniffer": "^3.4"
  244. },
  245. "suggest": {
  246. "ext-imagick": "to generate QR code images"
  247. },
  248. "type": "library",
  249. "autoload": {
  250. "psr-4": {
  251. "BaconQrCode\\": "src/"
  252. }
  253. },
  254. "notification-url": "https://packagist.org/downloads/",
  255. "license": [
  256. "BSD-2-Clause"
  257. ],
  258. "authors": [
  259. {
  260. "name": "Ben Scholzen 'DASPRiD'",
  261. "email": "[email protected]",
  262. "homepage": "https://dasprids.de/",
  263. "role": "Developer"
  264. }
  265. ],
  266. "description": "BaconQrCode is a QR code generator for PHP.",
  267. "homepage": "https://github.com/Bacon/BaconQrCode",
  268. "support": {
  269. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  270. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  271. },
  272. "time": "2022-12-07T17:46:57+00:00"
  273. },
  274. {
  275. "name": "beberlei/assert",
  276. "version": "v3.3.2",
  277. "source": {
  278. "type": "git",
  279. "url": "https://github.com/beberlei/assert.git",
  280. "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655"
  281. },
  282. "dist": {
  283. "type": "zip",
  284. "url": "https://api.github.com/repos/beberlei/assert/zipball/cb70015c04be1baee6f5f5c953703347c0ac1655",
  285. "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655",
  286. "shasum": ""
  287. },
  288. "require": {
  289. "ext-ctype": "*",
  290. "ext-json": "*",
  291. "ext-mbstring": "*",
  292. "ext-simplexml": "*",
  293. "php": "^7.0 || ^8.0"
  294. },
  295. "require-dev": {
  296. "friendsofphp/php-cs-fixer": "*",
  297. "phpstan/phpstan": "*",
  298. "phpunit/phpunit": ">=6.0.0",
  299. "yoast/phpunit-polyfills": "^0.1.0"
  300. },
  301. "suggest": {
  302. "ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles"
  303. },
  304. "type": "library",
  305. "autoload": {
  306. "files": [
  307. "lib/Assert/functions.php"
  308. ],
  309. "psr-4": {
  310. "Assert\\": "lib/Assert"
  311. }
  312. },
  313. "notification-url": "https://packagist.org/downloads/",
  314. "license": [
  315. "BSD-2-Clause"
  316. ],
  317. "authors": [
  318. {
  319. "name": "Benjamin Eberlei",
  320. "email": "[email protected]",
  321. "role": "Lead Developer"
  322. },
  323. {
  324. "name": "Richard Quadling",
  325. "email": "[email protected]",
  326. "role": "Collaborator"
  327. }
  328. ],
  329. "description": "Thin assertion library for input validation in business models.",
  330. "keywords": [
  331. "assert",
  332. "assertion",
  333. "validation"
  334. ],
  335. "support": {
  336. "issues": "https://github.com/beberlei/assert/issues",
  337. "source": "https://github.com/beberlei/assert/tree/v3.3.2"
  338. },
  339. "time": "2021-12-16T21:41:27+00:00"
  340. },
  341. {
  342. "name": "brick/math",
  343. "version": "0.11.0",
  344. "source": {
  345. "type": "git",
  346. "url": "https://github.com/brick/math.git",
  347. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  348. },
  349. "dist": {
  350. "type": "zip",
  351. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  352. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  353. "shasum": ""
  354. },
  355. "require": {
  356. "php": "^8.0"
  357. },
  358. "require-dev": {
  359. "php-coveralls/php-coveralls": "^2.2",
  360. "phpunit/phpunit": "^9.0",
  361. "vimeo/psalm": "5.0.0"
  362. },
  363. "type": "library",
  364. "autoload": {
  365. "psr-4": {
  366. "Brick\\Math\\": "src/"
  367. }
  368. },
  369. "notification-url": "https://packagist.org/downloads/",
  370. "license": [
  371. "MIT"
  372. ],
  373. "description": "Arbitrary-precision arithmetic library",
  374. "keywords": [
  375. "Arbitrary-precision",
  376. "BigInteger",
  377. "BigRational",
  378. "arithmetic",
  379. "bigdecimal",
  380. "bignum",
  381. "brick",
  382. "math"
  383. ],
  384. "support": {
  385. "issues": "https://github.com/brick/math/issues",
  386. "source": "https://github.com/brick/math/tree/0.11.0"
  387. },
  388. "funding": [
  389. {
  390. "url": "https://github.com/BenMorel",
  391. "type": "github"
  392. }
  393. ],
  394. "time": "2023-01-15T23:15:59+00:00"
  395. },
  396. {
  397. "name": "carbonphp/carbon-doctrine-types",
  398. "version": "2.1.0",
  399. "source": {
  400. "type": "git",
  401. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  402. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  403. },
  404. "dist": {
  405. "type": "zip",
  406. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  407. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  408. "shasum": ""
  409. },
  410. "require": {
  411. "php": "^7.4 || ^8.0"
  412. },
  413. "conflict": {
  414. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  415. },
  416. "require-dev": {
  417. "doctrine/dbal": "^3.7.0",
  418. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  419. "phpunit/phpunit": "^10.3"
  420. },
  421. "type": "library",
  422. "autoload": {
  423. "psr-4": {
  424. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  425. }
  426. },
  427. "notification-url": "https://packagist.org/downloads/",
  428. "license": [
  429. "MIT"
  430. ],
  431. "authors": [
  432. {
  433. "name": "KyleKatarn",
  434. "email": "[email protected]"
  435. }
  436. ],
  437. "description": "Types to use Carbon in Doctrine",
  438. "keywords": [
  439. "carbon",
  440. "date",
  441. "datetime",
  442. "doctrine",
  443. "time"
  444. ],
  445. "support": {
  446. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  447. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  448. },
  449. "funding": [
  450. {
  451. "url": "https://github.com/kylekatarnls",
  452. "type": "github"
  453. },
  454. {
  455. "url": "https://opencollective.com/Carbon",
  456. "type": "open_collective"
  457. },
  458. {
  459. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  460. "type": "tidelift"
  461. }
  462. ],
  463. "time": "2023-12-11T17:09:12+00:00"
  464. },
  465. {
  466. "name": "clue/stream-filter",
  467. "version": "v1.7.0",
  468. "source": {
  469. "type": "git",
  470. "url": "https://github.com/clue/stream-filter.git",
  471. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7"
  472. },
  473. "dist": {
  474. "type": "zip",
  475. "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7",
  476. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  477. "shasum": ""
  478. },
  479. "require": {
  480. "php": ">=5.3"
  481. },
  482. "require-dev": {
  483. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "files": [
  488. "src/functions_include.php"
  489. ],
  490. "psr-4": {
  491. "Clue\\StreamFilter\\": "src/"
  492. }
  493. },
  494. "notification-url": "https://packagist.org/downloads/",
  495. "license": [
  496. "MIT"
  497. ],
  498. "authors": [
  499. {
  500. "name": "Christian Lück",
  501. "email": "[email protected]"
  502. }
  503. ],
  504. "description": "A simple and modern approach to stream filtering in PHP",
  505. "homepage": "https://github.com/clue/stream-filter",
  506. "keywords": [
  507. "bucket brigade",
  508. "callback",
  509. "filter",
  510. "php_user_filter",
  511. "stream",
  512. "stream_filter_append",
  513. "stream_filter_register"
  514. ],
  515. "support": {
  516. "issues": "https://github.com/clue/stream-filter/issues",
  517. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  518. },
  519. "funding": [
  520. {
  521. "url": "https://clue.engineering/support",
  522. "type": "custom"
  523. },
  524. {
  525. "url": "https://github.com/clue",
  526. "type": "github"
  527. }
  528. ],
  529. "time": "2023-12-20T15:40:13+00:00"
  530. },
  531. {
  532. "name": "composer/ca-bundle",
  533. "version": "1.4.1",
  534. "source": {
  535. "type": "git",
  536. "url": "https://github.com/composer/ca-bundle.git",
  537. "reference": "3ce240142f6d59b808dd65c1f52f7a1c252e6cfd"
  538. },
  539. "dist": {
  540. "type": "zip",
  541. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/3ce240142f6d59b808dd65c1f52f7a1c252e6cfd",
  542. "reference": "3ce240142f6d59b808dd65c1f52f7a1c252e6cfd",
  543. "shasum": ""
  544. },
  545. "require": {
  546. "ext-openssl": "*",
  547. "ext-pcre": "*",
  548. "php": "^5.3.2 || ^7.0 || ^8.0"
  549. },
  550. "require-dev": {
  551. "phpstan/phpstan": "^0.12.55",
  552. "psr/log": "^1.0",
  553. "symfony/phpunit-bridge": "^4.2 || ^5",
  554. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  555. },
  556. "type": "library",
  557. "extra": {
  558. "branch-alias": {
  559. "dev-main": "1.x-dev"
  560. }
  561. },
  562. "autoload": {
  563. "psr-4": {
  564. "Composer\\CaBundle\\": "src"
  565. }
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "MIT"
  570. ],
  571. "authors": [
  572. {
  573. "name": "Jordi Boggiano",
  574. "email": "[email protected]",
  575. "homepage": "http://seld.be"
  576. }
  577. ],
  578. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  579. "keywords": [
  580. "cabundle",
  581. "cacert",
  582. "certificate",
  583. "ssl",
  584. "tls"
  585. ],
  586. "support": {
  587. "irc": "irc://irc.freenode.org/composer",
  588. "issues": "https://github.com/composer/ca-bundle/issues",
  589. "source": "https://github.com/composer/ca-bundle/tree/1.4.1"
  590. },
  591. "funding": [
  592. {
  593. "url": "https://packagist.com",
  594. "type": "custom"
  595. },
  596. {
  597. "url": "https://github.com/composer",
  598. "type": "github"
  599. },
  600. {
  601. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  602. "type": "tidelift"
  603. }
  604. ],
  605. "time": "2024-02-23T10:16:52+00:00"
  606. },
  607. {
  608. "name": "dasprid/enum",
  609. "version": "1.0.5",
  610. "source": {
  611. "type": "git",
  612. "url": "https://github.com/DASPRiD/Enum.git",
  613. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
  614. },
  615. "dist": {
  616. "type": "zip",
  617. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
  618. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
  619. "shasum": ""
  620. },
  621. "require": {
  622. "php": ">=7.1 <9.0"
  623. },
  624. "require-dev": {
  625. "phpunit/phpunit": "^7 | ^8 | ^9",
  626. "squizlabs/php_codesniffer": "*"
  627. },
  628. "type": "library",
  629. "autoload": {
  630. "psr-4": {
  631. "DASPRiD\\Enum\\": "src/"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "BSD-2-Clause"
  637. ],
  638. "authors": [
  639. {
  640. "name": "Ben Scholzen 'DASPRiD'",
  641. "email": "[email protected]",
  642. "homepage": "https://dasprids.de/",
  643. "role": "Developer"
  644. }
  645. ],
  646. "description": "PHP 7.1 enum implementation",
  647. "keywords": [
  648. "enum",
  649. "map"
  650. ],
  651. "support": {
  652. "issues": "https://github.com/DASPRiD/Enum/issues",
  653. "source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
  654. },
  655. "time": "2023-08-25T16:18:39+00:00"
  656. },
  657. {
  658. "name": "doctrine/inflector",
  659. "version": "2.0.10",
  660. "source": {
  661. "type": "git",
  662. "url": "https://github.com/doctrine/inflector.git",
  663. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  664. },
  665. "dist": {
  666. "type": "zip",
  667. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  668. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  669. "shasum": ""
  670. },
  671. "require": {
  672. "php": "^7.2 || ^8.0"
  673. },
  674. "require-dev": {
  675. "doctrine/coding-standard": "^11.0",
  676. "phpstan/phpstan": "^1.8",
  677. "phpstan/phpstan-phpunit": "^1.1",
  678. "phpstan/phpstan-strict-rules": "^1.3",
  679. "phpunit/phpunit": "^8.5 || ^9.5",
  680. "vimeo/psalm": "^4.25 || ^5.4"
  681. },
  682. "type": "library",
  683. "autoload": {
  684. "psr-4": {
  685. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  686. }
  687. },
  688. "notification-url": "https://packagist.org/downloads/",
  689. "license": [
  690. "MIT"
  691. ],
  692. "authors": [
  693. {
  694. "name": "Guilherme Blanco",
  695. "email": "[email protected]"
  696. },
  697. {
  698. "name": "Roman Borschel",
  699. "email": "[email protected]"
  700. },
  701. {
  702. "name": "Benjamin Eberlei",
  703. "email": "[email protected]"
  704. },
  705. {
  706. "name": "Jonathan Wage",
  707. "email": "[email protected]"
  708. },
  709. {
  710. "name": "Johannes Schmitt",
  711. "email": "[email protected]"
  712. }
  713. ],
  714. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  715. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  716. "keywords": [
  717. "inflection",
  718. "inflector",
  719. "lowercase",
  720. "manipulation",
  721. "php",
  722. "plural",
  723. "singular",
  724. "strings",
  725. "uppercase",
  726. "words"
  727. ],
  728. "support": {
  729. "issues": "https://github.com/doctrine/inflector/issues",
  730. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  731. },
  732. "funding": [
  733. {
  734. "url": "https://www.doctrine-project.org/sponsorship.html",
  735. "type": "custom"
  736. },
  737. {
  738. "url": "https://www.patreon.com/phpdoctrine",
  739. "type": "patreon"
  740. },
  741. {
  742. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  743. "type": "tidelift"
  744. }
  745. ],
  746. "time": "2024-02-18T20:23:39+00:00"
  747. },
  748. {
  749. "name": "endroid/qr-code",
  750. "version": "5.0.5",
  751. "source": {
  752. "type": "git",
  753. "url": "https://github.com/endroid/qr-code.git",
  754. "reference": "739fc545bfade2470765219dc2a615a6f1e94987"
  755. },
  756. "dist": {
  757. "type": "zip",
  758. "url": "https://api.github.com/repos/endroid/qr-code/zipball/739fc545bfade2470765219dc2a615a6f1e94987",
  759. "reference": "739fc545bfade2470765219dc2a615a6f1e94987",
  760. "shasum": ""
  761. },
  762. "require": {
  763. "bacon/bacon-qr-code": "^2.0.5",
  764. "php": "^8.1"
  765. },
  766. "conflict": {
  767. "khanamiryan/qrcode-detector-decoder": "^1.0.6"
  768. },
  769. "require-dev": {
  770. "endroid/quality": "dev-main",
  771. "ext-gd": "*",
  772. "khanamiryan/qrcode-detector-decoder": "^1.0.4||^2.0.2",
  773. "setasign/fpdf": "^1.8.2"
  774. },
  775. "suggest": {
  776. "ext-gd": "Enables you to write PNG images",
  777. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  778. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  779. "setasign/fpdf": "Enables you to use the PDF writer"
  780. },
  781. "type": "library",
  782. "extra": {
  783. "branch-alias": {
  784. "dev-main": "5.x-dev"
  785. }
  786. },
  787. "autoload": {
  788. "psr-4": {
  789. "Endroid\\QrCode\\": "src/"
  790. }
  791. },
  792. "notification-url": "https://packagist.org/downloads/",
  793. "license": [
  794. "MIT"
  795. ],
  796. "authors": [
  797. {
  798. "name": "Jeroen van den Enden",
  799. "email": "[email protected]"
  800. }
  801. ],
  802. "description": "Endroid QR Code",
  803. "homepage": "https://github.com/endroid/qr-code",
  804. "keywords": [
  805. "code",
  806. "endroid",
  807. "php",
  808. "qr",
  809. "qrcode"
  810. ],
  811. "support": {
  812. "issues": "https://github.com/endroid/qr-code/issues",
  813. "source": "https://github.com/endroid/qr-code/tree/5.0.5"
  814. },
  815. "funding": [
  816. {
  817. "url": "https://github.com/endroid",
  818. "type": "github"
  819. }
  820. ],
  821. "time": "2024-03-03T18:17:54+00:00"
  822. },
  823. {
  824. "name": "geoip2/geoip2",
  825. "version": "v3.0.0",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/maxmind/GeoIP2-php.git",
  829. "reference": "1a802ce9356cdd1c6b681c030fd9563750e11e6a"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/1a802ce9356cdd1c6b681c030fd9563750e11e6a",
  834. "reference": "1a802ce9356cdd1c6b681c030fd9563750e11e6a",
  835. "shasum": ""
  836. },
  837. "require": {
  838. "ext-json": "*",
  839. "maxmind-db/reader": "^1.11.1",
  840. "maxmind/web-service-common": "~0.8",
  841. "php": ">=8.1"
  842. },
  843. "require-dev": {
  844. "friendsofphp/php-cs-fixer": "3.*",
  845. "phpstan/phpstan": "*",
  846. "phpunit/phpunit": "^10.0",
  847. "squizlabs/php_codesniffer": "3.*"
  848. },
  849. "type": "library",
  850. "autoload": {
  851. "psr-4": {
  852. "GeoIp2\\": "src"
  853. }
  854. },
  855. "notification-url": "https://packagist.org/downloads/",
  856. "license": [
  857. "Apache-2.0"
  858. ],
  859. "authors": [
  860. {
  861. "name": "Gregory J. Oschwald",
  862. "email": "[email protected]",
  863. "homepage": "https://www.maxmind.com/"
  864. }
  865. ],
  866. "description": "MaxMind GeoIP2 PHP API",
  867. "homepage": "https://github.com/maxmind/GeoIP2-php",
  868. "keywords": [
  869. "IP",
  870. "geoip",
  871. "geoip2",
  872. "geolocation",
  873. "maxmind"
  874. ],
  875. "support": {
  876. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  877. "source": "https://github.com/maxmind/GeoIP2-php/tree/v3.0.0"
  878. },
  879. "time": "2023-12-04T17:16:34+00:00"
  880. },
  881. {
  882. "name": "guzzlehttp/guzzle",
  883. "version": "7.8.1",
  884. "source": {
  885. "type": "git",
  886. "url": "https://github.com/guzzle/guzzle.git",
  887. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  888. },
  889. "dist": {
  890. "type": "zip",
  891. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  892. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  893. "shasum": ""
  894. },
  895. "require": {
  896. "ext-json": "*",
  897. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  898. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  899. "php": "^7.2.5 || ^8.0",
  900. "psr/http-client": "^1.0",
  901. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  902. },
  903. "provide": {
  904. "psr/http-client-implementation": "1.0"
  905. },
  906. "require-dev": {
  907. "bamarni/composer-bin-plugin": "^1.8.2",
  908. "ext-curl": "*",
  909. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  910. "php-http/message-factory": "^1.1",
  911. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  912. "psr/log": "^1.1 || ^2.0 || ^3.0"
  913. },
  914. "suggest": {
  915. "ext-curl": "Required for CURL handler support",
  916. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  917. "psr/log": "Required for using the Log middleware"
  918. },
  919. "type": "library",
  920. "extra": {
  921. "bamarni-bin": {
  922. "bin-links": true,
  923. "forward-command": false
  924. }
  925. },
  926. "autoload": {
  927. "files": [
  928. "src/functions_include.php"
  929. ],
  930. "psr-4": {
  931. "GuzzleHttp\\": "src/"
  932. }
  933. },
  934. "notification-url": "https://packagist.org/downloads/",
  935. "license": [
  936. "MIT"
  937. ],
  938. "authors": [
  939. {
  940. "name": "Graham Campbell",
  941. "email": "[email protected]",
  942. "homepage": "https://github.com/GrahamCampbell"
  943. },
  944. {
  945. "name": "Michael Dowling",
  946. "email": "[email protected]",
  947. "homepage": "https://github.com/mtdowling"
  948. },
  949. {
  950. "name": "Jeremy Lindblom",
  951. "email": "[email protected]",
  952. "homepage": "https://github.com/jeremeamia"
  953. },
  954. {
  955. "name": "George Mponos",
  956. "email": "[email protected]",
  957. "homepage": "https://github.com/gmponos"
  958. },
  959. {
  960. "name": "Tobias Nyholm",
  961. "email": "[email protected]",
  962. "homepage": "https://github.com/Nyholm"
  963. },
  964. {
  965. "name": "Márk Sági-Kazár",
  966. "email": "[email protected]",
  967. "homepage": "https://github.com/sagikazarmark"
  968. },
  969. {
  970. "name": "Tobias Schultze",
  971. "email": "[email protected]",
  972. "homepage": "https://github.com/Tobion"
  973. }
  974. ],
  975. "description": "Guzzle is a PHP HTTP client library",
  976. "keywords": [
  977. "client",
  978. "curl",
  979. "framework",
  980. "http",
  981. "http client",
  982. "psr-18",
  983. "psr-7",
  984. "rest",
  985. "web service"
  986. ],
  987. "support": {
  988. "issues": "https://github.com/guzzle/guzzle/issues",
  989. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  990. },
  991. "funding": [
  992. {
  993. "url": "https://github.com/GrahamCampbell",
  994. "type": "github"
  995. },
  996. {
  997. "url": "https://github.com/Nyholm",
  998. "type": "github"
  999. },
  1000. {
  1001. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1002. "type": "tidelift"
  1003. }
  1004. ],
  1005. "time": "2023-12-03T20:35:24+00:00"
  1006. },
  1007. {
  1008. "name": "guzzlehttp/promises",
  1009. "version": "2.0.2",
  1010. "source": {
  1011. "type": "git",
  1012. "url": "https://github.com/guzzle/promises.git",
  1013. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  1014. },
  1015. "dist": {
  1016. "type": "zip",
  1017. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  1018. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  1019. "shasum": ""
  1020. },
  1021. "require": {
  1022. "php": "^7.2.5 || ^8.0"
  1023. },
  1024. "require-dev": {
  1025. "bamarni/composer-bin-plugin": "^1.8.2",
  1026. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1027. },
  1028. "type": "library",
  1029. "extra": {
  1030. "bamarni-bin": {
  1031. "bin-links": true,
  1032. "forward-command": false
  1033. }
  1034. },
  1035. "autoload": {
  1036. "psr-4": {
  1037. "GuzzleHttp\\Promise\\": "src/"
  1038. }
  1039. },
  1040. "notification-url": "https://packagist.org/downloads/",
  1041. "license": [
  1042. "MIT"
  1043. ],
  1044. "authors": [
  1045. {
  1046. "name": "Graham Campbell",
  1047. "email": "[email protected]",
  1048. "homepage": "https://github.com/GrahamCampbell"
  1049. },
  1050. {
  1051. "name": "Michael Dowling",
  1052. "email": "[email protected]",
  1053. "homepage": "https://github.com/mtdowling"
  1054. },
  1055. {
  1056. "name": "Tobias Nyholm",
  1057. "email": "[email protected]",
  1058. "homepage": "https://github.com/Nyholm"
  1059. },
  1060. {
  1061. "name": "Tobias Schultze",
  1062. "email": "[email protected]",
  1063. "homepage": "https://github.com/Tobion"
  1064. }
  1065. ],
  1066. "description": "Guzzle promises library",
  1067. "keywords": [
  1068. "promise"
  1069. ],
  1070. "support": {
  1071. "issues": "https://github.com/guzzle/promises/issues",
  1072. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  1073. },
  1074. "funding": [
  1075. {
  1076. "url": "https://github.com/GrahamCampbell",
  1077. "type": "github"
  1078. },
  1079. {
  1080. "url": "https://github.com/Nyholm",
  1081. "type": "github"
  1082. },
  1083. {
  1084. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1085. "type": "tidelift"
  1086. }
  1087. ],
  1088. "time": "2023-12-03T20:19:20+00:00"
  1089. },
  1090. {
  1091. "name": "guzzlehttp/psr7",
  1092. "version": "2.6.2",
  1093. "source": {
  1094. "type": "git",
  1095. "url": "https://github.com/guzzle/psr7.git",
  1096. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1097. },
  1098. "dist": {
  1099. "type": "zip",
  1100. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1101. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1102. "shasum": ""
  1103. },
  1104. "require": {
  1105. "php": "^7.2.5 || ^8.0",
  1106. "psr/http-factory": "^1.0",
  1107. "psr/http-message": "^1.1 || ^2.0",
  1108. "ralouphie/getallheaders": "^3.0"
  1109. },
  1110. "provide": {
  1111. "psr/http-factory-implementation": "1.0",
  1112. "psr/http-message-implementation": "1.0"
  1113. },
  1114. "require-dev": {
  1115. "bamarni/composer-bin-plugin": "^1.8.2",
  1116. "http-interop/http-factory-tests": "^0.9",
  1117. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1118. },
  1119. "suggest": {
  1120. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1121. },
  1122. "type": "library",
  1123. "extra": {
  1124. "bamarni-bin": {
  1125. "bin-links": true,
  1126. "forward-command": false
  1127. }
  1128. },
  1129. "autoload": {
  1130. "psr-4": {
  1131. "GuzzleHttp\\Psr7\\": "src/"
  1132. }
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "authors": [
  1139. {
  1140. "name": "Graham Campbell",
  1141. "email": "[email protected]",
  1142. "homepage": "https://github.com/GrahamCampbell"
  1143. },
  1144. {
  1145. "name": "Michael Dowling",
  1146. "email": "[email protected]",
  1147. "homepage": "https://github.com/mtdowling"
  1148. },
  1149. {
  1150. "name": "George Mponos",
  1151. "email": "[email protected]",
  1152. "homepage": "https://github.com/gmponos"
  1153. },
  1154. {
  1155. "name": "Tobias Nyholm",
  1156. "email": "[email protected]",
  1157. "homepage": "https://github.com/Nyholm"
  1158. },
  1159. {
  1160. "name": "Márk Sági-Kazár",
  1161. "email": "[email protected]",
  1162. "homepage": "https://github.com/sagikazarmark"
  1163. },
  1164. {
  1165. "name": "Tobias Schultze",
  1166. "email": "[email protected]",
  1167. "homepage": "https://github.com/Tobion"
  1168. },
  1169. {
  1170. "name": "Márk Sági-Kazár",
  1171. "email": "[email protected]",
  1172. "homepage": "https://sagikazarmark.hu"
  1173. }
  1174. ],
  1175. "description": "PSR-7 message implementation that also provides common utility methods",
  1176. "keywords": [
  1177. "http",
  1178. "message",
  1179. "psr-7",
  1180. "request",
  1181. "response",
  1182. "stream",
  1183. "uri",
  1184. "url"
  1185. ],
  1186. "support": {
  1187. "issues": "https://github.com/guzzle/psr7/issues",
  1188. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1189. },
  1190. "funding": [
  1191. {
  1192. "url": "https://github.com/GrahamCampbell",
  1193. "type": "github"
  1194. },
  1195. {
  1196. "url": "https://github.com/Nyholm",
  1197. "type": "github"
  1198. },
  1199. {
  1200. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1201. "type": "tidelift"
  1202. }
  1203. ],
  1204. "time": "2023-12-03T20:05:35+00:00"
  1205. },
  1206. {
  1207. "name": "illuminate/collections",
  1208. "version": "v10.47.0",
  1209. "source": {
  1210. "type": "git",
  1211. "url": "https://github.com/illuminate/collections.git",
  1212. "reference": "7bc2e907285b6a38acb3b386dcc577b185bf3d73"
  1213. },
  1214. "dist": {
  1215. "type": "zip",
  1216. "url": "https://api.github.com/repos/illuminate/collections/zipball/7bc2e907285b6a38acb3b386dcc577b185bf3d73",
  1217. "reference": "7bc2e907285b6a38acb3b386dcc577b185bf3d73",
  1218. "shasum": ""
  1219. },
  1220. "require": {
  1221. "illuminate/conditionable": "^10.0",
  1222. "illuminate/contracts": "^10.0",
  1223. "illuminate/macroable": "^10.0",
  1224. "php": "^8.1"
  1225. },
  1226. "suggest": {
  1227. "symfony/var-dumper": "Required to use the dump method (^6.2)."
  1228. },
  1229. "type": "library",
  1230. "extra": {
  1231. "branch-alias": {
  1232. "dev-master": "10.x-dev"
  1233. }
  1234. },
  1235. "autoload": {
  1236. "files": [
  1237. "helpers.php"
  1238. ],
  1239. "psr-4": {
  1240. "Illuminate\\Support\\": ""
  1241. }
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "MIT"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Taylor Otwell",
  1250. "email": "[email protected]"
  1251. }
  1252. ],
  1253. "description": "The Illuminate Collections package.",
  1254. "homepage": "https://laravel.com",
  1255. "support": {
  1256. "issues": "https://github.com/laravel/framework/issues",
  1257. "source": "https://github.com/laravel/framework"
  1258. },
  1259. "time": "2024-03-04T18:11:18+00:00"
  1260. },
  1261. {
  1262. "name": "illuminate/conditionable",
  1263. "version": "v10.47.0",
  1264. "source": {
  1265. "type": "git",
  1266. "url": "https://github.com/illuminate/conditionable.git",
  1267. "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009"
  1268. },
  1269. "dist": {
  1270. "type": "zip",
  1271. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/d0958e4741fc9d6f516a552060fd1b829a85e009",
  1272. "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009",
  1273. "shasum": ""
  1274. },
  1275. "require": {
  1276. "php": "^8.0.2"
  1277. },
  1278. "type": "library",
  1279. "extra": {
  1280. "branch-alias": {
  1281. "dev-master": "10.x-dev"
  1282. }
  1283. },
  1284. "autoload": {
  1285. "psr-4": {
  1286. "Illuminate\\Support\\": ""
  1287. }
  1288. },
  1289. "notification-url": "https://packagist.org/downloads/",
  1290. "license": [
  1291. "MIT"
  1292. ],
  1293. "authors": [
  1294. {
  1295. "name": "Taylor Otwell",
  1296. "email": "[email protected]"
  1297. }
  1298. ],
  1299. "description": "The Illuminate Conditionable package.",
  1300. "homepage": "https://laravel.com",
  1301. "support": {
  1302. "issues": "https://github.com/laravel/framework/issues",
  1303. "source": "https://github.com/laravel/framework"
  1304. },
  1305. "time": "2023-02-03T08:06:17+00:00"
  1306. },
  1307. {
  1308. "name": "illuminate/container",
  1309. "version": "v10.47.0",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/illuminate/container.git",
  1313. "reference": "ddc26273085fad3c471b2602ad820e0097ff7939"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/illuminate/container/zipball/ddc26273085fad3c471b2602ad820e0097ff7939",
  1318. "reference": "ddc26273085fad3c471b2602ad820e0097ff7939",
  1319. "shasum": ""
  1320. },
  1321. "require": {
  1322. "illuminate/contracts": "^10.0",
  1323. "php": "^8.1",
  1324. "psr/container": "^1.1.1|^2.0.1"
  1325. },
  1326. "provide": {
  1327. "psr/container-implementation": "1.1|2.0"
  1328. },
  1329. "type": "library",
  1330. "extra": {
  1331. "branch-alias": {
  1332. "dev-master": "10.x-dev"
  1333. }
  1334. },
  1335. "autoload": {
  1336. "psr-4": {
  1337. "Illuminate\\Container\\": ""
  1338. }
  1339. },
  1340. "notification-url": "https://packagist.org/downloads/",
  1341. "license": [
  1342. "MIT"
  1343. ],
  1344. "authors": [
  1345. {
  1346. "name": "Taylor Otwell",
  1347. "email": "[email protected]"
  1348. }
  1349. ],
  1350. "description": "The Illuminate Container package.",
  1351. "homepage": "https://laravel.com",
  1352. "support": {
  1353. "issues": "https://github.com/laravel/framework/issues",
  1354. "source": "https://github.com/laravel/framework"
  1355. },
  1356. "time": "2023-06-18T09:12:03+00:00"
  1357. },
  1358. {
  1359. "name": "illuminate/contracts",
  1360. "version": "v10.47.0",
  1361. "source": {
  1362. "type": "git",
  1363. "url": "https://github.com/illuminate/contracts.git",
  1364. "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac"
  1365. },
  1366. "dist": {
  1367. "type": "zip",
  1368. "url": "https://api.github.com/repos/illuminate/contracts/zipball/8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac",
  1369. "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac",
  1370. "shasum": ""
  1371. },
  1372. "require": {
  1373. "php": "^8.1",
  1374. "psr/container": "^1.1.1|^2.0.1",
  1375. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1376. },
  1377. "type": "library",
  1378. "extra": {
  1379. "branch-alias": {
  1380. "dev-master": "10.x-dev"
  1381. }
  1382. },
  1383. "autoload": {
  1384. "psr-4": {
  1385. "Illuminate\\Contracts\\": ""
  1386. }
  1387. },
  1388. "notification-url": "https://packagist.org/downloads/",
  1389. "license": [
  1390. "MIT"
  1391. ],
  1392. "authors": [
  1393. {
  1394. "name": "Taylor Otwell",
  1395. "email": "[email protected]"
  1396. }
  1397. ],
  1398. "description": "The Illuminate Contracts package.",
  1399. "homepage": "https://laravel.com",
  1400. "support": {
  1401. "issues": "https://github.com/laravel/framework/issues",
  1402. "source": "https://github.com/laravel/framework"
  1403. },
  1404. "time": "2024-01-15T18:52:32+00:00"
  1405. },
  1406. {
  1407. "name": "illuminate/database",
  1408. "version": "v10.47.0",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/illuminate/database.git",
  1412. "reference": "385a67f5351be38c5c6f28d58f7d76cbaffcaa02"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/illuminate/database/zipball/385a67f5351be38c5c6f28d58f7d76cbaffcaa02",
  1417. "reference": "385a67f5351be38c5c6f28d58f7d76cbaffcaa02",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1422. "ext-pdo": "*",
  1423. "illuminate/collections": "^10.0",
  1424. "illuminate/container": "^10.0",
  1425. "illuminate/contracts": "^10.0",
  1426. "illuminate/macroable": "^10.0",
  1427. "illuminate/support": "^10.0",
  1428. "php": "^8.1"
  1429. },
  1430. "conflict": {
  1431. "carbonphp/carbon-doctrine-types": ">=3.0",
  1432. "doctrine/dbal": ">=4.0"
  1433. },
  1434. "suggest": {
  1435. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  1436. "ext-filter": "Required to use the Postgres database driver.",
  1437. "fakerphp/faker": "Required to use the eloquent factory builder (^1.21).",
  1438. "illuminate/console": "Required to use the database commands (^10.0).",
  1439. "illuminate/events": "Required to use the observers with Eloquent (^10.0).",
  1440. "illuminate/filesystem": "Required to use the migrations (^10.0).",
  1441. "illuminate/pagination": "Required to paginate the result set (^10.0).",
  1442. "symfony/finder": "Required to use Eloquent model factories (^6.2)."
  1443. },
  1444. "type": "library",
  1445. "extra": {
  1446. "branch-alias": {
  1447. "dev-master": "10.x-dev"
  1448. }
  1449. },
  1450. "autoload": {
  1451. "psr-4": {
  1452. "Illuminate\\Database\\": ""
  1453. }
  1454. },
  1455. "notification-url": "https://packagist.org/downloads/",
  1456. "license": [
  1457. "MIT"
  1458. ],
  1459. "authors": [
  1460. {
  1461. "name": "Taylor Otwell",
  1462. "email": "[email protected]"
  1463. }
  1464. ],
  1465. "description": "The Illuminate Database package.",
  1466. "homepage": "https://laravel.com",
  1467. "keywords": [
  1468. "database",
  1469. "laravel",
  1470. "orm",
  1471. "sql"
  1472. ],
  1473. "support": {
  1474. "issues": "https://github.com/laravel/framework/issues",
  1475. "source": "https://github.com/laravel/framework"
  1476. },
  1477. "time": "2024-03-04T21:32:24+00:00"
  1478. },
  1479. {
  1480. "name": "illuminate/macroable",
  1481. "version": "v10.47.0",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/illuminate/macroable.git",
  1485. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27",
  1490. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27",
  1491. "shasum": ""
  1492. },
  1493. "require": {
  1494. "php": "^8.1"
  1495. },
  1496. "type": "library",
  1497. "extra": {
  1498. "branch-alias": {
  1499. "dev-master": "10.x-dev"
  1500. }
  1501. },
  1502. "autoload": {
  1503. "psr-4": {
  1504. "Illuminate\\Support\\": ""
  1505. }
  1506. },
  1507. "notification-url": "https://packagist.org/downloads/",
  1508. "license": [
  1509. "MIT"
  1510. ],
  1511. "authors": [
  1512. {
  1513. "name": "Taylor Otwell",
  1514. "email": "[email protected]"
  1515. }
  1516. ],
  1517. "description": "The Illuminate Macroable package.",
  1518. "homepage": "https://laravel.com",
  1519. "support": {
  1520. "issues": "https://github.com/laravel/framework/issues",
  1521. "source": "https://github.com/laravel/framework"
  1522. },
  1523. "time": "2023-06-05T12:46:42+00:00"
  1524. },
  1525. {
  1526. "name": "illuminate/pagination",
  1527. "version": "v10.47.0",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://github.com/illuminate/pagination.git",
  1531. "reference": "b42a851e037984e38f8964d1a96d15b0302bebfc"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://api.github.com/repos/illuminate/pagination/zipball/b42a851e037984e38f8964d1a96d15b0302bebfc",
  1536. "reference": "b42a851e037984e38f8964d1a96d15b0302bebfc",
  1537. "shasum": ""
  1538. },
  1539. "require": {
  1540. "ext-filter": "*",
  1541. "illuminate/collections": "^10.0",
  1542. "illuminate/contracts": "^10.0",
  1543. "illuminate/support": "^10.0",
  1544. "php": "^8.1"
  1545. },
  1546. "type": "library",
  1547. "extra": {
  1548. "branch-alias": {
  1549. "dev-master": "10.x-dev"
  1550. }
  1551. },
  1552. "autoload": {
  1553. "psr-4": {
  1554. "Illuminate\\Pagination\\": ""
  1555. }
  1556. },
  1557. "notification-url": "https://packagist.org/downloads/",
  1558. "license": [
  1559. "MIT"
  1560. ],
  1561. "authors": [
  1562. {
  1563. "name": "Taylor Otwell",
  1564. "email": "[email protected]"
  1565. }
  1566. ],
  1567. "description": "The Illuminate Pagination package.",
  1568. "homepage": "https://laravel.com",
  1569. "support": {
  1570. "issues": "https://github.com/laravel/framework/issues",
  1571. "source": "https://github.com/laravel/framework"
  1572. },
  1573. "time": "2024-01-12T17:17:46+00:00"
  1574. },
  1575. {
  1576. "name": "illuminate/support",
  1577. "version": "v10.47.0",
  1578. "source": {
  1579. "type": "git",
  1580. "url": "https://github.com/illuminate/support.git",
  1581. "reference": "a98f849a2a0f36fbcbec77d07cae680e240ccdc1"
  1582. },
  1583. "dist": {
  1584. "type": "zip",
  1585. "url": "https://api.github.com/repos/illuminate/support/zipball/a98f849a2a0f36fbcbec77d07cae680e240ccdc1",
  1586. "reference": "a98f849a2a0f36fbcbec77d07cae680e240ccdc1",
  1587. "shasum": ""
  1588. },
  1589. "require": {
  1590. "doctrine/inflector": "^2.0",
  1591. "ext-ctype": "*",
  1592. "ext-filter": "*",
  1593. "ext-mbstring": "*",
  1594. "illuminate/collections": "^10.0",
  1595. "illuminate/conditionable": "^10.0",
  1596. "illuminate/contracts": "^10.0",
  1597. "illuminate/macroable": "^10.0",
  1598. "nesbot/carbon": "^2.67",
  1599. "php": "^8.1",
  1600. "voku/portable-ascii": "^2.0"
  1601. },
  1602. "conflict": {
  1603. "tightenco/collect": "<5.5.33"
  1604. },
  1605. "suggest": {
  1606. "illuminate/filesystem": "Required to use the composer class (^10.0).",
  1607. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).",
  1608. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  1609. "symfony/process": "Required to use the composer class (^6.2).",
  1610. "symfony/uid": "Required to use Str::ulid() (^6.2).",
  1611. "symfony/var-dumper": "Required to use the dd function (^6.2).",
  1612. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  1613. },
  1614. "type": "library",
  1615. "extra": {
  1616. "branch-alias": {
  1617. "dev-master": "10.x-dev"
  1618. }
  1619. },
  1620. "autoload": {
  1621. "files": [
  1622. "helpers.php"
  1623. ],
  1624. "psr-4": {
  1625. "Illuminate\\Support\\": ""
  1626. }
  1627. },
  1628. "notification-url": "https://packagist.org/downloads/",
  1629. "license": [
  1630. "MIT"
  1631. ],
  1632. "authors": [
  1633. {
  1634. "name": "Taylor Otwell",
  1635. "email": "[email protected]"
  1636. }
  1637. ],
  1638. "description": "The Illuminate Support package.",
  1639. "homepage": "https://laravel.com",
  1640. "support": {
  1641. "issues": "https://github.com/laravel/framework/issues",
  1642. "source": "https://github.com/laravel/framework"
  1643. },
  1644. "time": "2024-03-02T00:22:09+00:00"
  1645. },
  1646. {
  1647. "name": "irazasyed/telegram-bot-sdk",
  1648. "version": "v3.13.0",
  1649. "source": {
  1650. "type": "git",
  1651. "url": "https://github.com/irazasyed/telegram-bot-sdk.git",
  1652. "reference": "31a71aef80fd328bfe0084738cc3b51cc49867f4"
  1653. },
  1654. "dist": {
  1655. "type": "zip",
  1656. "url": "https://api.github.com/repos/irazasyed/telegram-bot-sdk/zipball/31a71aef80fd328bfe0084738cc3b51cc49867f4",
  1657. "reference": "31a71aef80fd328bfe0084738cc3b51cc49867f4",
  1658. "shasum": ""
  1659. },
  1660. "require": {
  1661. "ext-json": "*",
  1662. "guzzlehttp/guzzle": "^7.5.1",
  1663. "guzzlehttp/psr7": "^2.5",
  1664. "illuminate/support": "9 - 10",
  1665. "league/event": "^2.2 || ^3.0",
  1666. "php": ">=8.0",
  1667. "psr/container": "^2.0",
  1668. "psr/event-dispatcher": "^1.0"
  1669. },
  1670. "require-dev": {
  1671. "irazasyed/docgen": "^0.2",
  1672. "pestphp/pest": "^1.22 || ^2.0",
  1673. "php-parallel-lint/php-parallel-lint": "^1.3",
  1674. "phpspec/prophecy": "^1.17",
  1675. "phpspec/prophecy-phpunit": "^2.0",
  1676. "rector/rector": "^0.16.0"
  1677. },
  1678. "suggest": {
  1679. "illuminate/container": "Hold dependencies to be injected in commands constructors",
  1680. "irazasyed/larasupport": "Allows you to use any Laravel Package in Lumen by adding support!"
  1681. },
  1682. "type": "library",
  1683. "extra": {
  1684. "branch-alias": {
  1685. "dev-master": "3.0-dev"
  1686. },
  1687. "laravel": {
  1688. "aliases": {
  1689. "Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram"
  1690. },
  1691. "providers": [
  1692. "Telegram\\Bot\\Laravel\\TelegramServiceProvider"
  1693. ]
  1694. }
  1695. },
  1696. "autoload": {
  1697. "psr-4": {
  1698. "Telegram\\Bot\\": "src/"
  1699. }
  1700. },
  1701. "notification-url": "https://packagist.org/downloads/",
  1702. "license": [
  1703. "BSD-3-Clause"
  1704. ],
  1705. "authors": [
  1706. {
  1707. "name": "Irfaq Syed",
  1708. "email": "[email protected]",
  1709. "homepage": "https://github.com/irazasyed"
  1710. }
  1711. ],
  1712. "description": "The Unofficial Telegram Bot API PHP SDK",
  1713. "homepage": "https://github.com/irazasyed/telegram-bot-sdk",
  1714. "keywords": [
  1715. "laravel",
  1716. "laravel telegram",
  1717. "telegram",
  1718. "telegram bot",
  1719. "telegram bot api",
  1720. "telegram php",
  1721. "telegram sdk"
  1722. ],
  1723. "support": {
  1724. "issues": "https://github.com/irazasyed/telegram-bot-sdk/issues",
  1725. "source": "https://github.com/irazasyed/telegram-bot-sdk/tree/v3.13.0"
  1726. },
  1727. "time": "2023-05-28T19:57:36+00:00"
  1728. },
  1729. {
  1730. "name": "jean85/pretty-package-versions",
  1731. "version": "2.0.5",
  1732. "source": {
  1733. "type": "git",
  1734. "url": "https://github.com/Jean85/pretty-package-versions.git",
  1735. "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af"
  1736. },
  1737. "dist": {
  1738. "type": "zip",
  1739. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af",
  1740. "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af",
  1741. "shasum": ""
  1742. },
  1743. "require": {
  1744. "composer-runtime-api": "^2.0.0",
  1745. "php": "^7.1|^8.0"
  1746. },
  1747. "require-dev": {
  1748. "friendsofphp/php-cs-fixer": "^2.17",
  1749. "jean85/composer-provided-replaced-stub-package": "^1.0",
  1750. "phpstan/phpstan": "^0.12.66",
  1751. "phpunit/phpunit": "^7.5|^8.5|^9.4",
  1752. "vimeo/psalm": "^4.3"
  1753. },
  1754. "type": "library",
  1755. "extra": {
  1756. "branch-alias": {
  1757. "dev-master": "1.x-dev"
  1758. }
  1759. },
  1760. "autoload": {
  1761. "psr-4": {
  1762. "Jean85\\": "src/"
  1763. }
  1764. },
  1765. "notification-url": "https://packagist.org/downloads/",
  1766. "license": [
  1767. "MIT"
  1768. ],
  1769. "authors": [
  1770. {
  1771. "name": "Alessandro Lai",
  1772. "email": "[email protected]"
  1773. }
  1774. ],
  1775. "description": "A library to get pretty versions strings of installed dependencies",
  1776. "keywords": [
  1777. "composer",
  1778. "package",
  1779. "release",
  1780. "versions"
  1781. ],
  1782. "support": {
  1783. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  1784. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5"
  1785. },
  1786. "time": "2021-10-08T21:21:46+00:00"
  1787. },
  1788. {
  1789. "name": "lcobucci/jwt",
  1790. "version": "5.2.0",
  1791. "source": {
  1792. "type": "git",
  1793. "url": "https://github.com/lcobucci/jwt.git",
  1794. "reference": "0ba88aed12c04bd2ed9924f500673f32b67a6211"
  1795. },
  1796. "dist": {
  1797. "type": "zip",
  1798. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/0ba88aed12c04bd2ed9924f500673f32b67a6211",
  1799. "reference": "0ba88aed12c04bd2ed9924f500673f32b67a6211",
  1800. "shasum": ""
  1801. },
  1802. "require": {
  1803. "ext-openssl": "*",
  1804. "ext-sodium": "*",
  1805. "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
  1806. "psr/clock": "^1.0"
  1807. },
  1808. "require-dev": {
  1809. "infection/infection": "^0.27.0",
  1810. "lcobucci/clock": "^3.0",
  1811. "lcobucci/coding-standard": "^11.0",
  1812. "phpbench/phpbench": "^1.2.9",
  1813. "phpstan/extension-installer": "^1.2",
  1814. "phpstan/phpstan": "^1.10.7",
  1815. "phpstan/phpstan-deprecation-rules": "^1.1.3",
  1816. "phpstan/phpstan-phpunit": "^1.3.10",
  1817. "phpstan/phpstan-strict-rules": "^1.5.0",
  1818. "phpunit/phpunit": "^10.2.6"
  1819. },
  1820. "suggest": {
  1821. "lcobucci/clock": ">= 3.0"
  1822. },
  1823. "type": "library",
  1824. "autoload": {
  1825. "psr-4": {
  1826. "Lcobucci\\JWT\\": "src"
  1827. }
  1828. },
  1829. "notification-url": "https://packagist.org/downloads/",
  1830. "license": [
  1831. "BSD-3-Clause"
  1832. ],
  1833. "authors": [
  1834. {
  1835. "name": "Luís Cobucci",
  1836. "email": "[email protected]",
  1837. "role": "Developer"
  1838. }
  1839. ],
  1840. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1841. "keywords": [
  1842. "JWS",
  1843. "jwt"
  1844. ],
  1845. "support": {
  1846. "issues": "https://github.com/lcobucci/jwt/issues",
  1847. "source": "https://github.com/lcobucci/jwt/tree/5.2.0"
  1848. },
  1849. "funding": [
  1850. {
  1851. "url": "https://github.com/lcobucci",
  1852. "type": "github"
  1853. },
  1854. {
  1855. "url": "https://www.patreon.com/lcobucci",
  1856. "type": "patreon"
  1857. }
  1858. ],
  1859. "time": "2023-11-20T21:17:42+00:00"
  1860. },
  1861. {
  1862. "name": "league/event",
  1863. "version": "3.0.2",
  1864. "source": {
  1865. "type": "git",
  1866. "url": "https://github.com/thephpleague/event.git",
  1867. "reference": "221867a61087ee265ca07bd39aa757879afca820"
  1868. },
  1869. "dist": {
  1870. "type": "zip",
  1871. "url": "https://api.github.com/repos/thephpleague/event/zipball/221867a61087ee265ca07bd39aa757879afca820",
  1872. "reference": "221867a61087ee265ca07bd39aa757879afca820",
  1873. "shasum": ""
  1874. },
  1875. "require": {
  1876. "php": ">=7.2.0",
  1877. "psr/event-dispatcher": "^1.0"
  1878. },
  1879. "provide": {
  1880. "psr/event-dispatcher-implementation": "1.0"
  1881. },
  1882. "require-dev": {
  1883. "friendsofphp/php-cs-fixer": "^2.16",
  1884. "phpstan/phpstan": "^0.12.45",
  1885. "phpunit/phpunit": "^8.5"
  1886. },
  1887. "type": "library",
  1888. "extra": {
  1889. "branch-alias": {
  1890. "dev-master": "3.0-dev"
  1891. }
  1892. },
  1893. "autoload": {
  1894. "psr-4": {
  1895. "League\\Event\\": "src/"
  1896. }
  1897. },
  1898. "notification-url": "https://packagist.org/downloads/",
  1899. "license": [
  1900. "MIT"
  1901. ],
  1902. "authors": [
  1903. {
  1904. "name": "Frank de Jonge",
  1905. "email": "[email protected]"
  1906. }
  1907. ],
  1908. "description": "Event package",
  1909. "keywords": [
  1910. "emitter",
  1911. "event",
  1912. "listener"
  1913. ],
  1914. "support": {
  1915. "issues": "https://github.com/thephpleague/event/issues",
  1916. "source": "https://github.com/thephpleague/event/tree/3.0.2"
  1917. },
  1918. "time": "2022-10-29T09:31:25+00:00"
  1919. },
  1920. {
  1921. "name": "mailchimp/transactional",
  1922. "version": "1.0.59",
  1923. "source": {
  1924. "type": "git",
  1925. "url": "https://github.com/mailchimp/mailchimp-transactional-php.git",
  1926. "reference": "1783927027820dc1c624fd04abf5012a57f96feb"
  1927. },
  1928. "dist": {
  1929. "type": "zip",
  1930. "url": "https://api.github.com/repos/mailchimp/mailchimp-transactional-php/zipball/1783927027820dc1c624fd04abf5012a57f96feb",
  1931. "reference": "1783927027820dc1c624fd04abf5012a57f96feb",
  1932. "shasum": ""
  1933. },
  1934. "require": {
  1935. "ext-curl": "*",
  1936. "ext-json": "*",
  1937. "ext-mbstring": "*",
  1938. "guzzlehttp/guzzle": "^6.4 || ^7.2",
  1939. "php": ">=7.2"
  1940. },
  1941. "require-dev": {
  1942. "friendsofphp/php-cs-fixer": "~2.12",
  1943. "phpunit/phpunit": "^7",
  1944. "squizlabs/php_codesniffer": "~2.6"
  1945. },
  1946. "type": "library",
  1947. "autoload": {
  1948. "psr-4": {
  1949. "MailchimpTransactional\\": "lib/"
  1950. }
  1951. },
  1952. "notification-url": "https://packagist.org/downloads/",
  1953. "license": [
  1954. "proprietary"
  1955. ],
  1956. "authors": [
  1957. {
  1958. "name": "Mailchimp",
  1959. "homepage": "https://github.com/mailchimp/mailchimp-transactional-php"
  1960. }
  1961. ],
  1962. "homepage": "http://swagger.io",
  1963. "keywords": [
  1964. "api",
  1965. "php",
  1966. "sdk",
  1967. "swagger"
  1968. ],
  1969. "support": {
  1970. "source": "https://github.com/mailchimp/mailchimp-transactional-php/tree/v1.0.59"
  1971. },
  1972. "time": "2024-02-10T01:12:26+00:00"
  1973. },
  1974. {
  1975. "name": "mailgun/mailgun-php",
  1976. "version": "v4.1.0",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/mailgun/mailgun-php.git",
  1980. "reference": "85e598f9d0a62a978c668b689cc2169f0a4d2c59"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/mailgun/mailgun-php/zipball/85e598f9d0a62a978c668b689cc2169f0a4d2c59",
  1985. "reference": "85e598f9d0a62a978c668b689cc2169f0a4d2c59",
  1986. "shasum": ""
  1987. },
  1988. "require": {
  1989. "php": "^7.3 || ^8.0",
  1990. "php-http/client-common": "^2.2.1",
  1991. "php-http/discovery": "^1.19",
  1992. "php-http/multipart-stream-builder": "^1.1.2",
  1993. "psr/http-client": "^1.0",
  1994. "webmozart/assert": "^1.9.1"
  1995. },
  1996. "require-dev": {
  1997. "nyholm/nsa": "^1.2.1",
  1998. "nyholm/psr7": "^1.3.1",
  1999. "phpunit/phpunit": "^9.3",
  2000. "squizlabs/php_codesniffer": "^3.7",
  2001. "symfony/http-client": "^5.4 || ^6.3"
  2002. },
  2003. "suggest": {
  2004. "nyholm/psr7": "PSR-7 message implementation",
  2005. "symfony/http-client": "HTTP client"
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-master": "3.0-dev"
  2011. }
  2012. },
  2013. "autoload": {
  2014. "psr-4": {
  2015. "Mailgun\\": "src/"
  2016. }
  2017. },
  2018. "notification-url": "https://packagist.org/downloads/",
  2019. "license": [
  2020. "MIT"
  2021. ],
  2022. "authors": [
  2023. {
  2024. "name": "Travis Swientek",
  2025. "email": "[email protected]"
  2026. }
  2027. ],
  2028. "description": "The Mailgun SDK provides methods for all API functions.",
  2029. "support": {
  2030. "issues": "https://github.com/mailgun/mailgun-php/issues",
  2031. "source": "https://github.com/mailgun/mailgun-php/tree/v4.1.0"
  2032. },
  2033. "time": "2024-02-10T13:46:20+00:00"
  2034. },
  2035. {
  2036. "name": "maxmind-db/reader",
  2037. "version": "v1.11.1",
  2038. "source": {
  2039. "type": "git",
  2040. "url": "[email protected]:maxmind/MaxMind-DB-Reader-php.git",
  2041. "reference": "1e66f73ffcf25e17c7a910a1317e9720a95497c7"
  2042. },
  2043. "dist": {
  2044. "type": "zip",
  2045. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/1e66f73ffcf25e17c7a910a1317e9720a95497c7",
  2046. "reference": "1e66f73ffcf25e17c7a910a1317e9720a95497c7",
  2047. "shasum": ""
  2048. },
  2049. "require": {
  2050. "php": ">=7.2"
  2051. },
  2052. "conflict": {
  2053. "ext-maxminddb": "<1.11.1,>=2.0.0"
  2054. },
  2055. "require-dev": {
  2056. "friendsofphp/php-cs-fixer": "3.*",
  2057. "php-coveralls/php-coveralls": "^2.1",
  2058. "phpstan/phpstan": "*",
  2059. "phpunit/phpcov": ">=6.0.0",
  2060. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2061. "squizlabs/php_codesniffer": "3.*"
  2062. },
  2063. "suggest": {
  2064. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2065. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2066. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2067. },
  2068. "type": "library",
  2069. "autoload": {
  2070. "psr-4": {
  2071. "MaxMind\\Db\\": "src/MaxMind/Db"
  2072. }
  2073. },
  2074. "notification-url": "https://packagist.org/downloads/",
  2075. "license": [
  2076. "Apache-2.0"
  2077. ],
  2078. "authors": [
  2079. {
  2080. "name": "Gregory J. Oschwald",
  2081. "email": "[email protected]",
  2082. "homepage": "https://www.maxmind.com/"
  2083. }
  2084. ],
  2085. "description": "MaxMind DB Reader API",
  2086. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2087. "keywords": [
  2088. "database",
  2089. "geoip",
  2090. "geoip2",
  2091. "geolocation",
  2092. "maxmind"
  2093. ],
  2094. "time": "2023-12-02T00:09:23+00:00"
  2095. },
  2096. {
  2097. "name": "maxmind/web-service-common",
  2098. "version": "v0.9.0",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://github.com/maxmind/web-service-common-php.git",
  2102. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53"
  2103. },
  2104. "dist": {
  2105. "type": "zip",
  2106. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2107. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2108. "shasum": ""
  2109. },
  2110. "require": {
  2111. "composer/ca-bundle": "^1.0.3",
  2112. "ext-curl": "*",
  2113. "ext-json": "*",
  2114. "php": ">=7.2"
  2115. },
  2116. "require-dev": {
  2117. "friendsofphp/php-cs-fixer": "3.*",
  2118. "phpstan/phpstan": "*",
  2119. "phpunit/phpunit": "^8.0 || ^9.0",
  2120. "squizlabs/php_codesniffer": "3.*"
  2121. },
  2122. "type": "library",
  2123. "autoload": {
  2124. "psr-4": {
  2125. "MaxMind\\Exception\\": "src/Exception",
  2126. "MaxMind\\WebService\\": "src/WebService"
  2127. }
  2128. },
  2129. "notification-url": "https://packagist.org/downloads/",
  2130. "license": [
  2131. "Apache-2.0"
  2132. ],
  2133. "authors": [
  2134. {
  2135. "name": "Gregory Oschwald",
  2136. "email": "[email protected]"
  2137. }
  2138. ],
  2139. "description": "Internal MaxMind Web Service API",
  2140. "homepage": "https://github.com/maxmind/web-service-common-php",
  2141. "support": {
  2142. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2143. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.9.0"
  2144. },
  2145. "time": "2022-03-28T17:43:20+00:00"
  2146. },
  2147. {
  2148. "name": "mtdowling/jmespath.php",
  2149. "version": "2.7.0",
  2150. "source": {
  2151. "type": "git",
  2152. "url": "https://github.com/jmespath/jmespath.php.git",
  2153. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  2154. },
  2155. "dist": {
  2156. "type": "zip",
  2157. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2158. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2159. "shasum": ""
  2160. },
  2161. "require": {
  2162. "php": "^7.2.5 || ^8.0",
  2163. "symfony/polyfill-mbstring": "^1.17"
  2164. },
  2165. "require-dev": {
  2166. "composer/xdebug-handler": "^3.0.3",
  2167. "phpunit/phpunit": "^8.5.33"
  2168. },
  2169. "bin": [
  2170. "bin/jp.php"
  2171. ],
  2172. "type": "library",
  2173. "extra": {
  2174. "branch-alias": {
  2175. "dev-master": "2.7-dev"
  2176. }
  2177. },
  2178. "autoload": {
  2179. "files": [
  2180. "src/JmesPath.php"
  2181. ],
  2182. "psr-4": {
  2183. "JmesPath\\": "src/"
  2184. }
  2185. },
  2186. "notification-url": "https://packagist.org/downloads/",
  2187. "license": [
  2188. "MIT"
  2189. ],
  2190. "authors": [
  2191. {
  2192. "name": "Graham Campbell",
  2193. "email": "[email protected]",
  2194. "homepage": "https://github.com/GrahamCampbell"
  2195. },
  2196. {
  2197. "name": "Michael Dowling",
  2198. "email": "[email protected]",
  2199. "homepage": "https://github.com/mtdowling"
  2200. }
  2201. ],
  2202. "description": "Declaratively specify how to extract elements from a JSON document",
  2203. "keywords": [
  2204. "json",
  2205. "jsonpath"
  2206. ],
  2207. "support": {
  2208. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2209. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  2210. },
  2211. "time": "2023-08-25T10:54:48+00:00"
  2212. },
  2213. {
  2214. "name": "nesbot/carbon",
  2215. "version": "2.72.3",
  2216. "source": {
  2217. "type": "git",
  2218. "url": "https://github.com/briannesbitt/Carbon.git",
  2219. "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83"
  2220. },
  2221. "dist": {
  2222. "type": "zip",
  2223. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0c6fd108360c562f6e4fd1dedb8233b423e91c83",
  2224. "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83",
  2225. "shasum": ""
  2226. },
  2227. "require": {
  2228. "carbonphp/carbon-doctrine-types": "*",
  2229. "ext-json": "*",
  2230. "php": "^7.1.8 || ^8.0",
  2231. "psr/clock": "^1.0",
  2232. "symfony/polyfill-mbstring": "^1.0",
  2233. "symfony/polyfill-php80": "^1.16",
  2234. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2235. },
  2236. "provide": {
  2237. "psr/clock-implementation": "1.0"
  2238. },
  2239. "require-dev": {
  2240. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  2241. "doctrine/orm": "^2.7 || ^3.0",
  2242. "friendsofphp/php-cs-fixer": "^3.0",
  2243. "kylekatarnls/multi-tester": "^2.0",
  2244. "ondrejmirtes/better-reflection": "*",
  2245. "phpmd/phpmd": "^2.9",
  2246. "phpstan/extension-installer": "^1.0",
  2247. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2248. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2249. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2250. "squizlabs/php_codesniffer": "^3.4"
  2251. },
  2252. "bin": [
  2253. "bin/carbon"
  2254. ],
  2255. "type": "library",
  2256. "extra": {
  2257. "branch-alias": {
  2258. "dev-3.x": "3.x-dev",
  2259. "dev-master": "2.x-dev"
  2260. },
  2261. "laravel": {
  2262. "providers": [
  2263. "Carbon\\Laravel\\ServiceProvider"
  2264. ]
  2265. },
  2266. "phpstan": {
  2267. "includes": [
  2268. "extension.neon"
  2269. ]
  2270. }
  2271. },
  2272. "autoload": {
  2273. "psr-4": {
  2274. "Carbon\\": "src/Carbon/"
  2275. }
  2276. },
  2277. "notification-url": "https://packagist.org/downloads/",
  2278. "license": [
  2279. "MIT"
  2280. ],
  2281. "authors": [
  2282. {
  2283. "name": "Brian Nesbitt",
  2284. "email": "[email protected]",
  2285. "homepage": "https://markido.com"
  2286. },
  2287. {
  2288. "name": "kylekatarnls",
  2289. "homepage": "https://github.com/kylekatarnls"
  2290. }
  2291. ],
  2292. "description": "An API extension for DateTime that supports 281 different languages.",
  2293. "homepage": "https://carbon.nesbot.com",
  2294. "keywords": [
  2295. "date",
  2296. "datetime",
  2297. "time"
  2298. ],
  2299. "support": {
  2300. "docs": "https://carbon.nesbot.com/docs",
  2301. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2302. "source": "https://github.com/briannesbitt/Carbon"
  2303. },
  2304. "funding": [
  2305. {
  2306. "url": "https://github.com/sponsors/kylekatarnls",
  2307. "type": "github"
  2308. },
  2309. {
  2310. "url": "https://opencollective.com/Carbon#sponsor",
  2311. "type": "opencollective"
  2312. },
  2313. {
  2314. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2315. "type": "tidelift"
  2316. }
  2317. ],
  2318. "time": "2024-01-25T10:35:09+00:00"
  2319. },
  2320. {
  2321. "name": "nikic/fast-route",
  2322. "version": "v1.3.0",
  2323. "source": {
  2324. "type": "git",
  2325. "url": "https://github.com/nikic/FastRoute.git",
  2326. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  2327. },
  2328. "dist": {
  2329. "type": "zip",
  2330. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  2331. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  2332. "shasum": ""
  2333. },
  2334. "require": {
  2335. "php": ">=5.4.0"
  2336. },
  2337. "require-dev": {
  2338. "phpunit/phpunit": "^4.8.35|~5.7"
  2339. },
  2340. "type": "library",
  2341. "autoload": {
  2342. "files": [
  2343. "src/functions.php"
  2344. ],
  2345. "psr-4": {
  2346. "FastRoute\\": "src/"
  2347. }
  2348. },
  2349. "notification-url": "https://packagist.org/downloads/",
  2350. "license": [
  2351. "BSD-3-Clause"
  2352. ],
  2353. "authors": [
  2354. {
  2355. "name": "Nikita Popov",
  2356. "email": "[email protected]"
  2357. }
  2358. ],
  2359. "description": "Fast request router for PHP",
  2360. "keywords": [
  2361. "router",
  2362. "routing"
  2363. ],
  2364. "support": {
  2365. "issues": "https://github.com/nikic/FastRoute/issues",
  2366. "source": "https://github.com/nikic/FastRoute/tree/master"
  2367. },
  2368. "time": "2018-02-13T20:26:39+00:00"
  2369. },
  2370. {
  2371. "name": "nikolaposa/rate-limit",
  2372. "version": "3.1.0",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/nikolaposa/rate-limit.git",
  2376. "reference": "fa5d32ff5a31566a8839fa556c51930c0a7b467e"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/nikolaposa/rate-limit/zipball/fa5d32ff5a31566a8839fa556c51930c0a7b467e",
  2381. "reference": "fa5d32ff5a31566a8839fa556c51930c0a7b467e",
  2382. "shasum": ""
  2383. },
  2384. "require": {
  2385. "beberlei/assert": "^3.2",
  2386. "php": "^8.1"
  2387. },
  2388. "require-dev": {
  2389. "ext-apcu": ">=5.1.12",
  2390. "ext-redis": "*",
  2391. "friendsofphp/php-cs-fixer": "3.44",
  2392. "phpstan/phpstan": "^1.10",
  2393. "phpstan/phpstan-beberlei-assert": "^1.1",
  2394. "phpstan/phpstan-phpunit": "^1.3",
  2395. "phpunit/phpunit": "^10.5",
  2396. "predis/predis": "^1.1"
  2397. },
  2398. "suggest": {
  2399. "ext-apcu": "In order to use ApcuRateLimiter",
  2400. "ext-memcached": "In order to use MemcachedRateLimiter",
  2401. "ext-redis": "In order to use RedisRateLimiter",
  2402. "predis/predis": "In order to use PredisRateLimiter"
  2403. },
  2404. "type": "library",
  2405. "extra": {
  2406. "branch-alias": {
  2407. "dev-master": "3.1.x-dev"
  2408. }
  2409. },
  2410. "autoload": {
  2411. "psr-4": {
  2412. "RateLimit\\": "src/"
  2413. }
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Nikola Poša",
  2422. "email": "[email protected]",
  2423. "homepage": "https://www.nikolaposa.in.rs"
  2424. }
  2425. ],
  2426. "description": "General purpose rate limiter implementation.",
  2427. "keywords": [
  2428. "rate limit",
  2429. "redis"
  2430. ],
  2431. "support": {
  2432. "issues": "https://github.com/nikolaposa/rate-limit/issues",
  2433. "source": "https://github.com/nikolaposa/rate-limit/tree/3.1.0"
  2434. },
  2435. "time": "2023-12-29T22:51:49+00:00"
  2436. },
  2437. {
  2438. "name": "openai-php/client",
  2439. "version": "v0.8.4",
  2440. "source": {
  2441. "type": "git",
  2442. "url": "https://github.com/openai-php/client.git",
  2443. "reference": "00470f5fedd7b08ee4860959d6952f0be0ec48a0"
  2444. },
  2445. "dist": {
  2446. "type": "zip",
  2447. "url": "https://api.github.com/repos/openai-php/client/zipball/00470f5fedd7b08ee4860959d6952f0be0ec48a0",
  2448. "reference": "00470f5fedd7b08ee4860959d6952f0be0ec48a0",
  2449. "shasum": ""
  2450. },
  2451. "require": {
  2452. "php": "^8.1.0",
  2453. "php-http/discovery": "^1.19.2",
  2454. "php-http/multipart-stream-builder": "^1.3.0",
  2455. "psr/http-client": "^1.0.3",
  2456. "psr/http-client-implementation": "^1.0.1",
  2457. "psr/http-factory-implementation": "*",
  2458. "psr/http-message": "^1.1.0|^2.0.0"
  2459. },
  2460. "require-dev": {
  2461. "guzzlehttp/guzzle": "^7.8.1",
  2462. "guzzlehttp/psr7": "^2.6.2",
  2463. "laravel/pint": "^1.13.7",
  2464. "mockery/mockery": "^1.6.7",
  2465. "nunomaduro/collision": "^7.10.0",
  2466. "pestphp/pest": "^2.30.0",
  2467. "pestphp/pest-plugin-arch": "^2.6",
  2468. "pestphp/pest-plugin-type-coverage": "^2.7.0",
  2469. "phpstan/phpstan": "^1.10.55",
  2470. "rector/rector": "^0.16.0",
  2471. "symfony/var-dumper": "^6.4.2"
  2472. },
  2473. "type": "library",
  2474. "autoload": {
  2475. "files": [
  2476. "src/OpenAI.php"
  2477. ],
  2478. "psr-4": {
  2479. "OpenAI\\": "src/"
  2480. }
  2481. },
  2482. "notification-url": "https://packagist.org/downloads/",
  2483. "license": [
  2484. "MIT"
  2485. ],
  2486. "authors": [
  2487. {
  2488. "name": "Nuno Maduro",
  2489. "email": "[email protected]"
  2490. },
  2491. {
  2492. "name": "Sandro Gehri"
  2493. }
  2494. ],
  2495. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  2496. "keywords": [
  2497. "GPT-3",
  2498. "api",
  2499. "client",
  2500. "codex",
  2501. "dall-e",
  2502. "language",
  2503. "natural",
  2504. "openai",
  2505. "php",
  2506. "processing",
  2507. "sdk"
  2508. ],
  2509. "support": {
  2510. "issues": "https://github.com/openai-php/client/issues",
  2511. "source": "https://github.com/openai-php/client/tree/v0.8.4"
  2512. },
  2513. "funding": [
  2514. {
  2515. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2516. "type": "custom"
  2517. },
  2518. {
  2519. "url": "https://github.com/gehrisandro",
  2520. "type": "github"
  2521. },
  2522. {
  2523. "url": "https://github.com/nunomaduro",
  2524. "type": "github"
  2525. }
  2526. ],
  2527. "time": "2024-02-07T07:57:38+00:00"
  2528. },
  2529. {
  2530. "name": "ozdemir/datatables",
  2531. "version": "2.3.7",
  2532. "source": {
  2533. "type": "git",
  2534. "url": "https://github.com/n1crack/datatables.git",
  2535. "reference": "7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d"
  2536. },
  2537. "dist": {
  2538. "type": "zip",
  2539. "url": "https://api.github.com/repos/n1crack/datatables/zipball/7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d",
  2540. "reference": "7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d",
  2541. "shasum": ""
  2542. },
  2543. "require": {
  2544. "php": ">=7.1.3"
  2545. },
  2546. "require-dev": {
  2547. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2548. },
  2549. "type": "library",
  2550. "autoload": {
  2551. "psr-4": {
  2552. "Ozdemir\\Datatables\\": "src/"
  2553. }
  2554. },
  2555. "notification-url": "https://packagist.org/downloads/",
  2556. "license": [
  2557. "MIT"
  2558. ],
  2559. "authors": [
  2560. {
  2561. "name": "Yusuf Özdemir",
  2562. "email": "[email protected]"
  2563. }
  2564. ],
  2565. "description": "PHP Library to handle server-side processing for Datatables, in a fast and simple way.",
  2566. "support": {
  2567. "issues": "https://github.com/n1crack/datatables/issues",
  2568. "source": "https://github.com/n1crack/datatables/tree/2.3.7"
  2569. },
  2570. "time": "2023-05-29T10:42:49+00:00"
  2571. },
  2572. {
  2573. "name": "php-http/client-common",
  2574. "version": "2.7.1",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://github.com/php-http/client-common.git",
  2578. "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://api.github.com/repos/php-http/client-common/zipball/1e19c059b0e4d5f717bf5d524d616165aeab0612",
  2583. "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612",
  2584. "shasum": ""
  2585. },
  2586. "require": {
  2587. "php": "^7.1 || ^8.0",
  2588. "php-http/httplug": "^2.0",
  2589. "php-http/message": "^1.6",
  2590. "psr/http-client": "^1.0",
  2591. "psr/http-factory": "^1.0",
  2592. "psr/http-message": "^1.0 || ^2.0",
  2593. "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0 || ^7.0",
  2594. "symfony/polyfill-php80": "^1.17"
  2595. },
  2596. "require-dev": {
  2597. "doctrine/instantiator": "^1.1",
  2598. "guzzlehttp/psr7": "^1.4",
  2599. "nyholm/psr7": "^1.2",
  2600. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  2601. "phpspec/prophecy": "^1.10.2",
  2602. "phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7"
  2603. },
  2604. "suggest": {
  2605. "ext-json": "To detect JSON responses with the ContentTypePlugin",
  2606. "ext-libxml": "To detect XML responses with the ContentTypePlugin",
  2607. "php-http/cache-plugin": "PSR-6 Cache plugin",
  2608. "php-http/logger-plugin": "PSR-3 Logger plugin",
  2609. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  2610. },
  2611. "type": "library",
  2612. "autoload": {
  2613. "psr-4": {
  2614. "Http\\Client\\Common\\": "src/"
  2615. }
  2616. },
  2617. "notification-url": "https://packagist.org/downloads/",
  2618. "license": [
  2619. "MIT"
  2620. ],
  2621. "authors": [
  2622. {
  2623. "name": "Márk Sági-Kazár",
  2624. "email": "[email protected]"
  2625. }
  2626. ],
  2627. "description": "Common HTTP Client implementations and tools for HTTPlug",
  2628. "homepage": "http://httplug.io",
  2629. "keywords": [
  2630. "client",
  2631. "common",
  2632. "http",
  2633. "httplug"
  2634. ],
  2635. "support": {
  2636. "issues": "https://github.com/php-http/client-common/issues",
  2637. "source": "https://github.com/php-http/client-common/tree/2.7.1"
  2638. },
  2639. "time": "2023-11-30T10:31:25+00:00"
  2640. },
  2641. {
  2642. "name": "php-http/discovery",
  2643. "version": "1.19.2",
  2644. "source": {
  2645. "type": "git",
  2646. "url": "https://github.com/php-http/discovery.git",
  2647. "reference": "61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb"
  2648. },
  2649. "dist": {
  2650. "type": "zip",
  2651. "url": "https://api.github.com/repos/php-http/discovery/zipball/61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb",
  2652. "reference": "61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb",
  2653. "shasum": ""
  2654. },
  2655. "require": {
  2656. "composer-plugin-api": "^1.0|^2.0",
  2657. "php": "^7.1 || ^8.0"
  2658. },
  2659. "conflict": {
  2660. "nyholm/psr7": "<1.0",
  2661. "zendframework/zend-diactoros": "*"
  2662. },
  2663. "provide": {
  2664. "php-http/async-client-implementation": "*",
  2665. "php-http/client-implementation": "*",
  2666. "psr/http-client-implementation": "*",
  2667. "psr/http-factory-implementation": "*",
  2668. "psr/http-message-implementation": "*"
  2669. },
  2670. "require-dev": {
  2671. "composer/composer": "^1.0.2|^2.0",
  2672. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  2673. "php-http/httplug": "^1.0 || ^2.0",
  2674. "php-http/message-factory": "^1.0",
  2675. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  2676. "symfony/phpunit-bridge": "^6.2"
  2677. },
  2678. "type": "composer-plugin",
  2679. "extra": {
  2680. "class": "Http\\Discovery\\Composer\\Plugin",
  2681. "plugin-optional": true
  2682. },
  2683. "autoload": {
  2684. "psr-4": {
  2685. "Http\\Discovery\\": "src/"
  2686. },
  2687. "exclude-from-classmap": [
  2688. "src/Composer/Plugin.php"
  2689. ]
  2690. },
  2691. "notification-url": "https://packagist.org/downloads/",
  2692. "license": [
  2693. "MIT"
  2694. ],
  2695. "authors": [
  2696. {
  2697. "name": "Márk Sági-Kazár",
  2698. "email": "[email protected]"
  2699. }
  2700. ],
  2701. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  2702. "homepage": "http://php-http.org",
  2703. "keywords": [
  2704. "adapter",
  2705. "client",
  2706. "discovery",
  2707. "factory",
  2708. "http",
  2709. "message",
  2710. "psr17",
  2711. "psr7"
  2712. ],
  2713. "support": {
  2714. "issues": "https://github.com/php-http/discovery/issues",
  2715. "source": "https://github.com/php-http/discovery/tree/1.19.2"
  2716. },
  2717. "time": "2023-11-30T16:49:05+00:00"
  2718. },
  2719. {
  2720. "name": "php-http/httplug",
  2721. "version": "2.4.0",
  2722. "source": {
  2723. "type": "git",
  2724. "url": "https://github.com/php-http/httplug.git",
  2725. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67"
  2726. },
  2727. "dist": {
  2728. "type": "zip",
  2729. "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67",
  2730. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67",
  2731. "shasum": ""
  2732. },
  2733. "require": {
  2734. "php": "^7.1 || ^8.0",
  2735. "php-http/promise": "^1.1",
  2736. "psr/http-client": "^1.0",
  2737. "psr/http-message": "^1.0 || ^2.0"
  2738. },
  2739. "require-dev": {
  2740. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  2741. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  2742. },
  2743. "type": "library",
  2744. "autoload": {
  2745. "psr-4": {
  2746. "Http\\Client\\": "src/"
  2747. }
  2748. },
  2749. "notification-url": "https://packagist.org/downloads/",
  2750. "license": [
  2751. "MIT"
  2752. ],
  2753. "authors": [
  2754. {
  2755. "name": "Eric GELOEN",
  2756. "email": "[email protected]"
  2757. },
  2758. {
  2759. "name": "Márk Sági-Kazár",
  2760. "email": "[email protected]",
  2761. "homepage": "https://sagikazarmark.hu"
  2762. }
  2763. ],
  2764. "description": "HTTPlug, the HTTP client abstraction for PHP",
  2765. "homepage": "http://httplug.io",
  2766. "keywords": [
  2767. "client",
  2768. "http"
  2769. ],
  2770. "support": {
  2771. "issues": "https://github.com/php-http/httplug/issues",
  2772. "source": "https://github.com/php-http/httplug/tree/2.4.0"
  2773. },
  2774. "time": "2023-04-14T15:10:03+00:00"
  2775. },
  2776. {
  2777. "name": "php-http/message",
  2778. "version": "1.16.0",
  2779. "source": {
  2780. "type": "git",
  2781. "url": "https://github.com/php-http/message.git",
  2782. "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd"
  2783. },
  2784. "dist": {
  2785. "type": "zip",
  2786. "url": "https://api.github.com/repos/php-http/message/zipball/47a14338bf4ebd67d317bf1144253d7db4ab55fd",
  2787. "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd",
  2788. "shasum": ""
  2789. },
  2790. "require": {
  2791. "clue/stream-filter": "^1.5",
  2792. "php": "^7.2 || ^8.0",
  2793. "psr/http-message": "^1.1 || ^2.0"
  2794. },
  2795. "provide": {
  2796. "php-http/message-factory-implementation": "1.0"
  2797. },
  2798. "require-dev": {
  2799. "ergebnis/composer-normalize": "^2.6",
  2800. "ext-zlib": "*",
  2801. "guzzlehttp/psr7": "^1.0 || ^2.0",
  2802. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  2803. "php-http/message-factory": "^1.0.2",
  2804. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  2805. "slim/slim": "^3.0"
  2806. },
  2807. "suggest": {
  2808. "ext-zlib": "Used with compressor/decompressor streams",
  2809. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  2810. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  2811. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  2812. },
  2813. "type": "library",
  2814. "autoload": {
  2815. "files": [
  2816. "src/filters.php"
  2817. ],
  2818. "psr-4": {
  2819. "Http\\Message\\": "src/"
  2820. }
  2821. },
  2822. "notification-url": "https://packagist.org/downloads/",
  2823. "license": [
  2824. "MIT"
  2825. ],
  2826. "authors": [
  2827. {
  2828. "name": "Márk Sági-Kazár",
  2829. "email": "[email protected]"
  2830. }
  2831. ],
  2832. "description": "HTTP Message related tools",
  2833. "homepage": "http://php-http.org",
  2834. "keywords": [
  2835. "http",
  2836. "message",
  2837. "psr-7"
  2838. ],
  2839. "support": {
  2840. "issues": "https://github.com/php-http/message/issues",
  2841. "source": "https://github.com/php-http/message/tree/1.16.0"
  2842. },
  2843. "time": "2023-05-17T06:43:38+00:00"
  2844. },
  2845. {
  2846. "name": "php-http/multipart-stream-builder",
  2847. "version": "1.3.0",
  2848. "source": {
  2849. "type": "git",
  2850. "url": "https://github.com/php-http/multipart-stream-builder.git",
  2851. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a"
  2852. },
  2853. "dist": {
  2854. "type": "zip",
  2855. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/f5938fd135d9fa442cc297dc98481805acfe2b6a",
  2856. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a",
  2857. "shasum": ""
  2858. },
  2859. "require": {
  2860. "php": "^7.1 || ^8.0",
  2861. "php-http/discovery": "^1.15",
  2862. "psr/http-factory-implementation": "^1.0"
  2863. },
  2864. "require-dev": {
  2865. "nyholm/psr7": "^1.0",
  2866. "php-http/message": "^1.5",
  2867. "php-http/message-factory": "^1.0.2",
  2868. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  2869. },
  2870. "type": "library",
  2871. "autoload": {
  2872. "psr-4": {
  2873. "Http\\Message\\MultipartStream\\": "src/"
  2874. }
  2875. },
  2876. "notification-url": "https://packagist.org/downloads/",
  2877. "license": [
  2878. "MIT"
  2879. ],
  2880. "authors": [
  2881. {
  2882. "name": "Tobias Nyholm",
  2883. "email": "[email protected]"
  2884. }
  2885. ],
  2886. "description": "A builder class that help you create a multipart stream",
  2887. "homepage": "http://php-http.org",
  2888. "keywords": [
  2889. "factory",
  2890. "http",
  2891. "message",
  2892. "multipart stream",
  2893. "stream"
  2894. ],
  2895. "support": {
  2896. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  2897. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.3.0"
  2898. },
  2899. "time": "2023-04-28T14:10:22+00:00"
  2900. },
  2901. {
  2902. "name": "php-http/promise",
  2903. "version": "1.3.0",
  2904. "source": {
  2905. "type": "git",
  2906. "url": "https://github.com/php-http/promise.git",
  2907. "reference": "2916a606d3b390f4e9e8e2b8dd68581508be0f07"
  2908. },
  2909. "dist": {
  2910. "type": "zip",
  2911. "url": "https://api.github.com/repos/php-http/promise/zipball/2916a606d3b390f4e9e8e2b8dd68581508be0f07",
  2912. "reference": "2916a606d3b390f4e9e8e2b8dd68581508be0f07",
  2913. "shasum": ""
  2914. },
  2915. "require": {
  2916. "php": "^7.1 || ^8.0"
  2917. },
  2918. "require-dev": {
  2919. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  2920. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  2921. },
  2922. "type": "library",
  2923. "autoload": {
  2924. "psr-4": {
  2925. "Http\\Promise\\": "src/"
  2926. }
  2927. },
  2928. "notification-url": "https://packagist.org/downloads/",
  2929. "license": [
  2930. "MIT"
  2931. ],
  2932. "authors": [
  2933. {
  2934. "name": "Joel Wurtz",
  2935. "email": "[email protected]"
  2936. },
  2937. {
  2938. "name": "Márk Sági-Kazár",
  2939. "email": "[email protected]"
  2940. }
  2941. ],
  2942. "description": "Promise used for asynchronous HTTP requests",
  2943. "homepage": "http://httplug.io",
  2944. "keywords": [
  2945. "promise"
  2946. ],
  2947. "support": {
  2948. "issues": "https://github.com/php-http/promise/issues",
  2949. "source": "https://github.com/php-http/promise/tree/1.3.0"
  2950. },
  2951. "time": "2024-01-04T18:49:48+00:00"
  2952. },
  2953. {
  2954. "name": "phpmailer/phpmailer",
  2955. "version": "v6.9.1",
  2956. "source": {
  2957. "type": "git",
  2958. "url": "https://github.com/PHPMailer/PHPMailer.git",
  2959. "reference": "039de174cd9c17a8389754d3b877a2ed22743e18"
  2960. },
  2961. "dist": {
  2962. "type": "zip",
  2963. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/039de174cd9c17a8389754d3b877a2ed22743e18",
  2964. "reference": "039de174cd9c17a8389754d3b877a2ed22743e18",
  2965. "shasum": ""
  2966. },
  2967. "require": {
  2968. "ext-ctype": "*",
  2969. "ext-filter": "*",
  2970. "ext-hash": "*",
  2971. "php": ">=5.5.0"
  2972. },
  2973. "require-dev": {
  2974. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  2975. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  2976. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  2977. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  2978. "phpcompatibility/php-compatibility": "^9.3.5",
  2979. "roave/security-advisories": "dev-latest",
  2980. "squizlabs/php_codesniffer": "^3.7.2",
  2981. "yoast/phpunit-polyfills": "^1.0.4"
  2982. },
  2983. "suggest": {
  2984. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  2985. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  2986. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  2987. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  2988. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  2989. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  2990. "psr/log": "For optional PSR-3 debug logging",
  2991. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  2992. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  2993. },
  2994. "type": "library",
  2995. "autoload": {
  2996. "psr-4": {
  2997. "PHPMailer\\PHPMailer\\": "src/"
  2998. }
  2999. },
  3000. "notification-url": "https://packagist.org/downloads/",
  3001. "license": [
  3002. "LGPL-2.1-only"
  3003. ],
  3004. "authors": [
  3005. {
  3006. "name": "Marcus Bointon",
  3007. "email": "[email protected]"
  3008. },
  3009. {
  3010. "name": "Jim Jagielski",
  3011. "email": "[email protected]"
  3012. },
  3013. {
  3014. "name": "Andy Prevost",
  3015. "email": "[email protected]"
  3016. },
  3017. {
  3018. "name": "Brent R. Matzelle"
  3019. }
  3020. ],
  3021. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  3022. "support": {
  3023. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  3024. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.9.1"
  3025. },
  3026. "funding": [
  3027. {
  3028. "url": "https://github.com/Synchro",
  3029. "type": "github"
  3030. }
  3031. ],
  3032. "time": "2023-11-25T22:23:28+00:00"
  3033. },
  3034. {
  3035. "name": "postal/postal",
  3036. "version": "v2.0.1",
  3037. "source": {
  3038. "type": "git",
  3039. "url": "https://github.com/postalserver/postal-php.git",
  3040. "reference": "e361d11aadb724a482092784ebfe00461c492b5d"
  3041. },
  3042. "dist": {
  3043. "type": "zip",
  3044. "url": "https://api.github.com/repos/postalserver/postal-php/zipball/e361d11aadb724a482092784ebfe00461c492b5d",
  3045. "reference": "e361d11aadb724a482092784ebfe00461c492b5d",
  3046. "shasum": ""
  3047. },
  3048. "require": {
  3049. "guzzlehttp/guzzle": "^6 || ^7",
  3050. "php": "^7.4 || ^8.0"
  3051. },
  3052. "require-dev": {
  3053. "phpstan/phpstan": "^1.10",
  3054. "phpunit/phpunit": "^9.6",
  3055. "symplify/easy-coding-standard": "^11.3"
  3056. },
  3057. "type": "library",
  3058. "autoload": {
  3059. "psr-4": {
  3060. "Postal\\": "src/"
  3061. }
  3062. },
  3063. "notification-url": "https://packagist.org/downloads/",
  3064. "license": [
  3065. "MIT"
  3066. ],
  3067. "authors": [
  3068. {
  3069. "name": "Adam Cooke",
  3070. "email": "[email protected]"
  3071. },
  3072. {
  3073. "name": "Josh Grant",
  3074. "email": "[email protected]"
  3075. },
  3076. {
  3077. "name": "William Hall",
  3078. "email": "[email protected]"
  3079. }
  3080. ],
  3081. "description": "Postal for PHP library.",
  3082. "homepage": "https://github.com/atech/postal",
  3083. "keywords": [
  3084. "mail",
  3085. "postal"
  3086. ],
  3087. "support": {
  3088. "issues": "https://github.com/postalserver/postal-php/issues",
  3089. "source": "https://github.com/postalserver/postal-php/tree/v2.0.1"
  3090. },
  3091. "time": "2023-12-19T09:49:41+00:00"
  3092. },
  3093. {
  3094. "name": "psr/clock",
  3095. "version": "1.0.0",
  3096. "source": {
  3097. "type": "git",
  3098. "url": "https://github.com/php-fig/clock.git",
  3099. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3100. },
  3101. "dist": {
  3102. "type": "zip",
  3103. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3104. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3105. "shasum": ""
  3106. },
  3107. "require": {
  3108. "php": "^7.0 || ^8.0"
  3109. },
  3110. "type": "library",
  3111. "autoload": {
  3112. "psr-4": {
  3113. "Psr\\Clock\\": "src/"
  3114. }
  3115. },
  3116. "notification-url": "https://packagist.org/downloads/",
  3117. "license": [
  3118. "MIT"
  3119. ],
  3120. "authors": [
  3121. {
  3122. "name": "PHP-FIG",
  3123. "homepage": "https://www.php-fig.org/"
  3124. }
  3125. ],
  3126. "description": "Common interface for reading the clock.",
  3127. "homepage": "https://github.com/php-fig/clock",
  3128. "keywords": [
  3129. "clock",
  3130. "now",
  3131. "psr",
  3132. "psr-20",
  3133. "time"
  3134. ],
  3135. "support": {
  3136. "issues": "https://github.com/php-fig/clock/issues",
  3137. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3138. },
  3139. "time": "2022-11-25T14:36:26+00:00"
  3140. },
  3141. {
  3142. "name": "psr/container",
  3143. "version": "2.0.2",
  3144. "source": {
  3145. "type": "git",
  3146. "url": "https://github.com/php-fig/container.git",
  3147. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3148. },
  3149. "dist": {
  3150. "type": "zip",
  3151. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3152. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3153. "shasum": ""
  3154. },
  3155. "require": {
  3156. "php": ">=7.4.0"
  3157. },
  3158. "type": "library",
  3159. "extra": {
  3160. "branch-alias": {
  3161. "dev-master": "2.0.x-dev"
  3162. }
  3163. },
  3164. "autoload": {
  3165. "psr-4": {
  3166. "Psr\\Container\\": "src/"
  3167. }
  3168. },
  3169. "notification-url": "https://packagist.org/downloads/",
  3170. "license": [
  3171. "MIT"
  3172. ],
  3173. "authors": [
  3174. {
  3175. "name": "PHP-FIG",
  3176. "homepage": "https://www.php-fig.org/"
  3177. }
  3178. ],
  3179. "description": "Common Container Interface (PHP FIG PSR-11)",
  3180. "homepage": "https://github.com/php-fig/container",
  3181. "keywords": [
  3182. "PSR-11",
  3183. "container",
  3184. "container-interface",
  3185. "container-interop",
  3186. "psr"
  3187. ],
  3188. "support": {
  3189. "issues": "https://github.com/php-fig/container/issues",
  3190. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3191. },
  3192. "time": "2021-11-05T16:47:00+00:00"
  3193. },
  3194. {
  3195. "name": "psr/event-dispatcher",
  3196. "version": "1.0.0",
  3197. "source": {
  3198. "type": "git",
  3199. "url": "https://github.com/php-fig/event-dispatcher.git",
  3200. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3201. },
  3202. "dist": {
  3203. "type": "zip",
  3204. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3205. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3206. "shasum": ""
  3207. },
  3208. "require": {
  3209. "php": ">=7.2.0"
  3210. },
  3211. "type": "library",
  3212. "extra": {
  3213. "branch-alias": {
  3214. "dev-master": "1.0.x-dev"
  3215. }
  3216. },
  3217. "autoload": {
  3218. "psr-4": {
  3219. "Psr\\EventDispatcher\\": "src/"
  3220. }
  3221. },
  3222. "notification-url": "https://packagist.org/downloads/",
  3223. "license": [
  3224. "MIT"
  3225. ],
  3226. "authors": [
  3227. {
  3228. "name": "PHP-FIG",
  3229. "homepage": "http://www.php-fig.org/"
  3230. }
  3231. ],
  3232. "description": "Standard interfaces for event handling.",
  3233. "keywords": [
  3234. "events",
  3235. "psr",
  3236. "psr-14"
  3237. ],
  3238. "support": {
  3239. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3240. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3241. },
  3242. "time": "2019-01-08T18:20:26+00:00"
  3243. },
  3244. {
  3245. "name": "psr/http-client",
  3246. "version": "1.0.3",
  3247. "source": {
  3248. "type": "git",
  3249. "url": "https://github.com/php-fig/http-client.git",
  3250. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3251. },
  3252. "dist": {
  3253. "type": "zip",
  3254. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3255. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3256. "shasum": ""
  3257. },
  3258. "require": {
  3259. "php": "^7.0 || ^8.0",
  3260. "psr/http-message": "^1.0 || ^2.0"
  3261. },
  3262. "type": "library",
  3263. "extra": {
  3264. "branch-alias": {
  3265. "dev-master": "1.0.x-dev"
  3266. }
  3267. },
  3268. "autoload": {
  3269. "psr-4": {
  3270. "Psr\\Http\\Client\\": "src/"
  3271. }
  3272. },
  3273. "notification-url": "https://packagist.org/downloads/",
  3274. "license": [
  3275. "MIT"
  3276. ],
  3277. "authors": [
  3278. {
  3279. "name": "PHP-FIG",
  3280. "homepage": "https://www.php-fig.org/"
  3281. }
  3282. ],
  3283. "description": "Common interface for HTTP clients",
  3284. "homepage": "https://github.com/php-fig/http-client",
  3285. "keywords": [
  3286. "http",
  3287. "http-client",
  3288. "psr",
  3289. "psr-18"
  3290. ],
  3291. "support": {
  3292. "source": "https://github.com/php-fig/http-client"
  3293. },
  3294. "time": "2023-09-23T14:17:50+00:00"
  3295. },
  3296. {
  3297. "name": "psr/http-factory",
  3298. "version": "1.0.2",
  3299. "source": {
  3300. "type": "git",
  3301. "url": "https://github.com/php-fig/http-factory.git",
  3302. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3303. },
  3304. "dist": {
  3305. "type": "zip",
  3306. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3307. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3308. "shasum": ""
  3309. },
  3310. "require": {
  3311. "php": ">=7.0.0",
  3312. "psr/http-message": "^1.0 || ^2.0"
  3313. },
  3314. "type": "library",
  3315. "extra": {
  3316. "branch-alias": {
  3317. "dev-master": "1.0.x-dev"
  3318. }
  3319. },
  3320. "autoload": {
  3321. "psr-4": {
  3322. "Psr\\Http\\Message\\": "src/"
  3323. }
  3324. },
  3325. "notification-url": "https://packagist.org/downloads/",
  3326. "license": [
  3327. "MIT"
  3328. ],
  3329. "authors": [
  3330. {
  3331. "name": "PHP-FIG",
  3332. "homepage": "https://www.php-fig.org/"
  3333. }
  3334. ],
  3335. "description": "Common interfaces for PSR-7 HTTP message factories",
  3336. "keywords": [
  3337. "factory",
  3338. "http",
  3339. "message",
  3340. "psr",
  3341. "psr-17",
  3342. "psr-7",
  3343. "request",
  3344. "response"
  3345. ],
  3346. "support": {
  3347. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3348. },
  3349. "time": "2023-04-10T20:10:41+00:00"
  3350. },
  3351. {
  3352. "name": "psr/http-message",
  3353. "version": "1.1",
  3354. "source": {
  3355. "type": "git",
  3356. "url": "https://github.com/php-fig/http-message.git",
  3357. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3358. },
  3359. "dist": {
  3360. "type": "zip",
  3361. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3362. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3363. "shasum": ""
  3364. },
  3365. "require": {
  3366. "php": "^7.2 || ^8.0"
  3367. },
  3368. "type": "library",
  3369. "extra": {
  3370. "branch-alias": {
  3371. "dev-master": "1.1.x-dev"
  3372. }
  3373. },
  3374. "autoload": {
  3375. "psr-4": {
  3376. "Psr\\Http\\Message\\": "src/"
  3377. }
  3378. },
  3379. "notification-url": "https://packagist.org/downloads/",
  3380. "license": [
  3381. "MIT"
  3382. ],
  3383. "authors": [
  3384. {
  3385. "name": "PHP-FIG",
  3386. "homepage": "http://www.php-fig.org/"
  3387. }
  3388. ],
  3389. "description": "Common interface for HTTP messages",
  3390. "homepage": "https://github.com/php-fig/http-message",
  3391. "keywords": [
  3392. "http",
  3393. "http-message",
  3394. "psr",
  3395. "psr-7",
  3396. "request",
  3397. "response"
  3398. ],
  3399. "support": {
  3400. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3401. },
  3402. "time": "2023-04-04T09:50:52+00:00"
  3403. },
  3404. {
  3405. "name": "psr/http-server-handler",
  3406. "version": "1.0.2",
  3407. "source": {
  3408. "type": "git",
  3409. "url": "https://github.com/php-fig/http-server-handler.git",
  3410. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  3411. },
  3412. "dist": {
  3413. "type": "zip",
  3414. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  3415. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  3416. "shasum": ""
  3417. },
  3418. "require": {
  3419. "php": ">=7.0",
  3420. "psr/http-message": "^1.0 || ^2.0"
  3421. },
  3422. "type": "library",
  3423. "extra": {
  3424. "branch-alias": {
  3425. "dev-master": "1.0.x-dev"
  3426. }
  3427. },
  3428. "autoload": {
  3429. "psr-4": {
  3430. "Psr\\Http\\Server\\": "src/"
  3431. }
  3432. },
  3433. "notification-url": "https://packagist.org/downloads/",
  3434. "license": [
  3435. "MIT"
  3436. ],
  3437. "authors": [
  3438. {
  3439. "name": "PHP-FIG",
  3440. "homepage": "https://www.php-fig.org/"
  3441. }
  3442. ],
  3443. "description": "Common interface for HTTP server-side request handler",
  3444. "keywords": [
  3445. "handler",
  3446. "http",
  3447. "http-interop",
  3448. "psr",
  3449. "psr-15",
  3450. "psr-7",
  3451. "request",
  3452. "response",
  3453. "server"
  3454. ],
  3455. "support": {
  3456. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  3457. },
  3458. "time": "2023-04-10T20:06:20+00:00"
  3459. },
  3460. {
  3461. "name": "psr/http-server-middleware",
  3462. "version": "1.0.2",
  3463. "source": {
  3464. "type": "git",
  3465. "url": "https://github.com/php-fig/http-server-middleware.git",
  3466. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  3467. },
  3468. "dist": {
  3469. "type": "zip",
  3470. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3471. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3472. "shasum": ""
  3473. },
  3474. "require": {
  3475. "php": ">=7.0",
  3476. "psr/http-message": "^1.0 || ^2.0",
  3477. "psr/http-server-handler": "^1.0"
  3478. },
  3479. "type": "library",
  3480. "extra": {
  3481. "branch-alias": {
  3482. "dev-master": "1.0.x-dev"
  3483. }
  3484. },
  3485. "autoload": {
  3486. "psr-4": {
  3487. "Psr\\Http\\Server\\": "src/"
  3488. }
  3489. },
  3490. "notification-url": "https://packagist.org/downloads/",
  3491. "license": [
  3492. "MIT"
  3493. ],
  3494. "authors": [
  3495. {
  3496. "name": "PHP-FIG",
  3497. "homepage": "https://www.php-fig.org/"
  3498. }
  3499. ],
  3500. "description": "Common interface for HTTP server-side middleware",
  3501. "keywords": [
  3502. "http",
  3503. "http-interop",
  3504. "middleware",
  3505. "psr",
  3506. "psr-15",
  3507. "psr-7",
  3508. "request",
  3509. "response"
  3510. ],
  3511. "support": {
  3512. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  3513. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  3514. },
  3515. "time": "2023-04-11T06:14:47+00:00"
  3516. },
  3517. {
  3518. "name": "psr/log",
  3519. "version": "3.0.0",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://github.com/php-fig/log.git",
  3523. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3528. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3529. "shasum": ""
  3530. },
  3531. "require": {
  3532. "php": ">=8.0.0"
  3533. },
  3534. "type": "library",
  3535. "extra": {
  3536. "branch-alias": {
  3537. "dev-master": "3.x-dev"
  3538. }
  3539. },
  3540. "autoload": {
  3541. "psr-4": {
  3542. "Psr\\Log\\": "src"
  3543. }
  3544. },
  3545. "notification-url": "https://packagist.org/downloads/",
  3546. "license": [
  3547. "MIT"
  3548. ],
  3549. "authors": [
  3550. {
  3551. "name": "PHP-FIG",
  3552. "homepage": "https://www.php-fig.org/"
  3553. }
  3554. ],
  3555. "description": "Common interface for logging libraries",
  3556. "homepage": "https://github.com/php-fig/log",
  3557. "keywords": [
  3558. "log",
  3559. "psr",
  3560. "psr-3"
  3561. ],
  3562. "support": {
  3563. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3564. },
  3565. "time": "2021-07-14T16:46:02+00:00"
  3566. },
  3567. {
  3568. "name": "psr/simple-cache",
  3569. "version": "3.0.0",
  3570. "source": {
  3571. "type": "git",
  3572. "url": "https://github.com/php-fig/simple-cache.git",
  3573. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3574. },
  3575. "dist": {
  3576. "type": "zip",
  3577. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3578. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3579. "shasum": ""
  3580. },
  3581. "require": {
  3582. "php": ">=8.0.0"
  3583. },
  3584. "type": "library",
  3585. "extra": {
  3586. "branch-alias": {
  3587. "dev-master": "3.0.x-dev"
  3588. }
  3589. },
  3590. "autoload": {
  3591. "psr-4": {
  3592. "Psr\\SimpleCache\\": "src/"
  3593. }
  3594. },
  3595. "notification-url": "https://packagist.org/downloads/",
  3596. "license": [
  3597. "MIT"
  3598. ],
  3599. "authors": [
  3600. {
  3601. "name": "PHP-FIG",
  3602. "homepage": "https://www.php-fig.org/"
  3603. }
  3604. ],
  3605. "description": "Common interfaces for simple caching",
  3606. "keywords": [
  3607. "cache",
  3608. "caching",
  3609. "psr",
  3610. "psr-16",
  3611. "simple-cache"
  3612. ],
  3613. "support": {
  3614. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3615. },
  3616. "time": "2021-10-29T13:26:27+00:00"
  3617. },
  3618. {
  3619. "name": "ralouphie/getallheaders",
  3620. "version": "3.0.3",
  3621. "source": {
  3622. "type": "git",
  3623. "url": "https://github.com/ralouphie/getallheaders.git",
  3624. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3625. },
  3626. "dist": {
  3627. "type": "zip",
  3628. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3629. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3630. "shasum": ""
  3631. },
  3632. "require": {
  3633. "php": ">=5.6"
  3634. },
  3635. "require-dev": {
  3636. "php-coveralls/php-coveralls": "^2.1",
  3637. "phpunit/phpunit": "^5 || ^6.5"
  3638. },
  3639. "type": "library",
  3640. "autoload": {
  3641. "files": [
  3642. "src/getallheaders.php"
  3643. ]
  3644. },
  3645. "notification-url": "https://packagist.org/downloads/",
  3646. "license": [
  3647. "MIT"
  3648. ],
  3649. "authors": [
  3650. {
  3651. "name": "Ralph Khattar",
  3652. "email": "[email protected]"
  3653. }
  3654. ],
  3655. "description": "A polyfill for getallheaders.",
  3656. "support": {
  3657. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3658. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3659. },
  3660. "time": "2019-03-08T08:55:37+00:00"
  3661. },
  3662. {
  3663. "name": "ramsey/collection",
  3664. "version": "2.0.0",
  3665. "source": {
  3666. "type": "git",
  3667. "url": "https://github.com/ramsey/collection.git",
  3668. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  3669. },
  3670. "dist": {
  3671. "type": "zip",
  3672. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3673. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3674. "shasum": ""
  3675. },
  3676. "require": {
  3677. "php": "^8.1"
  3678. },
  3679. "require-dev": {
  3680. "captainhook/plugin-composer": "^5.3",
  3681. "ergebnis/composer-normalize": "^2.28.3",
  3682. "fakerphp/faker": "^1.21",
  3683. "hamcrest/hamcrest-php": "^2.0",
  3684. "jangregor/phpstan-prophecy": "^1.0",
  3685. "mockery/mockery": "^1.5",
  3686. "php-parallel-lint/php-console-highlighter": "^1.0",
  3687. "php-parallel-lint/php-parallel-lint": "^1.3",
  3688. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3689. "phpspec/prophecy-phpunit": "^2.0",
  3690. "phpstan/extension-installer": "^1.2",
  3691. "phpstan/phpstan": "^1.9",
  3692. "phpstan/phpstan-mockery": "^1.1",
  3693. "phpstan/phpstan-phpunit": "^1.3",
  3694. "phpunit/phpunit": "^9.5",
  3695. "psalm/plugin-mockery": "^1.1",
  3696. "psalm/plugin-phpunit": "^0.18.4",
  3697. "ramsey/coding-standard": "^2.0.3",
  3698. "ramsey/conventional-commits": "^1.3",
  3699. "vimeo/psalm": "^5.4"
  3700. },
  3701. "type": "library",
  3702. "extra": {
  3703. "captainhook": {
  3704. "force-install": true
  3705. },
  3706. "ramsey/conventional-commits": {
  3707. "configFile": "conventional-commits.json"
  3708. }
  3709. },
  3710. "autoload": {
  3711. "psr-4": {
  3712. "Ramsey\\Collection\\": "src/"
  3713. }
  3714. },
  3715. "notification-url": "https://packagist.org/downloads/",
  3716. "license": [
  3717. "MIT"
  3718. ],
  3719. "authors": [
  3720. {
  3721. "name": "Ben Ramsey",
  3722. "email": "[email protected]",
  3723. "homepage": "https://benramsey.com"
  3724. }
  3725. ],
  3726. "description": "A PHP library for representing and manipulating collections.",
  3727. "keywords": [
  3728. "array",
  3729. "collection",
  3730. "hash",
  3731. "map",
  3732. "queue",
  3733. "set"
  3734. ],
  3735. "support": {
  3736. "issues": "https://github.com/ramsey/collection/issues",
  3737. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  3738. },
  3739. "funding": [
  3740. {
  3741. "url": "https://github.com/ramsey",
  3742. "type": "github"
  3743. },
  3744. {
  3745. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  3746. "type": "tidelift"
  3747. }
  3748. ],
  3749. "time": "2022-12-31T21:50:55+00:00"
  3750. },
  3751. {
  3752. "name": "ramsey/uuid",
  3753. "version": "4.7.5",
  3754. "source": {
  3755. "type": "git",
  3756. "url": "https://github.com/ramsey/uuid.git",
  3757. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  3758. },
  3759. "dist": {
  3760. "type": "zip",
  3761. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  3762. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  3763. "shasum": ""
  3764. },
  3765. "require": {
  3766. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  3767. "ext-json": "*",
  3768. "php": "^8.0",
  3769. "ramsey/collection": "^1.2 || ^2.0"
  3770. },
  3771. "replace": {
  3772. "rhumsaa/uuid": "self.version"
  3773. },
  3774. "require-dev": {
  3775. "captainhook/captainhook": "^5.10",
  3776. "captainhook/plugin-composer": "^5.3",
  3777. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3778. "doctrine/annotations": "^1.8",
  3779. "ergebnis/composer-normalize": "^2.15",
  3780. "mockery/mockery": "^1.3",
  3781. "paragonie/random-lib": "^2",
  3782. "php-mock/php-mock": "^2.2",
  3783. "php-mock/php-mock-mockery": "^1.3",
  3784. "php-parallel-lint/php-parallel-lint": "^1.1",
  3785. "phpbench/phpbench": "^1.0",
  3786. "phpstan/extension-installer": "^1.1",
  3787. "phpstan/phpstan": "^1.8",
  3788. "phpstan/phpstan-mockery": "^1.1",
  3789. "phpstan/phpstan-phpunit": "^1.1",
  3790. "phpunit/phpunit": "^8.5 || ^9",
  3791. "ramsey/composer-repl": "^1.4",
  3792. "slevomat/coding-standard": "^8.4",
  3793. "squizlabs/php_codesniffer": "^3.5",
  3794. "vimeo/psalm": "^4.9"
  3795. },
  3796. "suggest": {
  3797. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3798. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3799. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3800. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3801. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3802. },
  3803. "type": "library",
  3804. "extra": {
  3805. "captainhook": {
  3806. "force-install": true
  3807. }
  3808. },
  3809. "autoload": {
  3810. "files": [
  3811. "src/functions.php"
  3812. ],
  3813. "psr-4": {
  3814. "Ramsey\\Uuid\\": "src/"
  3815. }
  3816. },
  3817. "notification-url": "https://packagist.org/downloads/",
  3818. "license": [
  3819. "MIT"
  3820. ],
  3821. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3822. "keywords": [
  3823. "guid",
  3824. "identifier",
  3825. "uuid"
  3826. ],
  3827. "support": {
  3828. "issues": "https://github.com/ramsey/uuid/issues",
  3829. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  3830. },
  3831. "funding": [
  3832. {
  3833. "url": "https://github.com/ramsey",
  3834. "type": "github"
  3835. },
  3836. {
  3837. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  3838. "type": "tidelift"
  3839. }
  3840. ],
  3841. "time": "2023-11-08T05:53:05+00:00"
  3842. },
  3843. {
  3844. "name": "sendgrid/php-http-client",
  3845. "version": "4.1.0",
  3846. "source": {
  3847. "type": "git",
  3848. "url": "https://github.com/sendgrid/php-http-client.git",
  3849. "reference": "84fe926f3d2ac3454f088c9a06ebdc398cc3727e"
  3850. },
  3851. "dist": {
  3852. "type": "zip",
  3853. "url": "https://api.github.com/repos/sendgrid/php-http-client/zipball/84fe926f3d2ac3454f088c9a06ebdc398cc3727e",
  3854. "reference": "84fe926f3d2ac3454f088c9a06ebdc398cc3727e",
  3855. "shasum": ""
  3856. },
  3857. "require": {
  3858. "ext-curl": "*",
  3859. "ext-json": "*",
  3860. "ext-mbstring": "*",
  3861. "php": ">=7.3"
  3862. },
  3863. "require-dev": {
  3864. "friendsofphp/php-cs-fixer": "^2.16",
  3865. "phpunit/phpunit": "^9",
  3866. "squizlabs/php_codesniffer": "~2.0"
  3867. },
  3868. "suggest": {
  3869. "composer/ca-bundle": "Including this library will ensure that a valid CA bundle is available for secure connections"
  3870. },
  3871. "type": "library",
  3872. "autoload": {
  3873. "psr-4": {
  3874. "SendGrid\\": "lib/"
  3875. }
  3876. },
  3877. "notification-url": "https://packagist.org/downloads/",
  3878. "license": [
  3879. "MIT"
  3880. ],
  3881. "authors": [
  3882. {
  3883. "name": "Matt Bernier",
  3884. "email": "[email protected]"
  3885. },
  3886. {
  3887. "name": "Elmer Thomas",
  3888. "email": "[email protected]"
  3889. }
  3890. ],
  3891. "description": "HTTP REST client, simplified for PHP",
  3892. "homepage": "http://github.com/sendgrid/php-http-client",
  3893. "keywords": [
  3894. "api",
  3895. "fluent",
  3896. "http",
  3897. "rest",
  3898. "sendgrid"
  3899. ],
  3900. "support": {
  3901. "source": "https://github.com/sendgrid/php-http-client/tree/4.1.0"
  3902. },
  3903. "time": "2023-12-01T05:16:21+00:00"
  3904. },
  3905. {
  3906. "name": "sendgrid/sendgrid",
  3907. "version": "8.1.1",
  3908. "source": {
  3909. "type": "git",
  3910. "url": "https://github.com/sendgrid/sendgrid-php.git",
  3911. "reference": "08514e75789f192c034fdcf18efe6d8b1a7c91da"
  3912. },
  3913. "dist": {
  3914. "type": "zip",
  3915. "url": "https://api.github.com/repos/sendgrid/sendgrid-php/zipball/08514e75789f192c034fdcf18efe6d8b1a7c91da",
  3916. "reference": "08514e75789f192c034fdcf18efe6d8b1a7c91da",
  3917. "shasum": ""
  3918. },
  3919. "require": {
  3920. "ext-curl": "*",
  3921. "ext-json": "*",
  3922. "ext-mbstring": "*",
  3923. "ext-openssl": "*",
  3924. "php": ">=7.3",
  3925. "sendgrid/php-http-client": "4.1.0",
  3926. "starkbank/ecdsa": "0.*"
  3927. },
  3928. "replace": {
  3929. "sendgrid/sendgrid-php": "*"
  3930. },
  3931. "require-dev": {
  3932. "phpstan/phpstan": "^1.5",
  3933. "phpunit/phpunit": "^9",
  3934. "squizlabs/php_codesniffer": "3.*",
  3935. "swaggest/json-diff": "^3.4"
  3936. },
  3937. "type": "library",
  3938. "autoload": {
  3939. "psr-4": {
  3940. "SendGrid\\Mail\\": "lib/mail/",
  3941. "SendGrid\\Stats\\": "lib/stats/",
  3942. "SendGrid\\Helper\\": "lib/helper/",
  3943. "SendGrid\\Contacts\\": "lib/contacts/",
  3944. "SendGrid\\EventWebhook\\": "lib/eventwebhook/"
  3945. },
  3946. "classmap": [
  3947. "lib/BaseSendGridClientInterface.php",
  3948. "lib/SendGrid.php",
  3949. "lib/TwilioEmail.php"
  3950. ]
  3951. },
  3952. "notification-url": "https://packagist.org/downloads/",
  3953. "license": [
  3954. "MIT"
  3955. ],
  3956. "description": "This library allows you to quickly and easily send emails through Twilio SendGrid using PHP.",
  3957. "homepage": "http://github.com/sendgrid/sendgrid-php",
  3958. "keywords": [
  3959. "email",
  3960. "grid",
  3961. "send",
  3962. "sendgrid",
  3963. "twilio sendgrid"
  3964. ],
  3965. "support": {
  3966. "source": "https://github.com/sendgrid/sendgrid-php/tree/8.1.1"
  3967. },
  3968. "time": "2023-12-06T07:11:08+00:00"
  3969. },
  3970. {
  3971. "name": "sentry/sdk",
  3972. "version": "4.0.0",
  3973. "source": {
  3974. "type": "git",
  3975. "url": "https://github.com/getsentry/sentry-php-sdk.git",
  3976. "reference": "fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53"
  3977. },
  3978. "dist": {
  3979. "type": "zip",
  3980. "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53",
  3981. "reference": "fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53",
  3982. "shasum": ""
  3983. },
  3984. "require": {
  3985. "sentry/sentry": "^4.0"
  3986. },
  3987. "type": "metapackage",
  3988. "notification-url": "https://packagist.org/downloads/",
  3989. "license": [
  3990. "MIT"
  3991. ],
  3992. "authors": [
  3993. {
  3994. "name": "Sentry",
  3995. "email": "[email protected]"
  3996. }
  3997. ],
  3998. "description": "This is a meta package of sentry/sentry. We recommend using sentry/sentry directly.",
  3999. "homepage": "http://sentry.io",
  4000. "keywords": [
  4001. "crash-reporting",
  4002. "crash-reports",
  4003. "error-handler",
  4004. "error-monitoring",
  4005. "log",
  4006. "logging",
  4007. "sentry"
  4008. ],
  4009. "support": {
  4010. "issues": "https://github.com/getsentry/sentry-php-sdk/issues",
  4011. "source": "https://github.com/getsentry/sentry-php-sdk/tree/4.0.0"
  4012. },
  4013. "funding": [
  4014. {
  4015. "url": "https://sentry.io/",
  4016. "type": "custom"
  4017. },
  4018. {
  4019. "url": "https://sentry.io/pricing/",
  4020. "type": "custom"
  4021. }
  4022. ],
  4023. "time": "2023-11-06T10:23:19+00:00"
  4024. },
  4025. {
  4026. "name": "sentry/sentry",
  4027. "version": "4.6.0",
  4028. "source": {
  4029. "type": "git",
  4030. "url": "https://github.com/getsentry/sentry-php.git",
  4031. "reference": "30d98a460ab10f7b7032d76c62da5b1ce6c0765d"
  4032. },
  4033. "dist": {
  4034. "type": "zip",
  4035. "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/30d98a460ab10f7b7032d76c62da5b1ce6c0765d",
  4036. "reference": "30d98a460ab10f7b7032d76c62da5b1ce6c0765d",
  4037. "shasum": ""
  4038. },
  4039. "require": {
  4040. "ext-curl": "*",
  4041. "ext-json": "*",
  4042. "ext-mbstring": "*",
  4043. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4044. "jean85/pretty-package-versions": "^1.5|^2.0.4",
  4045. "php": "^7.2|^8.0",
  4046. "psr/log": "^1.0|^2.0|^3.0",
  4047. "symfony/options-resolver": "^4.4.30|^5.0.11|^6.0|^7.0"
  4048. },
  4049. "conflict": {
  4050. "raven/raven": "*"
  4051. },
  4052. "require-dev": {
  4053. "friendsofphp/php-cs-fixer": "^3.4",
  4054. "guzzlehttp/promises": "^1.0|^2.0",
  4055. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4056. "monolog/monolog": "^1.6|^2.0|^3.0",
  4057. "phpbench/phpbench": "^1.0",
  4058. "phpstan/phpstan": "^1.3",
  4059. "phpunit/phpunit": "^8.5.14|^9.4",
  4060. "symfony/phpunit-bridge": "^5.2|^6.0|^7.0",
  4061. "vimeo/psalm": "^4.17"
  4062. },
  4063. "suggest": {
  4064. "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
  4065. },
  4066. "type": "library",
  4067. "autoload": {
  4068. "files": [
  4069. "src/functions.php"
  4070. ],
  4071. "psr-4": {
  4072. "Sentry\\": "src/"
  4073. }
  4074. },
  4075. "notification-url": "https://packagist.org/downloads/",
  4076. "license": [
  4077. "MIT"
  4078. ],
  4079. "authors": [
  4080. {
  4081. "name": "Sentry",
  4082. "email": "[email protected]"
  4083. }
  4084. ],
  4085. "description": "PHP SDK for Sentry (http://sentry.io)",
  4086. "homepage": "http://sentry.io",
  4087. "keywords": [
  4088. "crash-reporting",
  4089. "crash-reports",
  4090. "error-handler",
  4091. "error-monitoring",
  4092. "log",
  4093. "logging",
  4094. "profiling",
  4095. "sentry",
  4096. "tracing"
  4097. ],
  4098. "support": {
  4099. "issues": "https://github.com/getsentry/sentry-php/issues",
  4100. "source": "https://github.com/getsentry/sentry-php/tree/4.6.0"
  4101. },
  4102. "funding": [
  4103. {
  4104. "url": "https://sentry.io/",
  4105. "type": "custom"
  4106. },
  4107. {
  4108. "url": "https://sentry.io/pricing/",
  4109. "type": "custom"
  4110. }
  4111. ],
  4112. "time": "2024-02-13T11:32:56+00:00"
  4113. },
  4114. {
  4115. "name": "slim/http",
  4116. "version": "1.3",
  4117. "source": {
  4118. "type": "git",
  4119. "url": "https://github.com/slimphp/Slim-Http.git",
  4120. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb"
  4121. },
  4122. "dist": {
  4123. "type": "zip",
  4124. "url": "https://api.github.com/repos/slimphp/Slim-Http/zipball/9542edbe469b7c0f3084c2467efea972387f5beb",
  4125. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb",
  4126. "shasum": ""
  4127. },
  4128. "require": {
  4129. "ext-fileinfo": "*",
  4130. "ext-json": "*",
  4131. "ext-libxml": "*",
  4132. "ext-simplexml": "*",
  4133. "php": "^7.4 || ^8.0",
  4134. "psr/http-factory": "^1.0",
  4135. "psr/http-message": "^1.0"
  4136. },
  4137. "require-dev": {
  4138. "adriansuter/php-autoload-override": "^1.3",
  4139. "laminas/laminas-diactoros": "^2.17",
  4140. "nyholm/psr7": "^1.5",
  4141. "php-http/psr7-integration-tests": "dev-master",
  4142. "phpstan/phpstan": "^1.8",
  4143. "phpunit/phpunit": "^9.5",
  4144. "squizlabs/php_codesniffer": "^3.7"
  4145. },
  4146. "type": "library",
  4147. "autoload": {
  4148. "psr-4": {
  4149. "Slim\\Http\\": "src/"
  4150. }
  4151. },
  4152. "notification-url": "https://packagist.org/downloads/",
  4153. "license": [
  4154. "MIT"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "Josh Lockhart",
  4159. "email": "[email protected]",
  4160. "homepage": "http://joshlockhart.com"
  4161. },
  4162. {
  4163. "name": "Andrew Smith",
  4164. "email": "[email protected]",
  4165. "homepage": "http://silentworks.co.uk"
  4166. },
  4167. {
  4168. "name": "Rob Allen",
  4169. "email": "[email protected]",
  4170. "homepage": "http://akrabat.com"
  4171. },
  4172. {
  4173. "name": "Pierre Berube",
  4174. "email": "[email protected]",
  4175. "homepage": "http://www.lgse.com"
  4176. }
  4177. ],
  4178. "description": "Slim PSR-7 Object Decorators",
  4179. "homepage": "http://slimframework.com",
  4180. "keywords": [
  4181. "http",
  4182. "psr-7",
  4183. "psr7"
  4184. ],
  4185. "support": {
  4186. "issues": "https://github.com/slimphp/Slim-Http/issues",
  4187. "source": "https://github.com/slimphp/Slim-Http/tree/1.3"
  4188. },
  4189. "time": "2022-09-14T15:45:07+00:00"
  4190. },
  4191. {
  4192. "name": "slim/slim",
  4193. "version": "4.13.0",
  4194. "source": {
  4195. "type": "git",
  4196. "url": "https://github.com/slimphp/Slim.git",
  4197. "reference": "038fd5713d5a41636fdff0e8dcceedecdd17fc17"
  4198. },
  4199. "dist": {
  4200. "type": "zip",
  4201. "url": "https://api.github.com/repos/slimphp/Slim/zipball/038fd5713d5a41636fdff0e8dcceedecdd17fc17",
  4202. "reference": "038fd5713d5a41636fdff0e8dcceedecdd17fc17",
  4203. "shasum": ""
  4204. },
  4205. "require": {
  4206. "ext-json": "*",
  4207. "nikic/fast-route": "^1.3",
  4208. "php": "^7.4 || ^8.0",
  4209. "psr/container": "^1.0 || ^2.0",
  4210. "psr/http-factory": "^1.0",
  4211. "psr/http-message": "^1.1 || ^2.0",
  4212. "psr/http-server-handler": "^1.0",
  4213. "psr/http-server-middleware": "^1.0",
  4214. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4215. },
  4216. "require-dev": {
  4217. "adriansuter/php-autoload-override": "^1.4",
  4218. "ext-simplexml": "*",
  4219. "guzzlehttp/psr7": "^2.6",
  4220. "httpsoft/http-message": "^1.1",
  4221. "httpsoft/http-server-request": "^1.1",
  4222. "laminas/laminas-diactoros": "^2.17 || ^3",
  4223. "nyholm/psr7": "^1.8",
  4224. "nyholm/psr7-server": "^1.1",
  4225. "phpspec/prophecy": "^1.19",
  4226. "phpspec/prophecy-phpunit": "^2.1",
  4227. "phpstan/phpstan": "^1.10",
  4228. "phpunit/phpunit": "^9.6",
  4229. "slim/http": "^1.3",
  4230. "slim/psr7": "^1.6",
  4231. "squizlabs/php_codesniffer": "^3.9"
  4232. },
  4233. "suggest": {
  4234. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  4235. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  4236. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  4237. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  4238. },
  4239. "type": "library",
  4240. "autoload": {
  4241. "psr-4": {
  4242. "Slim\\": "Slim"
  4243. }
  4244. },
  4245. "notification-url": "https://packagist.org/downloads/",
  4246. "license": [
  4247. "MIT"
  4248. ],
  4249. "authors": [
  4250. {
  4251. "name": "Josh Lockhart",
  4252. "email": "[email protected]",
  4253. "homepage": "https://joshlockhart.com"
  4254. },
  4255. {
  4256. "name": "Andrew Smith",
  4257. "email": "[email protected]",
  4258. "homepage": "http://silentworks.co.uk"
  4259. },
  4260. {
  4261. "name": "Rob Allen",
  4262. "email": "[email protected]",
  4263. "homepage": "http://akrabat.com"
  4264. },
  4265. {
  4266. "name": "Pierre Berube",
  4267. "email": "[email protected]",
  4268. "homepage": "http://www.lgse.com"
  4269. },
  4270. {
  4271. "name": "Gabriel Manricks",
  4272. "email": "[email protected]",
  4273. "homepage": "http://gabrielmanricks.com"
  4274. }
  4275. ],
  4276. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  4277. "homepage": "https://www.slimframework.com",
  4278. "keywords": [
  4279. "api",
  4280. "framework",
  4281. "micro",
  4282. "router"
  4283. ],
  4284. "support": {
  4285. "docs": "https://www.slimframework.com/docs/v4/",
  4286. "forum": "https://discourse.slimframework.com/",
  4287. "irc": "irc://irc.freenode.net:6667/slimphp",
  4288. "issues": "https://github.com/slimphp/Slim/issues",
  4289. "rss": "https://www.slimframework.com/blog/feed.rss",
  4290. "slack": "https://slimphp.slack.com/",
  4291. "source": "https://github.com/slimphp/Slim",
  4292. "wiki": "https://github.com/slimphp/Slim/wiki"
  4293. },
  4294. "funding": [
  4295. {
  4296. "url": "https://opencollective.com/slimphp",
  4297. "type": "open_collective"
  4298. },
  4299. {
  4300. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  4301. "type": "tidelift"
  4302. }
  4303. ],
  4304. "time": "2024-03-03T21:25:30+00:00"
  4305. },
  4306. {
  4307. "name": "smarty/smarty",
  4308. "version": "v4.4.1",
  4309. "source": {
  4310. "type": "git",
  4311. "url": "https://github.com/smarty-php/smarty.git",
  4312. "reference": "f4152e9b814ae2369b6e4935c05e1e0c3654318d"
  4313. },
  4314. "dist": {
  4315. "type": "zip",
  4316. "url": "https://api.github.com/repos/smarty-php/smarty/zipball/f4152e9b814ae2369b6e4935c05e1e0c3654318d",
  4317. "reference": "f4152e9b814ae2369b6e4935c05e1e0c3654318d",
  4318. "shasum": ""
  4319. },
  4320. "require": {
  4321. "php": "^7.1 || ^8.0"
  4322. },
  4323. "require-dev": {
  4324. "phpunit/phpunit": "^8.5 || ^7.5",
  4325. "smarty/smarty-lexer": "^3.1"
  4326. },
  4327. "type": "library",
  4328. "extra": {
  4329. "branch-alias": {
  4330. "dev-master": "4.0.x-dev"
  4331. }
  4332. },
  4333. "autoload": {
  4334. "classmap": [
  4335. "libs/"
  4336. ]
  4337. },
  4338. "notification-url": "https://packagist.org/downloads/",
  4339. "license": [
  4340. "LGPL-3.0"
  4341. ],
  4342. "authors": [
  4343. {
  4344. "name": "Monte Ohrt",
  4345. "email": "[email protected]"
  4346. },
  4347. {
  4348. "name": "Uwe Tews",
  4349. "email": "[email protected]"
  4350. },
  4351. {
  4352. "name": "Rodney Rehm",
  4353. "email": "[email protected]"
  4354. },
  4355. {
  4356. "name": "Simon Wisselink",
  4357. "homepage": "https://www.iwink.nl/"
  4358. }
  4359. ],
  4360. "description": "Smarty - the compiling PHP template engine",
  4361. "homepage": "https://smarty-php.github.io/smarty/",
  4362. "keywords": [
  4363. "templating"
  4364. ],
  4365. "support": {
  4366. "forum": "https://github.com/smarty-php/smarty/discussions",
  4367. "issues": "https://github.com/smarty-php/smarty/issues",
  4368. "source": "https://github.com/smarty-php/smarty/tree/v4.4.1"
  4369. },
  4370. "time": "2024-02-26T13:58:37+00:00"
  4371. },
  4372. {
  4373. "name": "srmklive/paypal",
  4374. "version": "3.0.30",
  4375. "source": {
  4376. "type": "git",
  4377. "url": "https://github.com/srmklive/laravel-paypal.git",
  4378. "reference": "d511038ff01f466e7bfca475c7417b5a6c4d38a5"
  4379. },
  4380. "dist": {
  4381. "type": "zip",
  4382. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/d511038ff01f466e7bfca475c7417b5a6c4d38a5",
  4383. "reference": "d511038ff01f466e7bfca475c7417b5a6c4d38a5",
  4384. "shasum": ""
  4385. },
  4386. "require": {
  4387. "ext-curl": "*",
  4388. "guzzlehttp/guzzle": "~7.0",
  4389. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|^10.0|^11.0",
  4390. "nesbot/carbon": "~2.0|^3.0",
  4391. "php": ">=7.2|^8.0"
  4392. },
  4393. "require-dev": {
  4394. "phpstan/phpstan": "^1.10",
  4395. "phpunit/phpunit": "^8.0|^9.0|^10.0",
  4396. "symfony/var-dumper": "~5.0|^7.0"
  4397. },
  4398. "type": "library",
  4399. "extra": {
  4400. "laravel": {
  4401. "providers": [
  4402. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4403. ],
  4404. "aliases": {
  4405. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4406. }
  4407. }
  4408. },
  4409. "autoload": {
  4410. "psr-4": {
  4411. "Srmklive\\PayPal\\": "src/"
  4412. }
  4413. },
  4414. "notification-url": "https://packagist.org/downloads/",
  4415. "license": [
  4416. "MIT"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "Raza Mehdi",
  4421. "email": "[email protected]"
  4422. }
  4423. ],
  4424. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4425. "keywords": [
  4426. "http",
  4427. "laravel paypal",
  4428. "paypal",
  4429. "rest",
  4430. "web service"
  4431. ],
  4432. "support": {
  4433. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4434. "source": "https://github.com/srmklive/laravel-paypal/tree/3.0.30"
  4435. },
  4436. "time": "2024-03-03T15:33:56+00:00"
  4437. },
  4438. {
  4439. "name": "starkbank/ecdsa",
  4440. "version": "0.0.5",
  4441. "source": {
  4442. "type": "git",
  4443. "url": "https://github.com/starkbank/ecdsa-php.git",
  4444. "reference": "484bedac47bac4012dc73df91da221f0a66845cb"
  4445. },
  4446. "dist": {
  4447. "type": "zip",
  4448. "url": "https://api.github.com/repos/starkbank/ecdsa-php/zipball/484bedac47bac4012dc73df91da221f0a66845cb",
  4449. "reference": "484bedac47bac4012dc73df91da221f0a66845cb",
  4450. "shasum": ""
  4451. },
  4452. "require": {
  4453. "php": ">=5.5"
  4454. },
  4455. "type": "library",
  4456. "autoload": {
  4457. "files": [
  4458. "src/ellipticcurve.php"
  4459. ]
  4460. },
  4461. "notification-url": "https://packagist.org/downloads/",
  4462. "license": [
  4463. "MIT"
  4464. ],
  4465. "authors": [
  4466. {
  4467. "name": "StarkBank",
  4468. "email": "[email protected]",
  4469. "homepage": "https://starkbank.com",
  4470. "role": "Developer"
  4471. }
  4472. ],
  4473. "description": "fast openSSL-compatible implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA)",
  4474. "homepage": "https://github.com/starkbank/ecdsa-php",
  4475. "support": {
  4476. "issues": "https://github.com/starkbank/ecdsa-php/issues",
  4477. "source": "https://github.com/starkbank/ecdsa-php/tree/v0.0.5"
  4478. },
  4479. "time": "2021-06-06T22:24:49+00:00"
  4480. },
  4481. {
  4482. "name": "stripe/stripe-php",
  4483. "version": "v13.13.0",
  4484. "source": {
  4485. "type": "git",
  4486. "url": "https://github.com/stripe/stripe-php.git",
  4487. "reference": "8dc58bab25f222a74d1157d4ca9e9e48451dd0c1"
  4488. },
  4489. "dist": {
  4490. "type": "zip",
  4491. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/8dc58bab25f222a74d1157d4ca9e9e48451dd0c1",
  4492. "reference": "8dc58bab25f222a74d1157d4ca9e9e48451dd0c1",
  4493. "shasum": ""
  4494. },
  4495. "require": {
  4496. "ext-curl": "*",
  4497. "ext-json": "*",
  4498. "ext-mbstring": "*",
  4499. "php": ">=5.6.0"
  4500. },
  4501. "require-dev": {
  4502. "friendsofphp/php-cs-fixer": "3.5.0",
  4503. "phpstan/phpstan": "^1.2",
  4504. "phpunit/phpunit": "^5.7 || ^9.0"
  4505. },
  4506. "type": "library",
  4507. "extra": {
  4508. "branch-alias": {
  4509. "dev-master": "2.0-dev"
  4510. }
  4511. },
  4512. "autoload": {
  4513. "psr-4": {
  4514. "Stripe\\": "lib/"
  4515. }
  4516. },
  4517. "notification-url": "https://packagist.org/downloads/",
  4518. "license": [
  4519. "MIT"
  4520. ],
  4521. "authors": [
  4522. {
  4523. "name": "Stripe and contributors",
  4524. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4525. }
  4526. ],
  4527. "description": "Stripe PHP Library",
  4528. "homepage": "https://stripe.com/",
  4529. "keywords": [
  4530. "api",
  4531. "payment processing",
  4532. "stripe"
  4533. ],
  4534. "support": {
  4535. "issues": "https://github.com/stripe/stripe-php/issues",
  4536. "source": "https://github.com/stripe/stripe-php/tree/v13.13.0"
  4537. },
  4538. "time": "2024-02-29T20:22:15+00:00"
  4539. },
  4540. {
  4541. "name": "symfony/deprecation-contracts",
  4542. "version": "v3.4.0",
  4543. "source": {
  4544. "type": "git",
  4545. "url": "https://github.com/symfony/deprecation-contracts.git",
  4546. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  4547. },
  4548. "dist": {
  4549. "type": "zip",
  4550. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  4551. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  4552. "shasum": ""
  4553. },
  4554. "require": {
  4555. "php": ">=8.1"
  4556. },
  4557. "type": "library",
  4558. "extra": {
  4559. "branch-alias": {
  4560. "dev-main": "3.4-dev"
  4561. },
  4562. "thanks": {
  4563. "name": "symfony/contracts",
  4564. "url": "https://github.com/symfony/contracts"
  4565. }
  4566. },
  4567. "autoload": {
  4568. "files": [
  4569. "function.php"
  4570. ]
  4571. },
  4572. "notification-url": "https://packagist.org/downloads/",
  4573. "license": [
  4574. "MIT"
  4575. ],
  4576. "authors": [
  4577. {
  4578. "name": "Nicolas Grekas",
  4579. "email": "[email protected]"
  4580. },
  4581. {
  4582. "name": "Symfony Community",
  4583. "homepage": "https://symfony.com/contributors"
  4584. }
  4585. ],
  4586. "description": "A generic function and convention to trigger deprecation notices",
  4587. "homepage": "https://symfony.com",
  4588. "support": {
  4589. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  4590. },
  4591. "funding": [
  4592. {
  4593. "url": "https://symfony.com/sponsor",
  4594. "type": "custom"
  4595. },
  4596. {
  4597. "url": "https://github.com/fabpot",
  4598. "type": "github"
  4599. },
  4600. {
  4601. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4602. "type": "tidelift"
  4603. }
  4604. ],
  4605. "time": "2023-05-23T14:45:45+00:00"
  4606. },
  4607. {
  4608. "name": "symfony/http-client",
  4609. "version": "v7.0.5",
  4610. "source": {
  4611. "type": "git",
  4612. "url": "https://github.com/symfony/http-client.git",
  4613. "reference": "425f462a59d8030703ee04a9e1c666575ed5db3b"
  4614. },
  4615. "dist": {
  4616. "type": "zip",
  4617. "url": "https://api.github.com/repos/symfony/http-client/zipball/425f462a59d8030703ee04a9e1c666575ed5db3b",
  4618. "reference": "425f462a59d8030703ee04a9e1c666575ed5db3b",
  4619. "shasum": ""
  4620. },
  4621. "require": {
  4622. "php": ">=8.2",
  4623. "psr/log": "^1|^2|^3",
  4624. "symfony/http-client-contracts": "^3",
  4625. "symfony/service-contracts": "^2.5|^3"
  4626. },
  4627. "conflict": {
  4628. "php-http/discovery": "<1.15",
  4629. "symfony/http-foundation": "<6.4"
  4630. },
  4631. "provide": {
  4632. "php-http/async-client-implementation": "*",
  4633. "php-http/client-implementation": "*",
  4634. "psr/http-client-implementation": "1.0",
  4635. "symfony/http-client-implementation": "3.0"
  4636. },
  4637. "require-dev": {
  4638. "amphp/amp": "^2.5",
  4639. "amphp/http-client": "^4.2.1",
  4640. "amphp/http-tunnel": "^1.0",
  4641. "amphp/socket": "^1.1",
  4642. "guzzlehttp/promises": "^1.4",
  4643. "nyholm/psr7": "^1.0",
  4644. "php-http/httplug": "^1.0|^2.0",
  4645. "psr/http-client": "^1.0",
  4646. "symfony/dependency-injection": "^6.4|^7.0",
  4647. "symfony/http-kernel": "^6.4|^7.0",
  4648. "symfony/messenger": "^6.4|^7.0",
  4649. "symfony/process": "^6.4|^7.0",
  4650. "symfony/stopwatch": "^6.4|^7.0"
  4651. },
  4652. "type": "library",
  4653. "autoload": {
  4654. "psr-4": {
  4655. "Symfony\\Component\\HttpClient\\": ""
  4656. },
  4657. "exclude-from-classmap": [
  4658. "/Tests/"
  4659. ]
  4660. },
  4661. "notification-url": "https://packagist.org/downloads/",
  4662. "license": [
  4663. "MIT"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "Nicolas Grekas",
  4668. "email": "[email protected]"
  4669. },
  4670. {
  4671. "name": "Symfony Community",
  4672. "homepage": "https://symfony.com/contributors"
  4673. }
  4674. ],
  4675. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4676. "homepage": "https://symfony.com",
  4677. "keywords": [
  4678. "http"
  4679. ],
  4680. "support": {
  4681. "source": "https://github.com/symfony/http-client/tree/v7.0.5"
  4682. },
  4683. "funding": [
  4684. {
  4685. "url": "https://symfony.com/sponsor",
  4686. "type": "custom"
  4687. },
  4688. {
  4689. "url": "https://github.com/fabpot",
  4690. "type": "github"
  4691. },
  4692. {
  4693. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4694. "type": "tidelift"
  4695. }
  4696. ],
  4697. "time": "2024-03-02T12:46:12+00:00"
  4698. },
  4699. {
  4700. "name": "symfony/http-client-contracts",
  4701. "version": "v3.4.0",
  4702. "source": {
  4703. "type": "git",
  4704. "url": "https://github.com/symfony/http-client-contracts.git",
  4705. "reference": "1ee70e699b41909c209a0c930f11034b93578654"
  4706. },
  4707. "dist": {
  4708. "type": "zip",
  4709. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1ee70e699b41909c209a0c930f11034b93578654",
  4710. "reference": "1ee70e699b41909c209a0c930f11034b93578654",
  4711. "shasum": ""
  4712. },
  4713. "require": {
  4714. "php": ">=8.1"
  4715. },
  4716. "type": "library",
  4717. "extra": {
  4718. "branch-alias": {
  4719. "dev-main": "3.4-dev"
  4720. },
  4721. "thanks": {
  4722. "name": "symfony/contracts",
  4723. "url": "https://github.com/symfony/contracts"
  4724. }
  4725. },
  4726. "autoload": {
  4727. "psr-4": {
  4728. "Symfony\\Contracts\\HttpClient\\": ""
  4729. },
  4730. "exclude-from-classmap": [
  4731. "/Test/"
  4732. ]
  4733. },
  4734. "notification-url": "https://packagist.org/downloads/",
  4735. "license": [
  4736. "MIT"
  4737. ],
  4738. "authors": [
  4739. {
  4740. "name": "Nicolas Grekas",
  4741. "email": "[email protected]"
  4742. },
  4743. {
  4744. "name": "Symfony Community",
  4745. "homepage": "https://symfony.com/contributors"
  4746. }
  4747. ],
  4748. "description": "Generic abstractions related to HTTP clients",
  4749. "homepage": "https://symfony.com",
  4750. "keywords": [
  4751. "abstractions",
  4752. "contracts",
  4753. "decoupling",
  4754. "interfaces",
  4755. "interoperability",
  4756. "standards"
  4757. ],
  4758. "support": {
  4759. "source": "https://github.com/symfony/http-client-contracts/tree/v3.4.0"
  4760. },
  4761. "funding": [
  4762. {
  4763. "url": "https://symfony.com/sponsor",
  4764. "type": "custom"
  4765. },
  4766. {
  4767. "url": "https://github.com/fabpot",
  4768. "type": "github"
  4769. },
  4770. {
  4771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4772. "type": "tidelift"
  4773. }
  4774. ],
  4775. "time": "2023-07-30T20:28:31+00:00"
  4776. },
  4777. {
  4778. "name": "symfony/options-resolver",
  4779. "version": "v7.0.0",
  4780. "source": {
  4781. "type": "git",
  4782. "url": "https://github.com/symfony/options-resolver.git",
  4783. "reference": "700ff4096e346f54cb628ea650767c8130f1001f"
  4784. },
  4785. "dist": {
  4786. "type": "zip",
  4787. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/700ff4096e346f54cb628ea650767c8130f1001f",
  4788. "reference": "700ff4096e346f54cb628ea650767c8130f1001f",
  4789. "shasum": ""
  4790. },
  4791. "require": {
  4792. "php": ">=8.2",
  4793. "symfony/deprecation-contracts": "^2.5|^3"
  4794. },
  4795. "type": "library",
  4796. "autoload": {
  4797. "psr-4": {
  4798. "Symfony\\Component\\OptionsResolver\\": ""
  4799. },
  4800. "exclude-from-classmap": [
  4801. "/Tests/"
  4802. ]
  4803. },
  4804. "notification-url": "https://packagist.org/downloads/",
  4805. "license": [
  4806. "MIT"
  4807. ],
  4808. "authors": [
  4809. {
  4810. "name": "Fabien Potencier",
  4811. "email": "[email protected]"
  4812. },
  4813. {
  4814. "name": "Symfony Community",
  4815. "homepage": "https://symfony.com/contributors"
  4816. }
  4817. ],
  4818. "description": "Provides an improved replacement for the array_replace PHP function",
  4819. "homepage": "https://symfony.com",
  4820. "keywords": [
  4821. "config",
  4822. "configuration",
  4823. "options"
  4824. ],
  4825. "support": {
  4826. "source": "https://github.com/symfony/options-resolver/tree/v7.0.0"
  4827. },
  4828. "funding": [
  4829. {
  4830. "url": "https://symfony.com/sponsor",
  4831. "type": "custom"
  4832. },
  4833. {
  4834. "url": "https://github.com/fabpot",
  4835. "type": "github"
  4836. },
  4837. {
  4838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4839. "type": "tidelift"
  4840. }
  4841. ],
  4842. "time": "2023-08-08T10:20:21+00:00"
  4843. },
  4844. {
  4845. "name": "symfony/polyfill-ctype",
  4846. "version": "v1.29.0",
  4847. "source": {
  4848. "type": "git",
  4849. "url": "https://github.com/symfony/polyfill-ctype.git",
  4850. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  4851. },
  4852. "dist": {
  4853. "type": "zip",
  4854. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  4855. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  4856. "shasum": ""
  4857. },
  4858. "require": {
  4859. "php": ">=7.1"
  4860. },
  4861. "provide": {
  4862. "ext-ctype": "*"
  4863. },
  4864. "suggest": {
  4865. "ext-ctype": "For best performance"
  4866. },
  4867. "type": "library",
  4868. "extra": {
  4869. "thanks": {
  4870. "name": "symfony/polyfill",
  4871. "url": "https://github.com/symfony/polyfill"
  4872. }
  4873. },
  4874. "autoload": {
  4875. "files": [
  4876. "bootstrap.php"
  4877. ],
  4878. "psr-4": {
  4879. "Symfony\\Polyfill\\Ctype\\": ""
  4880. }
  4881. },
  4882. "notification-url": "https://packagist.org/downloads/",
  4883. "license": [
  4884. "MIT"
  4885. ],
  4886. "authors": [
  4887. {
  4888. "name": "Gert de Pagter",
  4889. "email": "[email protected]"
  4890. },
  4891. {
  4892. "name": "Symfony Community",
  4893. "homepage": "https://symfony.com/contributors"
  4894. }
  4895. ],
  4896. "description": "Symfony polyfill for ctype functions",
  4897. "homepage": "https://symfony.com",
  4898. "keywords": [
  4899. "compatibility",
  4900. "ctype",
  4901. "polyfill",
  4902. "portable"
  4903. ],
  4904. "support": {
  4905. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  4906. },
  4907. "funding": [
  4908. {
  4909. "url": "https://symfony.com/sponsor",
  4910. "type": "custom"
  4911. },
  4912. {
  4913. "url": "https://github.com/fabpot",
  4914. "type": "github"
  4915. },
  4916. {
  4917. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4918. "type": "tidelift"
  4919. }
  4920. ],
  4921. "time": "2024-01-29T20:11:03+00:00"
  4922. },
  4923. {
  4924. "name": "symfony/polyfill-iconv",
  4925. "version": "v1.29.0",
  4926. "source": {
  4927. "type": "git",
  4928. "url": "https://github.com/symfony/polyfill-iconv.git",
  4929. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f"
  4930. },
  4931. "dist": {
  4932. "type": "zip",
  4933. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  4934. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  4935. "shasum": ""
  4936. },
  4937. "require": {
  4938. "php": ">=7.1"
  4939. },
  4940. "provide": {
  4941. "ext-iconv": "*"
  4942. },
  4943. "suggest": {
  4944. "ext-iconv": "For best performance"
  4945. },
  4946. "type": "library",
  4947. "extra": {
  4948. "thanks": {
  4949. "name": "symfony/polyfill",
  4950. "url": "https://github.com/symfony/polyfill"
  4951. }
  4952. },
  4953. "autoload": {
  4954. "files": [
  4955. "bootstrap.php"
  4956. ],
  4957. "psr-4": {
  4958. "Symfony\\Polyfill\\Iconv\\": ""
  4959. }
  4960. },
  4961. "notification-url": "https://packagist.org/downloads/",
  4962. "license": [
  4963. "MIT"
  4964. ],
  4965. "authors": [
  4966. {
  4967. "name": "Nicolas Grekas",
  4968. "email": "[email protected]"
  4969. },
  4970. {
  4971. "name": "Symfony Community",
  4972. "homepage": "https://symfony.com/contributors"
  4973. }
  4974. ],
  4975. "description": "Symfony polyfill for the Iconv extension",
  4976. "homepage": "https://symfony.com",
  4977. "keywords": [
  4978. "compatibility",
  4979. "iconv",
  4980. "polyfill",
  4981. "portable",
  4982. "shim"
  4983. ],
  4984. "support": {
  4985. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0"
  4986. },
  4987. "funding": [
  4988. {
  4989. "url": "https://symfony.com/sponsor",
  4990. "type": "custom"
  4991. },
  4992. {
  4993. "url": "https://github.com/fabpot",
  4994. "type": "github"
  4995. },
  4996. {
  4997. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4998. "type": "tidelift"
  4999. }
  5000. ],
  5001. "time": "2024-01-29T20:11:03+00:00"
  5002. },
  5003. {
  5004. "name": "symfony/polyfill-intl-grapheme",
  5005. "version": "v1.29.0",
  5006. "source": {
  5007. "type": "git",
  5008. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5009. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  5010. },
  5011. "dist": {
  5012. "type": "zip",
  5013. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5014. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5015. "shasum": ""
  5016. },
  5017. "require": {
  5018. "php": ">=7.1"
  5019. },
  5020. "suggest": {
  5021. "ext-intl": "For best performance"
  5022. },
  5023. "type": "library",
  5024. "extra": {
  5025. "thanks": {
  5026. "name": "symfony/polyfill",
  5027. "url": "https://github.com/symfony/polyfill"
  5028. }
  5029. },
  5030. "autoload": {
  5031. "files": [
  5032. "bootstrap.php"
  5033. ],
  5034. "psr-4": {
  5035. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5036. }
  5037. },
  5038. "notification-url": "https://packagist.org/downloads/",
  5039. "license": [
  5040. "MIT"
  5041. ],
  5042. "authors": [
  5043. {
  5044. "name": "Nicolas Grekas",
  5045. "email": "[email protected]"
  5046. },
  5047. {
  5048. "name": "Symfony Community",
  5049. "homepage": "https://symfony.com/contributors"
  5050. }
  5051. ],
  5052. "description": "Symfony polyfill for intl's grapheme_* functions",
  5053. "homepage": "https://symfony.com",
  5054. "keywords": [
  5055. "compatibility",
  5056. "grapheme",
  5057. "intl",
  5058. "polyfill",
  5059. "portable",
  5060. "shim"
  5061. ],
  5062. "support": {
  5063. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  5064. },
  5065. "funding": [
  5066. {
  5067. "url": "https://symfony.com/sponsor",
  5068. "type": "custom"
  5069. },
  5070. {
  5071. "url": "https://github.com/fabpot",
  5072. "type": "github"
  5073. },
  5074. {
  5075. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5076. "type": "tidelift"
  5077. }
  5078. ],
  5079. "time": "2024-01-29T20:11:03+00:00"
  5080. },
  5081. {
  5082. "name": "symfony/polyfill-intl-normalizer",
  5083. "version": "v1.29.0",
  5084. "source": {
  5085. "type": "git",
  5086. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5087. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  5088. },
  5089. "dist": {
  5090. "type": "zip",
  5091. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  5092. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  5093. "shasum": ""
  5094. },
  5095. "require": {
  5096. "php": ">=7.1"
  5097. },
  5098. "suggest": {
  5099. "ext-intl": "For best performance"
  5100. },
  5101. "type": "library",
  5102. "extra": {
  5103. "thanks": {
  5104. "name": "symfony/polyfill",
  5105. "url": "https://github.com/symfony/polyfill"
  5106. }
  5107. },
  5108. "autoload": {
  5109. "files": [
  5110. "bootstrap.php"
  5111. ],
  5112. "psr-4": {
  5113. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5114. },
  5115. "classmap": [
  5116. "Resources/stubs"
  5117. ]
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "MIT"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Nicolas Grekas",
  5126. "email": "[email protected]"
  5127. },
  5128. {
  5129. "name": "Symfony Community",
  5130. "homepage": "https://symfony.com/contributors"
  5131. }
  5132. ],
  5133. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5134. "homepage": "https://symfony.com",
  5135. "keywords": [
  5136. "compatibility",
  5137. "intl",
  5138. "normalizer",
  5139. "polyfill",
  5140. "portable",
  5141. "shim"
  5142. ],
  5143. "support": {
  5144. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  5145. },
  5146. "funding": [
  5147. {
  5148. "url": "https://symfony.com/sponsor",
  5149. "type": "custom"
  5150. },
  5151. {
  5152. "url": "https://github.com/fabpot",
  5153. "type": "github"
  5154. },
  5155. {
  5156. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5157. "type": "tidelift"
  5158. }
  5159. ],
  5160. "time": "2024-01-29T20:11:03+00:00"
  5161. },
  5162. {
  5163. "name": "symfony/polyfill-mbstring",
  5164. "version": "v1.29.0",
  5165. "source": {
  5166. "type": "git",
  5167. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5168. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  5169. },
  5170. "dist": {
  5171. "type": "zip",
  5172. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  5173. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  5174. "shasum": ""
  5175. },
  5176. "require": {
  5177. "php": ">=7.1"
  5178. },
  5179. "provide": {
  5180. "ext-mbstring": "*"
  5181. },
  5182. "suggest": {
  5183. "ext-mbstring": "For best performance"
  5184. },
  5185. "type": "library",
  5186. "extra": {
  5187. "thanks": {
  5188. "name": "symfony/polyfill",
  5189. "url": "https://github.com/symfony/polyfill"
  5190. }
  5191. },
  5192. "autoload": {
  5193. "files": [
  5194. "bootstrap.php"
  5195. ],
  5196. "psr-4": {
  5197. "Symfony\\Polyfill\\Mbstring\\": ""
  5198. }
  5199. },
  5200. "notification-url": "https://packagist.org/downloads/",
  5201. "license": [
  5202. "MIT"
  5203. ],
  5204. "authors": [
  5205. {
  5206. "name": "Nicolas Grekas",
  5207. "email": "[email protected]"
  5208. },
  5209. {
  5210. "name": "Symfony Community",
  5211. "homepage": "https://symfony.com/contributors"
  5212. }
  5213. ],
  5214. "description": "Symfony polyfill for the Mbstring extension",
  5215. "homepage": "https://symfony.com",
  5216. "keywords": [
  5217. "compatibility",
  5218. "mbstring",
  5219. "polyfill",
  5220. "portable",
  5221. "shim"
  5222. ],
  5223. "support": {
  5224. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  5225. },
  5226. "funding": [
  5227. {
  5228. "url": "https://symfony.com/sponsor",
  5229. "type": "custom"
  5230. },
  5231. {
  5232. "url": "https://github.com/fabpot",
  5233. "type": "github"
  5234. },
  5235. {
  5236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5237. "type": "tidelift"
  5238. }
  5239. ],
  5240. "time": "2024-01-29T20:11:03+00:00"
  5241. },
  5242. {
  5243. "name": "symfony/polyfill-php72",
  5244. "version": "v1.29.0",
  5245. "source": {
  5246. "type": "git",
  5247. "url": "https://github.com/symfony/polyfill-php72.git",
  5248. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  5249. },
  5250. "dist": {
  5251. "type": "zip",
  5252. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  5253. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  5254. "shasum": ""
  5255. },
  5256. "require": {
  5257. "php": ">=7.1"
  5258. },
  5259. "type": "library",
  5260. "extra": {
  5261. "thanks": {
  5262. "name": "symfony/polyfill",
  5263. "url": "https://github.com/symfony/polyfill"
  5264. }
  5265. },
  5266. "autoload": {
  5267. "files": [
  5268. "bootstrap.php"
  5269. ],
  5270. "psr-4": {
  5271. "Symfony\\Polyfill\\Php72\\": ""
  5272. }
  5273. },
  5274. "notification-url": "https://packagist.org/downloads/",
  5275. "license": [
  5276. "MIT"
  5277. ],
  5278. "authors": [
  5279. {
  5280. "name": "Nicolas Grekas",
  5281. "email": "[email protected]"
  5282. },
  5283. {
  5284. "name": "Symfony Community",
  5285. "homepage": "https://symfony.com/contributors"
  5286. }
  5287. ],
  5288. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5289. "homepage": "https://symfony.com",
  5290. "keywords": [
  5291. "compatibility",
  5292. "polyfill",
  5293. "portable",
  5294. "shim"
  5295. ],
  5296. "support": {
  5297. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  5298. },
  5299. "funding": [
  5300. {
  5301. "url": "https://symfony.com/sponsor",
  5302. "type": "custom"
  5303. },
  5304. {
  5305. "url": "https://github.com/fabpot",
  5306. "type": "github"
  5307. },
  5308. {
  5309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5310. "type": "tidelift"
  5311. }
  5312. ],
  5313. "time": "2024-01-29T20:11:03+00:00"
  5314. },
  5315. {
  5316. "name": "symfony/polyfill-php80",
  5317. "version": "v1.29.0",
  5318. "source": {
  5319. "type": "git",
  5320. "url": "https://github.com/symfony/polyfill-php80.git",
  5321. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  5322. },
  5323. "dist": {
  5324. "type": "zip",
  5325. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  5326. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  5327. "shasum": ""
  5328. },
  5329. "require": {
  5330. "php": ">=7.1"
  5331. },
  5332. "type": "library",
  5333. "extra": {
  5334. "thanks": {
  5335. "name": "symfony/polyfill",
  5336. "url": "https://github.com/symfony/polyfill"
  5337. }
  5338. },
  5339. "autoload": {
  5340. "files": [
  5341. "bootstrap.php"
  5342. ],
  5343. "psr-4": {
  5344. "Symfony\\Polyfill\\Php80\\": ""
  5345. },
  5346. "classmap": [
  5347. "Resources/stubs"
  5348. ]
  5349. },
  5350. "notification-url": "https://packagist.org/downloads/",
  5351. "license": [
  5352. "MIT"
  5353. ],
  5354. "authors": [
  5355. {
  5356. "name": "Ion Bazan",
  5357. "email": "[email protected]"
  5358. },
  5359. {
  5360. "name": "Nicolas Grekas",
  5361. "email": "[email protected]"
  5362. },
  5363. {
  5364. "name": "Symfony Community",
  5365. "homepage": "https://symfony.com/contributors"
  5366. }
  5367. ],
  5368. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5369. "homepage": "https://symfony.com",
  5370. "keywords": [
  5371. "compatibility",
  5372. "polyfill",
  5373. "portable",
  5374. "shim"
  5375. ],
  5376. "support": {
  5377. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  5378. },
  5379. "funding": [
  5380. {
  5381. "url": "https://symfony.com/sponsor",
  5382. "type": "custom"
  5383. },
  5384. {
  5385. "url": "https://github.com/fabpot",
  5386. "type": "github"
  5387. },
  5388. {
  5389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5390. "type": "tidelift"
  5391. }
  5392. ],
  5393. "time": "2024-01-29T20:11:03+00:00"
  5394. },
  5395. {
  5396. "name": "symfony/service-contracts",
  5397. "version": "v3.4.1",
  5398. "source": {
  5399. "type": "git",
  5400. "url": "https://github.com/symfony/service-contracts.git",
  5401. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  5402. },
  5403. "dist": {
  5404. "type": "zip",
  5405. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  5406. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  5407. "shasum": ""
  5408. },
  5409. "require": {
  5410. "php": ">=8.1",
  5411. "psr/container": "^1.1|^2.0"
  5412. },
  5413. "conflict": {
  5414. "ext-psr": "<1.1|>=2"
  5415. },
  5416. "type": "library",
  5417. "extra": {
  5418. "branch-alias": {
  5419. "dev-main": "3.4-dev"
  5420. },
  5421. "thanks": {
  5422. "name": "symfony/contracts",
  5423. "url": "https://github.com/symfony/contracts"
  5424. }
  5425. },
  5426. "autoload": {
  5427. "psr-4": {
  5428. "Symfony\\Contracts\\Service\\": ""
  5429. },
  5430. "exclude-from-classmap": [
  5431. "/Test/"
  5432. ]
  5433. },
  5434. "notification-url": "https://packagist.org/downloads/",
  5435. "license": [
  5436. "MIT"
  5437. ],
  5438. "authors": [
  5439. {
  5440. "name": "Nicolas Grekas",
  5441. "email": "[email protected]"
  5442. },
  5443. {
  5444. "name": "Symfony Community",
  5445. "homepage": "https://symfony.com/contributors"
  5446. }
  5447. ],
  5448. "description": "Generic abstractions related to writing services",
  5449. "homepage": "https://symfony.com",
  5450. "keywords": [
  5451. "abstractions",
  5452. "contracts",
  5453. "decoupling",
  5454. "interfaces",
  5455. "interoperability",
  5456. "standards"
  5457. ],
  5458. "support": {
  5459. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  5460. },
  5461. "funding": [
  5462. {
  5463. "url": "https://symfony.com/sponsor",
  5464. "type": "custom"
  5465. },
  5466. {
  5467. "url": "https://github.com/fabpot",
  5468. "type": "github"
  5469. },
  5470. {
  5471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5472. "type": "tidelift"
  5473. }
  5474. ],
  5475. "time": "2023-12-26T14:02:43+00:00"
  5476. },
  5477. {
  5478. "name": "symfony/translation",
  5479. "version": "v6.4.4",
  5480. "source": {
  5481. "type": "git",
  5482. "url": "https://github.com/symfony/translation.git",
  5483. "reference": "bce6a5a78e94566641b2594d17e48b0da3184a8e"
  5484. },
  5485. "dist": {
  5486. "type": "zip",
  5487. "url": "https://api.github.com/repos/symfony/translation/zipball/bce6a5a78e94566641b2594d17e48b0da3184a8e",
  5488. "reference": "bce6a5a78e94566641b2594d17e48b0da3184a8e",
  5489. "shasum": ""
  5490. },
  5491. "require": {
  5492. "php": ">=8.1",
  5493. "symfony/deprecation-contracts": "^2.5|^3",
  5494. "symfony/polyfill-mbstring": "~1.0",
  5495. "symfony/translation-contracts": "^2.5|^3.0"
  5496. },
  5497. "conflict": {
  5498. "symfony/config": "<5.4",
  5499. "symfony/console": "<5.4",
  5500. "symfony/dependency-injection": "<5.4",
  5501. "symfony/http-client-contracts": "<2.5",
  5502. "symfony/http-kernel": "<5.4",
  5503. "symfony/service-contracts": "<2.5",
  5504. "symfony/twig-bundle": "<5.4",
  5505. "symfony/yaml": "<5.4"
  5506. },
  5507. "provide": {
  5508. "symfony/translation-implementation": "2.3|3.0"
  5509. },
  5510. "require-dev": {
  5511. "nikic/php-parser": "^4.18|^5.0",
  5512. "psr/log": "^1|^2|^3",
  5513. "symfony/config": "^5.4|^6.0|^7.0",
  5514. "symfony/console": "^5.4|^6.0|^7.0",
  5515. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5516. "symfony/finder": "^5.4|^6.0|^7.0",
  5517. "symfony/http-client-contracts": "^2.5|^3.0",
  5518. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5519. "symfony/intl": "^5.4|^6.0|^7.0",
  5520. "symfony/polyfill-intl-icu": "^1.21",
  5521. "symfony/routing": "^5.4|^6.0|^7.0",
  5522. "symfony/service-contracts": "^2.5|^3",
  5523. "symfony/yaml": "^5.4|^6.0|^7.0"
  5524. },
  5525. "type": "library",
  5526. "autoload": {
  5527. "files": [
  5528. "Resources/functions.php"
  5529. ],
  5530. "psr-4": {
  5531. "Symfony\\Component\\Translation\\": ""
  5532. },
  5533. "exclude-from-classmap": [
  5534. "/Tests/"
  5535. ]
  5536. },
  5537. "notification-url": "https://packagist.org/downloads/",
  5538. "license": [
  5539. "MIT"
  5540. ],
  5541. "authors": [
  5542. {
  5543. "name": "Fabien Potencier",
  5544. "email": "[email protected]"
  5545. },
  5546. {
  5547. "name": "Symfony Community",
  5548. "homepage": "https://symfony.com/contributors"
  5549. }
  5550. ],
  5551. "description": "Provides tools to internationalize your application",
  5552. "homepage": "https://symfony.com",
  5553. "support": {
  5554. "source": "https://github.com/symfony/translation/tree/v6.4.4"
  5555. },
  5556. "funding": [
  5557. {
  5558. "url": "https://symfony.com/sponsor",
  5559. "type": "custom"
  5560. },
  5561. {
  5562. "url": "https://github.com/fabpot",
  5563. "type": "github"
  5564. },
  5565. {
  5566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5567. "type": "tidelift"
  5568. }
  5569. ],
  5570. "time": "2024-02-20T13:16:58+00:00"
  5571. },
  5572. {
  5573. "name": "symfony/translation-contracts",
  5574. "version": "v3.4.1",
  5575. "source": {
  5576. "type": "git",
  5577. "url": "https://github.com/symfony/translation-contracts.git",
  5578. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  5579. },
  5580. "dist": {
  5581. "type": "zip",
  5582. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  5583. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  5584. "shasum": ""
  5585. },
  5586. "require": {
  5587. "php": ">=8.1"
  5588. },
  5589. "type": "library",
  5590. "extra": {
  5591. "branch-alias": {
  5592. "dev-main": "3.4-dev"
  5593. },
  5594. "thanks": {
  5595. "name": "symfony/contracts",
  5596. "url": "https://github.com/symfony/contracts"
  5597. }
  5598. },
  5599. "autoload": {
  5600. "psr-4": {
  5601. "Symfony\\Contracts\\Translation\\": ""
  5602. },
  5603. "exclude-from-classmap": [
  5604. "/Test/"
  5605. ]
  5606. },
  5607. "notification-url": "https://packagist.org/downloads/",
  5608. "license": [
  5609. "MIT"
  5610. ],
  5611. "authors": [
  5612. {
  5613. "name": "Nicolas Grekas",
  5614. "email": "[email protected]"
  5615. },
  5616. {
  5617. "name": "Symfony Community",
  5618. "homepage": "https://symfony.com/contributors"
  5619. }
  5620. ],
  5621. "description": "Generic abstractions related to translation",
  5622. "homepage": "https://symfony.com",
  5623. "keywords": [
  5624. "abstractions",
  5625. "contracts",
  5626. "decoupling",
  5627. "interfaces",
  5628. "interoperability",
  5629. "standards"
  5630. ],
  5631. "support": {
  5632. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  5633. },
  5634. "funding": [
  5635. {
  5636. "url": "https://symfony.com/sponsor",
  5637. "type": "custom"
  5638. },
  5639. {
  5640. "url": "https://github.com/fabpot",
  5641. "type": "github"
  5642. },
  5643. {
  5644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5645. "type": "tidelift"
  5646. }
  5647. ],
  5648. "time": "2023-12-26T14:02:43+00:00"
  5649. },
  5650. {
  5651. "name": "tronovav/geoip2-update",
  5652. "version": "v2.3.1",
  5653. "source": {
  5654. "type": "git",
  5655. "url": "https://github.com/tronovav/geoip2-update.git",
  5656. "reference": "86fddebc2bd277832846c8d6bb3b059fd093db06"
  5657. },
  5658. "dist": {
  5659. "type": "zip",
  5660. "url": "https://api.github.com/repos/tronovav/geoip2-update/zipball/86fddebc2bd277832846c8d6bb3b059fd093db06",
  5661. "reference": "86fddebc2bd277832846c8d6bb3b059fd093db06",
  5662. "shasum": ""
  5663. },
  5664. "require": {
  5665. "ext-curl": "*",
  5666. "ext-json": "*",
  5667. "php": ">=5.3"
  5668. },
  5669. "suggest": {
  5670. "ext-zip": "Required for updating the CSV databases."
  5671. },
  5672. "type": "library",
  5673. "autoload": {
  5674. "psr-4": {
  5675. "tronovav\\GeoIP2Update\\": "src/"
  5676. }
  5677. },
  5678. "notification-url": "https://packagist.org/downloads/",
  5679. "license": [
  5680. "MIT"
  5681. ],
  5682. "authors": [
  5683. {
  5684. "name": "Andrey Tronov",
  5685. "email": "[email protected]"
  5686. }
  5687. ],
  5688. "description": "Update GeoIP2/GeoLite2 databases from your script, program or via composer.",
  5689. "keywords": [
  5690. "geoip",
  5691. "geoip2",
  5692. "geolite2",
  5693. "geolocation",
  5694. "maxmind"
  5695. ],
  5696. "support": {
  5697. "email": "[email protected]",
  5698. "issues": "https://github.com/tronovav/geoip2-update/issues",
  5699. "source": "https://github.com/tronovav/geoip2-update/tree/v2.3.1"
  5700. },
  5701. "time": "2023-10-25T22:16:50+00:00"
  5702. },
  5703. {
  5704. "name": "twig/twig",
  5705. "version": "v3.8.0",
  5706. "source": {
  5707. "type": "git",
  5708. "url": "https://github.com/twigphp/Twig.git",
  5709. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  5710. },
  5711. "dist": {
  5712. "type": "zip",
  5713. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  5714. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  5715. "shasum": ""
  5716. },
  5717. "require": {
  5718. "php": ">=7.2.5",
  5719. "symfony/polyfill-ctype": "^1.8",
  5720. "symfony/polyfill-mbstring": "^1.3",
  5721. "symfony/polyfill-php80": "^1.22"
  5722. },
  5723. "require-dev": {
  5724. "psr/container": "^1.0|^2.0",
  5725. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  5726. },
  5727. "type": "library",
  5728. "autoload": {
  5729. "psr-4": {
  5730. "Twig\\": "src/"
  5731. }
  5732. },
  5733. "notification-url": "https://packagist.org/downloads/",
  5734. "license": [
  5735. "BSD-3-Clause"
  5736. ],
  5737. "authors": [
  5738. {
  5739. "name": "Fabien Potencier",
  5740. "email": "[email protected]",
  5741. "homepage": "http://fabien.potencier.org",
  5742. "role": "Lead Developer"
  5743. },
  5744. {
  5745. "name": "Twig Team",
  5746. "role": "Contributors"
  5747. },
  5748. {
  5749. "name": "Armin Ronacher",
  5750. "email": "[email protected]",
  5751. "role": "Project Founder"
  5752. }
  5753. ],
  5754. "description": "Twig, the flexible, fast, and secure template language for PHP",
  5755. "homepage": "https://twig.symfony.com",
  5756. "keywords": [
  5757. "templating"
  5758. ],
  5759. "support": {
  5760. "issues": "https://github.com/twigphp/Twig/issues",
  5761. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  5762. },
  5763. "funding": [
  5764. {
  5765. "url": "https://github.com/fabpot",
  5766. "type": "github"
  5767. },
  5768. {
  5769. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  5770. "type": "tidelift"
  5771. }
  5772. ],
  5773. "time": "2023-11-21T18:54:41+00:00"
  5774. },
  5775. {
  5776. "name": "vectorface/googleauthenticator",
  5777. "version": "v3.2",
  5778. "source": {
  5779. "type": "git",
  5780. "url": "https://github.com/Vectorface/GoogleAuthenticator.git",
  5781. "reference": "c98adc40a5a1df104693d16908de74b85e107a1d"
  5782. },
  5783. "dist": {
  5784. "type": "zip",
  5785. "url": "https://api.github.com/repos/Vectorface/GoogleAuthenticator/zipball/c98adc40a5a1df104693d16908de74b85e107a1d",
  5786. "reference": "c98adc40a5a1df104693d16908de74b85e107a1d",
  5787. "shasum": ""
  5788. },
  5789. "require": {
  5790. "endroid/qr-code": "^5.0.0",
  5791. "php": ">=8.1"
  5792. },
  5793. "require-dev": {
  5794. "phpunit/phpunit": "^9"
  5795. },
  5796. "type": "library",
  5797. "autoload": {
  5798. "psr-4": {
  5799. "Vectorface\\": "src/"
  5800. }
  5801. },
  5802. "notification-url": "https://packagist.org/downloads/",
  5803. "license": [
  5804. "BSD-2-Clause"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "Michael Kliewe",
  5809. "email": "[email protected]",
  5810. "homepage": "http://www.phpgangsta.de/",
  5811. "role": "Developer"
  5812. },
  5813. {
  5814. "name": "Francis Lavoie",
  5815. "email": "[email protected]",
  5816. "homepage": "http://vectorface.com/",
  5817. "role": "Developer"
  5818. }
  5819. ],
  5820. "description": "Google Authenticator 2-factor authentication",
  5821. "keywords": [
  5822. "googleauthenticator",
  5823. "rfc6238",
  5824. "totp"
  5825. ],
  5826. "support": {
  5827. "issues": "https://github.com/Vectorface/GoogleAuthenticator/issues",
  5828. "source": "https://github.com/Vectorface/GoogleAuthenticator"
  5829. },
  5830. "time": "2024-01-31T13:05:32+00:00"
  5831. },
  5832. {
  5833. "name": "voku/anti-xss",
  5834. "version": "4.1.42",
  5835. "source": {
  5836. "type": "git",
  5837. "url": "https://github.com/voku/anti-xss.git",
  5838. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675"
  5839. },
  5840. "dist": {
  5841. "type": "zip",
  5842. "url": "https://api.github.com/repos/voku/anti-xss/zipball/bca1f8607e55a3c5077483615cd93bd8f11bd675",
  5843. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675",
  5844. "shasum": ""
  5845. },
  5846. "require": {
  5847. "php": ">=7.0.0",
  5848. "voku/portable-utf8": "~6.0.2"
  5849. },
  5850. "require-dev": {
  5851. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5852. },
  5853. "type": "library",
  5854. "extra": {
  5855. "branch-alias": {
  5856. "dev-master": "4.1.x-dev"
  5857. }
  5858. },
  5859. "autoload": {
  5860. "psr-4": {
  5861. "voku\\helper\\": "src/voku/helper/"
  5862. }
  5863. },
  5864. "notification-url": "https://packagist.org/downloads/",
  5865. "license": [
  5866. "MIT"
  5867. ],
  5868. "authors": [
  5869. {
  5870. "name": "EllisLab Dev Team",
  5871. "homepage": "http://ellislab.com/"
  5872. },
  5873. {
  5874. "name": "Lars Moelleken",
  5875. "email": "[email protected]",
  5876. "homepage": "https://www.moelleken.org/"
  5877. }
  5878. ],
  5879. "description": "anti xss-library",
  5880. "homepage": "https://github.com/voku/anti-xss",
  5881. "keywords": [
  5882. "anti-xss",
  5883. "clean",
  5884. "security",
  5885. "xss"
  5886. ],
  5887. "support": {
  5888. "issues": "https://github.com/voku/anti-xss/issues",
  5889. "source": "https://github.com/voku/anti-xss/tree/4.1.42"
  5890. },
  5891. "funding": [
  5892. {
  5893. "url": "https://www.paypal.me/moelleken",
  5894. "type": "custom"
  5895. },
  5896. {
  5897. "url": "https://github.com/voku",
  5898. "type": "github"
  5899. },
  5900. {
  5901. "url": "https://opencollective.com/anti-xss",
  5902. "type": "open_collective"
  5903. },
  5904. {
  5905. "url": "https://www.patreon.com/voku",
  5906. "type": "patreon"
  5907. },
  5908. {
  5909. "url": "https://tidelift.com/funding/github/packagist/voku/anti-xss",
  5910. "type": "tidelift"
  5911. }
  5912. ],
  5913. "time": "2023-07-03T14:40:46+00:00"
  5914. },
  5915. {
  5916. "name": "voku/portable-ascii",
  5917. "version": "2.0.1",
  5918. "source": {
  5919. "type": "git",
  5920. "url": "https://github.com/voku/portable-ascii.git",
  5921. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  5922. },
  5923. "dist": {
  5924. "type": "zip",
  5925. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  5926. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  5927. "shasum": ""
  5928. },
  5929. "require": {
  5930. "php": ">=7.0.0"
  5931. },
  5932. "require-dev": {
  5933. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5934. },
  5935. "suggest": {
  5936. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5937. },
  5938. "type": "library",
  5939. "autoload": {
  5940. "psr-4": {
  5941. "voku\\": "src/voku/"
  5942. }
  5943. },
  5944. "notification-url": "https://packagist.org/downloads/",
  5945. "license": [
  5946. "MIT"
  5947. ],
  5948. "authors": [
  5949. {
  5950. "name": "Lars Moelleken",
  5951. "homepage": "http://www.moelleken.org/"
  5952. }
  5953. ],
  5954. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5955. "homepage": "https://github.com/voku/portable-ascii",
  5956. "keywords": [
  5957. "ascii",
  5958. "clean",
  5959. "php"
  5960. ],
  5961. "support": {
  5962. "issues": "https://github.com/voku/portable-ascii/issues",
  5963. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  5964. },
  5965. "funding": [
  5966. {
  5967. "url": "https://www.paypal.me/moelleken",
  5968. "type": "custom"
  5969. },
  5970. {
  5971. "url": "https://github.com/voku",
  5972. "type": "github"
  5973. },
  5974. {
  5975. "url": "https://opencollective.com/portable-ascii",
  5976. "type": "open_collective"
  5977. },
  5978. {
  5979. "url": "https://www.patreon.com/voku",
  5980. "type": "patreon"
  5981. },
  5982. {
  5983. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5984. "type": "tidelift"
  5985. }
  5986. ],
  5987. "time": "2022-03-08T17:03:00+00:00"
  5988. },
  5989. {
  5990. "name": "voku/portable-utf8",
  5991. "version": "6.0.13",
  5992. "source": {
  5993. "type": "git",
  5994. "url": "https://github.com/voku/portable-utf8.git",
  5995. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f"
  5996. },
  5997. "dist": {
  5998. "type": "zip",
  5999. "url": "https://api.github.com/repos/voku/portable-utf8/zipball/b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6000. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6001. "shasum": ""
  6002. },
  6003. "require": {
  6004. "php": ">=7.0.0",
  6005. "symfony/polyfill-iconv": "~1.0",
  6006. "symfony/polyfill-intl-grapheme": "~1.0",
  6007. "symfony/polyfill-intl-normalizer": "~1.0",
  6008. "symfony/polyfill-mbstring": "~1.0",
  6009. "symfony/polyfill-php72": "~1.0",
  6010. "voku/portable-ascii": "~2.0.0"
  6011. },
  6012. "require-dev": {
  6013. "phpstan/phpstan": "1.9.*@dev",
  6014. "phpstan/phpstan-strict-rules": "1.4.*@dev",
  6015. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0",
  6016. "thecodingmachine/phpstan-strict-rules": "1.0.*@dev",
  6017. "voku/phpstan-rules": "3.1.*@dev"
  6018. },
  6019. "suggest": {
  6020. "ext-ctype": "Use Ctype for e.g. hexadecimal digit detection",
  6021. "ext-fileinfo": "Use Fileinfo for better binary file detection",
  6022. "ext-iconv": "Use iconv for best performance",
  6023. "ext-intl": "Use Intl for best performance",
  6024. "ext-json": "Use JSON for string detection",
  6025. "ext-mbstring": "Use Mbstring for best performance"
  6026. },
  6027. "type": "library",
  6028. "autoload": {
  6029. "files": [
  6030. "bootstrap.php"
  6031. ],
  6032. "psr-4": {
  6033. "voku\\": "src/voku/"
  6034. }
  6035. },
  6036. "notification-url": "https://packagist.org/downloads/",
  6037. "license": [
  6038. "(Apache-2.0 or GPL-2.0)"
  6039. ],
  6040. "authors": [
  6041. {
  6042. "name": "Nicolas Grekas",
  6043. "email": "[email protected]"
  6044. },
  6045. {
  6046. "name": "Hamid Sarfraz",
  6047. "homepage": "http://pageconfig.com/"
  6048. },
  6049. {
  6050. "name": "Lars Moelleken",
  6051. "homepage": "http://www.moelleken.org/"
  6052. }
  6053. ],
  6054. "description": "Portable UTF-8 library - performance optimized (unicode) string functions for php.",
  6055. "homepage": "https://github.com/voku/portable-utf8",
  6056. "keywords": [
  6057. "UTF",
  6058. "clean",
  6059. "php",
  6060. "unicode",
  6061. "utf-8",
  6062. "utf8"
  6063. ],
  6064. "support": {
  6065. "issues": "https://github.com/voku/portable-utf8/issues",
  6066. "source": "https://github.com/voku/portable-utf8/tree/6.0.13"
  6067. },
  6068. "funding": [
  6069. {
  6070. "url": "https://www.paypal.me/moelleken",
  6071. "type": "custom"
  6072. },
  6073. {
  6074. "url": "https://github.com/voku",
  6075. "type": "github"
  6076. },
  6077. {
  6078. "url": "https://opencollective.com/portable-utf8",
  6079. "type": "open_collective"
  6080. },
  6081. {
  6082. "url": "https://www.patreon.com/voku",
  6083. "type": "patreon"
  6084. },
  6085. {
  6086. "url": "https://tidelift.com/funding/github/packagist/voku/portable-utf8",
  6087. "type": "tidelift"
  6088. }
  6089. ],
  6090. "time": "2023-03-08T08:35:38+00:00"
  6091. },
  6092. {
  6093. "name": "webmozart/assert",
  6094. "version": "1.11.0",
  6095. "source": {
  6096. "type": "git",
  6097. "url": "https://github.com/webmozarts/assert.git",
  6098. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6099. },
  6100. "dist": {
  6101. "type": "zip",
  6102. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6103. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6104. "shasum": ""
  6105. },
  6106. "require": {
  6107. "ext-ctype": "*",
  6108. "php": "^7.2 || ^8.0"
  6109. },
  6110. "conflict": {
  6111. "phpstan/phpstan": "<0.12.20",
  6112. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6113. },
  6114. "require-dev": {
  6115. "phpunit/phpunit": "^8.5.13"
  6116. },
  6117. "type": "library",
  6118. "extra": {
  6119. "branch-alias": {
  6120. "dev-master": "1.10-dev"
  6121. }
  6122. },
  6123. "autoload": {
  6124. "psr-4": {
  6125. "Webmozart\\Assert\\": "src/"
  6126. }
  6127. },
  6128. "notification-url": "https://packagist.org/downloads/",
  6129. "license": [
  6130. "MIT"
  6131. ],
  6132. "authors": [
  6133. {
  6134. "name": "Bernhard Schussek",
  6135. "email": "[email protected]"
  6136. }
  6137. ],
  6138. "description": "Assertions to validate method input/output with nice error messages.",
  6139. "keywords": [
  6140. "assert",
  6141. "check",
  6142. "validate"
  6143. ],
  6144. "support": {
  6145. "issues": "https://github.com/webmozarts/assert/issues",
  6146. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6147. },
  6148. "time": "2022-06-03T18:03:27+00:00"
  6149. }
  6150. ],
  6151. "packages-dev": [
  6152. {
  6153. "name": "cmgmyr/phploc",
  6154. "version": "8.0.3",
  6155. "source": {
  6156. "type": "git",
  6157. "url": "https://github.com/cmgmyr/phploc.git",
  6158. "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f"
  6159. },
  6160. "dist": {
  6161. "type": "zip",
  6162. "url": "https://api.github.com/repos/cmgmyr/phploc/zipball/e61d4729df46c5920ab61973bfa3f70f81a70b5f",
  6163. "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f",
  6164. "shasum": ""
  6165. },
  6166. "require": {
  6167. "ext-dom": "*",
  6168. "ext-json": "*",
  6169. "php": "^7.4 || ^8.0",
  6170. "phpunit/php-file-iterator": "^3.0|^4.0",
  6171. "sebastian/cli-parser": "^1.0|^2.0"
  6172. },
  6173. "require-dev": {
  6174. "friendsofphp/php-cs-fixer": "^3.2",
  6175. "phpunit/phpunit": "^9.0|^10.0",
  6176. "vimeo/psalm": "^5.7"
  6177. },
  6178. "bin": [
  6179. "phploc"
  6180. ],
  6181. "type": "library",
  6182. "extra": {
  6183. "branch-alias": {
  6184. "dev-main": "8.0-dev"
  6185. }
  6186. },
  6187. "autoload": {
  6188. "classmap": [
  6189. "src/"
  6190. ]
  6191. },
  6192. "notification-url": "https://packagist.org/downloads/",
  6193. "license": [
  6194. "BSD-3-Clause"
  6195. ],
  6196. "authors": [
  6197. {
  6198. "name": "Chris Gmyr",
  6199. "email": "[email protected]",
  6200. "role": "lead"
  6201. }
  6202. ],
  6203. "description": "A tool for quickly measuring the size of a PHP project.",
  6204. "homepage": "https://github.com/cmgmyr/phploc",
  6205. "support": {
  6206. "issues": "https://github.com/cmgmyr/phploc/issues",
  6207. "source": "https://github.com/cmgmyr/phploc/tree/8.0.3"
  6208. },
  6209. "funding": [
  6210. {
  6211. "url": "https://github.com/cmgmyr",
  6212. "type": "github"
  6213. }
  6214. ],
  6215. "time": "2023-08-05T16:49:39+00:00"
  6216. },
  6217. {
  6218. "name": "composer/pcre",
  6219. "version": "3.1.1",
  6220. "source": {
  6221. "type": "git",
  6222. "url": "https://github.com/composer/pcre.git",
  6223. "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9"
  6224. },
  6225. "dist": {
  6226. "type": "zip",
  6227. "url": "https://api.github.com/repos/composer/pcre/zipball/00104306927c7a0919b4ced2aaa6782c1e61a3c9",
  6228. "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9",
  6229. "shasum": ""
  6230. },
  6231. "require": {
  6232. "php": "^7.4 || ^8.0"
  6233. },
  6234. "require-dev": {
  6235. "phpstan/phpstan": "^1.3",
  6236. "phpstan/phpstan-strict-rules": "^1.1",
  6237. "symfony/phpunit-bridge": "^5"
  6238. },
  6239. "type": "library",
  6240. "extra": {
  6241. "branch-alias": {
  6242. "dev-main": "3.x-dev"
  6243. }
  6244. },
  6245. "autoload": {
  6246. "psr-4": {
  6247. "Composer\\Pcre\\": "src"
  6248. }
  6249. },
  6250. "notification-url": "https://packagist.org/downloads/",
  6251. "license": [
  6252. "MIT"
  6253. ],
  6254. "authors": [
  6255. {
  6256. "name": "Jordi Boggiano",
  6257. "email": "[email protected]",
  6258. "homepage": "http://seld.be"
  6259. }
  6260. ],
  6261. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6262. "keywords": [
  6263. "PCRE",
  6264. "preg",
  6265. "regex",
  6266. "regular expression"
  6267. ],
  6268. "support": {
  6269. "issues": "https://github.com/composer/pcre/issues",
  6270. "source": "https://github.com/composer/pcre/tree/3.1.1"
  6271. },
  6272. "funding": [
  6273. {
  6274. "url": "https://packagist.com",
  6275. "type": "custom"
  6276. },
  6277. {
  6278. "url": "https://github.com/composer",
  6279. "type": "github"
  6280. },
  6281. {
  6282. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6283. "type": "tidelift"
  6284. }
  6285. ],
  6286. "time": "2023-10-11T07:11:09+00:00"
  6287. },
  6288. {
  6289. "name": "composer/semver",
  6290. "version": "3.4.0",
  6291. "source": {
  6292. "type": "git",
  6293. "url": "https://github.com/composer/semver.git",
  6294. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  6295. },
  6296. "dist": {
  6297. "type": "zip",
  6298. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  6299. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  6300. "shasum": ""
  6301. },
  6302. "require": {
  6303. "php": "^5.3.2 || ^7.0 || ^8.0"
  6304. },
  6305. "require-dev": {
  6306. "phpstan/phpstan": "^1.4",
  6307. "symfony/phpunit-bridge": "^4.2 || ^5"
  6308. },
  6309. "type": "library",
  6310. "extra": {
  6311. "branch-alias": {
  6312. "dev-main": "3.x-dev"
  6313. }
  6314. },
  6315. "autoload": {
  6316. "psr-4": {
  6317. "Composer\\Semver\\": "src"
  6318. }
  6319. },
  6320. "notification-url": "https://packagist.org/downloads/",
  6321. "license": [
  6322. "MIT"
  6323. ],
  6324. "authors": [
  6325. {
  6326. "name": "Nils Adermann",
  6327. "email": "[email protected]",
  6328. "homepage": "http://www.naderman.de"
  6329. },
  6330. {
  6331. "name": "Jordi Boggiano",
  6332. "email": "[email protected]",
  6333. "homepage": "http://seld.be"
  6334. },
  6335. {
  6336. "name": "Rob Bast",
  6337. "email": "[email protected]",
  6338. "homepage": "http://robbast.nl"
  6339. }
  6340. ],
  6341. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6342. "keywords": [
  6343. "semantic",
  6344. "semver",
  6345. "validation",
  6346. "versioning"
  6347. ],
  6348. "support": {
  6349. "irc": "ircs://irc.libera.chat:6697/composer",
  6350. "issues": "https://github.com/composer/semver/issues",
  6351. "source": "https://github.com/composer/semver/tree/3.4.0"
  6352. },
  6353. "funding": [
  6354. {
  6355. "url": "https://packagist.com",
  6356. "type": "custom"
  6357. },
  6358. {
  6359. "url": "https://github.com/composer",
  6360. "type": "github"
  6361. },
  6362. {
  6363. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6364. "type": "tidelift"
  6365. }
  6366. ],
  6367. "time": "2023-08-31T09:50:34+00:00"
  6368. },
  6369. {
  6370. "name": "composer/xdebug-handler",
  6371. "version": "3.0.3",
  6372. "source": {
  6373. "type": "git",
  6374. "url": "https://github.com/composer/xdebug-handler.git",
  6375. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  6376. },
  6377. "dist": {
  6378. "type": "zip",
  6379. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  6380. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  6381. "shasum": ""
  6382. },
  6383. "require": {
  6384. "composer/pcre": "^1 || ^2 || ^3",
  6385. "php": "^7.2.5 || ^8.0",
  6386. "psr/log": "^1 || ^2 || ^3"
  6387. },
  6388. "require-dev": {
  6389. "phpstan/phpstan": "^1.0",
  6390. "phpstan/phpstan-strict-rules": "^1.1",
  6391. "symfony/phpunit-bridge": "^6.0"
  6392. },
  6393. "type": "library",
  6394. "autoload": {
  6395. "psr-4": {
  6396. "Composer\\XdebugHandler\\": "src"
  6397. }
  6398. },
  6399. "notification-url": "https://packagist.org/downloads/",
  6400. "license": [
  6401. "MIT"
  6402. ],
  6403. "authors": [
  6404. {
  6405. "name": "John Stevenson",
  6406. "email": "[email protected]"
  6407. }
  6408. ],
  6409. "description": "Restarts a process without Xdebug.",
  6410. "keywords": [
  6411. "Xdebug",
  6412. "performance"
  6413. ],
  6414. "support": {
  6415. "irc": "irc://irc.freenode.org/composer",
  6416. "issues": "https://github.com/composer/xdebug-handler/issues",
  6417. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  6418. },
  6419. "funding": [
  6420. {
  6421. "url": "https://packagist.com",
  6422. "type": "custom"
  6423. },
  6424. {
  6425. "url": "https://github.com/composer",
  6426. "type": "github"
  6427. },
  6428. {
  6429. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6430. "type": "tidelift"
  6431. }
  6432. ],
  6433. "time": "2022-02-25T21:32:43+00:00"
  6434. },
  6435. {
  6436. "name": "dealerdirect/phpcodesniffer-composer-installer",
  6437. "version": "v1.0.0",
  6438. "source": {
  6439. "type": "git",
  6440. "url": "https://github.com/PHPCSStandards/composer-installer.git",
  6441. "reference": "4be43904336affa5c2f70744a348312336afd0da"
  6442. },
  6443. "dist": {
  6444. "type": "zip",
  6445. "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da",
  6446. "reference": "4be43904336affa5c2f70744a348312336afd0da",
  6447. "shasum": ""
  6448. },
  6449. "require": {
  6450. "composer-plugin-api": "^1.0 || ^2.0",
  6451. "php": ">=5.4",
  6452. "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
  6453. },
  6454. "require-dev": {
  6455. "composer/composer": "*",
  6456. "ext-json": "*",
  6457. "ext-zip": "*",
  6458. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  6459. "phpcompatibility/php-compatibility": "^9.0",
  6460. "yoast/phpunit-polyfills": "^1.0"
  6461. },
  6462. "type": "composer-plugin",
  6463. "extra": {
  6464. "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  6465. },
  6466. "autoload": {
  6467. "psr-4": {
  6468. "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  6469. }
  6470. },
  6471. "notification-url": "https://packagist.org/downloads/",
  6472. "license": [
  6473. "MIT"
  6474. ],
  6475. "authors": [
  6476. {
  6477. "name": "Franck Nijhof",
  6478. "email": "[email protected]",
  6479. "homepage": "http://www.frenck.nl",
  6480. "role": "Developer / IT Manager"
  6481. },
  6482. {
  6483. "name": "Contributors",
  6484. "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
  6485. }
  6486. ],
  6487. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  6488. "homepage": "http://www.dealerdirect.com",
  6489. "keywords": [
  6490. "PHPCodeSniffer",
  6491. "PHP_CodeSniffer",
  6492. "code quality",
  6493. "codesniffer",
  6494. "composer",
  6495. "installer",
  6496. "phpcbf",
  6497. "phpcs",
  6498. "plugin",
  6499. "qa",
  6500. "quality",
  6501. "standard",
  6502. "standards",
  6503. "style guide",
  6504. "stylecheck",
  6505. "tests"
  6506. ],
  6507. "support": {
  6508. "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
  6509. "source": "https://github.com/PHPCSStandards/composer-installer"
  6510. },
  6511. "time": "2023-01-05T11:28:13+00:00"
  6512. },
  6513. {
  6514. "name": "dg/bypass-finals",
  6515. "version": "v1.6.0",
  6516. "source": {
  6517. "type": "git",
  6518. "url": "https://github.com/dg/bypass-finals.git",
  6519. "reference": "efe2fe04bae9f0de271dd462afc049067889e6d1"
  6520. },
  6521. "dist": {
  6522. "type": "zip",
  6523. "url": "https://api.github.com/repos/dg/bypass-finals/zipball/efe2fe04bae9f0de271dd462afc049067889e6d1",
  6524. "reference": "efe2fe04bae9f0de271dd462afc049067889e6d1",
  6525. "shasum": ""
  6526. },
  6527. "require": {
  6528. "php": ">=7.1"
  6529. },
  6530. "require-dev": {
  6531. "nette/tester": "^2.3",
  6532. "phpstan/phpstan": "^0.12"
  6533. },
  6534. "type": "library",
  6535. "autoload": {
  6536. "classmap": [
  6537. "src/"
  6538. ]
  6539. },
  6540. "notification-url": "https://packagist.org/downloads/",
  6541. "license": [
  6542. "BSD-3-Clause",
  6543. "GPL-2.0",
  6544. "GPL-3.0"
  6545. ],
  6546. "authors": [
  6547. {
  6548. "name": "David Grudl",
  6549. "homepage": "https://davidgrudl.com"
  6550. }
  6551. ],
  6552. "description": "Removes final keyword from source code on-the-fly and allows mocking of final methods and classes",
  6553. "keywords": [
  6554. "finals",
  6555. "mocking",
  6556. "phpunit",
  6557. "testing",
  6558. "unit"
  6559. ],
  6560. "support": {
  6561. "issues": "https://github.com/dg/bypass-finals/issues",
  6562. "source": "https://github.com/dg/bypass-finals/tree/v1.6.0"
  6563. },
  6564. "time": "2023-11-19T22:19:30+00:00"
  6565. },
  6566. {
  6567. "name": "friendsofphp/php-cs-fixer",
  6568. "version": "v3.51.0",
  6569. "source": {
  6570. "type": "git",
  6571. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  6572. "reference": "127fa74f010da99053e3f5b62672615b72dd6efd"
  6573. },
  6574. "dist": {
  6575. "type": "zip",
  6576. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/127fa74f010da99053e3f5b62672615b72dd6efd",
  6577. "reference": "127fa74f010da99053e3f5b62672615b72dd6efd",
  6578. "shasum": ""
  6579. },
  6580. "require": {
  6581. "composer/semver": "^3.4",
  6582. "composer/xdebug-handler": "^3.0.3",
  6583. "ext-filter": "*",
  6584. "ext-json": "*",
  6585. "ext-tokenizer": "*",
  6586. "php": "^7.4 || ^8.0",
  6587. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  6588. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  6589. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  6590. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  6591. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  6592. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  6593. "symfony/polyfill-mbstring": "^1.28",
  6594. "symfony/polyfill-php80": "^1.28",
  6595. "symfony/polyfill-php81": "^1.28",
  6596. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  6597. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  6598. },
  6599. "require-dev": {
  6600. "facile-it/paraunit": "^1.3 || ^2.0",
  6601. "justinrainbow/json-schema": "^5.2",
  6602. "keradus/cli-executor": "^2.1",
  6603. "mikey179/vfsstream": "^1.6.11",
  6604. "php-coveralls/php-coveralls": "^2.7",
  6605. "php-cs-fixer/accessible-object": "^1.1",
  6606. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  6607. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  6608. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  6609. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  6610. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  6611. },
  6612. "suggest": {
  6613. "ext-dom": "For handling output formats in XML",
  6614. "ext-mbstring": "For handling non-UTF8 characters."
  6615. },
  6616. "bin": [
  6617. "php-cs-fixer"
  6618. ],
  6619. "type": "application",
  6620. "autoload": {
  6621. "psr-4": {
  6622. "PhpCsFixer\\": "src/"
  6623. }
  6624. },
  6625. "notification-url": "https://packagist.org/downloads/",
  6626. "license": [
  6627. "MIT"
  6628. ],
  6629. "authors": [
  6630. {
  6631. "name": "Fabien Potencier",
  6632. "email": "[email protected]"
  6633. },
  6634. {
  6635. "name": "Dariusz Rumiński",
  6636. "email": "[email protected]"
  6637. }
  6638. ],
  6639. "description": "A tool to automatically fix PHP code style",
  6640. "keywords": [
  6641. "Static code analysis",
  6642. "fixer",
  6643. "standards",
  6644. "static analysis"
  6645. ],
  6646. "support": {
  6647. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  6648. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.51.0"
  6649. },
  6650. "funding": [
  6651. {
  6652. "url": "https://github.com/keradus",
  6653. "type": "github"
  6654. }
  6655. ],
  6656. "time": "2024-02-28T19:50:06+00:00"
  6657. },
  6658. {
  6659. "name": "justinrainbow/json-schema",
  6660. "version": "v5.2.13",
  6661. "source": {
  6662. "type": "git",
  6663. "url": "https://github.com/justinrainbow/json-schema.git",
  6664. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
  6665. },
  6666. "dist": {
  6667. "type": "zip",
  6668. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
  6669. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
  6670. "shasum": ""
  6671. },
  6672. "require": {
  6673. "php": ">=5.3.3"
  6674. },
  6675. "require-dev": {
  6676. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  6677. "json-schema/json-schema-test-suite": "1.2.0",
  6678. "phpunit/phpunit": "^4.8.35"
  6679. },
  6680. "bin": [
  6681. "bin/validate-json"
  6682. ],
  6683. "type": "library",
  6684. "extra": {
  6685. "branch-alias": {
  6686. "dev-master": "5.0.x-dev"
  6687. }
  6688. },
  6689. "autoload": {
  6690. "psr-4": {
  6691. "JsonSchema\\": "src/JsonSchema/"
  6692. }
  6693. },
  6694. "notification-url": "https://packagist.org/downloads/",
  6695. "license": [
  6696. "MIT"
  6697. ],
  6698. "authors": [
  6699. {
  6700. "name": "Bruno Prieto Reis",
  6701. "email": "[email protected]"
  6702. },
  6703. {
  6704. "name": "Justin Rainbow",
  6705. "email": "[email protected]"
  6706. },
  6707. {
  6708. "name": "Igor Wiedler",
  6709. "email": "[email protected]"
  6710. },
  6711. {
  6712. "name": "Robert Schönthal",
  6713. "email": "[email protected]"
  6714. }
  6715. ],
  6716. "description": "A library to validate a json schema.",
  6717. "homepage": "https://github.com/justinrainbow/json-schema",
  6718. "keywords": [
  6719. "json",
  6720. "schema"
  6721. ],
  6722. "support": {
  6723. "issues": "https://github.com/justinrainbow/json-schema/issues",
  6724. "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
  6725. },
  6726. "time": "2023-09-26T02:20:38+00:00"
  6727. },
  6728. {
  6729. "name": "league/container",
  6730. "version": "4.2.0",
  6731. "source": {
  6732. "type": "git",
  6733. "url": "https://github.com/thephpleague/container.git",
  6734. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  6735. },
  6736. "dist": {
  6737. "type": "zip",
  6738. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  6739. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  6740. "shasum": ""
  6741. },
  6742. "require": {
  6743. "php": "^7.2 || ^8.0",
  6744. "psr/container": "^1.1 || ^2.0"
  6745. },
  6746. "provide": {
  6747. "psr/container-implementation": "^1.0"
  6748. },
  6749. "replace": {
  6750. "orno/di": "~2.0"
  6751. },
  6752. "require-dev": {
  6753. "nette/php-generator": "^3.4",
  6754. "nikic/php-parser": "^4.10",
  6755. "phpstan/phpstan": "^0.12.47",
  6756. "phpunit/phpunit": "^8.5.17",
  6757. "roave/security-advisories": "dev-latest",
  6758. "scrutinizer/ocular": "^1.8",
  6759. "squizlabs/php_codesniffer": "^3.6"
  6760. },
  6761. "type": "library",
  6762. "extra": {
  6763. "branch-alias": {
  6764. "dev-master": "4.x-dev",
  6765. "dev-4.x": "4.x-dev",
  6766. "dev-3.x": "3.x-dev",
  6767. "dev-2.x": "2.x-dev",
  6768. "dev-1.x": "1.x-dev"
  6769. }
  6770. },
  6771. "autoload": {
  6772. "psr-4": {
  6773. "League\\Container\\": "src"
  6774. }
  6775. },
  6776. "notification-url": "https://packagist.org/downloads/",
  6777. "license": [
  6778. "MIT"
  6779. ],
  6780. "authors": [
  6781. {
  6782. "name": "Phil Bennett",
  6783. "email": "[email protected]",
  6784. "role": "Developer"
  6785. }
  6786. ],
  6787. "description": "A fast and intuitive dependency injection container.",
  6788. "homepage": "https://github.com/thephpleague/container",
  6789. "keywords": [
  6790. "container",
  6791. "dependency",
  6792. "di",
  6793. "injection",
  6794. "league",
  6795. "provider",
  6796. "service"
  6797. ],
  6798. "support": {
  6799. "issues": "https://github.com/thephpleague/container/issues",
  6800. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  6801. },
  6802. "funding": [
  6803. {
  6804. "url": "https://github.com/philipobenito",
  6805. "type": "github"
  6806. }
  6807. ],
  6808. "time": "2021-11-16T10:29:06+00:00"
  6809. },
  6810. {
  6811. "name": "myclabs/deep-copy",
  6812. "version": "1.11.1",
  6813. "source": {
  6814. "type": "git",
  6815. "url": "https://github.com/myclabs/DeepCopy.git",
  6816. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  6817. },
  6818. "dist": {
  6819. "type": "zip",
  6820. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  6821. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  6822. "shasum": ""
  6823. },
  6824. "require": {
  6825. "php": "^7.1 || ^8.0"
  6826. },
  6827. "conflict": {
  6828. "doctrine/collections": "<1.6.8",
  6829. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  6830. },
  6831. "require-dev": {
  6832. "doctrine/collections": "^1.6.8",
  6833. "doctrine/common": "^2.13.3 || ^3.2.2",
  6834. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  6835. },
  6836. "type": "library",
  6837. "autoload": {
  6838. "files": [
  6839. "src/DeepCopy/deep_copy.php"
  6840. ],
  6841. "psr-4": {
  6842. "DeepCopy\\": "src/DeepCopy/"
  6843. }
  6844. },
  6845. "notification-url": "https://packagist.org/downloads/",
  6846. "license": [
  6847. "MIT"
  6848. ],
  6849. "description": "Create deep copies (clones) of your objects",
  6850. "keywords": [
  6851. "clone",
  6852. "copy",
  6853. "duplicate",
  6854. "object",
  6855. "object graph"
  6856. ],
  6857. "support": {
  6858. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6859. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  6860. },
  6861. "funding": [
  6862. {
  6863. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6864. "type": "tidelift"
  6865. }
  6866. ],
  6867. "time": "2023-03-08T13:26:56+00:00"
  6868. },
  6869. {
  6870. "name": "nikic/php-parser",
  6871. "version": "v5.0.2",
  6872. "source": {
  6873. "type": "git",
  6874. "url": "https://github.com/nikic/PHP-Parser.git",
  6875. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13"
  6876. },
  6877. "dist": {
  6878. "type": "zip",
  6879. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13",
  6880. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13",
  6881. "shasum": ""
  6882. },
  6883. "require": {
  6884. "ext-ctype": "*",
  6885. "ext-json": "*",
  6886. "ext-tokenizer": "*",
  6887. "php": ">=7.4"
  6888. },
  6889. "require-dev": {
  6890. "ircmaxell/php-yacc": "^0.0.7",
  6891. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  6892. },
  6893. "bin": [
  6894. "bin/php-parse"
  6895. ],
  6896. "type": "library",
  6897. "extra": {
  6898. "branch-alias": {
  6899. "dev-master": "5.0-dev"
  6900. }
  6901. },
  6902. "autoload": {
  6903. "psr-4": {
  6904. "PhpParser\\": "lib/PhpParser"
  6905. }
  6906. },
  6907. "notification-url": "https://packagist.org/downloads/",
  6908. "license": [
  6909. "BSD-3-Clause"
  6910. ],
  6911. "authors": [
  6912. {
  6913. "name": "Nikita Popov"
  6914. }
  6915. ],
  6916. "description": "A PHP parser written in PHP",
  6917. "keywords": [
  6918. "parser",
  6919. "php"
  6920. ],
  6921. "support": {
  6922. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6923. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2"
  6924. },
  6925. "time": "2024-03-05T20:51:40+00:00"
  6926. },
  6927. {
  6928. "name": "nunomaduro/phpinsights",
  6929. "version": "v2.11.0",
  6930. "source": {
  6931. "type": "git",
  6932. "url": "https://github.com/nunomaduro/phpinsights.git",
  6933. "reference": "f476219759a61aad988641476259465c77203383"
  6934. },
  6935. "dist": {
  6936. "type": "zip",
  6937. "url": "https://api.github.com/repos/nunomaduro/phpinsights/zipball/f476219759a61aad988641476259465c77203383",
  6938. "reference": "f476219759a61aad988641476259465c77203383",
  6939. "shasum": ""
  6940. },
  6941. "require": {
  6942. "cmgmyr/phploc": "^8.0.3",
  6943. "composer/semver": "^3.4",
  6944. "ext-iconv": "*",
  6945. "ext-json": "*",
  6946. "ext-mbstring": "*",
  6947. "ext-tokenizer": "*",
  6948. "friendsofphp/php-cs-fixer": "^3.40.0",
  6949. "justinrainbow/json-schema": "^5.2.13",
  6950. "league/container": "^3.2|^4.2",
  6951. "php": "^7.4|^8.0",
  6952. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  6953. "psr/container": "^1.0|^2.0.2",
  6954. "psr/simple-cache": "^1.0|^2.0|^3.0",
  6955. "sebastian/diff": "^4.0|^5.0.3",
  6956. "slevomat/coding-standard": "^8.14.1",
  6957. "squizlabs/php_codesniffer": "^3.7.2",
  6958. "symfony/cache": "^5.4|^6.0|^7.0",
  6959. "symfony/console": "^5.4|^6.4|^7.0",
  6960. "symfony/finder": "^5.4|^6.0|^7.0",
  6961. "symfony/http-client": "^5.4|^6.0|^7.0",
  6962. "symfony/process": "^5.4|^6.4|^7.0"
  6963. },
  6964. "require-dev": {
  6965. "ergebnis/phpstan-rules": "^0.15.3",
  6966. "illuminate/console": "^5.8|^6.0|^7.0|^8.0|^9.20|^10.0",
  6967. "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.52.16|^10.0",
  6968. "mockery/mockery": "^1.6.6",
  6969. "phpstan/phpstan-strict-rules": "^0.12.11",
  6970. "phpunit/phpunit": "^8.0|^9.0|^10.4.2",
  6971. "rector/rector": "0.11.56",
  6972. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  6973. "thecodingmachine/phpstan-strict-rules": "^0.12.2"
  6974. },
  6975. "suggest": {
  6976. "ext-simplexml": "It is needed for the checkstyle formatter"
  6977. },
  6978. "bin": [
  6979. "bin/phpinsights"
  6980. ],
  6981. "type": "library",
  6982. "extra": {
  6983. "laravel": {
  6984. "providers": [
  6985. "NunoMaduro\\PhpInsights\\Application\\Adapters\\Laravel\\InsightsServiceProvider"
  6986. ]
  6987. }
  6988. },
  6989. "autoload": {
  6990. "psr-4": {
  6991. "NunoMaduro\\PhpInsights\\": "src"
  6992. }
  6993. },
  6994. "notification-url": "https://packagist.org/downloads/",
  6995. "license": [
  6996. "MIT"
  6997. ],
  6998. "authors": [
  6999. {
  7000. "name": "Nuno Maduro",
  7001. "email": "[email protected]"
  7002. }
  7003. ],
  7004. "description": "Instant PHP quality checks from your console.",
  7005. "keywords": [
  7006. "Insights",
  7007. "code",
  7008. "console",
  7009. "php",
  7010. "quality",
  7011. "source"
  7012. ],
  7013. "support": {
  7014. "issues": "https://github.com/nunomaduro/phpinsights/issues",
  7015. "source": "https://github.com/nunomaduro/phpinsights/tree/v2.11.0"
  7016. },
  7017. "funding": [
  7018. {
  7019. "url": "https://github.com/JustSteveKing",
  7020. "type": "github"
  7021. },
  7022. {
  7023. "url": "https://github.com/cmgmyr",
  7024. "type": "github"
  7025. },
  7026. {
  7027. "url": "https://github.com/nunomaduro",
  7028. "type": "github"
  7029. }
  7030. ],
  7031. "time": "2023-11-30T10:54:50+00:00"
  7032. },
  7033. {
  7034. "name": "phar-io/manifest",
  7035. "version": "2.0.4",
  7036. "source": {
  7037. "type": "git",
  7038. "url": "https://github.com/phar-io/manifest.git",
  7039. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7040. },
  7041. "dist": {
  7042. "type": "zip",
  7043. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7044. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7045. "shasum": ""
  7046. },
  7047. "require": {
  7048. "ext-dom": "*",
  7049. "ext-libxml": "*",
  7050. "ext-phar": "*",
  7051. "ext-xmlwriter": "*",
  7052. "phar-io/version": "^3.0.1",
  7053. "php": "^7.2 || ^8.0"
  7054. },
  7055. "type": "library",
  7056. "extra": {
  7057. "branch-alias": {
  7058. "dev-master": "2.0.x-dev"
  7059. }
  7060. },
  7061. "autoload": {
  7062. "classmap": [
  7063. "src/"
  7064. ]
  7065. },
  7066. "notification-url": "https://packagist.org/downloads/",
  7067. "license": [
  7068. "BSD-3-Clause"
  7069. ],
  7070. "authors": [
  7071. {
  7072. "name": "Arne Blankerts",
  7073. "email": "[email protected]",
  7074. "role": "Developer"
  7075. },
  7076. {
  7077. "name": "Sebastian Heuer",
  7078. "email": "[email protected]",
  7079. "role": "Developer"
  7080. },
  7081. {
  7082. "name": "Sebastian Bergmann",
  7083. "email": "[email protected]",
  7084. "role": "Developer"
  7085. }
  7086. ],
  7087. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7088. "support": {
  7089. "issues": "https://github.com/phar-io/manifest/issues",
  7090. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7091. },
  7092. "funding": [
  7093. {
  7094. "url": "https://github.com/theseer",
  7095. "type": "github"
  7096. }
  7097. ],
  7098. "time": "2024-03-03T12:33:53+00:00"
  7099. },
  7100. {
  7101. "name": "phar-io/version",
  7102. "version": "3.2.1",
  7103. "source": {
  7104. "type": "git",
  7105. "url": "https://github.com/phar-io/version.git",
  7106. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7107. },
  7108. "dist": {
  7109. "type": "zip",
  7110. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7111. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7112. "shasum": ""
  7113. },
  7114. "require": {
  7115. "php": "^7.2 || ^8.0"
  7116. },
  7117. "type": "library",
  7118. "autoload": {
  7119. "classmap": [
  7120. "src/"
  7121. ]
  7122. },
  7123. "notification-url": "https://packagist.org/downloads/",
  7124. "license": [
  7125. "BSD-3-Clause"
  7126. ],
  7127. "authors": [
  7128. {
  7129. "name": "Arne Blankerts",
  7130. "email": "[email protected]",
  7131. "role": "Developer"
  7132. },
  7133. {
  7134. "name": "Sebastian Heuer",
  7135. "email": "[email protected]",
  7136. "role": "Developer"
  7137. },
  7138. {
  7139. "name": "Sebastian Bergmann",
  7140. "email": "[email protected]",
  7141. "role": "Developer"
  7142. }
  7143. ],
  7144. "description": "Library for handling version information and constraints",
  7145. "support": {
  7146. "issues": "https://github.com/phar-io/version/issues",
  7147. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7148. },
  7149. "time": "2022-02-21T01:04:05+00:00"
  7150. },
  7151. {
  7152. "name": "php-parallel-lint/php-parallel-lint",
  7153. "version": "v1.3.2",
  7154. "source": {
  7155. "type": "git",
  7156. "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
  7157. "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de"
  7158. },
  7159. "dist": {
  7160. "type": "zip",
  7161. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6483c9832e71973ed29cf71bd6b3f4fde438a9de",
  7162. "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de",
  7163. "shasum": ""
  7164. },
  7165. "require": {
  7166. "ext-json": "*",
  7167. "php": ">=5.3.0"
  7168. },
  7169. "replace": {
  7170. "grogy/php-parallel-lint": "*",
  7171. "jakub-onderka/php-parallel-lint": "*"
  7172. },
  7173. "require-dev": {
  7174. "nette/tester": "^1.3 || ^2.0",
  7175. "php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
  7176. "squizlabs/php_codesniffer": "^3.6"
  7177. },
  7178. "suggest": {
  7179. "php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
  7180. },
  7181. "bin": [
  7182. "parallel-lint"
  7183. ],
  7184. "type": "library",
  7185. "autoload": {
  7186. "classmap": [
  7187. "./src/"
  7188. ]
  7189. },
  7190. "notification-url": "https://packagist.org/downloads/",
  7191. "license": [
  7192. "BSD-2-Clause"
  7193. ],
  7194. "authors": [
  7195. {
  7196. "name": "Jakub Onderka",
  7197. "email": "[email protected]"
  7198. }
  7199. ],
  7200. "description": "This tool check syntax of PHP files about 20x faster than serial check.",
  7201. "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
  7202. "support": {
  7203. "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
  7204. "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.3.2"
  7205. },
  7206. "time": "2022-02-21T12:50:22+00:00"
  7207. },
  7208. {
  7209. "name": "phpstan/phpdoc-parser",
  7210. "version": "1.26.0",
  7211. "source": {
  7212. "type": "git",
  7213. "url": "https://github.com/phpstan/phpdoc-parser.git",
  7214. "reference": "231e3186624c03d7e7c890ec662b81e6b0405227"
  7215. },
  7216. "dist": {
  7217. "type": "zip",
  7218. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/231e3186624c03d7e7c890ec662b81e6b0405227",
  7219. "reference": "231e3186624c03d7e7c890ec662b81e6b0405227",
  7220. "shasum": ""
  7221. },
  7222. "require": {
  7223. "php": "^7.2 || ^8.0"
  7224. },
  7225. "require-dev": {
  7226. "doctrine/annotations": "^2.0",
  7227. "nikic/php-parser": "^4.15",
  7228. "php-parallel-lint/php-parallel-lint": "^1.2",
  7229. "phpstan/extension-installer": "^1.0",
  7230. "phpstan/phpstan": "^1.5",
  7231. "phpstan/phpstan-phpunit": "^1.1",
  7232. "phpstan/phpstan-strict-rules": "^1.0",
  7233. "phpunit/phpunit": "^9.5",
  7234. "symfony/process": "^5.2"
  7235. },
  7236. "type": "library",
  7237. "autoload": {
  7238. "psr-4": {
  7239. "PHPStan\\PhpDocParser\\": [
  7240. "src/"
  7241. ]
  7242. }
  7243. },
  7244. "notification-url": "https://packagist.org/downloads/",
  7245. "license": [
  7246. "MIT"
  7247. ],
  7248. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  7249. "support": {
  7250. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  7251. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.26.0"
  7252. },
  7253. "time": "2024-02-23T16:05:55+00:00"
  7254. },
  7255. {
  7256. "name": "phpunit/php-code-coverage",
  7257. "version": "10.1.12",
  7258. "source": {
  7259. "type": "git",
  7260. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7261. "reference": "842f72662d6b9edda84c4b6f13885fd9cd53dc63"
  7262. },
  7263. "dist": {
  7264. "type": "zip",
  7265. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/842f72662d6b9edda84c4b6f13885fd9cd53dc63",
  7266. "reference": "842f72662d6b9edda84c4b6f13885fd9cd53dc63",
  7267. "shasum": ""
  7268. },
  7269. "require": {
  7270. "ext-dom": "*",
  7271. "ext-libxml": "*",
  7272. "ext-xmlwriter": "*",
  7273. "nikic/php-parser": "^4.18 || ^5.0",
  7274. "php": ">=8.1",
  7275. "phpunit/php-file-iterator": "^4.0",
  7276. "phpunit/php-text-template": "^3.0",
  7277. "sebastian/code-unit-reverse-lookup": "^3.0",
  7278. "sebastian/complexity": "^3.0",
  7279. "sebastian/environment": "^6.0",
  7280. "sebastian/lines-of-code": "^2.0",
  7281. "sebastian/version": "^4.0",
  7282. "theseer/tokenizer": "^1.2.0"
  7283. },
  7284. "require-dev": {
  7285. "phpunit/phpunit": "^10.1"
  7286. },
  7287. "suggest": {
  7288. "ext-pcov": "PHP extension that provides line coverage",
  7289. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7290. },
  7291. "type": "library",
  7292. "extra": {
  7293. "branch-alias": {
  7294. "dev-main": "10.1-dev"
  7295. }
  7296. },
  7297. "autoload": {
  7298. "classmap": [
  7299. "src/"
  7300. ]
  7301. },
  7302. "notification-url": "https://packagist.org/downloads/",
  7303. "license": [
  7304. "BSD-3-Clause"
  7305. ],
  7306. "authors": [
  7307. {
  7308. "name": "Sebastian Bergmann",
  7309. "email": "[email protected]",
  7310. "role": "lead"
  7311. }
  7312. ],
  7313. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7314. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7315. "keywords": [
  7316. "coverage",
  7317. "testing",
  7318. "xunit"
  7319. ],
  7320. "support": {
  7321. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7322. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7323. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.12"
  7324. },
  7325. "funding": [
  7326. {
  7327. "url": "https://github.com/sebastianbergmann",
  7328. "type": "github"
  7329. }
  7330. ],
  7331. "time": "2024-03-02T07:22:05+00:00"
  7332. },
  7333. {
  7334. "name": "phpunit/php-file-iterator",
  7335. "version": "4.1.0",
  7336. "source": {
  7337. "type": "git",
  7338. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7339. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  7340. },
  7341. "dist": {
  7342. "type": "zip",
  7343. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7344. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7345. "shasum": ""
  7346. },
  7347. "require": {
  7348. "php": ">=8.1"
  7349. },
  7350. "require-dev": {
  7351. "phpunit/phpunit": "^10.0"
  7352. },
  7353. "type": "library",
  7354. "extra": {
  7355. "branch-alias": {
  7356. "dev-main": "4.0-dev"
  7357. }
  7358. },
  7359. "autoload": {
  7360. "classmap": [
  7361. "src/"
  7362. ]
  7363. },
  7364. "notification-url": "https://packagist.org/downloads/",
  7365. "license": [
  7366. "BSD-3-Clause"
  7367. ],
  7368. "authors": [
  7369. {
  7370. "name": "Sebastian Bergmann",
  7371. "email": "[email protected]",
  7372. "role": "lead"
  7373. }
  7374. ],
  7375. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7376. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7377. "keywords": [
  7378. "filesystem",
  7379. "iterator"
  7380. ],
  7381. "support": {
  7382. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7383. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  7384. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  7385. },
  7386. "funding": [
  7387. {
  7388. "url": "https://github.com/sebastianbergmann",
  7389. "type": "github"
  7390. }
  7391. ],
  7392. "time": "2023-08-31T06:24:48+00:00"
  7393. },
  7394. {
  7395. "name": "phpunit/php-invoker",
  7396. "version": "4.0.0",
  7397. "source": {
  7398. "type": "git",
  7399. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7400. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  7401. },
  7402. "dist": {
  7403. "type": "zip",
  7404. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7405. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7406. "shasum": ""
  7407. },
  7408. "require": {
  7409. "php": ">=8.1"
  7410. },
  7411. "require-dev": {
  7412. "ext-pcntl": "*",
  7413. "phpunit/phpunit": "^10.0"
  7414. },
  7415. "suggest": {
  7416. "ext-pcntl": "*"
  7417. },
  7418. "type": "library",
  7419. "extra": {
  7420. "branch-alias": {
  7421. "dev-main": "4.0-dev"
  7422. }
  7423. },
  7424. "autoload": {
  7425. "classmap": [
  7426. "src/"
  7427. ]
  7428. },
  7429. "notification-url": "https://packagist.org/downloads/",
  7430. "license": [
  7431. "BSD-3-Clause"
  7432. ],
  7433. "authors": [
  7434. {
  7435. "name": "Sebastian Bergmann",
  7436. "email": "[email protected]",
  7437. "role": "lead"
  7438. }
  7439. ],
  7440. "description": "Invoke callables with a timeout",
  7441. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7442. "keywords": [
  7443. "process"
  7444. ],
  7445. "support": {
  7446. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7447. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  7448. },
  7449. "funding": [
  7450. {
  7451. "url": "https://github.com/sebastianbergmann",
  7452. "type": "github"
  7453. }
  7454. ],
  7455. "time": "2023-02-03T06:56:09+00:00"
  7456. },
  7457. {
  7458. "name": "phpunit/php-text-template",
  7459. "version": "3.0.1",
  7460. "source": {
  7461. "type": "git",
  7462. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7463. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  7464. },
  7465. "dist": {
  7466. "type": "zip",
  7467. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7468. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7469. "shasum": ""
  7470. },
  7471. "require": {
  7472. "php": ">=8.1"
  7473. },
  7474. "require-dev": {
  7475. "phpunit/phpunit": "^10.0"
  7476. },
  7477. "type": "library",
  7478. "extra": {
  7479. "branch-alias": {
  7480. "dev-main": "3.0-dev"
  7481. }
  7482. },
  7483. "autoload": {
  7484. "classmap": [
  7485. "src/"
  7486. ]
  7487. },
  7488. "notification-url": "https://packagist.org/downloads/",
  7489. "license": [
  7490. "BSD-3-Clause"
  7491. ],
  7492. "authors": [
  7493. {
  7494. "name": "Sebastian Bergmann",
  7495. "email": "[email protected]",
  7496. "role": "lead"
  7497. }
  7498. ],
  7499. "description": "Simple template engine.",
  7500. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7501. "keywords": [
  7502. "template"
  7503. ],
  7504. "support": {
  7505. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7506. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  7507. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  7508. },
  7509. "funding": [
  7510. {
  7511. "url": "https://github.com/sebastianbergmann",
  7512. "type": "github"
  7513. }
  7514. ],
  7515. "time": "2023-08-31T14:07:24+00:00"
  7516. },
  7517. {
  7518. "name": "phpunit/php-timer",
  7519. "version": "6.0.0",
  7520. "source": {
  7521. "type": "git",
  7522. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7523. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  7524. },
  7525. "dist": {
  7526. "type": "zip",
  7527. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7528. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7529. "shasum": ""
  7530. },
  7531. "require": {
  7532. "php": ">=8.1"
  7533. },
  7534. "require-dev": {
  7535. "phpunit/phpunit": "^10.0"
  7536. },
  7537. "type": "library",
  7538. "extra": {
  7539. "branch-alias": {
  7540. "dev-main": "6.0-dev"
  7541. }
  7542. },
  7543. "autoload": {
  7544. "classmap": [
  7545. "src/"
  7546. ]
  7547. },
  7548. "notification-url": "https://packagist.org/downloads/",
  7549. "license": [
  7550. "BSD-3-Clause"
  7551. ],
  7552. "authors": [
  7553. {
  7554. "name": "Sebastian Bergmann",
  7555. "email": "[email protected]",
  7556. "role": "lead"
  7557. }
  7558. ],
  7559. "description": "Utility class for timing",
  7560. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7561. "keywords": [
  7562. "timer"
  7563. ],
  7564. "support": {
  7565. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7566. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  7567. },
  7568. "funding": [
  7569. {
  7570. "url": "https://github.com/sebastianbergmann",
  7571. "type": "github"
  7572. }
  7573. ],
  7574. "time": "2023-02-03T06:57:52+00:00"
  7575. },
  7576. {
  7577. "name": "phpunit/phpunit",
  7578. "version": "10.5.11",
  7579. "source": {
  7580. "type": "git",
  7581. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7582. "reference": "0d968f6323deb3dbfeba5bfd4929b9415eb7a9a4"
  7583. },
  7584. "dist": {
  7585. "type": "zip",
  7586. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0d968f6323deb3dbfeba5bfd4929b9415eb7a9a4",
  7587. "reference": "0d968f6323deb3dbfeba5bfd4929b9415eb7a9a4",
  7588. "shasum": ""
  7589. },
  7590. "require": {
  7591. "ext-dom": "*",
  7592. "ext-json": "*",
  7593. "ext-libxml": "*",
  7594. "ext-mbstring": "*",
  7595. "ext-xml": "*",
  7596. "ext-xmlwriter": "*",
  7597. "myclabs/deep-copy": "^1.10.1",
  7598. "phar-io/manifest": "^2.0.3",
  7599. "phar-io/version": "^3.0.2",
  7600. "php": ">=8.1",
  7601. "phpunit/php-code-coverage": "^10.1.5",
  7602. "phpunit/php-file-iterator": "^4.0",
  7603. "phpunit/php-invoker": "^4.0",
  7604. "phpunit/php-text-template": "^3.0",
  7605. "phpunit/php-timer": "^6.0",
  7606. "sebastian/cli-parser": "^2.0",
  7607. "sebastian/code-unit": "^2.0",
  7608. "sebastian/comparator": "^5.0",
  7609. "sebastian/diff": "^5.0",
  7610. "sebastian/environment": "^6.0",
  7611. "sebastian/exporter": "^5.1",
  7612. "sebastian/global-state": "^6.0.1",
  7613. "sebastian/object-enumerator": "^5.0",
  7614. "sebastian/recursion-context": "^5.0",
  7615. "sebastian/type": "^4.0",
  7616. "sebastian/version": "^4.0"
  7617. },
  7618. "suggest": {
  7619. "ext-soap": "To be able to generate mocks based on WSDL files"
  7620. },
  7621. "bin": [
  7622. "phpunit"
  7623. ],
  7624. "type": "library",
  7625. "extra": {
  7626. "branch-alias": {
  7627. "dev-main": "10.5-dev"
  7628. }
  7629. },
  7630. "autoload": {
  7631. "files": [
  7632. "src/Framework/Assert/Functions.php"
  7633. ],
  7634. "classmap": [
  7635. "src/"
  7636. ]
  7637. },
  7638. "notification-url": "https://packagist.org/downloads/",
  7639. "license": [
  7640. "BSD-3-Clause"
  7641. ],
  7642. "authors": [
  7643. {
  7644. "name": "Sebastian Bergmann",
  7645. "email": "[email protected]",
  7646. "role": "lead"
  7647. }
  7648. ],
  7649. "description": "The PHP Unit Testing framework.",
  7650. "homepage": "https://phpunit.de/",
  7651. "keywords": [
  7652. "phpunit",
  7653. "testing",
  7654. "xunit"
  7655. ],
  7656. "support": {
  7657. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7658. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  7659. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.11"
  7660. },
  7661. "funding": [
  7662. {
  7663. "url": "https://phpunit.de/sponsors.html",
  7664. "type": "custom"
  7665. },
  7666. {
  7667. "url": "https://github.com/sebastianbergmann",
  7668. "type": "github"
  7669. },
  7670. {
  7671. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  7672. "type": "tidelift"
  7673. }
  7674. ],
  7675. "time": "2024-02-25T14:05:00+00:00"
  7676. },
  7677. {
  7678. "name": "psr/cache",
  7679. "version": "3.0.0",
  7680. "source": {
  7681. "type": "git",
  7682. "url": "https://github.com/php-fig/cache.git",
  7683. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  7684. },
  7685. "dist": {
  7686. "type": "zip",
  7687. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7688. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  7689. "shasum": ""
  7690. },
  7691. "require": {
  7692. "php": ">=8.0.0"
  7693. },
  7694. "type": "library",
  7695. "extra": {
  7696. "branch-alias": {
  7697. "dev-master": "1.0.x-dev"
  7698. }
  7699. },
  7700. "autoload": {
  7701. "psr-4": {
  7702. "Psr\\Cache\\": "src/"
  7703. }
  7704. },
  7705. "notification-url": "https://packagist.org/downloads/",
  7706. "license": [
  7707. "MIT"
  7708. ],
  7709. "authors": [
  7710. {
  7711. "name": "PHP-FIG",
  7712. "homepage": "https://www.php-fig.org/"
  7713. }
  7714. ],
  7715. "description": "Common interface for caching libraries",
  7716. "keywords": [
  7717. "cache",
  7718. "psr",
  7719. "psr-6"
  7720. ],
  7721. "support": {
  7722. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  7723. },
  7724. "time": "2021-02-03T23:26:27+00:00"
  7725. },
  7726. {
  7727. "name": "sebastian/cli-parser",
  7728. "version": "2.0.1",
  7729. "source": {
  7730. "type": "git",
  7731. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  7732. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  7733. },
  7734. "dist": {
  7735. "type": "zip",
  7736. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  7737. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  7738. "shasum": ""
  7739. },
  7740. "require": {
  7741. "php": ">=8.1"
  7742. },
  7743. "require-dev": {
  7744. "phpunit/phpunit": "^10.0"
  7745. },
  7746. "type": "library",
  7747. "extra": {
  7748. "branch-alias": {
  7749. "dev-main": "2.0-dev"
  7750. }
  7751. },
  7752. "autoload": {
  7753. "classmap": [
  7754. "src/"
  7755. ]
  7756. },
  7757. "notification-url": "https://packagist.org/downloads/",
  7758. "license": [
  7759. "BSD-3-Clause"
  7760. ],
  7761. "authors": [
  7762. {
  7763. "name": "Sebastian Bergmann",
  7764. "email": "[email protected]",
  7765. "role": "lead"
  7766. }
  7767. ],
  7768. "description": "Library for parsing CLI options",
  7769. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  7770. "support": {
  7771. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  7772. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  7773. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  7774. },
  7775. "funding": [
  7776. {
  7777. "url": "https://github.com/sebastianbergmann",
  7778. "type": "github"
  7779. }
  7780. ],
  7781. "time": "2024-03-02T07:12:49+00:00"
  7782. },
  7783. {
  7784. "name": "sebastian/code-unit",
  7785. "version": "2.0.0",
  7786. "source": {
  7787. "type": "git",
  7788. "url": "https://github.com/sebastianbergmann/code-unit.git",
  7789. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  7790. },
  7791. "dist": {
  7792. "type": "zip",
  7793. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  7794. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  7795. "shasum": ""
  7796. },
  7797. "require": {
  7798. "php": ">=8.1"
  7799. },
  7800. "require-dev": {
  7801. "phpunit/phpunit": "^10.0"
  7802. },
  7803. "type": "library",
  7804. "extra": {
  7805. "branch-alias": {
  7806. "dev-main": "2.0-dev"
  7807. }
  7808. },
  7809. "autoload": {
  7810. "classmap": [
  7811. "src/"
  7812. ]
  7813. },
  7814. "notification-url": "https://packagist.org/downloads/",
  7815. "license": [
  7816. "BSD-3-Clause"
  7817. ],
  7818. "authors": [
  7819. {
  7820. "name": "Sebastian Bergmann",
  7821. "email": "[email protected]",
  7822. "role": "lead"
  7823. }
  7824. ],
  7825. "description": "Collection of value objects that represent the PHP code units",
  7826. "homepage": "https://github.com/sebastianbergmann/code-unit",
  7827. "support": {
  7828. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  7829. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  7830. },
  7831. "funding": [
  7832. {
  7833. "url": "https://github.com/sebastianbergmann",
  7834. "type": "github"
  7835. }
  7836. ],
  7837. "time": "2023-02-03T06:58:43+00:00"
  7838. },
  7839. {
  7840. "name": "sebastian/code-unit-reverse-lookup",
  7841. "version": "3.0.0",
  7842. "source": {
  7843. "type": "git",
  7844. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7845. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  7846. },
  7847. "dist": {
  7848. "type": "zip",
  7849. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  7850. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  7851. "shasum": ""
  7852. },
  7853. "require": {
  7854. "php": ">=8.1"
  7855. },
  7856. "require-dev": {
  7857. "phpunit/phpunit": "^10.0"
  7858. },
  7859. "type": "library",
  7860. "extra": {
  7861. "branch-alias": {
  7862. "dev-main": "3.0-dev"
  7863. }
  7864. },
  7865. "autoload": {
  7866. "classmap": [
  7867. "src/"
  7868. ]
  7869. },
  7870. "notification-url": "https://packagist.org/downloads/",
  7871. "license": [
  7872. "BSD-3-Clause"
  7873. ],
  7874. "authors": [
  7875. {
  7876. "name": "Sebastian Bergmann",
  7877. "email": "[email protected]"
  7878. }
  7879. ],
  7880. "description": "Looks up which function or method a line of code belongs to",
  7881. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7882. "support": {
  7883. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7884. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  7885. },
  7886. "funding": [
  7887. {
  7888. "url": "https://github.com/sebastianbergmann",
  7889. "type": "github"
  7890. }
  7891. ],
  7892. "time": "2023-02-03T06:59:15+00:00"
  7893. },
  7894. {
  7895. "name": "sebastian/comparator",
  7896. "version": "5.0.1",
  7897. "source": {
  7898. "type": "git",
  7899. "url": "https://github.com/sebastianbergmann/comparator.git",
  7900. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  7901. },
  7902. "dist": {
  7903. "type": "zip",
  7904. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  7905. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  7906. "shasum": ""
  7907. },
  7908. "require": {
  7909. "ext-dom": "*",
  7910. "ext-mbstring": "*",
  7911. "php": ">=8.1",
  7912. "sebastian/diff": "^5.0",
  7913. "sebastian/exporter": "^5.0"
  7914. },
  7915. "require-dev": {
  7916. "phpunit/phpunit": "^10.3"
  7917. },
  7918. "type": "library",
  7919. "extra": {
  7920. "branch-alias": {
  7921. "dev-main": "5.0-dev"
  7922. }
  7923. },
  7924. "autoload": {
  7925. "classmap": [
  7926. "src/"
  7927. ]
  7928. },
  7929. "notification-url": "https://packagist.org/downloads/",
  7930. "license": [
  7931. "BSD-3-Clause"
  7932. ],
  7933. "authors": [
  7934. {
  7935. "name": "Sebastian Bergmann",
  7936. "email": "[email protected]"
  7937. },
  7938. {
  7939. "name": "Jeff Welch",
  7940. "email": "[email protected]"
  7941. },
  7942. {
  7943. "name": "Volker Dusch",
  7944. "email": "[email protected]"
  7945. },
  7946. {
  7947. "name": "Bernhard Schussek",
  7948. "email": "[email protected]"
  7949. }
  7950. ],
  7951. "description": "Provides the functionality to compare PHP values for equality",
  7952. "homepage": "https://github.com/sebastianbergmann/comparator",
  7953. "keywords": [
  7954. "comparator",
  7955. "compare",
  7956. "equality"
  7957. ],
  7958. "support": {
  7959. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7960. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  7961. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  7962. },
  7963. "funding": [
  7964. {
  7965. "url": "https://github.com/sebastianbergmann",
  7966. "type": "github"
  7967. }
  7968. ],
  7969. "time": "2023-08-14T13:18:12+00:00"
  7970. },
  7971. {
  7972. "name": "sebastian/complexity",
  7973. "version": "3.2.0",
  7974. "source": {
  7975. "type": "git",
  7976. "url": "https://github.com/sebastianbergmann/complexity.git",
  7977. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  7978. },
  7979. "dist": {
  7980. "type": "zip",
  7981. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  7982. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  7983. "shasum": ""
  7984. },
  7985. "require": {
  7986. "nikic/php-parser": "^4.18 || ^5.0",
  7987. "php": ">=8.1"
  7988. },
  7989. "require-dev": {
  7990. "phpunit/phpunit": "^10.0"
  7991. },
  7992. "type": "library",
  7993. "extra": {
  7994. "branch-alias": {
  7995. "dev-main": "3.2-dev"
  7996. }
  7997. },
  7998. "autoload": {
  7999. "classmap": [
  8000. "src/"
  8001. ]
  8002. },
  8003. "notification-url": "https://packagist.org/downloads/",
  8004. "license": [
  8005. "BSD-3-Clause"
  8006. ],
  8007. "authors": [
  8008. {
  8009. "name": "Sebastian Bergmann",
  8010. "email": "[email protected]",
  8011. "role": "lead"
  8012. }
  8013. ],
  8014. "description": "Library for calculating the complexity of PHP code units",
  8015. "homepage": "https://github.com/sebastianbergmann/complexity",
  8016. "support": {
  8017. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8018. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8019. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  8020. },
  8021. "funding": [
  8022. {
  8023. "url": "https://github.com/sebastianbergmann",
  8024. "type": "github"
  8025. }
  8026. ],
  8027. "time": "2023-12-21T08:37:17+00:00"
  8028. },
  8029. {
  8030. "name": "sebastian/diff",
  8031. "version": "5.1.1",
  8032. "source": {
  8033. "type": "git",
  8034. "url": "https://github.com/sebastianbergmann/diff.git",
  8035. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  8036. },
  8037. "dist": {
  8038. "type": "zip",
  8039. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8040. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8041. "shasum": ""
  8042. },
  8043. "require": {
  8044. "php": ">=8.1"
  8045. },
  8046. "require-dev": {
  8047. "phpunit/phpunit": "^10.0",
  8048. "symfony/process": "^6.4"
  8049. },
  8050. "type": "library",
  8051. "extra": {
  8052. "branch-alias": {
  8053. "dev-main": "5.1-dev"
  8054. }
  8055. },
  8056. "autoload": {
  8057. "classmap": [
  8058. "src/"
  8059. ]
  8060. },
  8061. "notification-url": "https://packagist.org/downloads/",
  8062. "license": [
  8063. "BSD-3-Clause"
  8064. ],
  8065. "authors": [
  8066. {
  8067. "name": "Sebastian Bergmann",
  8068. "email": "[email protected]"
  8069. },
  8070. {
  8071. "name": "Kore Nordmann",
  8072. "email": "[email protected]"
  8073. }
  8074. ],
  8075. "description": "Diff implementation",
  8076. "homepage": "https://github.com/sebastianbergmann/diff",
  8077. "keywords": [
  8078. "diff",
  8079. "udiff",
  8080. "unidiff",
  8081. "unified diff"
  8082. ],
  8083. "support": {
  8084. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8085. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8086. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  8087. },
  8088. "funding": [
  8089. {
  8090. "url": "https://github.com/sebastianbergmann",
  8091. "type": "github"
  8092. }
  8093. ],
  8094. "time": "2024-03-02T07:15:17+00:00"
  8095. },
  8096. {
  8097. "name": "sebastian/environment",
  8098. "version": "6.0.1",
  8099. "source": {
  8100. "type": "git",
  8101. "url": "https://github.com/sebastianbergmann/environment.git",
  8102. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951"
  8103. },
  8104. "dist": {
  8105. "type": "zip",
  8106. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951",
  8107. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  8108. "shasum": ""
  8109. },
  8110. "require": {
  8111. "php": ">=8.1"
  8112. },
  8113. "require-dev": {
  8114. "phpunit/phpunit": "^10.0"
  8115. },
  8116. "suggest": {
  8117. "ext-posix": "*"
  8118. },
  8119. "type": "library",
  8120. "extra": {
  8121. "branch-alias": {
  8122. "dev-main": "6.0-dev"
  8123. }
  8124. },
  8125. "autoload": {
  8126. "classmap": [
  8127. "src/"
  8128. ]
  8129. },
  8130. "notification-url": "https://packagist.org/downloads/",
  8131. "license": [
  8132. "BSD-3-Clause"
  8133. ],
  8134. "authors": [
  8135. {
  8136. "name": "Sebastian Bergmann",
  8137. "email": "[email protected]"
  8138. }
  8139. ],
  8140. "description": "Provides functionality to handle HHVM/PHP environments",
  8141. "homepage": "https://github.com/sebastianbergmann/environment",
  8142. "keywords": [
  8143. "Xdebug",
  8144. "environment",
  8145. "hhvm"
  8146. ],
  8147. "support": {
  8148. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8149. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  8150. "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1"
  8151. },
  8152. "funding": [
  8153. {
  8154. "url": "https://github.com/sebastianbergmann",
  8155. "type": "github"
  8156. }
  8157. ],
  8158. "time": "2023-04-11T05:39:26+00:00"
  8159. },
  8160. {
  8161. "name": "sebastian/exporter",
  8162. "version": "5.1.2",
  8163. "source": {
  8164. "type": "git",
  8165. "url": "https://github.com/sebastianbergmann/exporter.git",
  8166. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  8167. },
  8168. "dist": {
  8169. "type": "zip",
  8170. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  8171. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  8172. "shasum": ""
  8173. },
  8174. "require": {
  8175. "ext-mbstring": "*",
  8176. "php": ">=8.1",
  8177. "sebastian/recursion-context": "^5.0"
  8178. },
  8179. "require-dev": {
  8180. "phpunit/phpunit": "^10.0"
  8181. },
  8182. "type": "library",
  8183. "extra": {
  8184. "branch-alias": {
  8185. "dev-main": "5.1-dev"
  8186. }
  8187. },
  8188. "autoload": {
  8189. "classmap": [
  8190. "src/"
  8191. ]
  8192. },
  8193. "notification-url": "https://packagist.org/downloads/",
  8194. "license": [
  8195. "BSD-3-Clause"
  8196. ],
  8197. "authors": [
  8198. {
  8199. "name": "Sebastian Bergmann",
  8200. "email": "[email protected]"
  8201. },
  8202. {
  8203. "name": "Jeff Welch",
  8204. "email": "[email protected]"
  8205. },
  8206. {
  8207. "name": "Volker Dusch",
  8208. "email": "[email protected]"
  8209. },
  8210. {
  8211. "name": "Adam Harvey",
  8212. "email": "[email protected]"
  8213. },
  8214. {
  8215. "name": "Bernhard Schussek",
  8216. "email": "[email protected]"
  8217. }
  8218. ],
  8219. "description": "Provides the functionality to export PHP variables for visualization",
  8220. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8221. "keywords": [
  8222. "export",
  8223. "exporter"
  8224. ],
  8225. "support": {
  8226. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8227. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  8228. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  8229. },
  8230. "funding": [
  8231. {
  8232. "url": "https://github.com/sebastianbergmann",
  8233. "type": "github"
  8234. }
  8235. ],
  8236. "time": "2024-03-02T07:17:12+00:00"
  8237. },
  8238. {
  8239. "name": "sebastian/global-state",
  8240. "version": "6.0.2",
  8241. "source": {
  8242. "type": "git",
  8243. "url": "https://github.com/sebastianbergmann/global-state.git",
  8244. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  8245. },
  8246. "dist": {
  8247. "type": "zip",
  8248. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  8249. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  8250. "shasum": ""
  8251. },
  8252. "require": {
  8253. "php": ">=8.1",
  8254. "sebastian/object-reflector": "^3.0",
  8255. "sebastian/recursion-context": "^5.0"
  8256. },
  8257. "require-dev": {
  8258. "ext-dom": "*",
  8259. "phpunit/phpunit": "^10.0"
  8260. },
  8261. "type": "library",
  8262. "extra": {
  8263. "branch-alias": {
  8264. "dev-main": "6.0-dev"
  8265. }
  8266. },
  8267. "autoload": {
  8268. "classmap": [
  8269. "src/"
  8270. ]
  8271. },
  8272. "notification-url": "https://packagist.org/downloads/",
  8273. "license": [
  8274. "BSD-3-Clause"
  8275. ],
  8276. "authors": [
  8277. {
  8278. "name": "Sebastian Bergmann",
  8279. "email": "[email protected]"
  8280. }
  8281. ],
  8282. "description": "Snapshotting of global state",
  8283. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  8284. "keywords": [
  8285. "global state"
  8286. ],
  8287. "support": {
  8288. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8289. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  8290. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  8291. },
  8292. "funding": [
  8293. {
  8294. "url": "https://github.com/sebastianbergmann",
  8295. "type": "github"
  8296. }
  8297. ],
  8298. "time": "2024-03-02T07:19:19+00:00"
  8299. },
  8300. {
  8301. "name": "sebastian/lines-of-code",
  8302. "version": "2.0.2",
  8303. "source": {
  8304. "type": "git",
  8305. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8306. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  8307. },
  8308. "dist": {
  8309. "type": "zip",
  8310. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  8311. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  8312. "shasum": ""
  8313. },
  8314. "require": {
  8315. "nikic/php-parser": "^4.18 || ^5.0",
  8316. "php": ">=8.1"
  8317. },
  8318. "require-dev": {
  8319. "phpunit/phpunit": "^10.0"
  8320. },
  8321. "type": "library",
  8322. "extra": {
  8323. "branch-alias": {
  8324. "dev-main": "2.0-dev"
  8325. }
  8326. },
  8327. "autoload": {
  8328. "classmap": [
  8329. "src/"
  8330. ]
  8331. },
  8332. "notification-url": "https://packagist.org/downloads/",
  8333. "license": [
  8334. "BSD-3-Clause"
  8335. ],
  8336. "authors": [
  8337. {
  8338. "name": "Sebastian Bergmann",
  8339. "email": "[email protected]",
  8340. "role": "lead"
  8341. }
  8342. ],
  8343. "description": "Library for counting the lines of code in PHP source code",
  8344. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8345. "support": {
  8346. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8347. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  8348. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  8349. },
  8350. "funding": [
  8351. {
  8352. "url": "https://github.com/sebastianbergmann",
  8353. "type": "github"
  8354. }
  8355. ],
  8356. "time": "2023-12-21T08:38:20+00:00"
  8357. },
  8358. {
  8359. "name": "sebastian/object-enumerator",
  8360. "version": "5.0.0",
  8361. "source": {
  8362. "type": "git",
  8363. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8364. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  8365. },
  8366. "dist": {
  8367. "type": "zip",
  8368. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  8369. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  8370. "shasum": ""
  8371. },
  8372. "require": {
  8373. "php": ">=8.1",
  8374. "sebastian/object-reflector": "^3.0",
  8375. "sebastian/recursion-context": "^5.0"
  8376. },
  8377. "require-dev": {
  8378. "phpunit/phpunit": "^10.0"
  8379. },
  8380. "type": "library",
  8381. "extra": {
  8382. "branch-alias": {
  8383. "dev-main": "5.0-dev"
  8384. }
  8385. },
  8386. "autoload": {
  8387. "classmap": [
  8388. "src/"
  8389. ]
  8390. },
  8391. "notification-url": "https://packagist.org/downloads/",
  8392. "license": [
  8393. "BSD-3-Clause"
  8394. ],
  8395. "authors": [
  8396. {
  8397. "name": "Sebastian Bergmann",
  8398. "email": "[email protected]"
  8399. }
  8400. ],
  8401. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8402. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8403. "support": {
  8404. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8405. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  8406. },
  8407. "funding": [
  8408. {
  8409. "url": "https://github.com/sebastianbergmann",
  8410. "type": "github"
  8411. }
  8412. ],
  8413. "time": "2023-02-03T07:08:32+00:00"
  8414. },
  8415. {
  8416. "name": "sebastian/object-reflector",
  8417. "version": "3.0.0",
  8418. "source": {
  8419. "type": "git",
  8420. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8421. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  8422. },
  8423. "dist": {
  8424. "type": "zip",
  8425. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  8426. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  8427. "shasum": ""
  8428. },
  8429. "require": {
  8430. "php": ">=8.1"
  8431. },
  8432. "require-dev": {
  8433. "phpunit/phpunit": "^10.0"
  8434. },
  8435. "type": "library",
  8436. "extra": {
  8437. "branch-alias": {
  8438. "dev-main": "3.0-dev"
  8439. }
  8440. },
  8441. "autoload": {
  8442. "classmap": [
  8443. "src/"
  8444. ]
  8445. },
  8446. "notification-url": "https://packagist.org/downloads/",
  8447. "license": [
  8448. "BSD-3-Clause"
  8449. ],
  8450. "authors": [
  8451. {
  8452. "name": "Sebastian Bergmann",
  8453. "email": "[email protected]"
  8454. }
  8455. ],
  8456. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8457. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8458. "support": {
  8459. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  8460. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  8461. },
  8462. "funding": [
  8463. {
  8464. "url": "https://github.com/sebastianbergmann",
  8465. "type": "github"
  8466. }
  8467. ],
  8468. "time": "2023-02-03T07:06:18+00:00"
  8469. },
  8470. {
  8471. "name": "sebastian/recursion-context",
  8472. "version": "5.0.0",
  8473. "source": {
  8474. "type": "git",
  8475. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8476. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  8477. },
  8478. "dist": {
  8479. "type": "zip",
  8480. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  8481. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  8482. "shasum": ""
  8483. },
  8484. "require": {
  8485. "php": ">=8.1"
  8486. },
  8487. "require-dev": {
  8488. "phpunit/phpunit": "^10.0"
  8489. },
  8490. "type": "library",
  8491. "extra": {
  8492. "branch-alias": {
  8493. "dev-main": "5.0-dev"
  8494. }
  8495. },
  8496. "autoload": {
  8497. "classmap": [
  8498. "src/"
  8499. ]
  8500. },
  8501. "notification-url": "https://packagist.org/downloads/",
  8502. "license": [
  8503. "BSD-3-Clause"
  8504. ],
  8505. "authors": [
  8506. {
  8507. "name": "Sebastian Bergmann",
  8508. "email": "[email protected]"
  8509. },
  8510. {
  8511. "name": "Jeff Welch",
  8512. "email": "[email protected]"
  8513. },
  8514. {
  8515. "name": "Adam Harvey",
  8516. "email": "[email protected]"
  8517. }
  8518. ],
  8519. "description": "Provides functionality to recursively process PHP variables",
  8520. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  8521. "support": {
  8522. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8523. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  8524. },
  8525. "funding": [
  8526. {
  8527. "url": "https://github.com/sebastianbergmann",
  8528. "type": "github"
  8529. }
  8530. ],
  8531. "time": "2023-02-03T07:05:40+00:00"
  8532. },
  8533. {
  8534. "name": "sebastian/type",
  8535. "version": "4.0.0",
  8536. "source": {
  8537. "type": "git",
  8538. "url": "https://github.com/sebastianbergmann/type.git",
  8539. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  8540. },
  8541. "dist": {
  8542. "type": "zip",
  8543. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  8544. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  8545. "shasum": ""
  8546. },
  8547. "require": {
  8548. "php": ">=8.1"
  8549. },
  8550. "require-dev": {
  8551. "phpunit/phpunit": "^10.0"
  8552. },
  8553. "type": "library",
  8554. "extra": {
  8555. "branch-alias": {
  8556. "dev-main": "4.0-dev"
  8557. }
  8558. },
  8559. "autoload": {
  8560. "classmap": [
  8561. "src/"
  8562. ]
  8563. },
  8564. "notification-url": "https://packagist.org/downloads/",
  8565. "license": [
  8566. "BSD-3-Clause"
  8567. ],
  8568. "authors": [
  8569. {
  8570. "name": "Sebastian Bergmann",
  8571. "email": "[email protected]",
  8572. "role": "lead"
  8573. }
  8574. ],
  8575. "description": "Collection of value objects that represent the types of the PHP type system",
  8576. "homepage": "https://github.com/sebastianbergmann/type",
  8577. "support": {
  8578. "issues": "https://github.com/sebastianbergmann/type/issues",
  8579. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  8580. },
  8581. "funding": [
  8582. {
  8583. "url": "https://github.com/sebastianbergmann",
  8584. "type": "github"
  8585. }
  8586. ],
  8587. "time": "2023-02-03T07:10:45+00:00"
  8588. },
  8589. {
  8590. "name": "sebastian/version",
  8591. "version": "4.0.1",
  8592. "source": {
  8593. "type": "git",
  8594. "url": "https://github.com/sebastianbergmann/version.git",
  8595. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  8596. },
  8597. "dist": {
  8598. "type": "zip",
  8599. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  8600. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  8601. "shasum": ""
  8602. },
  8603. "require": {
  8604. "php": ">=8.1"
  8605. },
  8606. "type": "library",
  8607. "extra": {
  8608. "branch-alias": {
  8609. "dev-main": "4.0-dev"
  8610. }
  8611. },
  8612. "autoload": {
  8613. "classmap": [
  8614. "src/"
  8615. ]
  8616. },
  8617. "notification-url": "https://packagist.org/downloads/",
  8618. "license": [
  8619. "BSD-3-Clause"
  8620. ],
  8621. "authors": [
  8622. {
  8623. "name": "Sebastian Bergmann",
  8624. "email": "[email protected]",
  8625. "role": "lead"
  8626. }
  8627. ],
  8628. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8629. "homepage": "https://github.com/sebastianbergmann/version",
  8630. "support": {
  8631. "issues": "https://github.com/sebastianbergmann/version/issues",
  8632. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  8633. },
  8634. "funding": [
  8635. {
  8636. "url": "https://github.com/sebastianbergmann",
  8637. "type": "github"
  8638. }
  8639. ],
  8640. "time": "2023-02-07T11:34:05+00:00"
  8641. },
  8642. {
  8643. "name": "slevomat/coding-standard",
  8644. "version": "8.14.1",
  8645. "source": {
  8646. "type": "git",
  8647. "url": "https://github.com/slevomat/coding-standard.git",
  8648. "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926"
  8649. },
  8650. "dist": {
  8651. "type": "zip",
  8652. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/fea1fd6f137cc84f9cba0ae30d549615dbc6a926",
  8653. "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926",
  8654. "shasum": ""
  8655. },
  8656. "require": {
  8657. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0",
  8658. "php": "^7.2 || ^8.0",
  8659. "phpstan/phpdoc-parser": "^1.23.1",
  8660. "squizlabs/php_codesniffer": "^3.7.1"
  8661. },
  8662. "require-dev": {
  8663. "phing/phing": "2.17.4",
  8664. "php-parallel-lint/php-parallel-lint": "1.3.2",
  8665. "phpstan/phpstan": "1.10.37",
  8666. "phpstan/phpstan-deprecation-rules": "1.1.4",
  8667. "phpstan/phpstan-phpunit": "1.3.14",
  8668. "phpstan/phpstan-strict-rules": "1.5.1",
  8669. "phpunit/phpunit": "8.5.21|9.6.8|10.3.5"
  8670. },
  8671. "type": "phpcodesniffer-standard",
  8672. "extra": {
  8673. "branch-alias": {
  8674. "dev-master": "8.x-dev"
  8675. }
  8676. },
  8677. "autoload": {
  8678. "psr-4": {
  8679. "SlevomatCodingStandard\\": "SlevomatCodingStandard/"
  8680. }
  8681. },
  8682. "notification-url": "https://packagist.org/downloads/",
  8683. "license": [
  8684. "MIT"
  8685. ],
  8686. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  8687. "keywords": [
  8688. "dev",
  8689. "phpcs"
  8690. ],
  8691. "support": {
  8692. "issues": "https://github.com/slevomat/coding-standard/issues",
  8693. "source": "https://github.com/slevomat/coding-standard/tree/8.14.1"
  8694. },
  8695. "funding": [
  8696. {
  8697. "url": "https://github.com/kukulich",
  8698. "type": "github"
  8699. },
  8700. {
  8701. "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
  8702. "type": "tidelift"
  8703. }
  8704. ],
  8705. "time": "2023-10-08T07:28:08+00:00"
  8706. },
  8707. {
  8708. "name": "squizlabs/php_codesniffer",
  8709. "version": "3.9.0",
  8710. "source": {
  8711. "type": "git",
  8712. "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
  8713. "reference": "d63cee4890a8afaf86a22e51ad4d97c91dd4579b"
  8714. },
  8715. "dist": {
  8716. "type": "zip",
  8717. "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/d63cee4890a8afaf86a22e51ad4d97c91dd4579b",
  8718. "reference": "d63cee4890a8afaf86a22e51ad4d97c91dd4579b",
  8719. "shasum": ""
  8720. },
  8721. "require": {
  8722. "ext-simplexml": "*",
  8723. "ext-tokenizer": "*",
  8724. "ext-xmlwriter": "*",
  8725. "php": ">=5.4.0"
  8726. },
  8727. "require-dev": {
  8728. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
  8729. },
  8730. "bin": [
  8731. "bin/phpcbf",
  8732. "bin/phpcs"
  8733. ],
  8734. "type": "library",
  8735. "extra": {
  8736. "branch-alias": {
  8737. "dev-master": "3.x-dev"
  8738. }
  8739. },
  8740. "notification-url": "https://packagist.org/downloads/",
  8741. "license": [
  8742. "BSD-3-Clause"
  8743. ],
  8744. "authors": [
  8745. {
  8746. "name": "Greg Sherwood",
  8747. "role": "Former lead"
  8748. },
  8749. {
  8750. "name": "Juliette Reinders Folmer",
  8751. "role": "Current lead"
  8752. },
  8753. {
  8754. "name": "Contributors",
  8755. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
  8756. }
  8757. ],
  8758. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  8759. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  8760. "keywords": [
  8761. "phpcs",
  8762. "standards",
  8763. "static analysis"
  8764. ],
  8765. "support": {
  8766. "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
  8767. "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
  8768. "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  8769. "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
  8770. },
  8771. "funding": [
  8772. {
  8773. "url": "https://github.com/PHPCSStandards",
  8774. "type": "github"
  8775. },
  8776. {
  8777. "url": "https://github.com/jrfnl",
  8778. "type": "github"
  8779. },
  8780. {
  8781. "url": "https://opencollective.com/php_codesniffer",
  8782. "type": "open_collective"
  8783. }
  8784. ],
  8785. "time": "2024-02-16T15:06:51+00:00"
  8786. },
  8787. {
  8788. "name": "symfony/cache",
  8789. "version": "v7.0.4",
  8790. "source": {
  8791. "type": "git",
  8792. "url": "https://github.com/symfony/cache.git",
  8793. "reference": "fc822951dd360a593224bb2cef90a087d0dff60f"
  8794. },
  8795. "dist": {
  8796. "type": "zip",
  8797. "url": "https://api.github.com/repos/symfony/cache/zipball/fc822951dd360a593224bb2cef90a087d0dff60f",
  8798. "reference": "fc822951dd360a593224bb2cef90a087d0dff60f",
  8799. "shasum": ""
  8800. },
  8801. "require": {
  8802. "php": ">=8.2",
  8803. "psr/cache": "^2.0|^3.0",
  8804. "psr/log": "^1.1|^2|^3",
  8805. "symfony/cache-contracts": "^2.5|^3",
  8806. "symfony/service-contracts": "^2.5|^3",
  8807. "symfony/var-exporter": "^6.4|^7.0"
  8808. },
  8809. "conflict": {
  8810. "doctrine/dbal": "<3.6",
  8811. "symfony/dependency-injection": "<6.4",
  8812. "symfony/http-kernel": "<6.4",
  8813. "symfony/var-dumper": "<6.4"
  8814. },
  8815. "provide": {
  8816. "psr/cache-implementation": "2.0|3.0",
  8817. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  8818. "symfony/cache-implementation": "1.1|2.0|3.0"
  8819. },
  8820. "require-dev": {
  8821. "cache/integration-tests": "dev-master",
  8822. "doctrine/dbal": "^3.6|^4",
  8823. "predis/predis": "^1.1|^2.0",
  8824. "psr/simple-cache": "^1.0|^2.0|^3.0",
  8825. "symfony/config": "^6.4|^7.0",
  8826. "symfony/dependency-injection": "^6.4|^7.0",
  8827. "symfony/filesystem": "^6.4|^7.0",
  8828. "symfony/http-kernel": "^6.4|^7.0",
  8829. "symfony/messenger": "^6.4|^7.0",
  8830. "symfony/var-dumper": "^6.4|^7.0"
  8831. },
  8832. "type": "library",
  8833. "autoload": {
  8834. "psr-4": {
  8835. "Symfony\\Component\\Cache\\": ""
  8836. },
  8837. "classmap": [
  8838. "Traits/ValueWrapper.php"
  8839. ],
  8840. "exclude-from-classmap": [
  8841. "/Tests/"
  8842. ]
  8843. },
  8844. "notification-url": "https://packagist.org/downloads/",
  8845. "license": [
  8846. "MIT"
  8847. ],
  8848. "authors": [
  8849. {
  8850. "name": "Nicolas Grekas",
  8851. "email": "[email protected]"
  8852. },
  8853. {
  8854. "name": "Symfony Community",
  8855. "homepage": "https://symfony.com/contributors"
  8856. }
  8857. ],
  8858. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  8859. "homepage": "https://symfony.com",
  8860. "keywords": [
  8861. "caching",
  8862. "psr6"
  8863. ],
  8864. "support": {
  8865. "source": "https://github.com/symfony/cache/tree/v7.0.4"
  8866. },
  8867. "funding": [
  8868. {
  8869. "url": "https://symfony.com/sponsor",
  8870. "type": "custom"
  8871. },
  8872. {
  8873. "url": "https://github.com/fabpot",
  8874. "type": "github"
  8875. },
  8876. {
  8877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8878. "type": "tidelift"
  8879. }
  8880. ],
  8881. "time": "2024-02-22T20:27:20+00:00"
  8882. },
  8883. {
  8884. "name": "symfony/cache-contracts",
  8885. "version": "v3.4.0",
  8886. "source": {
  8887. "type": "git",
  8888. "url": "https://github.com/symfony/cache-contracts.git",
  8889. "reference": "1d74b127da04ffa87aa940abe15446fa89653778"
  8890. },
  8891. "dist": {
  8892. "type": "zip",
  8893. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778",
  8894. "reference": "1d74b127da04ffa87aa940abe15446fa89653778",
  8895. "shasum": ""
  8896. },
  8897. "require": {
  8898. "php": ">=8.1",
  8899. "psr/cache": "^3.0"
  8900. },
  8901. "type": "library",
  8902. "extra": {
  8903. "branch-alias": {
  8904. "dev-main": "3.4-dev"
  8905. },
  8906. "thanks": {
  8907. "name": "symfony/contracts",
  8908. "url": "https://github.com/symfony/contracts"
  8909. }
  8910. },
  8911. "autoload": {
  8912. "psr-4": {
  8913. "Symfony\\Contracts\\Cache\\": ""
  8914. }
  8915. },
  8916. "notification-url": "https://packagist.org/downloads/",
  8917. "license": [
  8918. "MIT"
  8919. ],
  8920. "authors": [
  8921. {
  8922. "name": "Nicolas Grekas",
  8923. "email": "[email protected]"
  8924. },
  8925. {
  8926. "name": "Symfony Community",
  8927. "homepage": "https://symfony.com/contributors"
  8928. }
  8929. ],
  8930. "description": "Generic abstractions related to caching",
  8931. "homepage": "https://symfony.com",
  8932. "keywords": [
  8933. "abstractions",
  8934. "contracts",
  8935. "decoupling",
  8936. "interfaces",
  8937. "interoperability",
  8938. "standards"
  8939. ],
  8940. "support": {
  8941. "source": "https://github.com/symfony/cache-contracts/tree/v3.4.0"
  8942. },
  8943. "funding": [
  8944. {
  8945. "url": "https://symfony.com/sponsor",
  8946. "type": "custom"
  8947. },
  8948. {
  8949. "url": "https://github.com/fabpot",
  8950. "type": "github"
  8951. },
  8952. {
  8953. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8954. "type": "tidelift"
  8955. }
  8956. ],
  8957. "time": "2023-09-25T12:52:38+00:00"
  8958. },
  8959. {
  8960. "name": "symfony/console",
  8961. "version": "v7.0.4",
  8962. "source": {
  8963. "type": "git",
  8964. "url": "https://github.com/symfony/console.git",
  8965. "reference": "6b099f3306f7c9c2d2786ed736d0026b2903205f"
  8966. },
  8967. "dist": {
  8968. "type": "zip",
  8969. "url": "https://api.github.com/repos/symfony/console/zipball/6b099f3306f7c9c2d2786ed736d0026b2903205f",
  8970. "reference": "6b099f3306f7c9c2d2786ed736d0026b2903205f",
  8971. "shasum": ""
  8972. },
  8973. "require": {
  8974. "php": ">=8.2",
  8975. "symfony/polyfill-mbstring": "~1.0",
  8976. "symfony/service-contracts": "^2.5|^3",
  8977. "symfony/string": "^6.4|^7.0"
  8978. },
  8979. "conflict": {
  8980. "symfony/dependency-injection": "<6.4",
  8981. "symfony/dotenv": "<6.4",
  8982. "symfony/event-dispatcher": "<6.4",
  8983. "symfony/lock": "<6.4",
  8984. "symfony/process": "<6.4"
  8985. },
  8986. "provide": {
  8987. "psr/log-implementation": "1.0|2.0|3.0"
  8988. },
  8989. "require-dev": {
  8990. "psr/log": "^1|^2|^3",
  8991. "symfony/config": "^6.4|^7.0",
  8992. "symfony/dependency-injection": "^6.4|^7.0",
  8993. "symfony/event-dispatcher": "^6.4|^7.0",
  8994. "symfony/http-foundation": "^6.4|^7.0",
  8995. "symfony/http-kernel": "^6.4|^7.0",
  8996. "symfony/lock": "^6.4|^7.0",
  8997. "symfony/messenger": "^6.4|^7.0",
  8998. "symfony/process": "^6.4|^7.0",
  8999. "symfony/stopwatch": "^6.4|^7.0",
  9000. "symfony/var-dumper": "^6.4|^7.0"
  9001. },
  9002. "type": "library",
  9003. "autoload": {
  9004. "psr-4": {
  9005. "Symfony\\Component\\Console\\": ""
  9006. },
  9007. "exclude-from-classmap": [
  9008. "/Tests/"
  9009. ]
  9010. },
  9011. "notification-url": "https://packagist.org/downloads/",
  9012. "license": [
  9013. "MIT"
  9014. ],
  9015. "authors": [
  9016. {
  9017. "name": "Fabien Potencier",
  9018. "email": "[email protected]"
  9019. },
  9020. {
  9021. "name": "Symfony Community",
  9022. "homepage": "https://symfony.com/contributors"
  9023. }
  9024. ],
  9025. "description": "Eases the creation of beautiful and testable command line interfaces",
  9026. "homepage": "https://symfony.com",
  9027. "keywords": [
  9028. "cli",
  9029. "command-line",
  9030. "console",
  9031. "terminal"
  9032. ],
  9033. "support": {
  9034. "source": "https://github.com/symfony/console/tree/v7.0.4"
  9035. },
  9036. "funding": [
  9037. {
  9038. "url": "https://symfony.com/sponsor",
  9039. "type": "custom"
  9040. },
  9041. {
  9042. "url": "https://github.com/fabpot",
  9043. "type": "github"
  9044. },
  9045. {
  9046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9047. "type": "tidelift"
  9048. }
  9049. ],
  9050. "time": "2024-02-22T20:27:20+00:00"
  9051. },
  9052. {
  9053. "name": "symfony/event-dispatcher",
  9054. "version": "v7.0.3",
  9055. "source": {
  9056. "type": "git",
  9057. "url": "https://github.com/symfony/event-dispatcher.git",
  9058. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e"
  9059. },
  9060. "dist": {
  9061. "type": "zip",
  9062. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e",
  9063. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e",
  9064. "shasum": ""
  9065. },
  9066. "require": {
  9067. "php": ">=8.2",
  9068. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9069. },
  9070. "conflict": {
  9071. "symfony/dependency-injection": "<6.4",
  9072. "symfony/service-contracts": "<2.5"
  9073. },
  9074. "provide": {
  9075. "psr/event-dispatcher-implementation": "1.0",
  9076. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9077. },
  9078. "require-dev": {
  9079. "psr/log": "^1|^2|^3",
  9080. "symfony/config": "^6.4|^7.0",
  9081. "symfony/dependency-injection": "^6.4|^7.0",
  9082. "symfony/error-handler": "^6.4|^7.0",
  9083. "symfony/expression-language": "^6.4|^7.0",
  9084. "symfony/http-foundation": "^6.4|^7.0",
  9085. "symfony/service-contracts": "^2.5|^3",
  9086. "symfony/stopwatch": "^6.4|^7.0"
  9087. },
  9088. "type": "library",
  9089. "autoload": {
  9090. "psr-4": {
  9091. "Symfony\\Component\\EventDispatcher\\": ""
  9092. },
  9093. "exclude-from-classmap": [
  9094. "/Tests/"
  9095. ]
  9096. },
  9097. "notification-url": "https://packagist.org/downloads/",
  9098. "license": [
  9099. "MIT"
  9100. ],
  9101. "authors": [
  9102. {
  9103. "name": "Fabien Potencier",
  9104. "email": "[email protected]"
  9105. },
  9106. {
  9107. "name": "Symfony Community",
  9108. "homepage": "https://symfony.com/contributors"
  9109. }
  9110. ],
  9111. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9112. "homepage": "https://symfony.com",
  9113. "support": {
  9114. "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.3"
  9115. },
  9116. "funding": [
  9117. {
  9118. "url": "https://symfony.com/sponsor",
  9119. "type": "custom"
  9120. },
  9121. {
  9122. "url": "https://github.com/fabpot",
  9123. "type": "github"
  9124. },
  9125. {
  9126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9127. "type": "tidelift"
  9128. }
  9129. ],
  9130. "time": "2024-01-23T15:02:46+00:00"
  9131. },
  9132. {
  9133. "name": "symfony/event-dispatcher-contracts",
  9134. "version": "v3.4.0",
  9135. "source": {
  9136. "type": "git",
  9137. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9138. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  9139. },
  9140. "dist": {
  9141. "type": "zip",
  9142. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  9143. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  9144. "shasum": ""
  9145. },
  9146. "require": {
  9147. "php": ">=8.1",
  9148. "psr/event-dispatcher": "^1"
  9149. },
  9150. "type": "library",
  9151. "extra": {
  9152. "branch-alias": {
  9153. "dev-main": "3.4-dev"
  9154. },
  9155. "thanks": {
  9156. "name": "symfony/contracts",
  9157. "url": "https://github.com/symfony/contracts"
  9158. }
  9159. },
  9160. "autoload": {
  9161. "psr-4": {
  9162. "Symfony\\Contracts\\EventDispatcher\\": ""
  9163. }
  9164. },
  9165. "notification-url": "https://packagist.org/downloads/",
  9166. "license": [
  9167. "MIT"
  9168. ],
  9169. "authors": [
  9170. {
  9171. "name": "Nicolas Grekas",
  9172. "email": "[email protected]"
  9173. },
  9174. {
  9175. "name": "Symfony Community",
  9176. "homepage": "https://symfony.com/contributors"
  9177. }
  9178. ],
  9179. "description": "Generic abstractions related to dispatching event",
  9180. "homepage": "https://symfony.com",
  9181. "keywords": [
  9182. "abstractions",
  9183. "contracts",
  9184. "decoupling",
  9185. "interfaces",
  9186. "interoperability",
  9187. "standards"
  9188. ],
  9189. "support": {
  9190. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  9191. },
  9192. "funding": [
  9193. {
  9194. "url": "https://symfony.com/sponsor",
  9195. "type": "custom"
  9196. },
  9197. {
  9198. "url": "https://github.com/fabpot",
  9199. "type": "github"
  9200. },
  9201. {
  9202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9203. "type": "tidelift"
  9204. }
  9205. ],
  9206. "time": "2023-05-23T14:45:45+00:00"
  9207. },
  9208. {
  9209. "name": "symfony/filesystem",
  9210. "version": "v7.0.3",
  9211. "source": {
  9212. "type": "git",
  9213. "url": "https://github.com/symfony/filesystem.git",
  9214. "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12"
  9215. },
  9216. "dist": {
  9217. "type": "zip",
  9218. "url": "https://api.github.com/repos/symfony/filesystem/zipball/2890e3a825bc0c0558526c04499c13f83e1b6b12",
  9219. "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12",
  9220. "shasum": ""
  9221. },
  9222. "require": {
  9223. "php": ">=8.2",
  9224. "symfony/polyfill-ctype": "~1.8",
  9225. "symfony/polyfill-mbstring": "~1.8"
  9226. },
  9227. "type": "library",
  9228. "autoload": {
  9229. "psr-4": {
  9230. "Symfony\\Component\\Filesystem\\": ""
  9231. },
  9232. "exclude-from-classmap": [
  9233. "/Tests/"
  9234. ]
  9235. },
  9236. "notification-url": "https://packagist.org/downloads/",
  9237. "license": [
  9238. "MIT"
  9239. ],
  9240. "authors": [
  9241. {
  9242. "name": "Fabien Potencier",
  9243. "email": "[email protected]"
  9244. },
  9245. {
  9246. "name": "Symfony Community",
  9247. "homepage": "https://symfony.com/contributors"
  9248. }
  9249. ],
  9250. "description": "Provides basic utilities for the filesystem",
  9251. "homepage": "https://symfony.com",
  9252. "support": {
  9253. "source": "https://github.com/symfony/filesystem/tree/v7.0.3"
  9254. },
  9255. "funding": [
  9256. {
  9257. "url": "https://symfony.com/sponsor",
  9258. "type": "custom"
  9259. },
  9260. {
  9261. "url": "https://github.com/fabpot",
  9262. "type": "github"
  9263. },
  9264. {
  9265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9266. "type": "tidelift"
  9267. }
  9268. ],
  9269. "time": "2024-01-23T15:02:46+00:00"
  9270. },
  9271. {
  9272. "name": "symfony/finder",
  9273. "version": "v7.0.0",
  9274. "source": {
  9275. "type": "git",
  9276. "url": "https://github.com/symfony/finder.git",
  9277. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56"
  9278. },
  9279. "dist": {
  9280. "type": "zip",
  9281. "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  9282. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  9283. "shasum": ""
  9284. },
  9285. "require": {
  9286. "php": ">=8.2"
  9287. },
  9288. "require-dev": {
  9289. "symfony/filesystem": "^6.4|^7.0"
  9290. },
  9291. "type": "library",
  9292. "autoload": {
  9293. "psr-4": {
  9294. "Symfony\\Component\\Finder\\": ""
  9295. },
  9296. "exclude-from-classmap": [
  9297. "/Tests/"
  9298. ]
  9299. },
  9300. "notification-url": "https://packagist.org/downloads/",
  9301. "license": [
  9302. "MIT"
  9303. ],
  9304. "authors": [
  9305. {
  9306. "name": "Fabien Potencier",
  9307. "email": "[email protected]"
  9308. },
  9309. {
  9310. "name": "Symfony Community",
  9311. "homepage": "https://symfony.com/contributors"
  9312. }
  9313. ],
  9314. "description": "Finds files and directories via an intuitive fluent interface",
  9315. "homepage": "https://symfony.com",
  9316. "support": {
  9317. "source": "https://github.com/symfony/finder/tree/v7.0.0"
  9318. },
  9319. "funding": [
  9320. {
  9321. "url": "https://symfony.com/sponsor",
  9322. "type": "custom"
  9323. },
  9324. {
  9325. "url": "https://github.com/fabpot",
  9326. "type": "github"
  9327. },
  9328. {
  9329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9330. "type": "tidelift"
  9331. }
  9332. ],
  9333. "time": "2023-10-31T17:59:56+00:00"
  9334. },
  9335. {
  9336. "name": "symfony/polyfill-php81",
  9337. "version": "v1.29.0",
  9338. "source": {
  9339. "type": "git",
  9340. "url": "https://github.com/symfony/polyfill-php81.git",
  9341. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  9342. },
  9343. "dist": {
  9344. "type": "zip",
  9345. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  9346. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  9347. "shasum": ""
  9348. },
  9349. "require": {
  9350. "php": ">=7.1"
  9351. },
  9352. "type": "library",
  9353. "extra": {
  9354. "thanks": {
  9355. "name": "symfony/polyfill",
  9356. "url": "https://github.com/symfony/polyfill"
  9357. }
  9358. },
  9359. "autoload": {
  9360. "files": [
  9361. "bootstrap.php"
  9362. ],
  9363. "psr-4": {
  9364. "Symfony\\Polyfill\\Php81\\": ""
  9365. },
  9366. "classmap": [
  9367. "Resources/stubs"
  9368. ]
  9369. },
  9370. "notification-url": "https://packagist.org/downloads/",
  9371. "license": [
  9372. "MIT"
  9373. ],
  9374. "authors": [
  9375. {
  9376. "name": "Nicolas Grekas",
  9377. "email": "[email protected]"
  9378. },
  9379. {
  9380. "name": "Symfony Community",
  9381. "homepage": "https://symfony.com/contributors"
  9382. }
  9383. ],
  9384. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9385. "homepage": "https://symfony.com",
  9386. "keywords": [
  9387. "compatibility",
  9388. "polyfill",
  9389. "portable",
  9390. "shim"
  9391. ],
  9392. "support": {
  9393. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  9394. },
  9395. "funding": [
  9396. {
  9397. "url": "https://symfony.com/sponsor",
  9398. "type": "custom"
  9399. },
  9400. {
  9401. "url": "https://github.com/fabpot",
  9402. "type": "github"
  9403. },
  9404. {
  9405. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9406. "type": "tidelift"
  9407. }
  9408. ],
  9409. "time": "2024-01-29T20:11:03+00:00"
  9410. },
  9411. {
  9412. "name": "symfony/process",
  9413. "version": "v7.0.4",
  9414. "source": {
  9415. "type": "git",
  9416. "url": "https://github.com/symfony/process.git",
  9417. "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9"
  9418. },
  9419. "dist": {
  9420. "type": "zip",
  9421. "url": "https://api.github.com/repos/symfony/process/zipball/0e7727191c3b71ebec6d529fa0e50a01ca5679e9",
  9422. "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9",
  9423. "shasum": ""
  9424. },
  9425. "require": {
  9426. "php": ">=8.2"
  9427. },
  9428. "type": "library",
  9429. "autoload": {
  9430. "psr-4": {
  9431. "Symfony\\Component\\Process\\": ""
  9432. },
  9433. "exclude-from-classmap": [
  9434. "/Tests/"
  9435. ]
  9436. },
  9437. "notification-url": "https://packagist.org/downloads/",
  9438. "license": [
  9439. "MIT"
  9440. ],
  9441. "authors": [
  9442. {
  9443. "name": "Fabien Potencier",
  9444. "email": "[email protected]"
  9445. },
  9446. {
  9447. "name": "Symfony Community",
  9448. "homepage": "https://symfony.com/contributors"
  9449. }
  9450. ],
  9451. "description": "Executes commands in sub-processes",
  9452. "homepage": "https://symfony.com",
  9453. "support": {
  9454. "source": "https://github.com/symfony/process/tree/v7.0.4"
  9455. },
  9456. "funding": [
  9457. {
  9458. "url": "https://symfony.com/sponsor",
  9459. "type": "custom"
  9460. },
  9461. {
  9462. "url": "https://github.com/fabpot",
  9463. "type": "github"
  9464. },
  9465. {
  9466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9467. "type": "tidelift"
  9468. }
  9469. ],
  9470. "time": "2024-02-22T20:27:20+00:00"
  9471. },
  9472. {
  9473. "name": "symfony/stopwatch",
  9474. "version": "v7.0.3",
  9475. "source": {
  9476. "type": "git",
  9477. "url": "https://github.com/symfony/stopwatch.git",
  9478. "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112"
  9479. },
  9480. "dist": {
  9481. "type": "zip",
  9482. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/983900d6fddf2b0cbaacacbbad07610854bd8112",
  9483. "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112",
  9484. "shasum": ""
  9485. },
  9486. "require": {
  9487. "php": ">=8.2",
  9488. "symfony/service-contracts": "^2.5|^3"
  9489. },
  9490. "type": "library",
  9491. "autoload": {
  9492. "psr-4": {
  9493. "Symfony\\Component\\Stopwatch\\": ""
  9494. },
  9495. "exclude-from-classmap": [
  9496. "/Tests/"
  9497. ]
  9498. },
  9499. "notification-url": "https://packagist.org/downloads/",
  9500. "license": [
  9501. "MIT"
  9502. ],
  9503. "authors": [
  9504. {
  9505. "name": "Fabien Potencier",
  9506. "email": "[email protected]"
  9507. },
  9508. {
  9509. "name": "Symfony Community",
  9510. "homepage": "https://symfony.com/contributors"
  9511. }
  9512. ],
  9513. "description": "Provides a way to profile code",
  9514. "homepage": "https://symfony.com",
  9515. "support": {
  9516. "source": "https://github.com/symfony/stopwatch/tree/v7.0.3"
  9517. },
  9518. "funding": [
  9519. {
  9520. "url": "https://symfony.com/sponsor",
  9521. "type": "custom"
  9522. },
  9523. {
  9524. "url": "https://github.com/fabpot",
  9525. "type": "github"
  9526. },
  9527. {
  9528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9529. "type": "tidelift"
  9530. }
  9531. ],
  9532. "time": "2024-01-23T15:02:46+00:00"
  9533. },
  9534. {
  9535. "name": "symfony/string",
  9536. "version": "v7.0.4",
  9537. "source": {
  9538. "type": "git",
  9539. "url": "https://github.com/symfony/string.git",
  9540. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b"
  9541. },
  9542. "dist": {
  9543. "type": "zip",
  9544. "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b",
  9545. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b",
  9546. "shasum": ""
  9547. },
  9548. "require": {
  9549. "php": ">=8.2",
  9550. "symfony/polyfill-ctype": "~1.8",
  9551. "symfony/polyfill-intl-grapheme": "~1.0",
  9552. "symfony/polyfill-intl-normalizer": "~1.0",
  9553. "symfony/polyfill-mbstring": "~1.0"
  9554. },
  9555. "conflict": {
  9556. "symfony/translation-contracts": "<2.5"
  9557. },
  9558. "require-dev": {
  9559. "symfony/error-handler": "^6.4|^7.0",
  9560. "symfony/http-client": "^6.4|^7.0",
  9561. "symfony/intl": "^6.4|^7.0",
  9562. "symfony/translation-contracts": "^2.5|^3.0",
  9563. "symfony/var-exporter": "^6.4|^7.0"
  9564. },
  9565. "type": "library",
  9566. "autoload": {
  9567. "files": [
  9568. "Resources/functions.php"
  9569. ],
  9570. "psr-4": {
  9571. "Symfony\\Component\\String\\": ""
  9572. },
  9573. "exclude-from-classmap": [
  9574. "/Tests/"
  9575. ]
  9576. },
  9577. "notification-url": "https://packagist.org/downloads/",
  9578. "license": [
  9579. "MIT"
  9580. ],
  9581. "authors": [
  9582. {
  9583. "name": "Nicolas Grekas",
  9584. "email": "[email protected]"
  9585. },
  9586. {
  9587. "name": "Symfony Community",
  9588. "homepage": "https://symfony.com/contributors"
  9589. }
  9590. ],
  9591. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9592. "homepage": "https://symfony.com",
  9593. "keywords": [
  9594. "grapheme",
  9595. "i18n",
  9596. "string",
  9597. "unicode",
  9598. "utf-8",
  9599. "utf8"
  9600. ],
  9601. "support": {
  9602. "source": "https://github.com/symfony/string/tree/v7.0.4"
  9603. },
  9604. "funding": [
  9605. {
  9606. "url": "https://symfony.com/sponsor",
  9607. "type": "custom"
  9608. },
  9609. {
  9610. "url": "https://github.com/fabpot",
  9611. "type": "github"
  9612. },
  9613. {
  9614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9615. "type": "tidelift"
  9616. }
  9617. ],
  9618. "time": "2024-02-01T13:17:36+00:00"
  9619. },
  9620. {
  9621. "name": "symfony/var-exporter",
  9622. "version": "v7.0.4",
  9623. "source": {
  9624. "type": "git",
  9625. "url": "https://github.com/symfony/var-exporter.git",
  9626. "reference": "dfb0acb6803eb714f05d97dd4c5abe6d5fa9fe41"
  9627. },
  9628. "dist": {
  9629. "type": "zip",
  9630. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/dfb0acb6803eb714f05d97dd4c5abe6d5fa9fe41",
  9631. "reference": "dfb0acb6803eb714f05d97dd4c5abe6d5fa9fe41",
  9632. "shasum": ""
  9633. },
  9634. "require": {
  9635. "php": ">=8.2"
  9636. },
  9637. "require-dev": {
  9638. "symfony/var-dumper": "^6.4|^7.0"
  9639. },
  9640. "type": "library",
  9641. "autoload": {
  9642. "psr-4": {
  9643. "Symfony\\Component\\VarExporter\\": ""
  9644. },
  9645. "exclude-from-classmap": [
  9646. "/Tests/"
  9647. ]
  9648. },
  9649. "notification-url": "https://packagist.org/downloads/",
  9650. "license": [
  9651. "MIT"
  9652. ],
  9653. "authors": [
  9654. {
  9655. "name": "Nicolas Grekas",
  9656. "email": "[email protected]"
  9657. },
  9658. {
  9659. "name": "Symfony Community",
  9660. "homepage": "https://symfony.com/contributors"
  9661. }
  9662. ],
  9663. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9664. "homepage": "https://symfony.com",
  9665. "keywords": [
  9666. "clone",
  9667. "construct",
  9668. "export",
  9669. "hydrate",
  9670. "instantiate",
  9671. "lazy-loading",
  9672. "proxy",
  9673. "serialize"
  9674. ],
  9675. "support": {
  9676. "source": "https://github.com/symfony/var-exporter/tree/v7.0.4"
  9677. },
  9678. "funding": [
  9679. {
  9680. "url": "https://symfony.com/sponsor",
  9681. "type": "custom"
  9682. },
  9683. {
  9684. "url": "https://github.com/fabpot",
  9685. "type": "github"
  9686. },
  9687. {
  9688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9689. "type": "tidelift"
  9690. }
  9691. ],
  9692. "time": "2024-02-26T10:35:24+00:00"
  9693. },
  9694. {
  9695. "name": "theseer/tokenizer",
  9696. "version": "1.2.3",
  9697. "source": {
  9698. "type": "git",
  9699. "url": "https://github.com/theseer/tokenizer.git",
  9700. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  9701. },
  9702. "dist": {
  9703. "type": "zip",
  9704. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9705. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9706. "shasum": ""
  9707. },
  9708. "require": {
  9709. "ext-dom": "*",
  9710. "ext-tokenizer": "*",
  9711. "ext-xmlwriter": "*",
  9712. "php": "^7.2 || ^8.0"
  9713. },
  9714. "type": "library",
  9715. "autoload": {
  9716. "classmap": [
  9717. "src/"
  9718. ]
  9719. },
  9720. "notification-url": "https://packagist.org/downloads/",
  9721. "license": [
  9722. "BSD-3-Clause"
  9723. ],
  9724. "authors": [
  9725. {
  9726. "name": "Arne Blankerts",
  9727. "email": "[email protected]",
  9728. "role": "Developer"
  9729. }
  9730. ],
  9731. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9732. "support": {
  9733. "issues": "https://github.com/theseer/tokenizer/issues",
  9734. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  9735. },
  9736. "funding": [
  9737. {
  9738. "url": "https://github.com/theseer",
  9739. "type": "github"
  9740. }
  9741. ],
  9742. "time": "2024-03-03T12:36:25+00:00"
  9743. }
  9744. ],
  9745. "aliases": [],
  9746. "minimum-stability": "stable",
  9747. "stability-flags": {
  9748. "alipaysdk/openapi": 20
  9749. },
  9750. "prefer-stable": false,
  9751. "prefer-lowest": false,
  9752. "platform": {
  9753. "php": "^8.2",
  9754. "ext-bcmath": "*",
  9755. "ext-curl": "*",
  9756. "ext-fileinfo": "*",
  9757. "ext-json": "*",
  9758. "ext-mbstring": "*",
  9759. "ext-mysqli": "*",
  9760. "ext-openssl": "*",
  9761. "ext-pdo": "*",
  9762. "ext-posix": "*",
  9763. "ext-redis": "*",
  9764. "ext-xml": "*",
  9765. "ext-yaml": "*",
  9766. "ext-zip": "*"
  9767. },
  9768. "platform-dev": [],
  9769. "plugin-api-version": "2.6.0"
  9770. }