composer.lock 362 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162
  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": "83bf52eacfb53b29ac9e01022e19a0bf",
  8. "packages": [
  9. {
  10. "name": "anankke/omnipay-alipay",
  11. "version": "v3.1.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Anankke/omnipay-alipay.git",
  15. "reference": "66b20f5e66b88be1214b9b859de5d5318b49fe90"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Anankke/omnipay-alipay/zipball/66b20f5e66b88be1214b9b859de5d5318b49fe90",
  20. "reference": "66b20f5e66b88be1214b9b859de5d5318b49fe90",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-bcmath": "*",
  25. "ext-json": "*",
  26. "ext-openssl": "*",
  27. "omnipay/common": "^3.0",
  28. "php-http/guzzle7-adapter": "^1"
  29. },
  30. "require-dev": {
  31. "omnipay/tests": "^3.0",
  32. "squizlabs/php_codesniffer": "^3.4"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "files": [
  37. "src/Common/helpers.php"
  38. ],
  39. "psr-4": {
  40. "Omnipay\\Alipay\\": "src/",
  41. "Omnipay\\Alipay\\Tests\\": "tests/"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "Loki Else",
  51. "email": "[email protected]"
  52. }
  53. ],
  54. "description": "Alipay gateway for Omnipay payment processing library",
  55. "homepage": "https://github.com/lokielse/omnipay-alipay",
  56. "keywords": [
  57. "alipay",
  58. "gateway",
  59. "merchant",
  60. "omnipay",
  61. "pay",
  62. "payment",
  63. "purchase"
  64. ],
  65. "support": {
  66. "source": "https://github.com/Anankke/omnipay-alipay/tree/v3.1.3"
  67. },
  68. "time": "2022-04-23T09:09:28+00:00"
  69. },
  70. {
  71. "name": "aws/aws-crt-php",
  72. "version": "v1.2.4",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/awslabs/aws-crt-php.git",
  76. "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/eb0c6e4e142224a10b08f49ebf87f32611d162b2",
  81. "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2",
  82. "shasum": ""
  83. },
  84. "require": {
  85. "php": ">=5.5"
  86. },
  87. "require-dev": {
  88. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  89. "yoast/phpunit-polyfills": "^1.0"
  90. },
  91. "suggest": {
  92. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  93. },
  94. "type": "library",
  95. "autoload": {
  96. "classmap": [
  97. "src/"
  98. ]
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "Apache-2.0"
  103. ],
  104. "authors": [
  105. {
  106. "name": "AWS SDK Common Runtime Team",
  107. "email": "[email protected]"
  108. }
  109. ],
  110. "description": "AWS Common Runtime for PHP",
  111. "homepage": "https://github.com/awslabs/aws-crt-php",
  112. "keywords": [
  113. "amazon",
  114. "aws",
  115. "crt",
  116. "sdk"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  120. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.4"
  121. },
  122. "time": "2023-11-08T00:42:13+00:00"
  123. },
  124. {
  125. "name": "aws/aws-sdk-php",
  126. "version": "3.298.7",
  127. "source": {
  128. "type": "git",
  129. "url": "https://github.com/aws/aws-sdk-php.git",
  130. "reference": "b4d98bfc70df146774bf9b04f5ac5b39955fbad2"
  131. },
  132. "dist": {
  133. "type": "zip",
  134. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/b4d98bfc70df146774bf9b04f5ac5b39955fbad2",
  135. "reference": "b4d98bfc70df146774bf9b04f5ac5b39955fbad2",
  136. "shasum": ""
  137. },
  138. "require": {
  139. "aws/aws-crt-php": "^1.2.3",
  140. "ext-json": "*",
  141. "ext-pcre": "*",
  142. "ext-simplexml": "*",
  143. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  144. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  145. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  146. "mtdowling/jmespath.php": "^2.6",
  147. "php": ">=7.2.5",
  148. "psr/http-message": "^1.0 || ^2.0"
  149. },
  150. "require-dev": {
  151. "andrewsville/php-token-reflection": "^1.4",
  152. "aws/aws-php-sns-message-validator": "~1.0",
  153. "behat/behat": "~3.0",
  154. "composer/composer": "^1.10.22",
  155. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  156. "doctrine/cache": "~1.4",
  157. "ext-dom": "*",
  158. "ext-openssl": "*",
  159. "ext-pcntl": "*",
  160. "ext-sockets": "*",
  161. "nette/neon": "^2.3",
  162. "paragonie/random_compat": ">= 2",
  163. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  164. "psr/cache": "^1.0",
  165. "psr/simple-cache": "^1.0",
  166. "sebastian/comparator": "^1.2.3 || ^4.0",
  167. "yoast/phpunit-polyfills": "^1.0"
  168. },
  169. "suggest": {
  170. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  171. "doctrine/cache": "To use the DoctrineCacheAdapter",
  172. "ext-curl": "To send requests using cURL",
  173. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  174. "ext-sockets": "To use client-side monitoring"
  175. },
  176. "type": "library",
  177. "extra": {
  178. "branch-alias": {
  179. "dev-master": "3.0-dev"
  180. }
  181. },
  182. "autoload": {
  183. "files": [
  184. "src/functions.php"
  185. ],
  186. "psr-4": {
  187. "Aws\\": "src/"
  188. }
  189. },
  190. "notification-url": "https://packagist.org/downloads/",
  191. "license": [
  192. "Apache-2.0"
  193. ],
  194. "authors": [
  195. {
  196. "name": "Amazon Web Services",
  197. "homepage": "http://aws.amazon.com"
  198. }
  199. ],
  200. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  201. "homepage": "http://aws.amazon.com/sdkforphp",
  202. "keywords": [
  203. "amazon",
  204. "aws",
  205. "cloud",
  206. "dynamodb",
  207. "ec2",
  208. "glacier",
  209. "s3",
  210. "sdk"
  211. ],
  212. "support": {
  213. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  214. "issues": "https://github.com/aws/aws-sdk-php/issues",
  215. "source": "https://github.com/aws/aws-sdk-php/tree/3.298.7"
  216. },
  217. "time": "2024-02-09T19:07:04+00:00"
  218. },
  219. {
  220. "name": "bacon/bacon-qr-code",
  221. "version": "2.0.8",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/Bacon/BaconQrCode.git",
  225. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  230. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "dasprid/enum": "^1.0.3",
  235. "ext-iconv": "*",
  236. "php": "^7.1 || ^8.0"
  237. },
  238. "require-dev": {
  239. "phly/keep-a-changelog": "^2.1",
  240. "phpunit/phpunit": "^7 | ^8 | ^9",
  241. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  242. "squizlabs/php_codesniffer": "^3.4"
  243. },
  244. "suggest": {
  245. "ext-imagick": "to generate QR code images"
  246. },
  247. "type": "library",
  248. "autoload": {
  249. "psr-4": {
  250. "BaconQrCode\\": "src/"
  251. }
  252. },
  253. "notification-url": "https://packagist.org/downloads/",
  254. "license": [
  255. "BSD-2-Clause"
  256. ],
  257. "authors": [
  258. {
  259. "name": "Ben Scholzen 'DASPRiD'",
  260. "email": "[email protected]",
  261. "homepage": "https://dasprids.de/",
  262. "role": "Developer"
  263. }
  264. ],
  265. "description": "BaconQrCode is a QR code generator for PHP.",
  266. "homepage": "https://github.com/Bacon/BaconQrCode",
  267. "support": {
  268. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  269. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  270. },
  271. "time": "2022-12-07T17:46:57+00:00"
  272. },
  273. {
  274. "name": "beberlei/assert",
  275. "version": "v3.3.2",
  276. "source": {
  277. "type": "git",
  278. "url": "https://github.com/beberlei/assert.git",
  279. "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655"
  280. },
  281. "dist": {
  282. "type": "zip",
  283. "url": "https://api.github.com/repos/beberlei/assert/zipball/cb70015c04be1baee6f5f5c953703347c0ac1655",
  284. "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655",
  285. "shasum": ""
  286. },
  287. "require": {
  288. "ext-ctype": "*",
  289. "ext-json": "*",
  290. "ext-mbstring": "*",
  291. "ext-simplexml": "*",
  292. "php": "^7.0 || ^8.0"
  293. },
  294. "require-dev": {
  295. "friendsofphp/php-cs-fixer": "*",
  296. "phpstan/phpstan": "*",
  297. "phpunit/phpunit": ">=6.0.0",
  298. "yoast/phpunit-polyfills": "^0.1.0"
  299. },
  300. "suggest": {
  301. "ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles"
  302. },
  303. "type": "library",
  304. "autoload": {
  305. "files": [
  306. "lib/Assert/functions.php"
  307. ],
  308. "psr-4": {
  309. "Assert\\": "lib/Assert"
  310. }
  311. },
  312. "notification-url": "https://packagist.org/downloads/",
  313. "license": [
  314. "BSD-2-Clause"
  315. ],
  316. "authors": [
  317. {
  318. "name": "Benjamin Eberlei",
  319. "email": "[email protected]",
  320. "role": "Lead Developer"
  321. },
  322. {
  323. "name": "Richard Quadling",
  324. "email": "[email protected]",
  325. "role": "Collaborator"
  326. }
  327. ],
  328. "description": "Thin assertion library for input validation in business models.",
  329. "keywords": [
  330. "assert",
  331. "assertion",
  332. "validation"
  333. ],
  334. "support": {
  335. "issues": "https://github.com/beberlei/assert/issues",
  336. "source": "https://github.com/beberlei/assert/tree/v3.3.2"
  337. },
  338. "time": "2021-12-16T21:41:27+00:00"
  339. },
  340. {
  341. "name": "brick/math",
  342. "version": "0.11.0",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/brick/math.git",
  346. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  351. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "php": "^8.0"
  356. },
  357. "require-dev": {
  358. "php-coveralls/php-coveralls": "^2.2",
  359. "phpunit/phpunit": "^9.0",
  360. "vimeo/psalm": "5.0.0"
  361. },
  362. "type": "library",
  363. "autoload": {
  364. "psr-4": {
  365. "Brick\\Math\\": "src/"
  366. }
  367. },
  368. "notification-url": "https://packagist.org/downloads/",
  369. "license": [
  370. "MIT"
  371. ],
  372. "description": "Arbitrary-precision arithmetic library",
  373. "keywords": [
  374. "Arbitrary-precision",
  375. "BigInteger",
  376. "BigRational",
  377. "arithmetic",
  378. "bigdecimal",
  379. "bignum",
  380. "brick",
  381. "math"
  382. ],
  383. "support": {
  384. "issues": "https://github.com/brick/math/issues",
  385. "source": "https://github.com/brick/math/tree/0.11.0"
  386. },
  387. "funding": [
  388. {
  389. "url": "https://github.com/BenMorel",
  390. "type": "github"
  391. }
  392. ],
  393. "time": "2023-01-15T23:15:59+00:00"
  394. },
  395. {
  396. "name": "carbonphp/carbon-doctrine-types",
  397. "version": "2.1.0",
  398. "source": {
  399. "type": "git",
  400. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  401. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  402. },
  403. "dist": {
  404. "type": "zip",
  405. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  406. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  407. "shasum": ""
  408. },
  409. "require": {
  410. "php": "^7.4 || ^8.0"
  411. },
  412. "conflict": {
  413. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  414. },
  415. "require-dev": {
  416. "doctrine/dbal": "^3.7.0",
  417. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  418. "phpunit/phpunit": "^10.3"
  419. },
  420. "type": "library",
  421. "autoload": {
  422. "psr-4": {
  423. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  424. }
  425. },
  426. "notification-url": "https://packagist.org/downloads/",
  427. "license": [
  428. "MIT"
  429. ],
  430. "authors": [
  431. {
  432. "name": "KyleKatarn",
  433. "email": "[email protected]"
  434. }
  435. ],
  436. "description": "Types to use Carbon in Doctrine",
  437. "keywords": [
  438. "carbon",
  439. "date",
  440. "datetime",
  441. "doctrine",
  442. "time"
  443. ],
  444. "support": {
  445. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  446. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  447. },
  448. "funding": [
  449. {
  450. "url": "https://github.com/kylekatarnls",
  451. "type": "github"
  452. },
  453. {
  454. "url": "https://opencollective.com/Carbon",
  455. "type": "open_collective"
  456. },
  457. {
  458. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  459. "type": "tidelift"
  460. }
  461. ],
  462. "time": "2023-12-11T17:09:12+00:00"
  463. },
  464. {
  465. "name": "clue/stream-filter",
  466. "version": "v1.7.0",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/clue/stream-filter.git",
  470. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7",
  475. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": ">=5.3"
  480. },
  481. "require-dev": {
  482. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  483. },
  484. "type": "library",
  485. "autoload": {
  486. "files": [
  487. "src/functions_include.php"
  488. ],
  489. "psr-4": {
  490. "Clue\\StreamFilter\\": "src/"
  491. }
  492. },
  493. "notification-url": "https://packagist.org/downloads/",
  494. "license": [
  495. "MIT"
  496. ],
  497. "authors": [
  498. {
  499. "name": "Christian Lück",
  500. "email": "[email protected]"
  501. }
  502. ],
  503. "description": "A simple and modern approach to stream filtering in PHP",
  504. "homepage": "https://github.com/clue/stream-filter",
  505. "keywords": [
  506. "bucket brigade",
  507. "callback",
  508. "filter",
  509. "php_user_filter",
  510. "stream",
  511. "stream_filter_append",
  512. "stream_filter_register"
  513. ],
  514. "support": {
  515. "issues": "https://github.com/clue/stream-filter/issues",
  516. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  517. },
  518. "funding": [
  519. {
  520. "url": "https://clue.engineering/support",
  521. "type": "custom"
  522. },
  523. {
  524. "url": "https://github.com/clue",
  525. "type": "github"
  526. }
  527. ],
  528. "time": "2023-12-20T15:40:13+00:00"
  529. },
  530. {
  531. "name": "composer/ca-bundle",
  532. "version": "1.4.0",
  533. "source": {
  534. "type": "git",
  535. "url": "https://github.com/composer/ca-bundle.git",
  536. "reference": "b66d11b7479109ab547f9405b97205640b17d385"
  537. },
  538. "dist": {
  539. "type": "zip",
  540. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/b66d11b7479109ab547f9405b97205640b17d385",
  541. "reference": "b66d11b7479109ab547f9405b97205640b17d385",
  542. "shasum": ""
  543. },
  544. "require": {
  545. "ext-openssl": "*",
  546. "ext-pcre": "*",
  547. "php": "^5.3.2 || ^7.0 || ^8.0"
  548. },
  549. "require-dev": {
  550. "phpstan/phpstan": "^0.12.55",
  551. "psr/log": "^1.0",
  552. "symfony/phpunit-bridge": "^4.2 || ^5",
  553. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  554. },
  555. "type": "library",
  556. "extra": {
  557. "branch-alias": {
  558. "dev-main": "1.x-dev"
  559. }
  560. },
  561. "autoload": {
  562. "psr-4": {
  563. "Composer\\CaBundle\\": "src"
  564. }
  565. },
  566. "notification-url": "https://packagist.org/downloads/",
  567. "license": [
  568. "MIT"
  569. ],
  570. "authors": [
  571. {
  572. "name": "Jordi Boggiano",
  573. "email": "[email protected]",
  574. "homepage": "http://seld.be"
  575. }
  576. ],
  577. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  578. "keywords": [
  579. "cabundle",
  580. "cacert",
  581. "certificate",
  582. "ssl",
  583. "tls"
  584. ],
  585. "support": {
  586. "irc": "irc://irc.freenode.org/composer",
  587. "issues": "https://github.com/composer/ca-bundle/issues",
  588. "source": "https://github.com/composer/ca-bundle/tree/1.4.0"
  589. },
  590. "funding": [
  591. {
  592. "url": "https://packagist.com",
  593. "type": "custom"
  594. },
  595. {
  596. "url": "https://github.com/composer",
  597. "type": "github"
  598. },
  599. {
  600. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  601. "type": "tidelift"
  602. }
  603. ],
  604. "time": "2023-12-18T12:05:55+00:00"
  605. },
  606. {
  607. "name": "dasprid/enum",
  608. "version": "1.0.5",
  609. "source": {
  610. "type": "git",
  611. "url": "https://github.com/DASPRiD/Enum.git",
  612. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
  613. },
  614. "dist": {
  615. "type": "zip",
  616. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
  617. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
  618. "shasum": ""
  619. },
  620. "require": {
  621. "php": ">=7.1 <9.0"
  622. },
  623. "require-dev": {
  624. "phpunit/phpunit": "^7 | ^8 | ^9",
  625. "squizlabs/php_codesniffer": "*"
  626. },
  627. "type": "library",
  628. "autoload": {
  629. "psr-4": {
  630. "DASPRiD\\Enum\\": "src/"
  631. }
  632. },
  633. "notification-url": "https://packagist.org/downloads/",
  634. "license": [
  635. "BSD-2-Clause"
  636. ],
  637. "authors": [
  638. {
  639. "name": "Ben Scholzen 'DASPRiD'",
  640. "email": "[email protected]",
  641. "homepage": "https://dasprids.de/",
  642. "role": "Developer"
  643. }
  644. ],
  645. "description": "PHP 7.1 enum implementation",
  646. "keywords": [
  647. "enum",
  648. "map"
  649. ],
  650. "support": {
  651. "issues": "https://github.com/DASPRiD/Enum/issues",
  652. "source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
  653. },
  654. "time": "2023-08-25T16:18:39+00:00"
  655. },
  656. {
  657. "name": "doctrine/inflector",
  658. "version": "2.0.9",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/doctrine/inflector.git",
  662. "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/doctrine/inflector/zipball/2930cd5ef353871c821d5c43ed030d39ac8cfe65",
  667. "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65",
  668. "shasum": ""
  669. },
  670. "require": {
  671. "php": "^7.2 || ^8.0"
  672. },
  673. "require-dev": {
  674. "doctrine/coding-standard": "^11.0",
  675. "phpstan/phpstan": "^1.8",
  676. "phpstan/phpstan-phpunit": "^1.1",
  677. "phpstan/phpstan-strict-rules": "^1.3",
  678. "phpunit/phpunit": "^8.5 || ^9.5",
  679. "vimeo/psalm": "^4.25 || ^5.4"
  680. },
  681. "type": "library",
  682. "autoload": {
  683. "psr-4": {
  684. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  685. }
  686. },
  687. "notification-url": "https://packagist.org/downloads/",
  688. "license": [
  689. "MIT"
  690. ],
  691. "authors": [
  692. {
  693. "name": "Guilherme Blanco",
  694. "email": "[email protected]"
  695. },
  696. {
  697. "name": "Roman Borschel",
  698. "email": "[email protected]"
  699. },
  700. {
  701. "name": "Benjamin Eberlei",
  702. "email": "[email protected]"
  703. },
  704. {
  705. "name": "Jonathan Wage",
  706. "email": "[email protected]"
  707. },
  708. {
  709. "name": "Johannes Schmitt",
  710. "email": "[email protected]"
  711. }
  712. ],
  713. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  714. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  715. "keywords": [
  716. "inflection",
  717. "inflector",
  718. "lowercase",
  719. "manipulation",
  720. "php",
  721. "plural",
  722. "singular",
  723. "strings",
  724. "uppercase",
  725. "words"
  726. ],
  727. "support": {
  728. "issues": "https://github.com/doctrine/inflector/issues",
  729. "source": "https://github.com/doctrine/inflector/tree/2.0.9"
  730. },
  731. "funding": [
  732. {
  733. "url": "https://www.doctrine-project.org/sponsorship.html",
  734. "type": "custom"
  735. },
  736. {
  737. "url": "https://www.patreon.com/phpdoctrine",
  738. "type": "patreon"
  739. },
  740. {
  741. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  742. "type": "tidelift"
  743. }
  744. ],
  745. "time": "2024-01-15T18:05:13+00:00"
  746. },
  747. {
  748. "name": "endroid/qr-code",
  749. "version": "5.0.4",
  750. "source": {
  751. "type": "git",
  752. "url": "https://github.com/endroid/qr-code.git",
  753. "reference": "0efd071a3640af323e23c94122fe92cfd5199833"
  754. },
  755. "dist": {
  756. "type": "zip",
  757. "url": "https://api.github.com/repos/endroid/qr-code/zipball/0efd071a3640af323e23c94122fe92cfd5199833",
  758. "reference": "0efd071a3640af323e23c94122fe92cfd5199833",
  759. "shasum": ""
  760. },
  761. "require": {
  762. "bacon/bacon-qr-code": "^2.0.5",
  763. "php": "^8.1"
  764. },
  765. "conflict": {
  766. "khanamiryan/qrcode-detector-decoder": "^1.0.6"
  767. },
  768. "require-dev": {
  769. "endroid/quality": "dev-main",
  770. "ext-gd": "*",
  771. "khanamiryan/qrcode-detector-decoder": "^1.0.4||^2.0.2",
  772. "setasign/fpdf": "^1.8.2"
  773. },
  774. "suggest": {
  775. "ext-gd": "Enables you to write PNG images",
  776. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  777. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  778. "setasign/fpdf": "Enables you to use the PDF writer"
  779. },
  780. "type": "library",
  781. "extra": {
  782. "branch-alias": {
  783. "dev-main": "5.x-dev"
  784. }
  785. },
  786. "autoload": {
  787. "psr-4": {
  788. "Endroid\\QrCode\\": "src/"
  789. }
  790. },
  791. "notification-url": "https://packagist.org/downloads/",
  792. "license": [
  793. "MIT"
  794. ],
  795. "authors": [
  796. {
  797. "name": "Jeroen van den Enden",
  798. "email": "[email protected]"
  799. }
  800. ],
  801. "description": "Endroid QR Code",
  802. "homepage": "https://github.com/endroid/qr-code",
  803. "keywords": [
  804. "code",
  805. "endroid",
  806. "php",
  807. "qr",
  808. "qrcode"
  809. ],
  810. "support": {
  811. "issues": "https://github.com/endroid/qr-code/issues",
  812. "source": "https://github.com/endroid/qr-code/tree/5.0.4"
  813. },
  814. "funding": [
  815. {
  816. "url": "https://github.com/endroid",
  817. "type": "github"
  818. }
  819. ],
  820. "time": "2023-12-24T13:47:07+00:00"
  821. },
  822. {
  823. "name": "geoip2/geoip2",
  824. "version": "v3.0.0",
  825. "source": {
  826. "type": "git",
  827. "url": "[email protected]:maxmind/GeoIP2-php.git",
  828. "reference": "1a802ce9356cdd1c6b681c030fd9563750e11e6a"
  829. },
  830. "dist": {
  831. "type": "zip",
  832. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/1a802ce9356cdd1c6b681c030fd9563750e11e6a",
  833. "reference": "1a802ce9356cdd1c6b681c030fd9563750e11e6a",
  834. "shasum": ""
  835. },
  836. "require": {
  837. "ext-json": "*",
  838. "maxmind-db/reader": "^1.11.1",
  839. "maxmind/web-service-common": "~0.8",
  840. "php": ">=8.1"
  841. },
  842. "require-dev": {
  843. "friendsofphp/php-cs-fixer": "3.*",
  844. "phpstan/phpstan": "*",
  845. "phpunit/phpunit": "^10.0",
  846. "squizlabs/php_codesniffer": "3.*"
  847. },
  848. "type": "library",
  849. "autoload": {
  850. "psr-4": {
  851. "GeoIp2\\": "src"
  852. }
  853. },
  854. "notification-url": "https://packagist.org/downloads/",
  855. "license": [
  856. "Apache-2.0"
  857. ],
  858. "authors": [
  859. {
  860. "name": "Gregory J. Oschwald",
  861. "email": "[email protected]",
  862. "homepage": "https://www.maxmind.com/"
  863. }
  864. ],
  865. "description": "MaxMind GeoIP2 PHP API",
  866. "homepage": "https://github.com/maxmind/GeoIP2-php",
  867. "keywords": [
  868. "IP",
  869. "geoip",
  870. "geoip2",
  871. "geolocation",
  872. "maxmind"
  873. ],
  874. "time": "2023-12-04T17:16:34+00:00"
  875. },
  876. {
  877. "name": "guzzlehttp/guzzle",
  878. "version": "7.8.1",
  879. "source": {
  880. "type": "git",
  881. "url": "https://github.com/guzzle/guzzle.git",
  882. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  883. },
  884. "dist": {
  885. "type": "zip",
  886. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  887. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  888. "shasum": ""
  889. },
  890. "require": {
  891. "ext-json": "*",
  892. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  893. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  894. "php": "^7.2.5 || ^8.0",
  895. "psr/http-client": "^1.0",
  896. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  897. },
  898. "provide": {
  899. "psr/http-client-implementation": "1.0"
  900. },
  901. "require-dev": {
  902. "bamarni/composer-bin-plugin": "^1.8.2",
  903. "ext-curl": "*",
  904. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  905. "php-http/message-factory": "^1.1",
  906. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  907. "psr/log": "^1.1 || ^2.0 || ^3.0"
  908. },
  909. "suggest": {
  910. "ext-curl": "Required for CURL handler support",
  911. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  912. "psr/log": "Required for using the Log middleware"
  913. },
  914. "type": "library",
  915. "extra": {
  916. "bamarni-bin": {
  917. "bin-links": true,
  918. "forward-command": false
  919. }
  920. },
  921. "autoload": {
  922. "files": [
  923. "src/functions_include.php"
  924. ],
  925. "psr-4": {
  926. "GuzzleHttp\\": "src/"
  927. }
  928. },
  929. "notification-url": "https://packagist.org/downloads/",
  930. "license": [
  931. "MIT"
  932. ],
  933. "authors": [
  934. {
  935. "name": "Graham Campbell",
  936. "email": "[email protected]",
  937. "homepage": "https://github.com/GrahamCampbell"
  938. },
  939. {
  940. "name": "Michael Dowling",
  941. "email": "[email protected]",
  942. "homepage": "https://github.com/mtdowling"
  943. },
  944. {
  945. "name": "Jeremy Lindblom",
  946. "email": "[email protected]",
  947. "homepage": "https://github.com/jeremeamia"
  948. },
  949. {
  950. "name": "George Mponos",
  951. "email": "[email protected]",
  952. "homepage": "https://github.com/gmponos"
  953. },
  954. {
  955. "name": "Tobias Nyholm",
  956. "email": "[email protected]",
  957. "homepage": "https://github.com/Nyholm"
  958. },
  959. {
  960. "name": "Márk Sági-Kazár",
  961. "email": "[email protected]",
  962. "homepage": "https://github.com/sagikazarmark"
  963. },
  964. {
  965. "name": "Tobias Schultze",
  966. "email": "[email protected]",
  967. "homepage": "https://github.com/Tobion"
  968. }
  969. ],
  970. "description": "Guzzle is a PHP HTTP client library",
  971. "keywords": [
  972. "client",
  973. "curl",
  974. "framework",
  975. "http",
  976. "http client",
  977. "psr-18",
  978. "psr-7",
  979. "rest",
  980. "web service"
  981. ],
  982. "support": {
  983. "issues": "https://github.com/guzzle/guzzle/issues",
  984. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  985. },
  986. "funding": [
  987. {
  988. "url": "https://github.com/GrahamCampbell",
  989. "type": "github"
  990. },
  991. {
  992. "url": "https://github.com/Nyholm",
  993. "type": "github"
  994. },
  995. {
  996. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  997. "type": "tidelift"
  998. }
  999. ],
  1000. "time": "2023-12-03T20:35:24+00:00"
  1001. },
  1002. {
  1003. "name": "guzzlehttp/promises",
  1004. "version": "2.0.2",
  1005. "source": {
  1006. "type": "git",
  1007. "url": "https://github.com/guzzle/promises.git",
  1008. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  1009. },
  1010. "dist": {
  1011. "type": "zip",
  1012. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  1013. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  1014. "shasum": ""
  1015. },
  1016. "require": {
  1017. "php": "^7.2.5 || ^8.0"
  1018. },
  1019. "require-dev": {
  1020. "bamarni/composer-bin-plugin": "^1.8.2",
  1021. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1022. },
  1023. "type": "library",
  1024. "extra": {
  1025. "bamarni-bin": {
  1026. "bin-links": true,
  1027. "forward-command": false
  1028. }
  1029. },
  1030. "autoload": {
  1031. "psr-4": {
  1032. "GuzzleHttp\\Promise\\": "src/"
  1033. }
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Graham Campbell",
  1042. "email": "[email protected]",
  1043. "homepage": "https://github.com/GrahamCampbell"
  1044. },
  1045. {
  1046. "name": "Michael Dowling",
  1047. "email": "[email protected]",
  1048. "homepage": "https://github.com/mtdowling"
  1049. },
  1050. {
  1051. "name": "Tobias Nyholm",
  1052. "email": "[email protected]",
  1053. "homepage": "https://github.com/Nyholm"
  1054. },
  1055. {
  1056. "name": "Tobias Schultze",
  1057. "email": "[email protected]",
  1058. "homepage": "https://github.com/Tobion"
  1059. }
  1060. ],
  1061. "description": "Guzzle promises library",
  1062. "keywords": [
  1063. "promise"
  1064. ],
  1065. "support": {
  1066. "issues": "https://github.com/guzzle/promises/issues",
  1067. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  1068. },
  1069. "funding": [
  1070. {
  1071. "url": "https://github.com/GrahamCampbell",
  1072. "type": "github"
  1073. },
  1074. {
  1075. "url": "https://github.com/Nyholm",
  1076. "type": "github"
  1077. },
  1078. {
  1079. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1080. "type": "tidelift"
  1081. }
  1082. ],
  1083. "time": "2023-12-03T20:19:20+00:00"
  1084. },
  1085. {
  1086. "name": "guzzlehttp/psr7",
  1087. "version": "2.6.2",
  1088. "source": {
  1089. "type": "git",
  1090. "url": "https://github.com/guzzle/psr7.git",
  1091. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1092. },
  1093. "dist": {
  1094. "type": "zip",
  1095. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1096. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1097. "shasum": ""
  1098. },
  1099. "require": {
  1100. "php": "^7.2.5 || ^8.0",
  1101. "psr/http-factory": "^1.0",
  1102. "psr/http-message": "^1.1 || ^2.0",
  1103. "ralouphie/getallheaders": "^3.0"
  1104. },
  1105. "provide": {
  1106. "psr/http-factory-implementation": "1.0",
  1107. "psr/http-message-implementation": "1.0"
  1108. },
  1109. "require-dev": {
  1110. "bamarni/composer-bin-plugin": "^1.8.2",
  1111. "http-interop/http-factory-tests": "^0.9",
  1112. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1113. },
  1114. "suggest": {
  1115. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "bamarni-bin": {
  1120. "bin-links": true,
  1121. "forward-command": false
  1122. }
  1123. },
  1124. "autoload": {
  1125. "psr-4": {
  1126. "GuzzleHttp\\Psr7\\": "src/"
  1127. }
  1128. },
  1129. "notification-url": "https://packagist.org/downloads/",
  1130. "license": [
  1131. "MIT"
  1132. ],
  1133. "authors": [
  1134. {
  1135. "name": "Graham Campbell",
  1136. "email": "[email protected]",
  1137. "homepage": "https://github.com/GrahamCampbell"
  1138. },
  1139. {
  1140. "name": "Michael Dowling",
  1141. "email": "[email protected]",
  1142. "homepage": "https://github.com/mtdowling"
  1143. },
  1144. {
  1145. "name": "George Mponos",
  1146. "email": "[email protected]",
  1147. "homepage": "https://github.com/gmponos"
  1148. },
  1149. {
  1150. "name": "Tobias Nyholm",
  1151. "email": "[email protected]",
  1152. "homepage": "https://github.com/Nyholm"
  1153. },
  1154. {
  1155. "name": "Márk Sági-Kazár",
  1156. "email": "[email protected]",
  1157. "homepage": "https://github.com/sagikazarmark"
  1158. },
  1159. {
  1160. "name": "Tobias Schultze",
  1161. "email": "[email protected]",
  1162. "homepage": "https://github.com/Tobion"
  1163. },
  1164. {
  1165. "name": "Márk Sági-Kazár",
  1166. "email": "[email protected]",
  1167. "homepage": "https://sagikazarmark.hu"
  1168. }
  1169. ],
  1170. "description": "PSR-7 message implementation that also provides common utility methods",
  1171. "keywords": [
  1172. "http",
  1173. "message",
  1174. "psr-7",
  1175. "request",
  1176. "response",
  1177. "stream",
  1178. "uri",
  1179. "url"
  1180. ],
  1181. "support": {
  1182. "issues": "https://github.com/guzzle/psr7/issues",
  1183. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1184. },
  1185. "funding": [
  1186. {
  1187. "url": "https://github.com/GrahamCampbell",
  1188. "type": "github"
  1189. },
  1190. {
  1191. "url": "https://github.com/Nyholm",
  1192. "type": "github"
  1193. },
  1194. {
  1195. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1196. "type": "tidelift"
  1197. }
  1198. ],
  1199. "time": "2023-12-03T20:05:35+00:00"
  1200. },
  1201. {
  1202. "name": "illuminate/collections",
  1203. "version": "v10.43.0",
  1204. "source": {
  1205. "type": "git",
  1206. "url": "https://github.com/illuminate/collections.git",
  1207. "reference": "221c1ee944cb20ed807a8a5e8668552d6ca736ff"
  1208. },
  1209. "dist": {
  1210. "type": "zip",
  1211. "url": "https://api.github.com/repos/illuminate/collections/zipball/221c1ee944cb20ed807a8a5e8668552d6ca736ff",
  1212. "reference": "221c1ee944cb20ed807a8a5e8668552d6ca736ff",
  1213. "shasum": ""
  1214. },
  1215. "require": {
  1216. "illuminate/conditionable": "^10.0",
  1217. "illuminate/contracts": "^10.0",
  1218. "illuminate/macroable": "^10.0",
  1219. "php": "^8.1"
  1220. },
  1221. "suggest": {
  1222. "symfony/var-dumper": "Required to use the dump method (^6.2)."
  1223. },
  1224. "type": "library",
  1225. "extra": {
  1226. "branch-alias": {
  1227. "dev-master": "10.x-dev"
  1228. }
  1229. },
  1230. "autoload": {
  1231. "files": [
  1232. "helpers.php"
  1233. ],
  1234. "psr-4": {
  1235. "Illuminate\\Support\\": ""
  1236. }
  1237. },
  1238. "notification-url": "https://packagist.org/downloads/",
  1239. "license": [
  1240. "MIT"
  1241. ],
  1242. "authors": [
  1243. {
  1244. "name": "Taylor Otwell",
  1245. "email": "[email protected]"
  1246. }
  1247. ],
  1248. "description": "The Illuminate Collections package.",
  1249. "homepage": "https://laravel.com",
  1250. "support": {
  1251. "issues": "https://github.com/laravel/framework/issues",
  1252. "source": "https://github.com/laravel/framework"
  1253. },
  1254. "time": "2024-01-22T13:55:20+00:00"
  1255. },
  1256. {
  1257. "name": "illuminate/conditionable",
  1258. "version": "v10.43.0",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/illuminate/conditionable.git",
  1262. "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/d0958e4741fc9d6f516a552060fd1b829a85e009",
  1267. "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009",
  1268. "shasum": ""
  1269. },
  1270. "require": {
  1271. "php": "^8.0.2"
  1272. },
  1273. "type": "library",
  1274. "extra": {
  1275. "branch-alias": {
  1276. "dev-master": "10.x-dev"
  1277. }
  1278. },
  1279. "autoload": {
  1280. "psr-4": {
  1281. "Illuminate\\Support\\": ""
  1282. }
  1283. },
  1284. "notification-url": "https://packagist.org/downloads/",
  1285. "license": [
  1286. "MIT"
  1287. ],
  1288. "authors": [
  1289. {
  1290. "name": "Taylor Otwell",
  1291. "email": "[email protected]"
  1292. }
  1293. ],
  1294. "description": "The Illuminate Conditionable package.",
  1295. "homepage": "https://laravel.com",
  1296. "support": {
  1297. "issues": "https://github.com/laravel/framework/issues",
  1298. "source": "https://github.com/laravel/framework"
  1299. },
  1300. "time": "2023-02-03T08:06:17+00:00"
  1301. },
  1302. {
  1303. "name": "illuminate/container",
  1304. "version": "v10.43.0",
  1305. "source": {
  1306. "type": "git",
  1307. "url": "https://github.com/illuminate/container.git",
  1308. "reference": "ddc26273085fad3c471b2602ad820e0097ff7939"
  1309. },
  1310. "dist": {
  1311. "type": "zip",
  1312. "url": "https://api.github.com/repos/illuminate/container/zipball/ddc26273085fad3c471b2602ad820e0097ff7939",
  1313. "reference": "ddc26273085fad3c471b2602ad820e0097ff7939",
  1314. "shasum": ""
  1315. },
  1316. "require": {
  1317. "illuminate/contracts": "^10.0",
  1318. "php": "^8.1",
  1319. "psr/container": "^1.1.1|^2.0.1"
  1320. },
  1321. "provide": {
  1322. "psr/container-implementation": "1.1|2.0"
  1323. },
  1324. "type": "library",
  1325. "extra": {
  1326. "branch-alias": {
  1327. "dev-master": "10.x-dev"
  1328. }
  1329. },
  1330. "autoload": {
  1331. "psr-4": {
  1332. "Illuminate\\Container\\": ""
  1333. }
  1334. },
  1335. "notification-url": "https://packagist.org/downloads/",
  1336. "license": [
  1337. "MIT"
  1338. ],
  1339. "authors": [
  1340. {
  1341. "name": "Taylor Otwell",
  1342. "email": "[email protected]"
  1343. }
  1344. ],
  1345. "description": "The Illuminate Container package.",
  1346. "homepage": "https://laravel.com",
  1347. "support": {
  1348. "issues": "https://github.com/laravel/framework/issues",
  1349. "source": "https://github.com/laravel/framework"
  1350. },
  1351. "time": "2023-06-18T09:12:03+00:00"
  1352. },
  1353. {
  1354. "name": "illuminate/contracts",
  1355. "version": "v10.43.0",
  1356. "source": {
  1357. "type": "git",
  1358. "url": "https://github.com/illuminate/contracts.git",
  1359. "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac"
  1360. },
  1361. "dist": {
  1362. "type": "zip",
  1363. "url": "https://api.github.com/repos/illuminate/contracts/zipball/8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac",
  1364. "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac",
  1365. "shasum": ""
  1366. },
  1367. "require": {
  1368. "php": "^8.1",
  1369. "psr/container": "^1.1.1|^2.0.1",
  1370. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1371. },
  1372. "type": "library",
  1373. "extra": {
  1374. "branch-alias": {
  1375. "dev-master": "10.x-dev"
  1376. }
  1377. },
  1378. "autoload": {
  1379. "psr-4": {
  1380. "Illuminate\\Contracts\\": ""
  1381. }
  1382. },
  1383. "notification-url": "https://packagist.org/downloads/",
  1384. "license": [
  1385. "MIT"
  1386. ],
  1387. "authors": [
  1388. {
  1389. "name": "Taylor Otwell",
  1390. "email": "[email protected]"
  1391. }
  1392. ],
  1393. "description": "The Illuminate Contracts package.",
  1394. "homepage": "https://laravel.com",
  1395. "support": {
  1396. "issues": "https://github.com/laravel/framework/issues",
  1397. "source": "https://github.com/laravel/framework"
  1398. },
  1399. "time": "2024-01-15T18:52:32+00:00"
  1400. },
  1401. {
  1402. "name": "illuminate/database",
  1403. "version": "v10.43.0",
  1404. "source": {
  1405. "type": "git",
  1406. "url": "https://github.com/illuminate/database.git",
  1407. "reference": "a98f7b989bc11994e468bb65e3ace45671e5ebce"
  1408. },
  1409. "dist": {
  1410. "type": "zip",
  1411. "url": "https://api.github.com/repos/illuminate/database/zipball/a98f7b989bc11994e468bb65e3ace45671e5ebce",
  1412. "reference": "a98f7b989bc11994e468bb65e3ace45671e5ebce",
  1413. "shasum": ""
  1414. },
  1415. "require": {
  1416. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1417. "ext-pdo": "*",
  1418. "illuminate/collections": "^10.0",
  1419. "illuminate/container": "^10.0",
  1420. "illuminate/contracts": "^10.0",
  1421. "illuminate/macroable": "^10.0",
  1422. "illuminate/support": "^10.0",
  1423. "php": "^8.1"
  1424. },
  1425. "conflict": {
  1426. "carbonphp/carbon-doctrine-types": ">=3.0",
  1427. "doctrine/dbal": ">=4.0"
  1428. },
  1429. "suggest": {
  1430. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  1431. "ext-filter": "Required to use the Postgres database driver.",
  1432. "fakerphp/faker": "Required to use the eloquent factory builder (^1.21).",
  1433. "illuminate/console": "Required to use the database commands (^10.0).",
  1434. "illuminate/events": "Required to use the observers with Eloquent (^10.0).",
  1435. "illuminate/filesystem": "Required to use the migrations (^10.0).",
  1436. "illuminate/pagination": "Required to paginate the result set (^10.0).",
  1437. "symfony/finder": "Required to use Eloquent model factories (^6.2)."
  1438. },
  1439. "type": "library",
  1440. "extra": {
  1441. "branch-alias": {
  1442. "dev-master": "10.x-dev"
  1443. }
  1444. },
  1445. "autoload": {
  1446. "psr-4": {
  1447. "Illuminate\\Database\\": ""
  1448. }
  1449. },
  1450. "notification-url": "https://packagist.org/downloads/",
  1451. "license": [
  1452. "MIT"
  1453. ],
  1454. "authors": [
  1455. {
  1456. "name": "Taylor Otwell",
  1457. "email": "[email protected]"
  1458. }
  1459. ],
  1460. "description": "The Illuminate Database package.",
  1461. "homepage": "https://laravel.com",
  1462. "keywords": [
  1463. "database",
  1464. "laravel",
  1465. "orm",
  1466. "sql"
  1467. ],
  1468. "support": {
  1469. "issues": "https://github.com/laravel/framework/issues",
  1470. "source": "https://github.com/laravel/framework"
  1471. },
  1472. "time": "2024-01-30T15:46:52+00:00"
  1473. },
  1474. {
  1475. "name": "illuminate/macroable",
  1476. "version": "v10.43.0",
  1477. "source": {
  1478. "type": "git",
  1479. "url": "https://github.com/illuminate/macroable.git",
  1480. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27"
  1481. },
  1482. "dist": {
  1483. "type": "zip",
  1484. "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27",
  1485. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27",
  1486. "shasum": ""
  1487. },
  1488. "require": {
  1489. "php": "^8.1"
  1490. },
  1491. "type": "library",
  1492. "extra": {
  1493. "branch-alias": {
  1494. "dev-master": "10.x-dev"
  1495. }
  1496. },
  1497. "autoload": {
  1498. "psr-4": {
  1499. "Illuminate\\Support\\": ""
  1500. }
  1501. },
  1502. "notification-url": "https://packagist.org/downloads/",
  1503. "license": [
  1504. "MIT"
  1505. ],
  1506. "authors": [
  1507. {
  1508. "name": "Taylor Otwell",
  1509. "email": "[email protected]"
  1510. }
  1511. ],
  1512. "description": "The Illuminate Macroable package.",
  1513. "homepage": "https://laravel.com",
  1514. "support": {
  1515. "issues": "https://github.com/laravel/framework/issues",
  1516. "source": "https://github.com/laravel/framework"
  1517. },
  1518. "time": "2023-06-05T12:46:42+00:00"
  1519. },
  1520. {
  1521. "name": "illuminate/pagination",
  1522. "version": "v10.43.0",
  1523. "source": {
  1524. "type": "git",
  1525. "url": "https://github.com/illuminate/pagination.git",
  1526. "reference": "b42a851e037984e38f8964d1a96d15b0302bebfc"
  1527. },
  1528. "dist": {
  1529. "type": "zip",
  1530. "url": "https://api.github.com/repos/illuminate/pagination/zipball/b42a851e037984e38f8964d1a96d15b0302bebfc",
  1531. "reference": "b42a851e037984e38f8964d1a96d15b0302bebfc",
  1532. "shasum": ""
  1533. },
  1534. "require": {
  1535. "ext-filter": "*",
  1536. "illuminate/collections": "^10.0",
  1537. "illuminate/contracts": "^10.0",
  1538. "illuminate/support": "^10.0",
  1539. "php": "^8.1"
  1540. },
  1541. "type": "library",
  1542. "extra": {
  1543. "branch-alias": {
  1544. "dev-master": "10.x-dev"
  1545. }
  1546. },
  1547. "autoload": {
  1548. "psr-4": {
  1549. "Illuminate\\Pagination\\": ""
  1550. }
  1551. },
  1552. "notification-url": "https://packagist.org/downloads/",
  1553. "license": [
  1554. "MIT"
  1555. ],
  1556. "authors": [
  1557. {
  1558. "name": "Taylor Otwell",
  1559. "email": "[email protected]"
  1560. }
  1561. ],
  1562. "description": "The Illuminate Pagination package.",
  1563. "homepage": "https://laravel.com",
  1564. "support": {
  1565. "issues": "https://github.com/laravel/framework/issues",
  1566. "source": "https://github.com/laravel/framework"
  1567. },
  1568. "time": "2024-01-12T17:17:46+00:00"
  1569. },
  1570. {
  1571. "name": "illuminate/support",
  1572. "version": "v10.43.0",
  1573. "source": {
  1574. "type": "git",
  1575. "url": "https://github.com/illuminate/support.git",
  1576. "reference": "6edb9350a0d13be5cea52718280e0025d3957895"
  1577. },
  1578. "dist": {
  1579. "type": "zip",
  1580. "url": "https://api.github.com/repos/illuminate/support/zipball/6edb9350a0d13be5cea52718280e0025d3957895",
  1581. "reference": "6edb9350a0d13be5cea52718280e0025d3957895",
  1582. "shasum": ""
  1583. },
  1584. "require": {
  1585. "doctrine/inflector": "^2.0",
  1586. "ext-ctype": "*",
  1587. "ext-filter": "*",
  1588. "ext-mbstring": "*",
  1589. "illuminate/collections": "^10.0",
  1590. "illuminate/conditionable": "^10.0",
  1591. "illuminate/contracts": "^10.0",
  1592. "illuminate/macroable": "^10.0",
  1593. "nesbot/carbon": "^2.67",
  1594. "php": "^8.1",
  1595. "voku/portable-ascii": "^2.0"
  1596. },
  1597. "conflict": {
  1598. "tightenco/collect": "<5.5.33"
  1599. },
  1600. "suggest": {
  1601. "illuminate/filesystem": "Required to use the composer class (^10.0).",
  1602. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).",
  1603. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  1604. "symfony/process": "Required to use the composer class (^6.2).",
  1605. "symfony/uid": "Required to use Str::ulid() (^6.2).",
  1606. "symfony/var-dumper": "Required to use the dd function (^6.2).",
  1607. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  1608. },
  1609. "type": "library",
  1610. "extra": {
  1611. "branch-alias": {
  1612. "dev-master": "10.x-dev"
  1613. }
  1614. },
  1615. "autoload": {
  1616. "files": [
  1617. "helpers.php"
  1618. ],
  1619. "psr-4": {
  1620. "Illuminate\\Support\\": ""
  1621. }
  1622. },
  1623. "notification-url": "https://packagist.org/downloads/",
  1624. "license": [
  1625. "MIT"
  1626. ],
  1627. "authors": [
  1628. {
  1629. "name": "Taylor Otwell",
  1630. "email": "[email protected]"
  1631. }
  1632. ],
  1633. "description": "The Illuminate Support package.",
  1634. "homepage": "https://laravel.com",
  1635. "support": {
  1636. "issues": "https://github.com/laravel/framework/issues",
  1637. "source": "https://github.com/laravel/framework"
  1638. },
  1639. "time": "2024-01-29T14:56:21+00:00"
  1640. },
  1641. {
  1642. "name": "irazasyed/telegram-bot-sdk",
  1643. "version": "v3.13.0",
  1644. "source": {
  1645. "type": "git",
  1646. "url": "https://github.com/irazasyed/telegram-bot-sdk.git",
  1647. "reference": "31a71aef80fd328bfe0084738cc3b51cc49867f4"
  1648. },
  1649. "dist": {
  1650. "type": "zip",
  1651. "url": "https://api.github.com/repos/irazasyed/telegram-bot-sdk/zipball/31a71aef80fd328bfe0084738cc3b51cc49867f4",
  1652. "reference": "31a71aef80fd328bfe0084738cc3b51cc49867f4",
  1653. "shasum": ""
  1654. },
  1655. "require": {
  1656. "ext-json": "*",
  1657. "guzzlehttp/guzzle": "^7.5.1",
  1658. "guzzlehttp/psr7": "^2.5",
  1659. "illuminate/support": "9 - 10",
  1660. "league/event": "^2.2 || ^3.0",
  1661. "php": ">=8.0",
  1662. "psr/container": "^2.0",
  1663. "psr/event-dispatcher": "^1.0"
  1664. },
  1665. "require-dev": {
  1666. "irazasyed/docgen": "^0.2",
  1667. "pestphp/pest": "^1.22 || ^2.0",
  1668. "php-parallel-lint/php-parallel-lint": "^1.3",
  1669. "phpspec/prophecy": "^1.17",
  1670. "phpspec/prophecy-phpunit": "^2.0",
  1671. "rector/rector": "^0.16.0"
  1672. },
  1673. "suggest": {
  1674. "illuminate/container": "Hold dependencies to be injected in commands constructors",
  1675. "irazasyed/larasupport": "Allows you to use any Laravel Package in Lumen by adding support!"
  1676. },
  1677. "type": "library",
  1678. "extra": {
  1679. "branch-alias": {
  1680. "dev-master": "3.0-dev"
  1681. },
  1682. "laravel": {
  1683. "aliases": {
  1684. "Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram"
  1685. },
  1686. "providers": [
  1687. "Telegram\\Bot\\Laravel\\TelegramServiceProvider"
  1688. ]
  1689. }
  1690. },
  1691. "autoload": {
  1692. "psr-4": {
  1693. "Telegram\\Bot\\": "src/"
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "BSD-3-Clause"
  1699. ],
  1700. "authors": [
  1701. {
  1702. "name": "Irfaq Syed",
  1703. "email": "[email protected]",
  1704. "homepage": "https://github.com/irazasyed"
  1705. }
  1706. ],
  1707. "description": "The Unofficial Telegram Bot API PHP SDK",
  1708. "homepage": "https://github.com/irazasyed/telegram-bot-sdk",
  1709. "keywords": [
  1710. "laravel",
  1711. "laravel telegram",
  1712. "telegram",
  1713. "telegram bot",
  1714. "telegram bot api",
  1715. "telegram php",
  1716. "telegram sdk"
  1717. ],
  1718. "support": {
  1719. "issues": "https://github.com/irazasyed/telegram-bot-sdk/issues",
  1720. "source": "https://github.com/irazasyed/telegram-bot-sdk/tree/v3.13.0"
  1721. },
  1722. "time": "2023-05-28T19:57:36+00:00"
  1723. },
  1724. {
  1725. "name": "jean85/pretty-package-versions",
  1726. "version": "2.0.5",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/Jean85/pretty-package-versions.git",
  1730. "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af",
  1735. "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af",
  1736. "shasum": ""
  1737. },
  1738. "require": {
  1739. "composer-runtime-api": "^2.0.0",
  1740. "php": "^7.1|^8.0"
  1741. },
  1742. "require-dev": {
  1743. "friendsofphp/php-cs-fixer": "^2.17",
  1744. "jean85/composer-provided-replaced-stub-package": "^1.0",
  1745. "phpstan/phpstan": "^0.12.66",
  1746. "phpunit/phpunit": "^7.5|^8.5|^9.4",
  1747. "vimeo/psalm": "^4.3"
  1748. },
  1749. "type": "library",
  1750. "extra": {
  1751. "branch-alias": {
  1752. "dev-master": "1.x-dev"
  1753. }
  1754. },
  1755. "autoload": {
  1756. "psr-4": {
  1757. "Jean85\\": "src/"
  1758. }
  1759. },
  1760. "notification-url": "https://packagist.org/downloads/",
  1761. "license": [
  1762. "MIT"
  1763. ],
  1764. "authors": [
  1765. {
  1766. "name": "Alessandro Lai",
  1767. "email": "[email protected]"
  1768. }
  1769. ],
  1770. "description": "A library to get pretty versions strings of installed dependencies",
  1771. "keywords": [
  1772. "composer",
  1773. "package",
  1774. "release",
  1775. "versions"
  1776. ],
  1777. "support": {
  1778. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  1779. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5"
  1780. },
  1781. "time": "2021-10-08T21:21:46+00:00"
  1782. },
  1783. {
  1784. "name": "lcobucci/jwt",
  1785. "version": "5.2.0",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://github.com/lcobucci/jwt.git",
  1789. "reference": "0ba88aed12c04bd2ed9924f500673f32b67a6211"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/0ba88aed12c04bd2ed9924f500673f32b67a6211",
  1794. "reference": "0ba88aed12c04bd2ed9924f500673f32b67a6211",
  1795. "shasum": ""
  1796. },
  1797. "require": {
  1798. "ext-openssl": "*",
  1799. "ext-sodium": "*",
  1800. "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
  1801. "psr/clock": "^1.0"
  1802. },
  1803. "require-dev": {
  1804. "infection/infection": "^0.27.0",
  1805. "lcobucci/clock": "^3.0",
  1806. "lcobucci/coding-standard": "^11.0",
  1807. "phpbench/phpbench": "^1.2.9",
  1808. "phpstan/extension-installer": "^1.2",
  1809. "phpstan/phpstan": "^1.10.7",
  1810. "phpstan/phpstan-deprecation-rules": "^1.1.3",
  1811. "phpstan/phpstan-phpunit": "^1.3.10",
  1812. "phpstan/phpstan-strict-rules": "^1.5.0",
  1813. "phpunit/phpunit": "^10.2.6"
  1814. },
  1815. "suggest": {
  1816. "lcobucci/clock": ">= 3.0"
  1817. },
  1818. "type": "library",
  1819. "autoload": {
  1820. "psr-4": {
  1821. "Lcobucci\\JWT\\": "src"
  1822. }
  1823. },
  1824. "notification-url": "https://packagist.org/downloads/",
  1825. "license": [
  1826. "BSD-3-Clause"
  1827. ],
  1828. "authors": [
  1829. {
  1830. "name": "Luís Cobucci",
  1831. "email": "[email protected]",
  1832. "role": "Developer"
  1833. }
  1834. ],
  1835. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1836. "keywords": [
  1837. "JWS",
  1838. "jwt"
  1839. ],
  1840. "support": {
  1841. "issues": "https://github.com/lcobucci/jwt/issues",
  1842. "source": "https://github.com/lcobucci/jwt/tree/5.2.0"
  1843. },
  1844. "funding": [
  1845. {
  1846. "url": "https://github.com/lcobucci",
  1847. "type": "github"
  1848. },
  1849. {
  1850. "url": "https://www.patreon.com/lcobucci",
  1851. "type": "patreon"
  1852. }
  1853. ],
  1854. "time": "2023-11-20T21:17:42+00:00"
  1855. },
  1856. {
  1857. "name": "league/event",
  1858. "version": "3.0.2",
  1859. "source": {
  1860. "type": "git",
  1861. "url": "https://github.com/thephpleague/event.git",
  1862. "reference": "221867a61087ee265ca07bd39aa757879afca820"
  1863. },
  1864. "dist": {
  1865. "type": "zip",
  1866. "url": "https://api.github.com/repos/thephpleague/event/zipball/221867a61087ee265ca07bd39aa757879afca820",
  1867. "reference": "221867a61087ee265ca07bd39aa757879afca820",
  1868. "shasum": ""
  1869. },
  1870. "require": {
  1871. "php": ">=7.2.0",
  1872. "psr/event-dispatcher": "^1.0"
  1873. },
  1874. "provide": {
  1875. "psr/event-dispatcher-implementation": "1.0"
  1876. },
  1877. "require-dev": {
  1878. "friendsofphp/php-cs-fixer": "^2.16",
  1879. "phpstan/phpstan": "^0.12.45",
  1880. "phpunit/phpunit": "^8.5"
  1881. },
  1882. "type": "library",
  1883. "extra": {
  1884. "branch-alias": {
  1885. "dev-master": "3.0-dev"
  1886. }
  1887. },
  1888. "autoload": {
  1889. "psr-4": {
  1890. "League\\Event\\": "src/"
  1891. }
  1892. },
  1893. "notification-url": "https://packagist.org/downloads/",
  1894. "license": [
  1895. "MIT"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "Frank de Jonge",
  1900. "email": "[email protected]"
  1901. }
  1902. ],
  1903. "description": "Event package",
  1904. "keywords": [
  1905. "emitter",
  1906. "event",
  1907. "listener"
  1908. ],
  1909. "support": {
  1910. "issues": "https://github.com/thephpleague/event/issues",
  1911. "source": "https://github.com/thephpleague/event/tree/3.0.2"
  1912. },
  1913. "time": "2022-10-29T09:31:25+00:00"
  1914. },
  1915. {
  1916. "name": "league/omnipay",
  1917. "version": "v3.2.1",
  1918. "source": {
  1919. "type": "git",
  1920. "url": "https://github.com/thephpleague/omnipay.git",
  1921. "reference": "38f66a0cc043ed51d6edf7956d6439a2f263501f"
  1922. },
  1923. "dist": {
  1924. "type": "zip",
  1925. "url": "https://api.github.com/repos/thephpleague/omnipay/zipball/38f66a0cc043ed51d6edf7956d6439a2f263501f",
  1926. "reference": "38f66a0cc043ed51d6edf7956d6439a2f263501f",
  1927. "shasum": ""
  1928. },
  1929. "require": {
  1930. "omnipay/common": "^3.1",
  1931. "php": "^7.2|^8.0",
  1932. "php-http/discovery": "^1.14",
  1933. "php-http/guzzle7-adapter": "^1"
  1934. },
  1935. "require-dev": {
  1936. "omnipay/tests": "^3|^4"
  1937. },
  1938. "type": "metapackage",
  1939. "extra": {
  1940. "branch-alias": {
  1941. "dev-master": "3.2.x-dev"
  1942. }
  1943. },
  1944. "notification-url": "https://packagist.org/downloads/",
  1945. "license": [
  1946. "MIT"
  1947. ],
  1948. "authors": [
  1949. {
  1950. "name": "Adrian Macneil",
  1951. "email": "[email protected]"
  1952. },
  1953. {
  1954. "name": "Barry vd. Heuvel",
  1955. "email": "[email protected]"
  1956. }
  1957. ],
  1958. "description": "Omnipay payment processing library",
  1959. "homepage": "https://omnipay.thephpleague.com/",
  1960. "keywords": [
  1961. "checkout",
  1962. "creditcard",
  1963. "omnipay",
  1964. "payment"
  1965. ],
  1966. "support": {
  1967. "issues": "https://github.com/thephpleague/omnipay/issues",
  1968. "source": "https://github.com/thephpleague/omnipay/tree/v3.2.1"
  1969. },
  1970. "funding": [
  1971. {
  1972. "url": "https://github.com/barryvdh",
  1973. "type": "github"
  1974. }
  1975. ],
  1976. "time": "2021-06-05T11:34:12+00:00"
  1977. },
  1978. {
  1979. "name": "mailgun/mailgun-php",
  1980. "version": "v4.0.1",
  1981. "source": {
  1982. "type": "git",
  1983. "url": "https://github.com/mailgun/mailgun-php.git",
  1984. "reference": "c1832496b479708ca47276459268d454e557319d"
  1985. },
  1986. "dist": {
  1987. "type": "zip",
  1988. "url": "https://api.github.com/repos/mailgun/mailgun-php/zipball/c1832496b479708ca47276459268d454e557319d",
  1989. "reference": "c1832496b479708ca47276459268d454e557319d",
  1990. "shasum": ""
  1991. },
  1992. "require": {
  1993. "php": "^7.3 || ^8.0",
  1994. "php-http/client-common": "^2.2.1",
  1995. "php-http/discovery": "^1.19",
  1996. "php-http/multipart-stream-builder": "^1.1.2",
  1997. "psr/http-client": "^1.0",
  1998. "webmozart/assert": "^1.9.1"
  1999. },
  2000. "require-dev": {
  2001. "nyholm/nsa": "^1.2.1",
  2002. "nyholm/psr7": "^1.3.1",
  2003. "phpunit/phpunit": "^9.3",
  2004. "squizlabs/php_codesniffer": "^3.7",
  2005. "symfony/http-client": "^5.4 || ^6.3"
  2006. },
  2007. "suggest": {
  2008. "nyholm/psr7": "PSR-7 message implementation",
  2009. "symfony/http-client": "HTTP client"
  2010. },
  2011. "type": "library",
  2012. "extra": {
  2013. "branch-alias": {
  2014. "dev-master": "3.0-dev"
  2015. }
  2016. },
  2017. "autoload": {
  2018. "psr-4": {
  2019. "Mailgun\\": "src/"
  2020. }
  2021. },
  2022. "notification-url": "https://packagist.org/downloads/",
  2023. "license": [
  2024. "MIT"
  2025. ],
  2026. "authors": [
  2027. {
  2028. "name": "Travis Swientek",
  2029. "email": "[email protected]"
  2030. }
  2031. ],
  2032. "description": "The Mailgun SDK provides methods for all API functions.",
  2033. "support": {
  2034. "issues": "https://github.com/mailgun/mailgun-php/issues",
  2035. "source": "https://github.com/mailgun/mailgun-php/tree/v4.0.1"
  2036. },
  2037. "time": "2024-01-08T19:37:43+00:00"
  2038. },
  2039. {
  2040. "name": "maxmind-db/reader",
  2041. "version": "v1.11.1",
  2042. "source": {
  2043. "type": "git",
  2044. "url": "[email protected]:maxmind/MaxMind-DB-Reader-php.git",
  2045. "reference": "1e66f73ffcf25e17c7a910a1317e9720a95497c7"
  2046. },
  2047. "dist": {
  2048. "type": "zip",
  2049. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/1e66f73ffcf25e17c7a910a1317e9720a95497c7",
  2050. "reference": "1e66f73ffcf25e17c7a910a1317e9720a95497c7",
  2051. "shasum": ""
  2052. },
  2053. "require": {
  2054. "php": ">=7.2"
  2055. },
  2056. "conflict": {
  2057. "ext-maxminddb": "<1.11.1,>=2.0.0"
  2058. },
  2059. "require-dev": {
  2060. "friendsofphp/php-cs-fixer": "3.*",
  2061. "php-coveralls/php-coveralls": "^2.1",
  2062. "phpstan/phpstan": "*",
  2063. "phpunit/phpcov": ">=6.0.0",
  2064. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2065. "squizlabs/php_codesniffer": "3.*"
  2066. },
  2067. "suggest": {
  2068. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2069. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2070. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2071. },
  2072. "type": "library",
  2073. "autoload": {
  2074. "psr-4": {
  2075. "MaxMind\\Db\\": "src/MaxMind/Db"
  2076. }
  2077. },
  2078. "notification-url": "https://packagist.org/downloads/",
  2079. "license": [
  2080. "Apache-2.0"
  2081. ],
  2082. "authors": [
  2083. {
  2084. "name": "Gregory J. Oschwald",
  2085. "email": "[email protected]",
  2086. "homepage": "https://www.maxmind.com/"
  2087. }
  2088. ],
  2089. "description": "MaxMind DB Reader API",
  2090. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2091. "keywords": [
  2092. "database",
  2093. "geoip",
  2094. "geoip2",
  2095. "geolocation",
  2096. "maxmind"
  2097. ],
  2098. "time": "2023-12-02T00:09:23+00:00"
  2099. },
  2100. {
  2101. "name": "maxmind/web-service-common",
  2102. "version": "v0.9.0",
  2103. "source": {
  2104. "type": "git",
  2105. "url": "https://github.com/maxmind/web-service-common-php.git",
  2106. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53"
  2107. },
  2108. "dist": {
  2109. "type": "zip",
  2110. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2111. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2112. "shasum": ""
  2113. },
  2114. "require": {
  2115. "composer/ca-bundle": "^1.0.3",
  2116. "ext-curl": "*",
  2117. "ext-json": "*",
  2118. "php": ">=7.2"
  2119. },
  2120. "require-dev": {
  2121. "friendsofphp/php-cs-fixer": "3.*",
  2122. "phpstan/phpstan": "*",
  2123. "phpunit/phpunit": "^8.0 || ^9.0",
  2124. "squizlabs/php_codesniffer": "3.*"
  2125. },
  2126. "type": "library",
  2127. "autoload": {
  2128. "psr-4": {
  2129. "MaxMind\\Exception\\": "src/Exception",
  2130. "MaxMind\\WebService\\": "src/WebService"
  2131. }
  2132. },
  2133. "notification-url": "https://packagist.org/downloads/",
  2134. "license": [
  2135. "Apache-2.0"
  2136. ],
  2137. "authors": [
  2138. {
  2139. "name": "Gregory Oschwald",
  2140. "email": "[email protected]"
  2141. }
  2142. ],
  2143. "description": "Internal MaxMind Web Service API",
  2144. "homepage": "https://github.com/maxmind/web-service-common-php",
  2145. "support": {
  2146. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2147. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.9.0"
  2148. },
  2149. "time": "2022-03-28T17:43:20+00:00"
  2150. },
  2151. {
  2152. "name": "moneyphp/money",
  2153. "version": "v4.4.0",
  2154. "source": {
  2155. "type": "git",
  2156. "url": "https://github.com/moneyphp/money.git",
  2157. "reference": "5e60aebf09f709dd4ea16bf85e66d65301c0d172"
  2158. },
  2159. "dist": {
  2160. "type": "zip",
  2161. "url": "https://api.github.com/repos/moneyphp/money/zipball/5e60aebf09f709dd4ea16bf85e66d65301c0d172",
  2162. "reference": "5e60aebf09f709dd4ea16bf85e66d65301c0d172",
  2163. "shasum": ""
  2164. },
  2165. "require": {
  2166. "ext-bcmath": "*",
  2167. "ext-filter": "*",
  2168. "ext-json": "*",
  2169. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  2170. },
  2171. "require-dev": {
  2172. "cache/taggable-cache": "^1.1.0",
  2173. "doctrine/coding-standard": "^9.0",
  2174. "doctrine/instantiator": "^1.4.0",
  2175. "ext-gmp": "*",
  2176. "ext-intl": "*",
  2177. "florianv/exchanger": "^2.6.3",
  2178. "florianv/swap": "^4.3.0",
  2179. "moneyphp/crypto-currencies": "^1.0.0",
  2180. "moneyphp/iso-currencies": "^3.2.1",
  2181. "php-http/message": "^1.11.0",
  2182. "php-http/mock-client": "^1.4.1",
  2183. "phpbench/phpbench": "^1.2.5",
  2184. "phpunit/phpunit": "^9.5.4",
  2185. "psalm/plugin-phpunit": "^0.18.4",
  2186. "psr/cache": "^1.0.1 || ^2.0 || ^3.0",
  2187. "vimeo/psalm": "~5.15.0"
  2188. },
  2189. "suggest": {
  2190. "ext-gmp": "Calculate without integer limits",
  2191. "ext-intl": "Format Money objects with intl",
  2192. "florianv/exchanger": "Exchange rates library for PHP",
  2193. "florianv/swap": "Exchange rates library for PHP",
  2194. "psr/cache-implementation": "Used for Currency caching"
  2195. },
  2196. "type": "library",
  2197. "extra": {
  2198. "branch-alias": {
  2199. "dev-master": "3.x-dev"
  2200. }
  2201. },
  2202. "autoload": {
  2203. "psr-4": {
  2204. "Money\\": "src/"
  2205. }
  2206. },
  2207. "notification-url": "https://packagist.org/downloads/",
  2208. "license": [
  2209. "MIT"
  2210. ],
  2211. "authors": [
  2212. {
  2213. "name": "Mathias Verraes",
  2214. "email": "[email protected]",
  2215. "homepage": "http://verraes.net"
  2216. },
  2217. {
  2218. "name": "Márk Sági-Kazár",
  2219. "email": "[email protected]"
  2220. },
  2221. {
  2222. "name": "Frederik Bosch",
  2223. "email": "[email protected]"
  2224. }
  2225. ],
  2226. "description": "PHP implementation of Fowler's Money pattern",
  2227. "homepage": "http://moneyphp.org",
  2228. "keywords": [
  2229. "Value Object",
  2230. "money",
  2231. "vo"
  2232. ],
  2233. "support": {
  2234. "issues": "https://github.com/moneyphp/money/issues",
  2235. "source": "https://github.com/moneyphp/money/tree/v4.4.0"
  2236. },
  2237. "time": "2024-01-24T08:29:16+00:00"
  2238. },
  2239. {
  2240. "name": "mtdowling/jmespath.php",
  2241. "version": "2.7.0",
  2242. "source": {
  2243. "type": "git",
  2244. "url": "https://github.com/jmespath/jmespath.php.git",
  2245. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  2246. },
  2247. "dist": {
  2248. "type": "zip",
  2249. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2250. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2251. "shasum": ""
  2252. },
  2253. "require": {
  2254. "php": "^7.2.5 || ^8.0",
  2255. "symfony/polyfill-mbstring": "^1.17"
  2256. },
  2257. "require-dev": {
  2258. "composer/xdebug-handler": "^3.0.3",
  2259. "phpunit/phpunit": "^8.5.33"
  2260. },
  2261. "bin": [
  2262. "bin/jp.php"
  2263. ],
  2264. "type": "library",
  2265. "extra": {
  2266. "branch-alias": {
  2267. "dev-master": "2.7-dev"
  2268. }
  2269. },
  2270. "autoload": {
  2271. "files": [
  2272. "src/JmesPath.php"
  2273. ],
  2274. "psr-4": {
  2275. "JmesPath\\": "src/"
  2276. }
  2277. },
  2278. "notification-url": "https://packagist.org/downloads/",
  2279. "license": [
  2280. "MIT"
  2281. ],
  2282. "authors": [
  2283. {
  2284. "name": "Graham Campbell",
  2285. "email": "[email protected]",
  2286. "homepage": "https://github.com/GrahamCampbell"
  2287. },
  2288. {
  2289. "name": "Michael Dowling",
  2290. "email": "[email protected]",
  2291. "homepage": "https://github.com/mtdowling"
  2292. }
  2293. ],
  2294. "description": "Declaratively specify how to extract elements from a JSON document",
  2295. "keywords": [
  2296. "json",
  2297. "jsonpath"
  2298. ],
  2299. "support": {
  2300. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2301. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  2302. },
  2303. "time": "2023-08-25T10:54:48+00:00"
  2304. },
  2305. {
  2306. "name": "nesbot/carbon",
  2307. "version": "2.72.3",
  2308. "source": {
  2309. "type": "git",
  2310. "url": "https://github.com/briannesbitt/Carbon.git",
  2311. "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83"
  2312. },
  2313. "dist": {
  2314. "type": "zip",
  2315. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0c6fd108360c562f6e4fd1dedb8233b423e91c83",
  2316. "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83",
  2317. "shasum": ""
  2318. },
  2319. "require": {
  2320. "carbonphp/carbon-doctrine-types": "*",
  2321. "ext-json": "*",
  2322. "php": "^7.1.8 || ^8.0",
  2323. "psr/clock": "^1.0",
  2324. "symfony/polyfill-mbstring": "^1.0",
  2325. "symfony/polyfill-php80": "^1.16",
  2326. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2327. },
  2328. "provide": {
  2329. "psr/clock-implementation": "1.0"
  2330. },
  2331. "require-dev": {
  2332. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  2333. "doctrine/orm": "^2.7 || ^3.0",
  2334. "friendsofphp/php-cs-fixer": "^3.0",
  2335. "kylekatarnls/multi-tester": "^2.0",
  2336. "ondrejmirtes/better-reflection": "*",
  2337. "phpmd/phpmd": "^2.9",
  2338. "phpstan/extension-installer": "^1.0",
  2339. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2340. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2341. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2342. "squizlabs/php_codesniffer": "^3.4"
  2343. },
  2344. "bin": [
  2345. "bin/carbon"
  2346. ],
  2347. "type": "library",
  2348. "extra": {
  2349. "branch-alias": {
  2350. "dev-3.x": "3.x-dev",
  2351. "dev-master": "2.x-dev"
  2352. },
  2353. "laravel": {
  2354. "providers": [
  2355. "Carbon\\Laravel\\ServiceProvider"
  2356. ]
  2357. },
  2358. "phpstan": {
  2359. "includes": [
  2360. "extension.neon"
  2361. ]
  2362. }
  2363. },
  2364. "autoload": {
  2365. "psr-4": {
  2366. "Carbon\\": "src/Carbon/"
  2367. }
  2368. },
  2369. "notification-url": "https://packagist.org/downloads/",
  2370. "license": [
  2371. "MIT"
  2372. ],
  2373. "authors": [
  2374. {
  2375. "name": "Brian Nesbitt",
  2376. "email": "[email protected]",
  2377. "homepage": "https://markido.com"
  2378. },
  2379. {
  2380. "name": "kylekatarnls",
  2381. "homepage": "https://github.com/kylekatarnls"
  2382. }
  2383. ],
  2384. "description": "An API extension for DateTime that supports 281 different languages.",
  2385. "homepage": "https://carbon.nesbot.com",
  2386. "keywords": [
  2387. "date",
  2388. "datetime",
  2389. "time"
  2390. ],
  2391. "support": {
  2392. "docs": "https://carbon.nesbot.com/docs",
  2393. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2394. "source": "https://github.com/briannesbitt/Carbon"
  2395. },
  2396. "funding": [
  2397. {
  2398. "url": "https://github.com/sponsors/kylekatarnls",
  2399. "type": "github"
  2400. },
  2401. {
  2402. "url": "https://opencollective.com/Carbon#sponsor",
  2403. "type": "opencollective"
  2404. },
  2405. {
  2406. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2407. "type": "tidelift"
  2408. }
  2409. ],
  2410. "time": "2024-01-25T10:35:09+00:00"
  2411. },
  2412. {
  2413. "name": "nikic/fast-route",
  2414. "version": "v1.3.0",
  2415. "source": {
  2416. "type": "git",
  2417. "url": "https://github.com/nikic/FastRoute.git",
  2418. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  2419. },
  2420. "dist": {
  2421. "type": "zip",
  2422. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  2423. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  2424. "shasum": ""
  2425. },
  2426. "require": {
  2427. "php": ">=5.4.0"
  2428. },
  2429. "require-dev": {
  2430. "phpunit/phpunit": "^4.8.35|~5.7"
  2431. },
  2432. "type": "library",
  2433. "autoload": {
  2434. "files": [
  2435. "src/functions.php"
  2436. ],
  2437. "psr-4": {
  2438. "FastRoute\\": "src/"
  2439. }
  2440. },
  2441. "notification-url": "https://packagist.org/downloads/",
  2442. "license": [
  2443. "BSD-3-Clause"
  2444. ],
  2445. "authors": [
  2446. {
  2447. "name": "Nikita Popov",
  2448. "email": "[email protected]"
  2449. }
  2450. ],
  2451. "description": "Fast request router for PHP",
  2452. "keywords": [
  2453. "router",
  2454. "routing"
  2455. ],
  2456. "support": {
  2457. "issues": "https://github.com/nikic/FastRoute/issues",
  2458. "source": "https://github.com/nikic/FastRoute/tree/master"
  2459. },
  2460. "time": "2018-02-13T20:26:39+00:00"
  2461. },
  2462. {
  2463. "name": "nikolaposa/rate-limit",
  2464. "version": "3.1.0",
  2465. "source": {
  2466. "type": "git",
  2467. "url": "https://github.com/nikolaposa/rate-limit.git",
  2468. "reference": "fa5d32ff5a31566a8839fa556c51930c0a7b467e"
  2469. },
  2470. "dist": {
  2471. "type": "zip",
  2472. "url": "https://api.github.com/repos/nikolaposa/rate-limit/zipball/fa5d32ff5a31566a8839fa556c51930c0a7b467e",
  2473. "reference": "fa5d32ff5a31566a8839fa556c51930c0a7b467e",
  2474. "shasum": ""
  2475. },
  2476. "require": {
  2477. "beberlei/assert": "^3.2",
  2478. "php": "^8.1"
  2479. },
  2480. "require-dev": {
  2481. "ext-apcu": ">=5.1.12",
  2482. "ext-redis": "*",
  2483. "friendsofphp/php-cs-fixer": "3.44",
  2484. "phpstan/phpstan": "^1.10",
  2485. "phpstan/phpstan-beberlei-assert": "^1.1",
  2486. "phpstan/phpstan-phpunit": "^1.3",
  2487. "phpunit/phpunit": "^10.5",
  2488. "predis/predis": "^1.1"
  2489. },
  2490. "suggest": {
  2491. "ext-apcu": "In order to use ApcuRateLimiter",
  2492. "ext-memcached": "In order to use MemcachedRateLimiter",
  2493. "ext-redis": "In order to use RedisRateLimiter",
  2494. "predis/predis": "In order to use PredisRateLimiter"
  2495. },
  2496. "type": "library",
  2497. "extra": {
  2498. "branch-alias": {
  2499. "dev-master": "3.1.x-dev"
  2500. }
  2501. },
  2502. "autoload": {
  2503. "psr-4": {
  2504. "RateLimit\\": "src/"
  2505. }
  2506. },
  2507. "notification-url": "https://packagist.org/downloads/",
  2508. "license": [
  2509. "MIT"
  2510. ],
  2511. "authors": [
  2512. {
  2513. "name": "Nikola Poša",
  2514. "email": "[email protected]",
  2515. "homepage": "https://www.nikolaposa.in.rs"
  2516. }
  2517. ],
  2518. "description": "General purpose rate limiter implementation.",
  2519. "keywords": [
  2520. "rate limit",
  2521. "redis"
  2522. ],
  2523. "support": {
  2524. "issues": "https://github.com/nikolaposa/rate-limit/issues",
  2525. "source": "https://github.com/nikolaposa/rate-limit/tree/3.1.0"
  2526. },
  2527. "time": "2023-12-29T22:51:49+00:00"
  2528. },
  2529. {
  2530. "name": "omnipay/common",
  2531. "version": "v3.2.1",
  2532. "source": {
  2533. "type": "git",
  2534. "url": "https://github.com/thephpleague/omnipay-common.git",
  2535. "reference": "80545e9f4faab0efad36cc5f1e11a184dda22baf"
  2536. },
  2537. "dist": {
  2538. "type": "zip",
  2539. "url": "https://api.github.com/repos/thephpleague/omnipay-common/zipball/80545e9f4faab0efad36cc5f1e11a184dda22baf",
  2540. "reference": "80545e9f4faab0efad36cc5f1e11a184dda22baf",
  2541. "shasum": ""
  2542. },
  2543. "require": {
  2544. "moneyphp/money": "^3.1|^4.0.3",
  2545. "php": "^7.2|^8",
  2546. "php-http/client-implementation": "^1",
  2547. "php-http/discovery": "^1.14",
  2548. "php-http/message": "^1.5",
  2549. "php-http/message-factory": "^1.1",
  2550. "symfony/http-foundation": "^2.1|^3|^4|^5|^6"
  2551. },
  2552. "require-dev": {
  2553. "omnipay/tests": "^4.1",
  2554. "php-http/guzzle7-adapter": "^1",
  2555. "php-http/mock-client": "^1",
  2556. "squizlabs/php_codesniffer": "^3.5"
  2557. },
  2558. "suggest": {
  2559. "league/omnipay": "The default Omnipay package provides a default HTTP Adapter."
  2560. },
  2561. "type": "library",
  2562. "extra": {
  2563. "branch-alias": {
  2564. "dev-master": "3.1.x-dev"
  2565. }
  2566. },
  2567. "autoload": {
  2568. "psr-4": {
  2569. "Omnipay\\Common\\": "src/Common"
  2570. },
  2571. "classmap": [
  2572. "src/Omnipay.php"
  2573. ]
  2574. },
  2575. "notification-url": "https://packagist.org/downloads/",
  2576. "license": [
  2577. "MIT"
  2578. ],
  2579. "authors": [
  2580. {
  2581. "name": "Adrian Macneil",
  2582. "email": "[email protected]"
  2583. },
  2584. {
  2585. "name": "Barry vd. Heuvel",
  2586. "email": "[email protected]"
  2587. },
  2588. {
  2589. "name": "Jason Judge",
  2590. "email": "[email protected]"
  2591. },
  2592. {
  2593. "name": "Del"
  2594. },
  2595. {
  2596. "name": "Omnipay Contributors",
  2597. "homepage": "https://github.com/thephpleague/omnipay-common/contributors"
  2598. }
  2599. ],
  2600. "description": "Common components for Omnipay payment processing library",
  2601. "homepage": "https://github.com/thephpleague/omnipay-common",
  2602. "keywords": [
  2603. "gateway",
  2604. "merchant",
  2605. "omnipay",
  2606. "pay",
  2607. "payment",
  2608. "purchase"
  2609. ],
  2610. "support": {
  2611. "issues": "https://github.com/thephpleague/omnipay-common/issues",
  2612. "source": "https://github.com/thephpleague/omnipay-common/tree/v3.2.1"
  2613. },
  2614. "funding": [
  2615. {
  2616. "url": "https://github.com/barryvdh",
  2617. "type": "github"
  2618. }
  2619. ],
  2620. "time": "2023-05-30T12:44:03+00:00"
  2621. },
  2622. {
  2623. "name": "openai-php/client",
  2624. "version": "v0.8.4",
  2625. "source": {
  2626. "type": "git",
  2627. "url": "https://github.com/openai-php/client.git",
  2628. "reference": "00470f5fedd7b08ee4860959d6952f0be0ec48a0"
  2629. },
  2630. "dist": {
  2631. "type": "zip",
  2632. "url": "https://api.github.com/repos/openai-php/client/zipball/00470f5fedd7b08ee4860959d6952f0be0ec48a0",
  2633. "reference": "00470f5fedd7b08ee4860959d6952f0be0ec48a0",
  2634. "shasum": ""
  2635. },
  2636. "require": {
  2637. "php": "^8.1.0",
  2638. "php-http/discovery": "^1.19.2",
  2639. "php-http/multipart-stream-builder": "^1.3.0",
  2640. "psr/http-client": "^1.0.3",
  2641. "psr/http-client-implementation": "^1.0.1",
  2642. "psr/http-factory-implementation": "*",
  2643. "psr/http-message": "^1.1.0|^2.0.0"
  2644. },
  2645. "require-dev": {
  2646. "guzzlehttp/guzzle": "^7.8.1",
  2647. "guzzlehttp/psr7": "^2.6.2",
  2648. "laravel/pint": "^1.13.7",
  2649. "mockery/mockery": "^1.6.7",
  2650. "nunomaduro/collision": "^7.10.0",
  2651. "pestphp/pest": "^2.30.0",
  2652. "pestphp/pest-plugin-arch": "^2.6",
  2653. "pestphp/pest-plugin-type-coverage": "^2.7.0",
  2654. "phpstan/phpstan": "^1.10.55",
  2655. "rector/rector": "^0.16.0",
  2656. "symfony/var-dumper": "^6.4.2"
  2657. },
  2658. "type": "library",
  2659. "autoload": {
  2660. "files": [
  2661. "src/OpenAI.php"
  2662. ],
  2663. "psr-4": {
  2664. "OpenAI\\": "src/"
  2665. }
  2666. },
  2667. "notification-url": "https://packagist.org/downloads/",
  2668. "license": [
  2669. "MIT"
  2670. ],
  2671. "authors": [
  2672. {
  2673. "name": "Nuno Maduro",
  2674. "email": "[email protected]"
  2675. },
  2676. {
  2677. "name": "Sandro Gehri"
  2678. }
  2679. ],
  2680. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  2681. "keywords": [
  2682. "GPT-3",
  2683. "api",
  2684. "client",
  2685. "codex",
  2686. "dall-e",
  2687. "language",
  2688. "natural",
  2689. "openai",
  2690. "php",
  2691. "processing",
  2692. "sdk"
  2693. ],
  2694. "support": {
  2695. "issues": "https://github.com/openai-php/client/issues",
  2696. "source": "https://github.com/openai-php/client/tree/v0.8.4"
  2697. },
  2698. "funding": [
  2699. {
  2700. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2701. "type": "custom"
  2702. },
  2703. {
  2704. "url": "https://github.com/gehrisandro",
  2705. "type": "github"
  2706. },
  2707. {
  2708. "url": "https://github.com/nunomaduro",
  2709. "type": "github"
  2710. }
  2711. ],
  2712. "time": "2024-02-07T07:57:38+00:00"
  2713. },
  2714. {
  2715. "name": "ozdemir/datatables",
  2716. "version": "2.3.7",
  2717. "source": {
  2718. "type": "git",
  2719. "url": "https://github.com/n1crack/datatables.git",
  2720. "reference": "7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d"
  2721. },
  2722. "dist": {
  2723. "type": "zip",
  2724. "url": "https://api.github.com/repos/n1crack/datatables/zipball/7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d",
  2725. "reference": "7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d",
  2726. "shasum": ""
  2727. },
  2728. "require": {
  2729. "php": ">=7.1.3"
  2730. },
  2731. "require-dev": {
  2732. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2733. },
  2734. "type": "library",
  2735. "autoload": {
  2736. "psr-4": {
  2737. "Ozdemir\\Datatables\\": "src/"
  2738. }
  2739. },
  2740. "notification-url": "https://packagist.org/downloads/",
  2741. "license": [
  2742. "MIT"
  2743. ],
  2744. "authors": [
  2745. {
  2746. "name": "Yusuf Özdemir",
  2747. "email": "[email protected]"
  2748. }
  2749. ],
  2750. "description": "PHP Library to handle server-side processing for Datatables, in a fast and simple way.",
  2751. "support": {
  2752. "issues": "https://github.com/n1crack/datatables/issues",
  2753. "source": "https://github.com/n1crack/datatables/tree/2.3.7"
  2754. },
  2755. "time": "2023-05-29T10:42:49+00:00"
  2756. },
  2757. {
  2758. "name": "php-http/client-common",
  2759. "version": "2.7.1",
  2760. "source": {
  2761. "type": "git",
  2762. "url": "https://github.com/php-http/client-common.git",
  2763. "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612"
  2764. },
  2765. "dist": {
  2766. "type": "zip",
  2767. "url": "https://api.github.com/repos/php-http/client-common/zipball/1e19c059b0e4d5f717bf5d524d616165aeab0612",
  2768. "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612",
  2769. "shasum": ""
  2770. },
  2771. "require": {
  2772. "php": "^7.1 || ^8.0",
  2773. "php-http/httplug": "^2.0",
  2774. "php-http/message": "^1.6",
  2775. "psr/http-client": "^1.0",
  2776. "psr/http-factory": "^1.0",
  2777. "psr/http-message": "^1.0 || ^2.0",
  2778. "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0 || ^7.0",
  2779. "symfony/polyfill-php80": "^1.17"
  2780. },
  2781. "require-dev": {
  2782. "doctrine/instantiator": "^1.1",
  2783. "guzzlehttp/psr7": "^1.4",
  2784. "nyholm/psr7": "^1.2",
  2785. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  2786. "phpspec/prophecy": "^1.10.2",
  2787. "phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7"
  2788. },
  2789. "suggest": {
  2790. "ext-json": "To detect JSON responses with the ContentTypePlugin",
  2791. "ext-libxml": "To detect XML responses with the ContentTypePlugin",
  2792. "php-http/cache-plugin": "PSR-6 Cache plugin",
  2793. "php-http/logger-plugin": "PSR-3 Logger plugin",
  2794. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  2795. },
  2796. "type": "library",
  2797. "autoload": {
  2798. "psr-4": {
  2799. "Http\\Client\\Common\\": "src/"
  2800. }
  2801. },
  2802. "notification-url": "https://packagist.org/downloads/",
  2803. "license": [
  2804. "MIT"
  2805. ],
  2806. "authors": [
  2807. {
  2808. "name": "Márk Sági-Kazár",
  2809. "email": "[email protected]"
  2810. }
  2811. ],
  2812. "description": "Common HTTP Client implementations and tools for HTTPlug",
  2813. "homepage": "http://httplug.io",
  2814. "keywords": [
  2815. "client",
  2816. "common",
  2817. "http",
  2818. "httplug"
  2819. ],
  2820. "support": {
  2821. "issues": "https://github.com/php-http/client-common/issues",
  2822. "source": "https://github.com/php-http/client-common/tree/2.7.1"
  2823. },
  2824. "time": "2023-11-30T10:31:25+00:00"
  2825. },
  2826. {
  2827. "name": "php-http/discovery",
  2828. "version": "1.19.2",
  2829. "source": {
  2830. "type": "git",
  2831. "url": "https://github.com/php-http/discovery.git",
  2832. "reference": "61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb"
  2833. },
  2834. "dist": {
  2835. "type": "zip",
  2836. "url": "https://api.github.com/repos/php-http/discovery/zipball/61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb",
  2837. "reference": "61e1a1eb69c92741f5896d9e05fb8e9d7e8bb0cb",
  2838. "shasum": ""
  2839. },
  2840. "require": {
  2841. "composer-plugin-api": "^1.0|^2.0",
  2842. "php": "^7.1 || ^8.0"
  2843. },
  2844. "conflict": {
  2845. "nyholm/psr7": "<1.0",
  2846. "zendframework/zend-diactoros": "*"
  2847. },
  2848. "provide": {
  2849. "php-http/async-client-implementation": "*",
  2850. "php-http/client-implementation": "*",
  2851. "psr/http-client-implementation": "*",
  2852. "psr/http-factory-implementation": "*",
  2853. "psr/http-message-implementation": "*"
  2854. },
  2855. "require-dev": {
  2856. "composer/composer": "^1.0.2|^2.0",
  2857. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  2858. "php-http/httplug": "^1.0 || ^2.0",
  2859. "php-http/message-factory": "^1.0",
  2860. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  2861. "symfony/phpunit-bridge": "^6.2"
  2862. },
  2863. "type": "composer-plugin",
  2864. "extra": {
  2865. "class": "Http\\Discovery\\Composer\\Plugin",
  2866. "plugin-optional": true
  2867. },
  2868. "autoload": {
  2869. "psr-4": {
  2870. "Http\\Discovery\\": "src/"
  2871. },
  2872. "exclude-from-classmap": [
  2873. "src/Composer/Plugin.php"
  2874. ]
  2875. },
  2876. "notification-url": "https://packagist.org/downloads/",
  2877. "license": [
  2878. "MIT"
  2879. ],
  2880. "authors": [
  2881. {
  2882. "name": "Márk Sági-Kazár",
  2883. "email": "[email protected]"
  2884. }
  2885. ],
  2886. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  2887. "homepage": "http://php-http.org",
  2888. "keywords": [
  2889. "adapter",
  2890. "client",
  2891. "discovery",
  2892. "factory",
  2893. "http",
  2894. "message",
  2895. "psr17",
  2896. "psr7"
  2897. ],
  2898. "support": {
  2899. "issues": "https://github.com/php-http/discovery/issues",
  2900. "source": "https://github.com/php-http/discovery/tree/1.19.2"
  2901. },
  2902. "time": "2023-11-30T16:49:05+00:00"
  2903. },
  2904. {
  2905. "name": "php-http/guzzle7-adapter",
  2906. "version": "1.0.0",
  2907. "source": {
  2908. "type": "git",
  2909. "url": "https://github.com/php-http/guzzle7-adapter.git",
  2910. "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01"
  2911. },
  2912. "dist": {
  2913. "type": "zip",
  2914. "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01",
  2915. "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01",
  2916. "shasum": ""
  2917. },
  2918. "require": {
  2919. "guzzlehttp/guzzle": "^7.0",
  2920. "php": "^7.2 | ^8.0",
  2921. "php-http/httplug": "^2.0",
  2922. "psr/http-client": "^1.0"
  2923. },
  2924. "provide": {
  2925. "php-http/async-client-implementation": "1.0",
  2926. "php-http/client-implementation": "1.0",
  2927. "psr/http-client-implementation": "1.0"
  2928. },
  2929. "require-dev": {
  2930. "php-http/client-integration-tests": "^3.0",
  2931. "phpunit/phpunit": "^8.0|^9.3"
  2932. },
  2933. "type": "library",
  2934. "extra": {
  2935. "branch-alias": {
  2936. "dev-master": "0.2.x-dev"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "Http\\Adapter\\Guzzle7\\": "src/"
  2942. }
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "MIT"
  2947. ],
  2948. "authors": [
  2949. {
  2950. "name": "Tobias Nyholm",
  2951. "email": "[email protected]"
  2952. }
  2953. ],
  2954. "description": "Guzzle 7 HTTP Adapter",
  2955. "homepage": "http://httplug.io",
  2956. "keywords": [
  2957. "Guzzle",
  2958. "http"
  2959. ],
  2960. "support": {
  2961. "issues": "https://github.com/php-http/guzzle7-adapter/issues",
  2962. "source": "https://github.com/php-http/guzzle7-adapter/tree/1.0.0"
  2963. },
  2964. "time": "2021-03-09T07:35:15+00:00"
  2965. },
  2966. {
  2967. "name": "php-http/httplug",
  2968. "version": "2.4.0",
  2969. "source": {
  2970. "type": "git",
  2971. "url": "https://github.com/php-http/httplug.git",
  2972. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67"
  2973. },
  2974. "dist": {
  2975. "type": "zip",
  2976. "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67",
  2977. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67",
  2978. "shasum": ""
  2979. },
  2980. "require": {
  2981. "php": "^7.1 || ^8.0",
  2982. "php-http/promise": "^1.1",
  2983. "psr/http-client": "^1.0",
  2984. "psr/http-message": "^1.0 || ^2.0"
  2985. },
  2986. "require-dev": {
  2987. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  2988. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  2989. },
  2990. "type": "library",
  2991. "autoload": {
  2992. "psr-4": {
  2993. "Http\\Client\\": "src/"
  2994. }
  2995. },
  2996. "notification-url": "https://packagist.org/downloads/",
  2997. "license": [
  2998. "MIT"
  2999. ],
  3000. "authors": [
  3001. {
  3002. "name": "Eric GELOEN",
  3003. "email": "[email protected]"
  3004. },
  3005. {
  3006. "name": "Márk Sági-Kazár",
  3007. "email": "[email protected]",
  3008. "homepage": "https://sagikazarmark.hu"
  3009. }
  3010. ],
  3011. "description": "HTTPlug, the HTTP client abstraction for PHP",
  3012. "homepage": "http://httplug.io",
  3013. "keywords": [
  3014. "client",
  3015. "http"
  3016. ],
  3017. "support": {
  3018. "issues": "https://github.com/php-http/httplug/issues",
  3019. "source": "https://github.com/php-http/httplug/tree/2.4.0"
  3020. },
  3021. "time": "2023-04-14T15:10:03+00:00"
  3022. },
  3023. {
  3024. "name": "php-http/message",
  3025. "version": "1.16.0",
  3026. "source": {
  3027. "type": "git",
  3028. "url": "https://github.com/php-http/message.git",
  3029. "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd"
  3030. },
  3031. "dist": {
  3032. "type": "zip",
  3033. "url": "https://api.github.com/repos/php-http/message/zipball/47a14338bf4ebd67d317bf1144253d7db4ab55fd",
  3034. "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd",
  3035. "shasum": ""
  3036. },
  3037. "require": {
  3038. "clue/stream-filter": "^1.5",
  3039. "php": "^7.2 || ^8.0",
  3040. "psr/http-message": "^1.1 || ^2.0"
  3041. },
  3042. "provide": {
  3043. "php-http/message-factory-implementation": "1.0"
  3044. },
  3045. "require-dev": {
  3046. "ergebnis/composer-normalize": "^2.6",
  3047. "ext-zlib": "*",
  3048. "guzzlehttp/psr7": "^1.0 || ^2.0",
  3049. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  3050. "php-http/message-factory": "^1.0.2",
  3051. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  3052. "slim/slim": "^3.0"
  3053. },
  3054. "suggest": {
  3055. "ext-zlib": "Used with compressor/decompressor streams",
  3056. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  3057. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  3058. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  3059. },
  3060. "type": "library",
  3061. "autoload": {
  3062. "files": [
  3063. "src/filters.php"
  3064. ],
  3065. "psr-4": {
  3066. "Http\\Message\\": "src/"
  3067. }
  3068. },
  3069. "notification-url": "https://packagist.org/downloads/",
  3070. "license": [
  3071. "MIT"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "Márk Sági-Kazár",
  3076. "email": "[email protected]"
  3077. }
  3078. ],
  3079. "description": "HTTP Message related tools",
  3080. "homepage": "http://php-http.org",
  3081. "keywords": [
  3082. "http",
  3083. "message",
  3084. "psr-7"
  3085. ],
  3086. "support": {
  3087. "issues": "https://github.com/php-http/message/issues",
  3088. "source": "https://github.com/php-http/message/tree/1.16.0"
  3089. },
  3090. "time": "2023-05-17T06:43:38+00:00"
  3091. },
  3092. {
  3093. "name": "php-http/message-factory",
  3094. "version": "1.1.0",
  3095. "source": {
  3096. "type": "git",
  3097. "url": "https://github.com/php-http/message-factory.git",
  3098. "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57"
  3099. },
  3100. "dist": {
  3101. "type": "zip",
  3102. "url": "https://api.github.com/repos/php-http/message-factory/zipball/4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
  3103. "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
  3104. "shasum": ""
  3105. },
  3106. "require": {
  3107. "php": ">=5.4",
  3108. "psr/http-message": "^1.0 || ^2.0"
  3109. },
  3110. "type": "library",
  3111. "extra": {
  3112. "branch-alias": {
  3113. "dev-master": "1.x-dev"
  3114. }
  3115. },
  3116. "autoload": {
  3117. "psr-4": {
  3118. "Http\\Message\\": "src/"
  3119. }
  3120. },
  3121. "notification-url": "https://packagist.org/downloads/",
  3122. "license": [
  3123. "MIT"
  3124. ],
  3125. "authors": [
  3126. {
  3127. "name": "Márk Sági-Kazár",
  3128. "email": "[email protected]"
  3129. }
  3130. ],
  3131. "description": "Factory interfaces for PSR-7 HTTP Message",
  3132. "homepage": "http://php-http.org",
  3133. "keywords": [
  3134. "factory",
  3135. "http",
  3136. "message",
  3137. "stream",
  3138. "uri"
  3139. ],
  3140. "support": {
  3141. "issues": "https://github.com/php-http/message-factory/issues",
  3142. "source": "https://github.com/php-http/message-factory/tree/1.1.0"
  3143. },
  3144. "abandoned": "psr/http-factory",
  3145. "time": "2023-04-14T14:16:17+00:00"
  3146. },
  3147. {
  3148. "name": "php-http/multipart-stream-builder",
  3149. "version": "1.3.0",
  3150. "source": {
  3151. "type": "git",
  3152. "url": "https://github.com/php-http/multipart-stream-builder.git",
  3153. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a"
  3154. },
  3155. "dist": {
  3156. "type": "zip",
  3157. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/f5938fd135d9fa442cc297dc98481805acfe2b6a",
  3158. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a",
  3159. "shasum": ""
  3160. },
  3161. "require": {
  3162. "php": "^7.1 || ^8.0",
  3163. "php-http/discovery": "^1.15",
  3164. "psr/http-factory-implementation": "^1.0"
  3165. },
  3166. "require-dev": {
  3167. "nyholm/psr7": "^1.0",
  3168. "php-http/message": "^1.5",
  3169. "php-http/message-factory": "^1.0.2",
  3170. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  3171. },
  3172. "type": "library",
  3173. "autoload": {
  3174. "psr-4": {
  3175. "Http\\Message\\MultipartStream\\": "src/"
  3176. }
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Tobias Nyholm",
  3185. "email": "[email protected]"
  3186. }
  3187. ],
  3188. "description": "A builder class that help you create a multipart stream",
  3189. "homepage": "http://php-http.org",
  3190. "keywords": [
  3191. "factory",
  3192. "http",
  3193. "message",
  3194. "multipart stream",
  3195. "stream"
  3196. ],
  3197. "support": {
  3198. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  3199. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.3.0"
  3200. },
  3201. "time": "2023-04-28T14:10:22+00:00"
  3202. },
  3203. {
  3204. "name": "php-http/promise",
  3205. "version": "1.3.0",
  3206. "source": {
  3207. "type": "git",
  3208. "url": "https://github.com/php-http/promise.git",
  3209. "reference": "2916a606d3b390f4e9e8e2b8dd68581508be0f07"
  3210. },
  3211. "dist": {
  3212. "type": "zip",
  3213. "url": "https://api.github.com/repos/php-http/promise/zipball/2916a606d3b390f4e9e8e2b8dd68581508be0f07",
  3214. "reference": "2916a606d3b390f4e9e8e2b8dd68581508be0f07",
  3215. "shasum": ""
  3216. },
  3217. "require": {
  3218. "php": "^7.1 || ^8.0"
  3219. },
  3220. "require-dev": {
  3221. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  3222. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  3223. },
  3224. "type": "library",
  3225. "autoload": {
  3226. "psr-4": {
  3227. "Http\\Promise\\": "src/"
  3228. }
  3229. },
  3230. "notification-url": "https://packagist.org/downloads/",
  3231. "license": [
  3232. "MIT"
  3233. ],
  3234. "authors": [
  3235. {
  3236. "name": "Joel Wurtz",
  3237. "email": "[email protected]"
  3238. },
  3239. {
  3240. "name": "Márk Sági-Kazár",
  3241. "email": "[email protected]"
  3242. }
  3243. ],
  3244. "description": "Promise used for asynchronous HTTP requests",
  3245. "homepage": "http://httplug.io",
  3246. "keywords": [
  3247. "promise"
  3248. ],
  3249. "support": {
  3250. "issues": "https://github.com/php-http/promise/issues",
  3251. "source": "https://github.com/php-http/promise/tree/1.3.0"
  3252. },
  3253. "time": "2024-01-04T18:49:48+00:00"
  3254. },
  3255. {
  3256. "name": "phpmailer/phpmailer",
  3257. "version": "v6.9.1",
  3258. "source": {
  3259. "type": "git",
  3260. "url": "https://github.com/PHPMailer/PHPMailer.git",
  3261. "reference": "039de174cd9c17a8389754d3b877a2ed22743e18"
  3262. },
  3263. "dist": {
  3264. "type": "zip",
  3265. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/039de174cd9c17a8389754d3b877a2ed22743e18",
  3266. "reference": "039de174cd9c17a8389754d3b877a2ed22743e18",
  3267. "shasum": ""
  3268. },
  3269. "require": {
  3270. "ext-ctype": "*",
  3271. "ext-filter": "*",
  3272. "ext-hash": "*",
  3273. "php": ">=5.5.0"
  3274. },
  3275. "require-dev": {
  3276. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  3277. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  3278. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  3279. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  3280. "phpcompatibility/php-compatibility": "^9.3.5",
  3281. "roave/security-advisories": "dev-latest",
  3282. "squizlabs/php_codesniffer": "^3.7.2",
  3283. "yoast/phpunit-polyfills": "^1.0.4"
  3284. },
  3285. "suggest": {
  3286. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  3287. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  3288. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  3289. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  3290. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  3291. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  3292. "psr/log": "For optional PSR-3 debug logging",
  3293. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  3294. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  3295. },
  3296. "type": "library",
  3297. "autoload": {
  3298. "psr-4": {
  3299. "PHPMailer\\PHPMailer\\": "src/"
  3300. }
  3301. },
  3302. "notification-url": "https://packagist.org/downloads/",
  3303. "license": [
  3304. "LGPL-2.1-only"
  3305. ],
  3306. "authors": [
  3307. {
  3308. "name": "Marcus Bointon",
  3309. "email": "[email protected]"
  3310. },
  3311. {
  3312. "name": "Jim Jagielski",
  3313. "email": "[email protected]"
  3314. },
  3315. {
  3316. "name": "Andy Prevost",
  3317. "email": "[email protected]"
  3318. },
  3319. {
  3320. "name": "Brent R. Matzelle"
  3321. }
  3322. ],
  3323. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  3324. "support": {
  3325. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  3326. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.9.1"
  3327. },
  3328. "funding": [
  3329. {
  3330. "url": "https://github.com/Synchro",
  3331. "type": "github"
  3332. }
  3333. ],
  3334. "time": "2023-11-25T22:23:28+00:00"
  3335. },
  3336. {
  3337. "name": "postal/postal",
  3338. "version": "v2.0.1",
  3339. "source": {
  3340. "type": "git",
  3341. "url": "https://github.com/postalserver/postal-php.git",
  3342. "reference": "e361d11aadb724a482092784ebfe00461c492b5d"
  3343. },
  3344. "dist": {
  3345. "type": "zip",
  3346. "url": "https://api.github.com/repos/postalserver/postal-php/zipball/e361d11aadb724a482092784ebfe00461c492b5d",
  3347. "reference": "e361d11aadb724a482092784ebfe00461c492b5d",
  3348. "shasum": ""
  3349. },
  3350. "require": {
  3351. "guzzlehttp/guzzle": "^6 || ^7",
  3352. "php": "^7.4 || ^8.0"
  3353. },
  3354. "require-dev": {
  3355. "phpstan/phpstan": "^1.10",
  3356. "phpunit/phpunit": "^9.6",
  3357. "symplify/easy-coding-standard": "^11.3"
  3358. },
  3359. "type": "library",
  3360. "autoload": {
  3361. "psr-4": {
  3362. "Postal\\": "src/"
  3363. }
  3364. },
  3365. "notification-url": "https://packagist.org/downloads/",
  3366. "license": [
  3367. "MIT"
  3368. ],
  3369. "authors": [
  3370. {
  3371. "name": "Adam Cooke",
  3372. "email": "[email protected]"
  3373. },
  3374. {
  3375. "name": "Josh Grant",
  3376. "email": "[email protected]"
  3377. },
  3378. {
  3379. "name": "William Hall",
  3380. "email": "[email protected]"
  3381. }
  3382. ],
  3383. "description": "Postal for PHP library.",
  3384. "homepage": "https://github.com/atech/postal",
  3385. "keywords": [
  3386. "mail",
  3387. "postal"
  3388. ],
  3389. "support": {
  3390. "issues": "https://github.com/postalserver/postal-php/issues",
  3391. "source": "https://github.com/postalserver/postal-php/tree/v2.0.1"
  3392. },
  3393. "time": "2023-12-19T09:49:41+00:00"
  3394. },
  3395. {
  3396. "name": "psr/clock",
  3397. "version": "1.0.0",
  3398. "source": {
  3399. "type": "git",
  3400. "url": "https://github.com/php-fig/clock.git",
  3401. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3402. },
  3403. "dist": {
  3404. "type": "zip",
  3405. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3406. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3407. "shasum": ""
  3408. },
  3409. "require": {
  3410. "php": "^7.0 || ^8.0"
  3411. },
  3412. "type": "library",
  3413. "autoload": {
  3414. "psr-4": {
  3415. "Psr\\Clock\\": "src/"
  3416. }
  3417. },
  3418. "notification-url": "https://packagist.org/downloads/",
  3419. "license": [
  3420. "MIT"
  3421. ],
  3422. "authors": [
  3423. {
  3424. "name": "PHP-FIG",
  3425. "homepage": "https://www.php-fig.org/"
  3426. }
  3427. ],
  3428. "description": "Common interface for reading the clock.",
  3429. "homepage": "https://github.com/php-fig/clock",
  3430. "keywords": [
  3431. "clock",
  3432. "now",
  3433. "psr",
  3434. "psr-20",
  3435. "time"
  3436. ],
  3437. "support": {
  3438. "issues": "https://github.com/php-fig/clock/issues",
  3439. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3440. },
  3441. "time": "2022-11-25T14:36:26+00:00"
  3442. },
  3443. {
  3444. "name": "psr/container",
  3445. "version": "2.0.2",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://github.com/php-fig/container.git",
  3449. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3450. },
  3451. "dist": {
  3452. "type": "zip",
  3453. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3454. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3455. "shasum": ""
  3456. },
  3457. "require": {
  3458. "php": ">=7.4.0"
  3459. },
  3460. "type": "library",
  3461. "extra": {
  3462. "branch-alias": {
  3463. "dev-master": "2.0.x-dev"
  3464. }
  3465. },
  3466. "autoload": {
  3467. "psr-4": {
  3468. "Psr\\Container\\": "src/"
  3469. }
  3470. },
  3471. "notification-url": "https://packagist.org/downloads/",
  3472. "license": [
  3473. "MIT"
  3474. ],
  3475. "authors": [
  3476. {
  3477. "name": "PHP-FIG",
  3478. "homepage": "https://www.php-fig.org/"
  3479. }
  3480. ],
  3481. "description": "Common Container Interface (PHP FIG PSR-11)",
  3482. "homepage": "https://github.com/php-fig/container",
  3483. "keywords": [
  3484. "PSR-11",
  3485. "container",
  3486. "container-interface",
  3487. "container-interop",
  3488. "psr"
  3489. ],
  3490. "support": {
  3491. "issues": "https://github.com/php-fig/container/issues",
  3492. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3493. },
  3494. "time": "2021-11-05T16:47:00+00:00"
  3495. },
  3496. {
  3497. "name": "psr/event-dispatcher",
  3498. "version": "1.0.0",
  3499. "source": {
  3500. "type": "git",
  3501. "url": "https://github.com/php-fig/event-dispatcher.git",
  3502. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3503. },
  3504. "dist": {
  3505. "type": "zip",
  3506. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3507. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3508. "shasum": ""
  3509. },
  3510. "require": {
  3511. "php": ">=7.2.0"
  3512. },
  3513. "type": "library",
  3514. "extra": {
  3515. "branch-alias": {
  3516. "dev-master": "1.0.x-dev"
  3517. }
  3518. },
  3519. "autoload": {
  3520. "psr-4": {
  3521. "Psr\\EventDispatcher\\": "src/"
  3522. }
  3523. },
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "MIT"
  3527. ],
  3528. "authors": [
  3529. {
  3530. "name": "PHP-FIG",
  3531. "homepage": "http://www.php-fig.org/"
  3532. }
  3533. ],
  3534. "description": "Standard interfaces for event handling.",
  3535. "keywords": [
  3536. "events",
  3537. "psr",
  3538. "psr-14"
  3539. ],
  3540. "support": {
  3541. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3542. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3543. },
  3544. "time": "2019-01-08T18:20:26+00:00"
  3545. },
  3546. {
  3547. "name": "psr/http-client",
  3548. "version": "1.0.3",
  3549. "source": {
  3550. "type": "git",
  3551. "url": "https://github.com/php-fig/http-client.git",
  3552. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3553. },
  3554. "dist": {
  3555. "type": "zip",
  3556. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3557. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3558. "shasum": ""
  3559. },
  3560. "require": {
  3561. "php": "^7.0 || ^8.0",
  3562. "psr/http-message": "^1.0 || ^2.0"
  3563. },
  3564. "type": "library",
  3565. "extra": {
  3566. "branch-alias": {
  3567. "dev-master": "1.0.x-dev"
  3568. }
  3569. },
  3570. "autoload": {
  3571. "psr-4": {
  3572. "Psr\\Http\\Client\\": "src/"
  3573. }
  3574. },
  3575. "notification-url": "https://packagist.org/downloads/",
  3576. "license": [
  3577. "MIT"
  3578. ],
  3579. "authors": [
  3580. {
  3581. "name": "PHP-FIG",
  3582. "homepage": "https://www.php-fig.org/"
  3583. }
  3584. ],
  3585. "description": "Common interface for HTTP clients",
  3586. "homepage": "https://github.com/php-fig/http-client",
  3587. "keywords": [
  3588. "http",
  3589. "http-client",
  3590. "psr",
  3591. "psr-18"
  3592. ],
  3593. "support": {
  3594. "source": "https://github.com/php-fig/http-client"
  3595. },
  3596. "time": "2023-09-23T14:17:50+00:00"
  3597. },
  3598. {
  3599. "name": "psr/http-factory",
  3600. "version": "1.0.2",
  3601. "source": {
  3602. "type": "git",
  3603. "url": "https://github.com/php-fig/http-factory.git",
  3604. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3605. },
  3606. "dist": {
  3607. "type": "zip",
  3608. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3609. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3610. "shasum": ""
  3611. },
  3612. "require": {
  3613. "php": ">=7.0.0",
  3614. "psr/http-message": "^1.0 || ^2.0"
  3615. },
  3616. "type": "library",
  3617. "extra": {
  3618. "branch-alias": {
  3619. "dev-master": "1.0.x-dev"
  3620. }
  3621. },
  3622. "autoload": {
  3623. "psr-4": {
  3624. "Psr\\Http\\Message\\": "src/"
  3625. }
  3626. },
  3627. "notification-url": "https://packagist.org/downloads/",
  3628. "license": [
  3629. "MIT"
  3630. ],
  3631. "authors": [
  3632. {
  3633. "name": "PHP-FIG",
  3634. "homepage": "https://www.php-fig.org/"
  3635. }
  3636. ],
  3637. "description": "Common interfaces for PSR-7 HTTP message factories",
  3638. "keywords": [
  3639. "factory",
  3640. "http",
  3641. "message",
  3642. "psr",
  3643. "psr-17",
  3644. "psr-7",
  3645. "request",
  3646. "response"
  3647. ],
  3648. "support": {
  3649. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3650. },
  3651. "time": "2023-04-10T20:10:41+00:00"
  3652. },
  3653. {
  3654. "name": "psr/http-message",
  3655. "version": "1.1",
  3656. "source": {
  3657. "type": "git",
  3658. "url": "https://github.com/php-fig/http-message.git",
  3659. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3660. },
  3661. "dist": {
  3662. "type": "zip",
  3663. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3664. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3665. "shasum": ""
  3666. },
  3667. "require": {
  3668. "php": "^7.2 || ^8.0"
  3669. },
  3670. "type": "library",
  3671. "extra": {
  3672. "branch-alias": {
  3673. "dev-master": "1.1.x-dev"
  3674. }
  3675. },
  3676. "autoload": {
  3677. "psr-4": {
  3678. "Psr\\Http\\Message\\": "src/"
  3679. }
  3680. },
  3681. "notification-url": "https://packagist.org/downloads/",
  3682. "license": [
  3683. "MIT"
  3684. ],
  3685. "authors": [
  3686. {
  3687. "name": "PHP-FIG",
  3688. "homepage": "http://www.php-fig.org/"
  3689. }
  3690. ],
  3691. "description": "Common interface for HTTP messages",
  3692. "homepage": "https://github.com/php-fig/http-message",
  3693. "keywords": [
  3694. "http",
  3695. "http-message",
  3696. "psr",
  3697. "psr-7",
  3698. "request",
  3699. "response"
  3700. ],
  3701. "support": {
  3702. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3703. },
  3704. "time": "2023-04-04T09:50:52+00:00"
  3705. },
  3706. {
  3707. "name": "psr/http-server-handler",
  3708. "version": "1.0.2",
  3709. "source": {
  3710. "type": "git",
  3711. "url": "https://github.com/php-fig/http-server-handler.git",
  3712. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  3713. },
  3714. "dist": {
  3715. "type": "zip",
  3716. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  3717. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  3718. "shasum": ""
  3719. },
  3720. "require": {
  3721. "php": ">=7.0",
  3722. "psr/http-message": "^1.0 || ^2.0"
  3723. },
  3724. "type": "library",
  3725. "extra": {
  3726. "branch-alias": {
  3727. "dev-master": "1.0.x-dev"
  3728. }
  3729. },
  3730. "autoload": {
  3731. "psr-4": {
  3732. "Psr\\Http\\Server\\": "src/"
  3733. }
  3734. },
  3735. "notification-url": "https://packagist.org/downloads/",
  3736. "license": [
  3737. "MIT"
  3738. ],
  3739. "authors": [
  3740. {
  3741. "name": "PHP-FIG",
  3742. "homepage": "https://www.php-fig.org/"
  3743. }
  3744. ],
  3745. "description": "Common interface for HTTP server-side request handler",
  3746. "keywords": [
  3747. "handler",
  3748. "http",
  3749. "http-interop",
  3750. "psr",
  3751. "psr-15",
  3752. "psr-7",
  3753. "request",
  3754. "response",
  3755. "server"
  3756. ],
  3757. "support": {
  3758. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  3759. },
  3760. "time": "2023-04-10T20:06:20+00:00"
  3761. },
  3762. {
  3763. "name": "psr/http-server-middleware",
  3764. "version": "1.0.2",
  3765. "source": {
  3766. "type": "git",
  3767. "url": "https://github.com/php-fig/http-server-middleware.git",
  3768. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  3769. },
  3770. "dist": {
  3771. "type": "zip",
  3772. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3773. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3774. "shasum": ""
  3775. },
  3776. "require": {
  3777. "php": ">=7.0",
  3778. "psr/http-message": "^1.0 || ^2.0",
  3779. "psr/http-server-handler": "^1.0"
  3780. },
  3781. "type": "library",
  3782. "extra": {
  3783. "branch-alias": {
  3784. "dev-master": "1.0.x-dev"
  3785. }
  3786. },
  3787. "autoload": {
  3788. "psr-4": {
  3789. "Psr\\Http\\Server\\": "src/"
  3790. }
  3791. },
  3792. "notification-url": "https://packagist.org/downloads/",
  3793. "license": [
  3794. "MIT"
  3795. ],
  3796. "authors": [
  3797. {
  3798. "name": "PHP-FIG",
  3799. "homepage": "https://www.php-fig.org/"
  3800. }
  3801. ],
  3802. "description": "Common interface for HTTP server-side middleware",
  3803. "keywords": [
  3804. "http",
  3805. "http-interop",
  3806. "middleware",
  3807. "psr",
  3808. "psr-15",
  3809. "psr-7",
  3810. "request",
  3811. "response"
  3812. ],
  3813. "support": {
  3814. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  3815. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  3816. },
  3817. "time": "2023-04-11T06:14:47+00:00"
  3818. },
  3819. {
  3820. "name": "psr/log",
  3821. "version": "3.0.0",
  3822. "source": {
  3823. "type": "git",
  3824. "url": "https://github.com/php-fig/log.git",
  3825. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3826. },
  3827. "dist": {
  3828. "type": "zip",
  3829. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3830. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3831. "shasum": ""
  3832. },
  3833. "require": {
  3834. "php": ">=8.0.0"
  3835. },
  3836. "type": "library",
  3837. "extra": {
  3838. "branch-alias": {
  3839. "dev-master": "3.x-dev"
  3840. }
  3841. },
  3842. "autoload": {
  3843. "psr-4": {
  3844. "Psr\\Log\\": "src"
  3845. }
  3846. },
  3847. "notification-url": "https://packagist.org/downloads/",
  3848. "license": [
  3849. "MIT"
  3850. ],
  3851. "authors": [
  3852. {
  3853. "name": "PHP-FIG",
  3854. "homepage": "https://www.php-fig.org/"
  3855. }
  3856. ],
  3857. "description": "Common interface for logging libraries",
  3858. "homepage": "https://github.com/php-fig/log",
  3859. "keywords": [
  3860. "log",
  3861. "psr",
  3862. "psr-3"
  3863. ],
  3864. "support": {
  3865. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3866. },
  3867. "time": "2021-07-14T16:46:02+00:00"
  3868. },
  3869. {
  3870. "name": "psr/simple-cache",
  3871. "version": "3.0.0",
  3872. "source": {
  3873. "type": "git",
  3874. "url": "https://github.com/php-fig/simple-cache.git",
  3875. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3876. },
  3877. "dist": {
  3878. "type": "zip",
  3879. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3880. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3881. "shasum": ""
  3882. },
  3883. "require": {
  3884. "php": ">=8.0.0"
  3885. },
  3886. "type": "library",
  3887. "extra": {
  3888. "branch-alias": {
  3889. "dev-master": "3.0.x-dev"
  3890. }
  3891. },
  3892. "autoload": {
  3893. "psr-4": {
  3894. "Psr\\SimpleCache\\": "src/"
  3895. }
  3896. },
  3897. "notification-url": "https://packagist.org/downloads/",
  3898. "license": [
  3899. "MIT"
  3900. ],
  3901. "authors": [
  3902. {
  3903. "name": "PHP-FIG",
  3904. "homepage": "https://www.php-fig.org/"
  3905. }
  3906. ],
  3907. "description": "Common interfaces for simple caching",
  3908. "keywords": [
  3909. "cache",
  3910. "caching",
  3911. "psr",
  3912. "psr-16",
  3913. "simple-cache"
  3914. ],
  3915. "support": {
  3916. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3917. },
  3918. "time": "2021-10-29T13:26:27+00:00"
  3919. },
  3920. {
  3921. "name": "ralouphie/getallheaders",
  3922. "version": "3.0.3",
  3923. "source": {
  3924. "type": "git",
  3925. "url": "https://github.com/ralouphie/getallheaders.git",
  3926. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3927. },
  3928. "dist": {
  3929. "type": "zip",
  3930. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3931. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3932. "shasum": ""
  3933. },
  3934. "require": {
  3935. "php": ">=5.6"
  3936. },
  3937. "require-dev": {
  3938. "php-coveralls/php-coveralls": "^2.1",
  3939. "phpunit/phpunit": "^5 || ^6.5"
  3940. },
  3941. "type": "library",
  3942. "autoload": {
  3943. "files": [
  3944. "src/getallheaders.php"
  3945. ]
  3946. },
  3947. "notification-url": "https://packagist.org/downloads/",
  3948. "license": [
  3949. "MIT"
  3950. ],
  3951. "authors": [
  3952. {
  3953. "name": "Ralph Khattar",
  3954. "email": "[email protected]"
  3955. }
  3956. ],
  3957. "description": "A polyfill for getallheaders.",
  3958. "support": {
  3959. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3960. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3961. },
  3962. "time": "2019-03-08T08:55:37+00:00"
  3963. },
  3964. {
  3965. "name": "ramsey/collection",
  3966. "version": "2.0.0",
  3967. "source": {
  3968. "type": "git",
  3969. "url": "https://github.com/ramsey/collection.git",
  3970. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  3971. },
  3972. "dist": {
  3973. "type": "zip",
  3974. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3975. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3976. "shasum": ""
  3977. },
  3978. "require": {
  3979. "php": "^8.1"
  3980. },
  3981. "require-dev": {
  3982. "captainhook/plugin-composer": "^5.3",
  3983. "ergebnis/composer-normalize": "^2.28.3",
  3984. "fakerphp/faker": "^1.21",
  3985. "hamcrest/hamcrest-php": "^2.0",
  3986. "jangregor/phpstan-prophecy": "^1.0",
  3987. "mockery/mockery": "^1.5",
  3988. "php-parallel-lint/php-console-highlighter": "^1.0",
  3989. "php-parallel-lint/php-parallel-lint": "^1.3",
  3990. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3991. "phpspec/prophecy-phpunit": "^2.0",
  3992. "phpstan/extension-installer": "^1.2",
  3993. "phpstan/phpstan": "^1.9",
  3994. "phpstan/phpstan-mockery": "^1.1",
  3995. "phpstan/phpstan-phpunit": "^1.3",
  3996. "phpunit/phpunit": "^9.5",
  3997. "psalm/plugin-mockery": "^1.1",
  3998. "psalm/plugin-phpunit": "^0.18.4",
  3999. "ramsey/coding-standard": "^2.0.3",
  4000. "ramsey/conventional-commits": "^1.3",
  4001. "vimeo/psalm": "^5.4"
  4002. },
  4003. "type": "library",
  4004. "extra": {
  4005. "captainhook": {
  4006. "force-install": true
  4007. },
  4008. "ramsey/conventional-commits": {
  4009. "configFile": "conventional-commits.json"
  4010. }
  4011. },
  4012. "autoload": {
  4013. "psr-4": {
  4014. "Ramsey\\Collection\\": "src/"
  4015. }
  4016. },
  4017. "notification-url": "https://packagist.org/downloads/",
  4018. "license": [
  4019. "MIT"
  4020. ],
  4021. "authors": [
  4022. {
  4023. "name": "Ben Ramsey",
  4024. "email": "[email protected]",
  4025. "homepage": "https://benramsey.com"
  4026. }
  4027. ],
  4028. "description": "A PHP library for representing and manipulating collections.",
  4029. "keywords": [
  4030. "array",
  4031. "collection",
  4032. "hash",
  4033. "map",
  4034. "queue",
  4035. "set"
  4036. ],
  4037. "support": {
  4038. "issues": "https://github.com/ramsey/collection/issues",
  4039. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4040. },
  4041. "funding": [
  4042. {
  4043. "url": "https://github.com/ramsey",
  4044. "type": "github"
  4045. },
  4046. {
  4047. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4048. "type": "tidelift"
  4049. }
  4050. ],
  4051. "time": "2022-12-31T21:50:55+00:00"
  4052. },
  4053. {
  4054. "name": "ramsey/uuid",
  4055. "version": "4.7.5",
  4056. "source": {
  4057. "type": "git",
  4058. "url": "https://github.com/ramsey/uuid.git",
  4059. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  4060. },
  4061. "dist": {
  4062. "type": "zip",
  4063. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4064. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4065. "shasum": ""
  4066. },
  4067. "require": {
  4068. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4069. "ext-json": "*",
  4070. "php": "^8.0",
  4071. "ramsey/collection": "^1.2 || ^2.0"
  4072. },
  4073. "replace": {
  4074. "rhumsaa/uuid": "self.version"
  4075. },
  4076. "require-dev": {
  4077. "captainhook/captainhook": "^5.10",
  4078. "captainhook/plugin-composer": "^5.3",
  4079. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4080. "doctrine/annotations": "^1.8",
  4081. "ergebnis/composer-normalize": "^2.15",
  4082. "mockery/mockery": "^1.3",
  4083. "paragonie/random-lib": "^2",
  4084. "php-mock/php-mock": "^2.2",
  4085. "php-mock/php-mock-mockery": "^1.3",
  4086. "php-parallel-lint/php-parallel-lint": "^1.1",
  4087. "phpbench/phpbench": "^1.0",
  4088. "phpstan/extension-installer": "^1.1",
  4089. "phpstan/phpstan": "^1.8",
  4090. "phpstan/phpstan-mockery": "^1.1",
  4091. "phpstan/phpstan-phpunit": "^1.1",
  4092. "phpunit/phpunit": "^8.5 || ^9",
  4093. "ramsey/composer-repl": "^1.4",
  4094. "slevomat/coding-standard": "^8.4",
  4095. "squizlabs/php_codesniffer": "^3.5",
  4096. "vimeo/psalm": "^4.9"
  4097. },
  4098. "suggest": {
  4099. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4100. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4101. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4102. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4103. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4104. },
  4105. "type": "library",
  4106. "extra": {
  4107. "captainhook": {
  4108. "force-install": true
  4109. }
  4110. },
  4111. "autoload": {
  4112. "files": [
  4113. "src/functions.php"
  4114. ],
  4115. "psr-4": {
  4116. "Ramsey\\Uuid\\": "src/"
  4117. }
  4118. },
  4119. "notification-url": "https://packagist.org/downloads/",
  4120. "license": [
  4121. "MIT"
  4122. ],
  4123. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4124. "keywords": [
  4125. "guid",
  4126. "identifier",
  4127. "uuid"
  4128. ],
  4129. "support": {
  4130. "issues": "https://github.com/ramsey/uuid/issues",
  4131. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  4132. },
  4133. "funding": [
  4134. {
  4135. "url": "https://github.com/ramsey",
  4136. "type": "github"
  4137. },
  4138. {
  4139. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4140. "type": "tidelift"
  4141. }
  4142. ],
  4143. "time": "2023-11-08T05:53:05+00:00"
  4144. },
  4145. {
  4146. "name": "sendgrid/php-http-client",
  4147. "version": "4.1.0",
  4148. "source": {
  4149. "type": "git",
  4150. "url": "https://github.com/sendgrid/php-http-client.git",
  4151. "reference": "84fe926f3d2ac3454f088c9a06ebdc398cc3727e"
  4152. },
  4153. "dist": {
  4154. "type": "zip",
  4155. "url": "https://api.github.com/repos/sendgrid/php-http-client/zipball/84fe926f3d2ac3454f088c9a06ebdc398cc3727e",
  4156. "reference": "84fe926f3d2ac3454f088c9a06ebdc398cc3727e",
  4157. "shasum": ""
  4158. },
  4159. "require": {
  4160. "ext-curl": "*",
  4161. "ext-json": "*",
  4162. "ext-mbstring": "*",
  4163. "php": ">=7.3"
  4164. },
  4165. "require-dev": {
  4166. "friendsofphp/php-cs-fixer": "^2.16",
  4167. "phpunit/phpunit": "^9",
  4168. "squizlabs/php_codesniffer": "~2.0"
  4169. },
  4170. "suggest": {
  4171. "composer/ca-bundle": "Including this library will ensure that a valid CA bundle is available for secure connections"
  4172. },
  4173. "type": "library",
  4174. "autoload": {
  4175. "psr-4": {
  4176. "SendGrid\\": "lib/"
  4177. }
  4178. },
  4179. "notification-url": "https://packagist.org/downloads/",
  4180. "license": [
  4181. "MIT"
  4182. ],
  4183. "authors": [
  4184. {
  4185. "name": "Matt Bernier",
  4186. "email": "[email protected]"
  4187. },
  4188. {
  4189. "name": "Elmer Thomas",
  4190. "email": "[email protected]"
  4191. }
  4192. ],
  4193. "description": "HTTP REST client, simplified for PHP",
  4194. "homepage": "http://github.com/sendgrid/php-http-client",
  4195. "keywords": [
  4196. "api",
  4197. "fluent",
  4198. "http",
  4199. "rest",
  4200. "sendgrid"
  4201. ],
  4202. "support": {
  4203. "source": "https://github.com/sendgrid/php-http-client/tree/4.1.0"
  4204. },
  4205. "time": "2023-12-01T05:16:21+00:00"
  4206. },
  4207. {
  4208. "name": "sendgrid/sendgrid",
  4209. "version": "8.1.1",
  4210. "source": {
  4211. "type": "git",
  4212. "url": "https://github.com/sendgrid/sendgrid-php.git",
  4213. "reference": "08514e75789f192c034fdcf18efe6d8b1a7c91da"
  4214. },
  4215. "dist": {
  4216. "type": "zip",
  4217. "url": "https://api.github.com/repos/sendgrid/sendgrid-php/zipball/08514e75789f192c034fdcf18efe6d8b1a7c91da",
  4218. "reference": "08514e75789f192c034fdcf18efe6d8b1a7c91da",
  4219. "shasum": ""
  4220. },
  4221. "require": {
  4222. "ext-curl": "*",
  4223. "ext-json": "*",
  4224. "ext-mbstring": "*",
  4225. "ext-openssl": "*",
  4226. "php": ">=7.3",
  4227. "sendgrid/php-http-client": "4.1.0",
  4228. "starkbank/ecdsa": "0.*"
  4229. },
  4230. "replace": {
  4231. "sendgrid/sendgrid-php": "*"
  4232. },
  4233. "require-dev": {
  4234. "phpstan/phpstan": "^1.5",
  4235. "phpunit/phpunit": "^9",
  4236. "squizlabs/php_codesniffer": "3.*",
  4237. "swaggest/json-diff": "^3.4"
  4238. },
  4239. "type": "library",
  4240. "autoload": {
  4241. "psr-4": {
  4242. "SendGrid\\Mail\\": "lib/mail/",
  4243. "SendGrid\\Stats\\": "lib/stats/",
  4244. "SendGrid\\Helper\\": "lib/helper/",
  4245. "SendGrid\\Contacts\\": "lib/contacts/",
  4246. "SendGrid\\EventWebhook\\": "lib/eventwebhook/"
  4247. },
  4248. "classmap": [
  4249. "lib/BaseSendGridClientInterface.php",
  4250. "lib/SendGrid.php",
  4251. "lib/TwilioEmail.php"
  4252. ]
  4253. },
  4254. "notification-url": "https://packagist.org/downloads/",
  4255. "license": [
  4256. "MIT"
  4257. ],
  4258. "description": "This library allows you to quickly and easily send emails through Twilio SendGrid using PHP.",
  4259. "homepage": "http://github.com/sendgrid/sendgrid-php",
  4260. "keywords": [
  4261. "email",
  4262. "grid",
  4263. "send",
  4264. "sendgrid",
  4265. "twilio sendgrid"
  4266. ],
  4267. "support": {
  4268. "source": "https://github.com/sendgrid/sendgrid-php/tree/8.1.1"
  4269. },
  4270. "time": "2023-12-06T07:11:08+00:00"
  4271. },
  4272. {
  4273. "name": "sentry/sdk",
  4274. "version": "4.0.0",
  4275. "source": {
  4276. "type": "git",
  4277. "url": "https://github.com/getsentry/sentry-php-sdk.git",
  4278. "reference": "fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53"
  4279. },
  4280. "dist": {
  4281. "type": "zip",
  4282. "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53",
  4283. "reference": "fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53",
  4284. "shasum": ""
  4285. },
  4286. "require": {
  4287. "sentry/sentry": "^4.0"
  4288. },
  4289. "type": "metapackage",
  4290. "notification-url": "https://packagist.org/downloads/",
  4291. "license": [
  4292. "MIT"
  4293. ],
  4294. "authors": [
  4295. {
  4296. "name": "Sentry",
  4297. "email": "[email protected]"
  4298. }
  4299. ],
  4300. "description": "This is a meta package of sentry/sentry. We recommend using sentry/sentry directly.",
  4301. "homepage": "http://sentry.io",
  4302. "keywords": [
  4303. "crash-reporting",
  4304. "crash-reports",
  4305. "error-handler",
  4306. "error-monitoring",
  4307. "log",
  4308. "logging",
  4309. "sentry"
  4310. ],
  4311. "support": {
  4312. "issues": "https://github.com/getsentry/sentry-php-sdk/issues",
  4313. "source": "https://github.com/getsentry/sentry-php-sdk/tree/4.0.0"
  4314. },
  4315. "funding": [
  4316. {
  4317. "url": "https://sentry.io/",
  4318. "type": "custom"
  4319. },
  4320. {
  4321. "url": "https://sentry.io/pricing/",
  4322. "type": "custom"
  4323. }
  4324. ],
  4325. "time": "2023-11-06T10:23:19+00:00"
  4326. },
  4327. {
  4328. "name": "sentry/sentry",
  4329. "version": "4.5.0",
  4330. "source": {
  4331. "type": "git",
  4332. "url": "https://github.com/getsentry/sentry-php.git",
  4333. "reference": "a6e06f0b7a17e7f68e11297427da76bfe01a3ca3"
  4334. },
  4335. "dist": {
  4336. "type": "zip",
  4337. "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/a6e06f0b7a17e7f68e11297427da76bfe01a3ca3",
  4338. "reference": "a6e06f0b7a17e7f68e11297427da76bfe01a3ca3",
  4339. "shasum": ""
  4340. },
  4341. "require": {
  4342. "ext-curl": "*",
  4343. "ext-json": "*",
  4344. "ext-mbstring": "*",
  4345. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4346. "jean85/pretty-package-versions": "^1.5|^2.0.4",
  4347. "php": "^7.2|^8.0",
  4348. "psr/log": "^1.0|^2.0|^3.0",
  4349. "symfony/options-resolver": "^4.4.30|^5.0.11|^6.0|^7.0"
  4350. },
  4351. "conflict": {
  4352. "raven/raven": "*"
  4353. },
  4354. "require-dev": {
  4355. "friendsofphp/php-cs-fixer": "^3.4",
  4356. "guzzlehttp/promises": "^1.0|^2.0",
  4357. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4358. "monolog/monolog": "^1.6|^2.0|^3.0",
  4359. "phpbench/phpbench": "^1.0",
  4360. "phpstan/phpstan": "^1.3",
  4361. "phpunit/phpunit": "^8.5.14|^9.4",
  4362. "symfony/phpunit-bridge": "^5.2|^6.0|^7.0",
  4363. "vimeo/psalm": "^4.17"
  4364. },
  4365. "suggest": {
  4366. "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
  4367. },
  4368. "type": "library",
  4369. "autoload": {
  4370. "files": [
  4371. "src/functions.php"
  4372. ],
  4373. "psr-4": {
  4374. "Sentry\\": "src/"
  4375. }
  4376. },
  4377. "notification-url": "https://packagist.org/downloads/",
  4378. "license": [
  4379. "MIT"
  4380. ],
  4381. "authors": [
  4382. {
  4383. "name": "Sentry",
  4384. "email": "[email protected]"
  4385. }
  4386. ],
  4387. "description": "PHP SDK for Sentry (http://sentry.io)",
  4388. "homepage": "http://sentry.io",
  4389. "keywords": [
  4390. "crash-reporting",
  4391. "crash-reports",
  4392. "error-handler",
  4393. "error-monitoring",
  4394. "log",
  4395. "logging",
  4396. "profiling",
  4397. "sentry",
  4398. "tracing"
  4399. ],
  4400. "support": {
  4401. "issues": "https://github.com/getsentry/sentry-php/issues",
  4402. "source": "https://github.com/getsentry/sentry-php/tree/4.5.0"
  4403. },
  4404. "funding": [
  4405. {
  4406. "url": "https://sentry.io/",
  4407. "type": "custom"
  4408. },
  4409. {
  4410. "url": "https://sentry.io/pricing/",
  4411. "type": "custom"
  4412. }
  4413. ],
  4414. "time": "2024-01-29T16:16:10+00:00"
  4415. },
  4416. {
  4417. "name": "slim/http",
  4418. "version": "1.3",
  4419. "source": {
  4420. "type": "git",
  4421. "url": "https://github.com/slimphp/Slim-Http.git",
  4422. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb"
  4423. },
  4424. "dist": {
  4425. "type": "zip",
  4426. "url": "https://api.github.com/repos/slimphp/Slim-Http/zipball/9542edbe469b7c0f3084c2467efea972387f5beb",
  4427. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb",
  4428. "shasum": ""
  4429. },
  4430. "require": {
  4431. "ext-fileinfo": "*",
  4432. "ext-json": "*",
  4433. "ext-libxml": "*",
  4434. "ext-simplexml": "*",
  4435. "php": "^7.4 || ^8.0",
  4436. "psr/http-factory": "^1.0",
  4437. "psr/http-message": "^1.0"
  4438. },
  4439. "require-dev": {
  4440. "adriansuter/php-autoload-override": "^1.3",
  4441. "laminas/laminas-diactoros": "^2.17",
  4442. "nyholm/psr7": "^1.5",
  4443. "php-http/psr7-integration-tests": "dev-master",
  4444. "phpstan/phpstan": "^1.8",
  4445. "phpunit/phpunit": "^9.5",
  4446. "squizlabs/php_codesniffer": "^3.7"
  4447. },
  4448. "type": "library",
  4449. "autoload": {
  4450. "psr-4": {
  4451. "Slim\\Http\\": "src/"
  4452. }
  4453. },
  4454. "notification-url": "https://packagist.org/downloads/",
  4455. "license": [
  4456. "MIT"
  4457. ],
  4458. "authors": [
  4459. {
  4460. "name": "Josh Lockhart",
  4461. "email": "[email protected]",
  4462. "homepage": "http://joshlockhart.com"
  4463. },
  4464. {
  4465. "name": "Andrew Smith",
  4466. "email": "[email protected]",
  4467. "homepage": "http://silentworks.co.uk"
  4468. },
  4469. {
  4470. "name": "Rob Allen",
  4471. "email": "[email protected]",
  4472. "homepage": "http://akrabat.com"
  4473. },
  4474. {
  4475. "name": "Pierre Berube",
  4476. "email": "[email protected]",
  4477. "homepage": "http://www.lgse.com"
  4478. }
  4479. ],
  4480. "description": "Slim PSR-7 Object Decorators",
  4481. "homepage": "http://slimframework.com",
  4482. "keywords": [
  4483. "http",
  4484. "psr-7",
  4485. "psr7"
  4486. ],
  4487. "support": {
  4488. "issues": "https://github.com/slimphp/Slim-Http/issues",
  4489. "source": "https://github.com/slimphp/Slim-Http/tree/1.3"
  4490. },
  4491. "time": "2022-09-14T15:45:07+00:00"
  4492. },
  4493. {
  4494. "name": "slim/slim",
  4495. "version": "4.12.0",
  4496. "source": {
  4497. "type": "git",
  4498. "url": "https://github.com/slimphp/Slim.git",
  4499. "reference": "e9e99c2b24398b967841c6c4c3048622cc7e2b18"
  4500. },
  4501. "dist": {
  4502. "type": "zip",
  4503. "url": "https://api.github.com/repos/slimphp/Slim/zipball/e9e99c2b24398b967841c6c4c3048622cc7e2b18",
  4504. "reference": "e9e99c2b24398b967841c6c4c3048622cc7e2b18",
  4505. "shasum": ""
  4506. },
  4507. "require": {
  4508. "ext-json": "*",
  4509. "nikic/fast-route": "^1.3",
  4510. "php": "^7.4 || ^8.0",
  4511. "psr/container": "^1.0 || ^2.0",
  4512. "psr/http-factory": "^1.0",
  4513. "psr/http-message": "^1.1",
  4514. "psr/http-server-handler": "^1.0",
  4515. "psr/http-server-middleware": "^1.0",
  4516. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4517. },
  4518. "require-dev": {
  4519. "adriansuter/php-autoload-override": "^1.4",
  4520. "ext-simplexml": "*",
  4521. "guzzlehttp/psr7": "^2.5",
  4522. "httpsoft/http-message": "^1.1",
  4523. "httpsoft/http-server-request": "^1.1",
  4524. "laminas/laminas-diactoros": "^2.17",
  4525. "nyholm/psr7": "^1.8",
  4526. "nyholm/psr7-server": "^1.0",
  4527. "phpspec/prophecy": "^1.17",
  4528. "phpspec/prophecy-phpunit": "^2.0",
  4529. "phpstan/phpstan": "^1.10",
  4530. "phpunit/phpunit": "^9.6",
  4531. "slim/http": "^1.3",
  4532. "slim/psr7": "^1.6",
  4533. "squizlabs/php_codesniffer": "^3.7"
  4534. },
  4535. "suggest": {
  4536. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  4537. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  4538. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  4539. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  4540. },
  4541. "type": "library",
  4542. "autoload": {
  4543. "psr-4": {
  4544. "Slim\\": "Slim"
  4545. }
  4546. },
  4547. "notification-url": "https://packagist.org/downloads/",
  4548. "license": [
  4549. "MIT"
  4550. ],
  4551. "authors": [
  4552. {
  4553. "name": "Josh Lockhart",
  4554. "email": "[email protected]",
  4555. "homepage": "https://joshlockhart.com"
  4556. },
  4557. {
  4558. "name": "Andrew Smith",
  4559. "email": "[email protected]",
  4560. "homepage": "http://silentworks.co.uk"
  4561. },
  4562. {
  4563. "name": "Rob Allen",
  4564. "email": "[email protected]",
  4565. "homepage": "http://akrabat.com"
  4566. },
  4567. {
  4568. "name": "Pierre Berube",
  4569. "email": "[email protected]",
  4570. "homepage": "http://www.lgse.com"
  4571. },
  4572. {
  4573. "name": "Gabriel Manricks",
  4574. "email": "[email protected]",
  4575. "homepage": "http://gabrielmanricks.com"
  4576. }
  4577. ],
  4578. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  4579. "homepage": "https://www.slimframework.com",
  4580. "keywords": [
  4581. "api",
  4582. "framework",
  4583. "micro",
  4584. "router"
  4585. ],
  4586. "support": {
  4587. "docs": "https://www.slimframework.com/docs/v4/",
  4588. "forum": "https://discourse.slimframework.com/",
  4589. "irc": "irc://irc.freenode.net:6667/slimphp",
  4590. "issues": "https://github.com/slimphp/Slim/issues",
  4591. "rss": "https://www.slimframework.com/blog/feed.rss",
  4592. "slack": "https://slimphp.slack.com/",
  4593. "source": "https://github.com/slimphp/Slim",
  4594. "wiki": "https://github.com/slimphp/Slim/wiki"
  4595. },
  4596. "funding": [
  4597. {
  4598. "url": "https://opencollective.com/slimphp",
  4599. "type": "open_collective"
  4600. },
  4601. {
  4602. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  4603. "type": "tidelift"
  4604. }
  4605. ],
  4606. "time": "2023-07-23T04:54:29+00:00"
  4607. },
  4608. {
  4609. "name": "smarty/smarty",
  4610. "version": "v4.3.5",
  4611. "source": {
  4612. "type": "git",
  4613. "url": "https://github.com/smarty-php/smarty.git",
  4614. "reference": "e0cbbdf6ea21768d0194e59d2f8c2e20d5f0868c"
  4615. },
  4616. "dist": {
  4617. "type": "zip",
  4618. "url": "https://api.github.com/repos/smarty-php/smarty/zipball/e0cbbdf6ea21768d0194e59d2f8c2e20d5f0868c",
  4619. "reference": "e0cbbdf6ea21768d0194e59d2f8c2e20d5f0868c",
  4620. "shasum": ""
  4621. },
  4622. "require": {
  4623. "php": "^7.1 || ^8.0"
  4624. },
  4625. "require-dev": {
  4626. "phpunit/phpunit": "^8.5 || ^7.5",
  4627. "smarty/smarty-lexer": "^3.1"
  4628. },
  4629. "type": "library",
  4630. "extra": {
  4631. "branch-alias": {
  4632. "dev-master": "4.0.x-dev"
  4633. }
  4634. },
  4635. "autoload": {
  4636. "classmap": [
  4637. "libs/"
  4638. ]
  4639. },
  4640. "notification-url": "https://packagist.org/downloads/",
  4641. "license": [
  4642. "LGPL-3.0"
  4643. ],
  4644. "authors": [
  4645. {
  4646. "name": "Monte Ohrt",
  4647. "email": "[email protected]"
  4648. },
  4649. {
  4650. "name": "Uwe Tews",
  4651. "email": "[email protected]"
  4652. },
  4653. {
  4654. "name": "Rodney Rehm",
  4655. "email": "[email protected]"
  4656. },
  4657. {
  4658. "name": "Simon Wisselink",
  4659. "homepage": "https://www.iwink.nl/"
  4660. }
  4661. ],
  4662. "description": "Smarty - the compiling PHP template engine",
  4663. "homepage": "https://smarty-php.github.io/smarty/",
  4664. "keywords": [
  4665. "templating"
  4666. ],
  4667. "support": {
  4668. "forum": "https://github.com/smarty-php/smarty/discussions",
  4669. "issues": "https://github.com/smarty-php/smarty/issues",
  4670. "source": "https://github.com/smarty-php/smarty/tree/v4.3.5"
  4671. },
  4672. "time": "2024-01-23T10:47:54+00:00"
  4673. },
  4674. {
  4675. "name": "srmklive/paypal",
  4676. "version": "3.0.28",
  4677. "source": {
  4678. "type": "git",
  4679. "url": "https://github.com/srmklive/laravel-paypal.git",
  4680. "reference": "6bde2b232a38c413f730115743cc9dcc29d4228e"
  4681. },
  4682. "dist": {
  4683. "type": "zip",
  4684. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/6bde2b232a38c413f730115743cc9dcc29d4228e",
  4685. "reference": "6bde2b232a38c413f730115743cc9dcc29d4228e",
  4686. "shasum": ""
  4687. },
  4688. "require": {
  4689. "ext-curl": "*",
  4690. "guzzlehttp/guzzle": "~7.0",
  4691. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|^10.0",
  4692. "nesbot/carbon": "~2.0",
  4693. "php": ">=7.2|^8.0"
  4694. },
  4695. "require-dev": {
  4696. "phpstan/phpstan": "^1.10",
  4697. "phpunit/phpunit": "^8.0|^9.0|^10.0",
  4698. "symfony/var-dumper": "~5.0"
  4699. },
  4700. "type": "library",
  4701. "extra": {
  4702. "laravel": {
  4703. "providers": [
  4704. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4705. ],
  4706. "aliases": {
  4707. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4708. }
  4709. }
  4710. },
  4711. "autoload": {
  4712. "psr-4": {
  4713. "Srmklive\\PayPal\\": "src/"
  4714. }
  4715. },
  4716. "notification-url": "https://packagist.org/downloads/",
  4717. "license": [
  4718. "MIT"
  4719. ],
  4720. "authors": [
  4721. {
  4722. "name": "Raza Mehdi",
  4723. "email": "[email protected]"
  4724. }
  4725. ],
  4726. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4727. "keywords": [
  4728. "http",
  4729. "laravel paypal",
  4730. "paypal",
  4731. "rest",
  4732. "web service"
  4733. ],
  4734. "support": {
  4735. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4736. "source": "https://github.com/srmklive/laravel-paypal/tree/3.0.28"
  4737. },
  4738. "time": "2023-12-20T18:57:16+00:00"
  4739. },
  4740. {
  4741. "name": "starkbank/ecdsa",
  4742. "version": "0.0.5",
  4743. "source": {
  4744. "type": "git",
  4745. "url": "https://github.com/starkbank/ecdsa-php.git",
  4746. "reference": "484bedac47bac4012dc73df91da221f0a66845cb"
  4747. },
  4748. "dist": {
  4749. "type": "zip",
  4750. "url": "https://api.github.com/repos/starkbank/ecdsa-php/zipball/484bedac47bac4012dc73df91da221f0a66845cb",
  4751. "reference": "484bedac47bac4012dc73df91da221f0a66845cb",
  4752. "shasum": ""
  4753. },
  4754. "require": {
  4755. "php": ">=5.5"
  4756. },
  4757. "type": "library",
  4758. "autoload": {
  4759. "files": [
  4760. "src/ellipticcurve.php"
  4761. ]
  4762. },
  4763. "notification-url": "https://packagist.org/downloads/",
  4764. "license": [
  4765. "MIT"
  4766. ],
  4767. "authors": [
  4768. {
  4769. "name": "StarkBank",
  4770. "email": "[email protected]",
  4771. "homepage": "https://starkbank.com",
  4772. "role": "Developer"
  4773. }
  4774. ],
  4775. "description": "fast openSSL-compatible implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA)",
  4776. "homepage": "https://github.com/starkbank/ecdsa-php",
  4777. "support": {
  4778. "issues": "https://github.com/starkbank/ecdsa-php/issues",
  4779. "source": "https://github.com/starkbank/ecdsa-php/tree/v0.0.5"
  4780. },
  4781. "time": "2021-06-06T22:24:49+00:00"
  4782. },
  4783. {
  4784. "name": "stripe/stripe-php",
  4785. "version": "v13.10.0",
  4786. "source": {
  4787. "type": "git",
  4788. "url": "https://github.com/stripe/stripe-php.git",
  4789. "reference": "7571f6001f122db539901bda113aef7ed7af421a"
  4790. },
  4791. "dist": {
  4792. "type": "zip",
  4793. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/7571f6001f122db539901bda113aef7ed7af421a",
  4794. "reference": "7571f6001f122db539901bda113aef7ed7af421a",
  4795. "shasum": ""
  4796. },
  4797. "require": {
  4798. "ext-curl": "*",
  4799. "ext-json": "*",
  4800. "ext-mbstring": "*",
  4801. "php": ">=5.6.0"
  4802. },
  4803. "require-dev": {
  4804. "friendsofphp/php-cs-fixer": "3.5.0",
  4805. "phpstan/phpstan": "^1.2",
  4806. "phpunit/phpunit": "^5.7 || ^9.0"
  4807. },
  4808. "type": "library",
  4809. "extra": {
  4810. "branch-alias": {
  4811. "dev-master": "2.0-dev"
  4812. }
  4813. },
  4814. "autoload": {
  4815. "psr-4": {
  4816. "Stripe\\": "lib/"
  4817. }
  4818. },
  4819. "notification-url": "https://packagist.org/downloads/",
  4820. "license": [
  4821. "MIT"
  4822. ],
  4823. "authors": [
  4824. {
  4825. "name": "Stripe and contributors",
  4826. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4827. }
  4828. ],
  4829. "description": "Stripe PHP Library",
  4830. "homepage": "https://stripe.com/",
  4831. "keywords": [
  4832. "api",
  4833. "payment processing",
  4834. "stripe"
  4835. ],
  4836. "support": {
  4837. "issues": "https://github.com/stripe/stripe-php/issues",
  4838. "source": "https://github.com/stripe/stripe-php/tree/v13.10.0"
  4839. },
  4840. "time": "2024-02-01T22:16:21+00:00"
  4841. },
  4842. {
  4843. "name": "symfony/deprecation-contracts",
  4844. "version": "v3.4.0",
  4845. "source": {
  4846. "type": "git",
  4847. "url": "https://github.com/symfony/deprecation-contracts.git",
  4848. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  4849. },
  4850. "dist": {
  4851. "type": "zip",
  4852. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  4853. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  4854. "shasum": ""
  4855. },
  4856. "require": {
  4857. "php": ">=8.1"
  4858. },
  4859. "type": "library",
  4860. "extra": {
  4861. "branch-alias": {
  4862. "dev-main": "3.4-dev"
  4863. },
  4864. "thanks": {
  4865. "name": "symfony/contracts",
  4866. "url": "https://github.com/symfony/contracts"
  4867. }
  4868. },
  4869. "autoload": {
  4870. "files": [
  4871. "function.php"
  4872. ]
  4873. },
  4874. "notification-url": "https://packagist.org/downloads/",
  4875. "license": [
  4876. "MIT"
  4877. ],
  4878. "authors": [
  4879. {
  4880. "name": "Nicolas Grekas",
  4881. "email": "[email protected]"
  4882. },
  4883. {
  4884. "name": "Symfony Community",
  4885. "homepage": "https://symfony.com/contributors"
  4886. }
  4887. ],
  4888. "description": "A generic function and convention to trigger deprecation notices",
  4889. "homepage": "https://symfony.com",
  4890. "support": {
  4891. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  4892. },
  4893. "funding": [
  4894. {
  4895. "url": "https://symfony.com/sponsor",
  4896. "type": "custom"
  4897. },
  4898. {
  4899. "url": "https://github.com/fabpot",
  4900. "type": "github"
  4901. },
  4902. {
  4903. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4904. "type": "tidelift"
  4905. }
  4906. ],
  4907. "time": "2023-05-23T14:45:45+00:00"
  4908. },
  4909. {
  4910. "name": "symfony/http-client",
  4911. "version": "v7.0.3",
  4912. "source": {
  4913. "type": "git",
  4914. "url": "https://github.com/symfony/http-client.git",
  4915. "reference": "3d2605c07cd14aec294f72f5bf8147702f7a5ada"
  4916. },
  4917. "dist": {
  4918. "type": "zip",
  4919. "url": "https://api.github.com/repos/symfony/http-client/zipball/3d2605c07cd14aec294f72f5bf8147702f7a5ada",
  4920. "reference": "3d2605c07cd14aec294f72f5bf8147702f7a5ada",
  4921. "shasum": ""
  4922. },
  4923. "require": {
  4924. "php": ">=8.2",
  4925. "psr/log": "^1|^2|^3",
  4926. "symfony/http-client-contracts": "^3",
  4927. "symfony/service-contracts": "^2.5|^3"
  4928. },
  4929. "conflict": {
  4930. "php-http/discovery": "<1.15",
  4931. "symfony/http-foundation": "<6.4"
  4932. },
  4933. "provide": {
  4934. "php-http/async-client-implementation": "*",
  4935. "php-http/client-implementation": "*",
  4936. "psr/http-client-implementation": "1.0",
  4937. "symfony/http-client-implementation": "3.0"
  4938. },
  4939. "require-dev": {
  4940. "amphp/amp": "^2.5",
  4941. "amphp/http-client": "^4.2.1",
  4942. "amphp/http-tunnel": "^1.0",
  4943. "amphp/socket": "^1.1",
  4944. "guzzlehttp/promises": "^1.4",
  4945. "nyholm/psr7": "^1.0",
  4946. "php-http/httplug": "^1.0|^2.0",
  4947. "psr/http-client": "^1.0",
  4948. "symfony/dependency-injection": "^6.4|^7.0",
  4949. "symfony/http-kernel": "^6.4|^7.0",
  4950. "symfony/messenger": "^6.4|^7.0",
  4951. "symfony/process": "^6.4|^7.0",
  4952. "symfony/stopwatch": "^6.4|^7.0"
  4953. },
  4954. "type": "library",
  4955. "autoload": {
  4956. "psr-4": {
  4957. "Symfony\\Component\\HttpClient\\": ""
  4958. },
  4959. "exclude-from-classmap": [
  4960. "/Tests/"
  4961. ]
  4962. },
  4963. "notification-url": "https://packagist.org/downloads/",
  4964. "license": [
  4965. "MIT"
  4966. ],
  4967. "authors": [
  4968. {
  4969. "name": "Nicolas Grekas",
  4970. "email": "[email protected]"
  4971. },
  4972. {
  4973. "name": "Symfony Community",
  4974. "homepage": "https://symfony.com/contributors"
  4975. }
  4976. ],
  4977. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4978. "homepage": "https://symfony.com",
  4979. "keywords": [
  4980. "http"
  4981. ],
  4982. "support": {
  4983. "source": "https://github.com/symfony/http-client/tree/v7.0.3"
  4984. },
  4985. "funding": [
  4986. {
  4987. "url": "https://symfony.com/sponsor",
  4988. "type": "custom"
  4989. },
  4990. {
  4991. "url": "https://github.com/fabpot",
  4992. "type": "github"
  4993. },
  4994. {
  4995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4996. "type": "tidelift"
  4997. }
  4998. ],
  4999. "time": "2024-01-29T15:41:16+00:00"
  5000. },
  5001. {
  5002. "name": "symfony/http-client-contracts",
  5003. "version": "v3.4.0",
  5004. "source": {
  5005. "type": "git",
  5006. "url": "https://github.com/symfony/http-client-contracts.git",
  5007. "reference": "1ee70e699b41909c209a0c930f11034b93578654"
  5008. },
  5009. "dist": {
  5010. "type": "zip",
  5011. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1ee70e699b41909c209a0c930f11034b93578654",
  5012. "reference": "1ee70e699b41909c209a0c930f11034b93578654",
  5013. "shasum": ""
  5014. },
  5015. "require": {
  5016. "php": ">=8.1"
  5017. },
  5018. "type": "library",
  5019. "extra": {
  5020. "branch-alias": {
  5021. "dev-main": "3.4-dev"
  5022. },
  5023. "thanks": {
  5024. "name": "symfony/contracts",
  5025. "url": "https://github.com/symfony/contracts"
  5026. }
  5027. },
  5028. "autoload": {
  5029. "psr-4": {
  5030. "Symfony\\Contracts\\HttpClient\\": ""
  5031. },
  5032. "exclude-from-classmap": [
  5033. "/Test/"
  5034. ]
  5035. },
  5036. "notification-url": "https://packagist.org/downloads/",
  5037. "license": [
  5038. "MIT"
  5039. ],
  5040. "authors": [
  5041. {
  5042. "name": "Nicolas Grekas",
  5043. "email": "[email protected]"
  5044. },
  5045. {
  5046. "name": "Symfony Community",
  5047. "homepage": "https://symfony.com/contributors"
  5048. }
  5049. ],
  5050. "description": "Generic abstractions related to HTTP clients",
  5051. "homepage": "https://symfony.com",
  5052. "keywords": [
  5053. "abstractions",
  5054. "contracts",
  5055. "decoupling",
  5056. "interfaces",
  5057. "interoperability",
  5058. "standards"
  5059. ],
  5060. "support": {
  5061. "source": "https://github.com/symfony/http-client-contracts/tree/v3.4.0"
  5062. },
  5063. "funding": [
  5064. {
  5065. "url": "https://symfony.com/sponsor",
  5066. "type": "custom"
  5067. },
  5068. {
  5069. "url": "https://github.com/fabpot",
  5070. "type": "github"
  5071. },
  5072. {
  5073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5074. "type": "tidelift"
  5075. }
  5076. ],
  5077. "time": "2023-07-30T20:28:31+00:00"
  5078. },
  5079. {
  5080. "name": "symfony/http-foundation",
  5081. "version": "v6.4.3",
  5082. "source": {
  5083. "type": "git",
  5084. "url": "https://github.com/symfony/http-foundation.git",
  5085. "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9"
  5086. },
  5087. "dist": {
  5088. "type": "zip",
  5089. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5677bdf7cade4619cb17fc9e1e7b31ec392244a9",
  5090. "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9",
  5091. "shasum": ""
  5092. },
  5093. "require": {
  5094. "php": ">=8.1",
  5095. "symfony/deprecation-contracts": "^2.5|^3",
  5096. "symfony/polyfill-mbstring": "~1.1",
  5097. "symfony/polyfill-php83": "^1.27"
  5098. },
  5099. "conflict": {
  5100. "symfony/cache": "<6.3"
  5101. },
  5102. "require-dev": {
  5103. "doctrine/dbal": "^2.13.1|^3|^4",
  5104. "predis/predis": "^1.1|^2.0",
  5105. "symfony/cache": "^6.3|^7.0",
  5106. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5107. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5108. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  5109. "symfony/mime": "^5.4|^6.0|^7.0",
  5110. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  5111. },
  5112. "type": "library",
  5113. "autoload": {
  5114. "psr-4": {
  5115. "Symfony\\Component\\HttpFoundation\\": ""
  5116. },
  5117. "exclude-from-classmap": [
  5118. "/Tests/"
  5119. ]
  5120. },
  5121. "notification-url": "https://packagist.org/downloads/",
  5122. "license": [
  5123. "MIT"
  5124. ],
  5125. "authors": [
  5126. {
  5127. "name": "Fabien Potencier",
  5128. "email": "[email protected]"
  5129. },
  5130. {
  5131. "name": "Symfony Community",
  5132. "homepage": "https://symfony.com/contributors"
  5133. }
  5134. ],
  5135. "description": "Defines an object-oriented layer for the HTTP specification",
  5136. "homepage": "https://symfony.com",
  5137. "support": {
  5138. "source": "https://github.com/symfony/http-foundation/tree/v6.4.3"
  5139. },
  5140. "funding": [
  5141. {
  5142. "url": "https://symfony.com/sponsor",
  5143. "type": "custom"
  5144. },
  5145. {
  5146. "url": "https://github.com/fabpot",
  5147. "type": "github"
  5148. },
  5149. {
  5150. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5151. "type": "tidelift"
  5152. }
  5153. ],
  5154. "time": "2024-01-23T14:51:35+00:00"
  5155. },
  5156. {
  5157. "name": "symfony/options-resolver",
  5158. "version": "v7.0.0",
  5159. "source": {
  5160. "type": "git",
  5161. "url": "https://github.com/symfony/options-resolver.git",
  5162. "reference": "700ff4096e346f54cb628ea650767c8130f1001f"
  5163. },
  5164. "dist": {
  5165. "type": "zip",
  5166. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/700ff4096e346f54cb628ea650767c8130f1001f",
  5167. "reference": "700ff4096e346f54cb628ea650767c8130f1001f",
  5168. "shasum": ""
  5169. },
  5170. "require": {
  5171. "php": ">=8.2",
  5172. "symfony/deprecation-contracts": "^2.5|^3"
  5173. },
  5174. "type": "library",
  5175. "autoload": {
  5176. "psr-4": {
  5177. "Symfony\\Component\\OptionsResolver\\": ""
  5178. },
  5179. "exclude-from-classmap": [
  5180. "/Tests/"
  5181. ]
  5182. },
  5183. "notification-url": "https://packagist.org/downloads/",
  5184. "license": [
  5185. "MIT"
  5186. ],
  5187. "authors": [
  5188. {
  5189. "name": "Fabien Potencier",
  5190. "email": "[email protected]"
  5191. },
  5192. {
  5193. "name": "Symfony Community",
  5194. "homepage": "https://symfony.com/contributors"
  5195. }
  5196. ],
  5197. "description": "Provides an improved replacement for the array_replace PHP function",
  5198. "homepage": "https://symfony.com",
  5199. "keywords": [
  5200. "config",
  5201. "configuration",
  5202. "options"
  5203. ],
  5204. "support": {
  5205. "source": "https://github.com/symfony/options-resolver/tree/v7.0.0"
  5206. },
  5207. "funding": [
  5208. {
  5209. "url": "https://symfony.com/sponsor",
  5210. "type": "custom"
  5211. },
  5212. {
  5213. "url": "https://github.com/fabpot",
  5214. "type": "github"
  5215. },
  5216. {
  5217. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5218. "type": "tidelift"
  5219. }
  5220. ],
  5221. "time": "2023-08-08T10:20:21+00:00"
  5222. },
  5223. {
  5224. "name": "symfony/polyfill-ctype",
  5225. "version": "v1.29.0",
  5226. "source": {
  5227. "type": "git",
  5228. "url": "https://github.com/symfony/polyfill-ctype.git",
  5229. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  5230. },
  5231. "dist": {
  5232. "type": "zip",
  5233. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5234. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5235. "shasum": ""
  5236. },
  5237. "require": {
  5238. "php": ">=7.1"
  5239. },
  5240. "provide": {
  5241. "ext-ctype": "*"
  5242. },
  5243. "suggest": {
  5244. "ext-ctype": "For best performance"
  5245. },
  5246. "type": "library",
  5247. "extra": {
  5248. "thanks": {
  5249. "name": "symfony/polyfill",
  5250. "url": "https://github.com/symfony/polyfill"
  5251. }
  5252. },
  5253. "autoload": {
  5254. "files": [
  5255. "bootstrap.php"
  5256. ],
  5257. "psr-4": {
  5258. "Symfony\\Polyfill\\Ctype\\": ""
  5259. }
  5260. },
  5261. "notification-url": "https://packagist.org/downloads/",
  5262. "license": [
  5263. "MIT"
  5264. ],
  5265. "authors": [
  5266. {
  5267. "name": "Gert de Pagter",
  5268. "email": "[email protected]"
  5269. },
  5270. {
  5271. "name": "Symfony Community",
  5272. "homepage": "https://symfony.com/contributors"
  5273. }
  5274. ],
  5275. "description": "Symfony polyfill for ctype functions",
  5276. "homepage": "https://symfony.com",
  5277. "keywords": [
  5278. "compatibility",
  5279. "ctype",
  5280. "polyfill",
  5281. "portable"
  5282. ],
  5283. "support": {
  5284. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  5285. },
  5286. "funding": [
  5287. {
  5288. "url": "https://symfony.com/sponsor",
  5289. "type": "custom"
  5290. },
  5291. {
  5292. "url": "https://github.com/fabpot",
  5293. "type": "github"
  5294. },
  5295. {
  5296. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5297. "type": "tidelift"
  5298. }
  5299. ],
  5300. "time": "2024-01-29T20:11:03+00:00"
  5301. },
  5302. {
  5303. "name": "symfony/polyfill-iconv",
  5304. "version": "v1.29.0",
  5305. "source": {
  5306. "type": "git",
  5307. "url": "https://github.com/symfony/polyfill-iconv.git",
  5308. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f"
  5309. },
  5310. "dist": {
  5311. "type": "zip",
  5312. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  5313. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  5314. "shasum": ""
  5315. },
  5316. "require": {
  5317. "php": ">=7.1"
  5318. },
  5319. "provide": {
  5320. "ext-iconv": "*"
  5321. },
  5322. "suggest": {
  5323. "ext-iconv": "For best performance"
  5324. },
  5325. "type": "library",
  5326. "extra": {
  5327. "thanks": {
  5328. "name": "symfony/polyfill",
  5329. "url": "https://github.com/symfony/polyfill"
  5330. }
  5331. },
  5332. "autoload": {
  5333. "files": [
  5334. "bootstrap.php"
  5335. ],
  5336. "psr-4": {
  5337. "Symfony\\Polyfill\\Iconv\\": ""
  5338. }
  5339. },
  5340. "notification-url": "https://packagist.org/downloads/",
  5341. "license": [
  5342. "MIT"
  5343. ],
  5344. "authors": [
  5345. {
  5346. "name": "Nicolas Grekas",
  5347. "email": "[email protected]"
  5348. },
  5349. {
  5350. "name": "Symfony Community",
  5351. "homepage": "https://symfony.com/contributors"
  5352. }
  5353. ],
  5354. "description": "Symfony polyfill for the Iconv extension",
  5355. "homepage": "https://symfony.com",
  5356. "keywords": [
  5357. "compatibility",
  5358. "iconv",
  5359. "polyfill",
  5360. "portable",
  5361. "shim"
  5362. ],
  5363. "support": {
  5364. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0"
  5365. },
  5366. "funding": [
  5367. {
  5368. "url": "https://symfony.com/sponsor",
  5369. "type": "custom"
  5370. },
  5371. {
  5372. "url": "https://github.com/fabpot",
  5373. "type": "github"
  5374. },
  5375. {
  5376. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5377. "type": "tidelift"
  5378. }
  5379. ],
  5380. "time": "2024-01-29T20:11:03+00:00"
  5381. },
  5382. {
  5383. "name": "symfony/polyfill-intl-grapheme",
  5384. "version": "v1.29.0",
  5385. "source": {
  5386. "type": "git",
  5387. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5388. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  5389. },
  5390. "dist": {
  5391. "type": "zip",
  5392. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5393. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5394. "shasum": ""
  5395. },
  5396. "require": {
  5397. "php": ">=7.1"
  5398. },
  5399. "suggest": {
  5400. "ext-intl": "For best performance"
  5401. },
  5402. "type": "library",
  5403. "extra": {
  5404. "thanks": {
  5405. "name": "symfony/polyfill",
  5406. "url": "https://github.com/symfony/polyfill"
  5407. }
  5408. },
  5409. "autoload": {
  5410. "files": [
  5411. "bootstrap.php"
  5412. ],
  5413. "psr-4": {
  5414. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5415. }
  5416. },
  5417. "notification-url": "https://packagist.org/downloads/",
  5418. "license": [
  5419. "MIT"
  5420. ],
  5421. "authors": [
  5422. {
  5423. "name": "Nicolas Grekas",
  5424. "email": "[email protected]"
  5425. },
  5426. {
  5427. "name": "Symfony Community",
  5428. "homepage": "https://symfony.com/contributors"
  5429. }
  5430. ],
  5431. "description": "Symfony polyfill for intl's grapheme_* functions",
  5432. "homepage": "https://symfony.com",
  5433. "keywords": [
  5434. "compatibility",
  5435. "grapheme",
  5436. "intl",
  5437. "polyfill",
  5438. "portable",
  5439. "shim"
  5440. ],
  5441. "support": {
  5442. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  5443. },
  5444. "funding": [
  5445. {
  5446. "url": "https://symfony.com/sponsor",
  5447. "type": "custom"
  5448. },
  5449. {
  5450. "url": "https://github.com/fabpot",
  5451. "type": "github"
  5452. },
  5453. {
  5454. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5455. "type": "tidelift"
  5456. }
  5457. ],
  5458. "time": "2024-01-29T20:11:03+00:00"
  5459. },
  5460. {
  5461. "name": "symfony/polyfill-intl-normalizer",
  5462. "version": "v1.29.0",
  5463. "source": {
  5464. "type": "git",
  5465. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5466. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  5467. },
  5468. "dist": {
  5469. "type": "zip",
  5470. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  5471. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  5472. "shasum": ""
  5473. },
  5474. "require": {
  5475. "php": ">=7.1"
  5476. },
  5477. "suggest": {
  5478. "ext-intl": "For best performance"
  5479. },
  5480. "type": "library",
  5481. "extra": {
  5482. "thanks": {
  5483. "name": "symfony/polyfill",
  5484. "url": "https://github.com/symfony/polyfill"
  5485. }
  5486. },
  5487. "autoload": {
  5488. "files": [
  5489. "bootstrap.php"
  5490. ],
  5491. "psr-4": {
  5492. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5493. },
  5494. "classmap": [
  5495. "Resources/stubs"
  5496. ]
  5497. },
  5498. "notification-url": "https://packagist.org/downloads/",
  5499. "license": [
  5500. "MIT"
  5501. ],
  5502. "authors": [
  5503. {
  5504. "name": "Nicolas Grekas",
  5505. "email": "[email protected]"
  5506. },
  5507. {
  5508. "name": "Symfony Community",
  5509. "homepage": "https://symfony.com/contributors"
  5510. }
  5511. ],
  5512. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5513. "homepage": "https://symfony.com",
  5514. "keywords": [
  5515. "compatibility",
  5516. "intl",
  5517. "normalizer",
  5518. "polyfill",
  5519. "portable",
  5520. "shim"
  5521. ],
  5522. "support": {
  5523. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  5524. },
  5525. "funding": [
  5526. {
  5527. "url": "https://symfony.com/sponsor",
  5528. "type": "custom"
  5529. },
  5530. {
  5531. "url": "https://github.com/fabpot",
  5532. "type": "github"
  5533. },
  5534. {
  5535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5536. "type": "tidelift"
  5537. }
  5538. ],
  5539. "time": "2024-01-29T20:11:03+00:00"
  5540. },
  5541. {
  5542. "name": "symfony/polyfill-mbstring",
  5543. "version": "v1.29.0",
  5544. "source": {
  5545. "type": "git",
  5546. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5547. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  5548. },
  5549. "dist": {
  5550. "type": "zip",
  5551. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  5552. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  5553. "shasum": ""
  5554. },
  5555. "require": {
  5556. "php": ">=7.1"
  5557. },
  5558. "provide": {
  5559. "ext-mbstring": "*"
  5560. },
  5561. "suggest": {
  5562. "ext-mbstring": "For best performance"
  5563. },
  5564. "type": "library",
  5565. "extra": {
  5566. "thanks": {
  5567. "name": "symfony/polyfill",
  5568. "url": "https://github.com/symfony/polyfill"
  5569. }
  5570. },
  5571. "autoload": {
  5572. "files": [
  5573. "bootstrap.php"
  5574. ],
  5575. "psr-4": {
  5576. "Symfony\\Polyfill\\Mbstring\\": ""
  5577. }
  5578. },
  5579. "notification-url": "https://packagist.org/downloads/",
  5580. "license": [
  5581. "MIT"
  5582. ],
  5583. "authors": [
  5584. {
  5585. "name": "Nicolas Grekas",
  5586. "email": "[email protected]"
  5587. },
  5588. {
  5589. "name": "Symfony Community",
  5590. "homepage": "https://symfony.com/contributors"
  5591. }
  5592. ],
  5593. "description": "Symfony polyfill for the Mbstring extension",
  5594. "homepage": "https://symfony.com",
  5595. "keywords": [
  5596. "compatibility",
  5597. "mbstring",
  5598. "polyfill",
  5599. "portable",
  5600. "shim"
  5601. ],
  5602. "support": {
  5603. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  5604. },
  5605. "funding": [
  5606. {
  5607. "url": "https://symfony.com/sponsor",
  5608. "type": "custom"
  5609. },
  5610. {
  5611. "url": "https://github.com/fabpot",
  5612. "type": "github"
  5613. },
  5614. {
  5615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5616. "type": "tidelift"
  5617. }
  5618. ],
  5619. "time": "2024-01-29T20:11:03+00:00"
  5620. },
  5621. {
  5622. "name": "symfony/polyfill-php72",
  5623. "version": "v1.29.0",
  5624. "source": {
  5625. "type": "git",
  5626. "url": "https://github.com/symfony/polyfill-php72.git",
  5627. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  5628. },
  5629. "dist": {
  5630. "type": "zip",
  5631. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  5632. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  5633. "shasum": ""
  5634. },
  5635. "require": {
  5636. "php": ">=7.1"
  5637. },
  5638. "type": "library",
  5639. "extra": {
  5640. "thanks": {
  5641. "name": "symfony/polyfill",
  5642. "url": "https://github.com/symfony/polyfill"
  5643. }
  5644. },
  5645. "autoload": {
  5646. "files": [
  5647. "bootstrap.php"
  5648. ],
  5649. "psr-4": {
  5650. "Symfony\\Polyfill\\Php72\\": ""
  5651. }
  5652. },
  5653. "notification-url": "https://packagist.org/downloads/",
  5654. "license": [
  5655. "MIT"
  5656. ],
  5657. "authors": [
  5658. {
  5659. "name": "Nicolas Grekas",
  5660. "email": "[email protected]"
  5661. },
  5662. {
  5663. "name": "Symfony Community",
  5664. "homepage": "https://symfony.com/contributors"
  5665. }
  5666. ],
  5667. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5668. "homepage": "https://symfony.com",
  5669. "keywords": [
  5670. "compatibility",
  5671. "polyfill",
  5672. "portable",
  5673. "shim"
  5674. ],
  5675. "support": {
  5676. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  5677. },
  5678. "funding": [
  5679. {
  5680. "url": "https://symfony.com/sponsor",
  5681. "type": "custom"
  5682. },
  5683. {
  5684. "url": "https://github.com/fabpot",
  5685. "type": "github"
  5686. },
  5687. {
  5688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5689. "type": "tidelift"
  5690. }
  5691. ],
  5692. "time": "2024-01-29T20:11:03+00:00"
  5693. },
  5694. {
  5695. "name": "symfony/polyfill-php80",
  5696. "version": "v1.29.0",
  5697. "source": {
  5698. "type": "git",
  5699. "url": "https://github.com/symfony/polyfill-php80.git",
  5700. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  5701. },
  5702. "dist": {
  5703. "type": "zip",
  5704. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  5705. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  5706. "shasum": ""
  5707. },
  5708. "require": {
  5709. "php": ">=7.1"
  5710. },
  5711. "type": "library",
  5712. "extra": {
  5713. "thanks": {
  5714. "name": "symfony/polyfill",
  5715. "url": "https://github.com/symfony/polyfill"
  5716. }
  5717. },
  5718. "autoload": {
  5719. "files": [
  5720. "bootstrap.php"
  5721. ],
  5722. "psr-4": {
  5723. "Symfony\\Polyfill\\Php80\\": ""
  5724. },
  5725. "classmap": [
  5726. "Resources/stubs"
  5727. ]
  5728. },
  5729. "notification-url": "https://packagist.org/downloads/",
  5730. "license": [
  5731. "MIT"
  5732. ],
  5733. "authors": [
  5734. {
  5735. "name": "Ion Bazan",
  5736. "email": "[email protected]"
  5737. },
  5738. {
  5739. "name": "Nicolas Grekas",
  5740. "email": "[email protected]"
  5741. },
  5742. {
  5743. "name": "Symfony Community",
  5744. "homepage": "https://symfony.com/contributors"
  5745. }
  5746. ],
  5747. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5748. "homepage": "https://symfony.com",
  5749. "keywords": [
  5750. "compatibility",
  5751. "polyfill",
  5752. "portable",
  5753. "shim"
  5754. ],
  5755. "support": {
  5756. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  5757. },
  5758. "funding": [
  5759. {
  5760. "url": "https://symfony.com/sponsor",
  5761. "type": "custom"
  5762. },
  5763. {
  5764. "url": "https://github.com/fabpot",
  5765. "type": "github"
  5766. },
  5767. {
  5768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5769. "type": "tidelift"
  5770. }
  5771. ],
  5772. "time": "2024-01-29T20:11:03+00:00"
  5773. },
  5774. {
  5775. "name": "symfony/polyfill-php83",
  5776. "version": "v1.29.0",
  5777. "source": {
  5778. "type": "git",
  5779. "url": "https://github.com/symfony/polyfill-php83.git",
  5780. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  5781. },
  5782. "dist": {
  5783. "type": "zip",
  5784. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  5785. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  5786. "shasum": ""
  5787. },
  5788. "require": {
  5789. "php": ">=7.1",
  5790. "symfony/polyfill-php80": "^1.14"
  5791. },
  5792. "type": "library",
  5793. "extra": {
  5794. "thanks": {
  5795. "name": "symfony/polyfill",
  5796. "url": "https://github.com/symfony/polyfill"
  5797. }
  5798. },
  5799. "autoload": {
  5800. "files": [
  5801. "bootstrap.php"
  5802. ],
  5803. "psr-4": {
  5804. "Symfony\\Polyfill\\Php83\\": ""
  5805. },
  5806. "classmap": [
  5807. "Resources/stubs"
  5808. ]
  5809. },
  5810. "notification-url": "https://packagist.org/downloads/",
  5811. "license": [
  5812. "MIT"
  5813. ],
  5814. "authors": [
  5815. {
  5816. "name": "Nicolas Grekas",
  5817. "email": "[email protected]"
  5818. },
  5819. {
  5820. "name": "Symfony Community",
  5821. "homepage": "https://symfony.com/contributors"
  5822. }
  5823. ],
  5824. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5825. "homepage": "https://symfony.com",
  5826. "keywords": [
  5827. "compatibility",
  5828. "polyfill",
  5829. "portable",
  5830. "shim"
  5831. ],
  5832. "support": {
  5833. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  5834. },
  5835. "funding": [
  5836. {
  5837. "url": "https://symfony.com/sponsor",
  5838. "type": "custom"
  5839. },
  5840. {
  5841. "url": "https://github.com/fabpot",
  5842. "type": "github"
  5843. },
  5844. {
  5845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5846. "type": "tidelift"
  5847. }
  5848. ],
  5849. "time": "2024-01-29T20:11:03+00:00"
  5850. },
  5851. {
  5852. "name": "symfony/service-contracts",
  5853. "version": "v3.4.1",
  5854. "source": {
  5855. "type": "git",
  5856. "url": "https://github.com/symfony/service-contracts.git",
  5857. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  5858. },
  5859. "dist": {
  5860. "type": "zip",
  5861. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  5862. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  5863. "shasum": ""
  5864. },
  5865. "require": {
  5866. "php": ">=8.1",
  5867. "psr/container": "^1.1|^2.0"
  5868. },
  5869. "conflict": {
  5870. "ext-psr": "<1.1|>=2"
  5871. },
  5872. "type": "library",
  5873. "extra": {
  5874. "branch-alias": {
  5875. "dev-main": "3.4-dev"
  5876. },
  5877. "thanks": {
  5878. "name": "symfony/contracts",
  5879. "url": "https://github.com/symfony/contracts"
  5880. }
  5881. },
  5882. "autoload": {
  5883. "psr-4": {
  5884. "Symfony\\Contracts\\Service\\": ""
  5885. },
  5886. "exclude-from-classmap": [
  5887. "/Test/"
  5888. ]
  5889. },
  5890. "notification-url": "https://packagist.org/downloads/",
  5891. "license": [
  5892. "MIT"
  5893. ],
  5894. "authors": [
  5895. {
  5896. "name": "Nicolas Grekas",
  5897. "email": "[email protected]"
  5898. },
  5899. {
  5900. "name": "Symfony Community",
  5901. "homepage": "https://symfony.com/contributors"
  5902. }
  5903. ],
  5904. "description": "Generic abstractions related to writing services",
  5905. "homepage": "https://symfony.com",
  5906. "keywords": [
  5907. "abstractions",
  5908. "contracts",
  5909. "decoupling",
  5910. "interfaces",
  5911. "interoperability",
  5912. "standards"
  5913. ],
  5914. "support": {
  5915. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  5916. },
  5917. "funding": [
  5918. {
  5919. "url": "https://symfony.com/sponsor",
  5920. "type": "custom"
  5921. },
  5922. {
  5923. "url": "https://github.com/fabpot",
  5924. "type": "github"
  5925. },
  5926. {
  5927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5928. "type": "tidelift"
  5929. }
  5930. ],
  5931. "time": "2023-12-26T14:02:43+00:00"
  5932. },
  5933. {
  5934. "name": "symfony/translation",
  5935. "version": "v6.4.3",
  5936. "source": {
  5937. "type": "git",
  5938. "url": "https://github.com/symfony/translation.git",
  5939. "reference": "637c51191b6b184184bbf98937702bcf554f7d04"
  5940. },
  5941. "dist": {
  5942. "type": "zip",
  5943. "url": "https://api.github.com/repos/symfony/translation/zipball/637c51191b6b184184bbf98937702bcf554f7d04",
  5944. "reference": "637c51191b6b184184bbf98937702bcf554f7d04",
  5945. "shasum": ""
  5946. },
  5947. "require": {
  5948. "php": ">=8.1",
  5949. "symfony/deprecation-contracts": "^2.5|^3",
  5950. "symfony/polyfill-mbstring": "~1.0",
  5951. "symfony/translation-contracts": "^2.5|^3.0"
  5952. },
  5953. "conflict": {
  5954. "symfony/config": "<5.4",
  5955. "symfony/console": "<5.4",
  5956. "symfony/dependency-injection": "<5.4",
  5957. "symfony/http-client-contracts": "<2.5",
  5958. "symfony/http-kernel": "<5.4",
  5959. "symfony/service-contracts": "<2.5",
  5960. "symfony/twig-bundle": "<5.4",
  5961. "symfony/yaml": "<5.4"
  5962. },
  5963. "provide": {
  5964. "symfony/translation-implementation": "2.3|3.0"
  5965. },
  5966. "require-dev": {
  5967. "nikic/php-parser": "^4.18|^5.0",
  5968. "psr/log": "^1|^2|^3",
  5969. "symfony/config": "^5.4|^6.0|^7.0",
  5970. "symfony/console": "^5.4|^6.0|^7.0",
  5971. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5972. "symfony/finder": "^5.4|^6.0|^7.0",
  5973. "symfony/http-client-contracts": "^2.5|^3.0",
  5974. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5975. "symfony/intl": "^5.4|^6.0|^7.0",
  5976. "symfony/polyfill-intl-icu": "^1.21",
  5977. "symfony/routing": "^5.4|^6.0|^7.0",
  5978. "symfony/service-contracts": "^2.5|^3",
  5979. "symfony/yaml": "^5.4|^6.0|^7.0"
  5980. },
  5981. "type": "library",
  5982. "autoload": {
  5983. "files": [
  5984. "Resources/functions.php"
  5985. ],
  5986. "psr-4": {
  5987. "Symfony\\Component\\Translation\\": ""
  5988. },
  5989. "exclude-from-classmap": [
  5990. "/Tests/"
  5991. ]
  5992. },
  5993. "notification-url": "https://packagist.org/downloads/",
  5994. "license": [
  5995. "MIT"
  5996. ],
  5997. "authors": [
  5998. {
  5999. "name": "Fabien Potencier",
  6000. "email": "[email protected]"
  6001. },
  6002. {
  6003. "name": "Symfony Community",
  6004. "homepage": "https://symfony.com/contributors"
  6005. }
  6006. ],
  6007. "description": "Provides tools to internationalize your application",
  6008. "homepage": "https://symfony.com",
  6009. "support": {
  6010. "source": "https://github.com/symfony/translation/tree/v6.4.3"
  6011. },
  6012. "funding": [
  6013. {
  6014. "url": "https://symfony.com/sponsor",
  6015. "type": "custom"
  6016. },
  6017. {
  6018. "url": "https://github.com/fabpot",
  6019. "type": "github"
  6020. },
  6021. {
  6022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6023. "type": "tidelift"
  6024. }
  6025. ],
  6026. "time": "2024-01-29T13:11:52+00:00"
  6027. },
  6028. {
  6029. "name": "symfony/translation-contracts",
  6030. "version": "v3.4.1",
  6031. "source": {
  6032. "type": "git",
  6033. "url": "https://github.com/symfony/translation-contracts.git",
  6034. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  6035. },
  6036. "dist": {
  6037. "type": "zip",
  6038. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  6039. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  6040. "shasum": ""
  6041. },
  6042. "require": {
  6043. "php": ">=8.1"
  6044. },
  6045. "type": "library",
  6046. "extra": {
  6047. "branch-alias": {
  6048. "dev-main": "3.4-dev"
  6049. },
  6050. "thanks": {
  6051. "name": "symfony/contracts",
  6052. "url": "https://github.com/symfony/contracts"
  6053. }
  6054. },
  6055. "autoload": {
  6056. "psr-4": {
  6057. "Symfony\\Contracts\\Translation\\": ""
  6058. },
  6059. "exclude-from-classmap": [
  6060. "/Test/"
  6061. ]
  6062. },
  6063. "notification-url": "https://packagist.org/downloads/",
  6064. "license": [
  6065. "MIT"
  6066. ],
  6067. "authors": [
  6068. {
  6069. "name": "Nicolas Grekas",
  6070. "email": "[email protected]"
  6071. },
  6072. {
  6073. "name": "Symfony Community",
  6074. "homepage": "https://symfony.com/contributors"
  6075. }
  6076. ],
  6077. "description": "Generic abstractions related to translation",
  6078. "homepage": "https://symfony.com",
  6079. "keywords": [
  6080. "abstractions",
  6081. "contracts",
  6082. "decoupling",
  6083. "interfaces",
  6084. "interoperability",
  6085. "standards"
  6086. ],
  6087. "support": {
  6088. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  6089. },
  6090. "funding": [
  6091. {
  6092. "url": "https://symfony.com/sponsor",
  6093. "type": "custom"
  6094. },
  6095. {
  6096. "url": "https://github.com/fabpot",
  6097. "type": "github"
  6098. },
  6099. {
  6100. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6101. "type": "tidelift"
  6102. }
  6103. ],
  6104. "time": "2023-12-26T14:02:43+00:00"
  6105. },
  6106. {
  6107. "name": "tronovav/geoip2-update",
  6108. "version": "v2.3.1",
  6109. "source": {
  6110. "type": "git",
  6111. "url": "https://github.com/tronovav/geoip2-update.git",
  6112. "reference": "86fddebc2bd277832846c8d6bb3b059fd093db06"
  6113. },
  6114. "dist": {
  6115. "type": "zip",
  6116. "url": "https://api.github.com/repos/tronovav/geoip2-update/zipball/86fddebc2bd277832846c8d6bb3b059fd093db06",
  6117. "reference": "86fddebc2bd277832846c8d6bb3b059fd093db06",
  6118. "shasum": ""
  6119. },
  6120. "require": {
  6121. "ext-curl": "*",
  6122. "ext-json": "*",
  6123. "php": ">=5.3"
  6124. },
  6125. "suggest": {
  6126. "ext-zip": "Required for updating the CSV databases."
  6127. },
  6128. "type": "library",
  6129. "autoload": {
  6130. "psr-4": {
  6131. "tronovav\\GeoIP2Update\\": "src/"
  6132. }
  6133. },
  6134. "notification-url": "https://packagist.org/downloads/",
  6135. "license": [
  6136. "MIT"
  6137. ],
  6138. "authors": [
  6139. {
  6140. "name": "Andrey Tronov",
  6141. "email": "[email protected]"
  6142. }
  6143. ],
  6144. "description": "Update GeoIP2/GeoLite2 databases from your script, program or via composer.",
  6145. "keywords": [
  6146. "geoip",
  6147. "geoip2",
  6148. "geolite2",
  6149. "geolocation",
  6150. "maxmind"
  6151. ],
  6152. "support": {
  6153. "email": "[email protected]",
  6154. "issues": "https://github.com/tronovav/geoip2-update/issues",
  6155. "source": "https://github.com/tronovav/geoip2-update/tree/v2.3.1"
  6156. },
  6157. "time": "2023-10-25T22:16:50+00:00"
  6158. },
  6159. {
  6160. "name": "twig/twig",
  6161. "version": "v3.8.0",
  6162. "source": {
  6163. "type": "git",
  6164. "url": "https://github.com/twigphp/Twig.git",
  6165. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  6166. },
  6167. "dist": {
  6168. "type": "zip",
  6169. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  6170. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  6171. "shasum": ""
  6172. },
  6173. "require": {
  6174. "php": ">=7.2.5",
  6175. "symfony/polyfill-ctype": "^1.8",
  6176. "symfony/polyfill-mbstring": "^1.3",
  6177. "symfony/polyfill-php80": "^1.22"
  6178. },
  6179. "require-dev": {
  6180. "psr/container": "^1.0|^2.0",
  6181. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  6182. },
  6183. "type": "library",
  6184. "autoload": {
  6185. "psr-4": {
  6186. "Twig\\": "src/"
  6187. }
  6188. },
  6189. "notification-url": "https://packagist.org/downloads/",
  6190. "license": [
  6191. "BSD-3-Clause"
  6192. ],
  6193. "authors": [
  6194. {
  6195. "name": "Fabien Potencier",
  6196. "email": "[email protected]",
  6197. "homepage": "http://fabien.potencier.org",
  6198. "role": "Lead Developer"
  6199. },
  6200. {
  6201. "name": "Twig Team",
  6202. "role": "Contributors"
  6203. },
  6204. {
  6205. "name": "Armin Ronacher",
  6206. "email": "[email protected]",
  6207. "role": "Project Founder"
  6208. }
  6209. ],
  6210. "description": "Twig, the flexible, fast, and secure template language for PHP",
  6211. "homepage": "https://twig.symfony.com",
  6212. "keywords": [
  6213. "templating"
  6214. ],
  6215. "support": {
  6216. "issues": "https://github.com/twigphp/Twig/issues",
  6217. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  6218. },
  6219. "funding": [
  6220. {
  6221. "url": "https://github.com/fabpot",
  6222. "type": "github"
  6223. },
  6224. {
  6225. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  6226. "type": "tidelift"
  6227. }
  6228. ],
  6229. "time": "2023-11-21T18:54:41+00:00"
  6230. },
  6231. {
  6232. "name": "vectorface/googleauthenticator",
  6233. "version": "v3.2",
  6234. "source": {
  6235. "type": "git",
  6236. "url": "https://github.com/Vectorface/GoogleAuthenticator.git",
  6237. "reference": "c98adc40a5a1df104693d16908de74b85e107a1d"
  6238. },
  6239. "dist": {
  6240. "type": "zip",
  6241. "url": "https://api.github.com/repos/Vectorface/GoogleAuthenticator/zipball/c98adc40a5a1df104693d16908de74b85e107a1d",
  6242. "reference": "c98adc40a5a1df104693d16908de74b85e107a1d",
  6243. "shasum": ""
  6244. },
  6245. "require": {
  6246. "endroid/qr-code": "^5.0.0",
  6247. "php": ">=8.1"
  6248. },
  6249. "require-dev": {
  6250. "phpunit/phpunit": "^9"
  6251. },
  6252. "type": "library",
  6253. "autoload": {
  6254. "psr-4": {
  6255. "Vectorface\\": "src/"
  6256. }
  6257. },
  6258. "notification-url": "https://packagist.org/downloads/",
  6259. "license": [
  6260. "BSD-2-Clause"
  6261. ],
  6262. "authors": [
  6263. {
  6264. "name": "Michael Kliewe",
  6265. "email": "[email protected]",
  6266. "homepage": "http://www.phpgangsta.de/",
  6267. "role": "Developer"
  6268. },
  6269. {
  6270. "name": "Francis Lavoie",
  6271. "email": "[email protected]",
  6272. "homepage": "http://vectorface.com/",
  6273. "role": "Developer"
  6274. }
  6275. ],
  6276. "description": "Google Authenticator 2-factor authentication",
  6277. "keywords": [
  6278. "googleauthenticator",
  6279. "rfc6238",
  6280. "totp"
  6281. ],
  6282. "support": {
  6283. "issues": "https://github.com/Vectorface/GoogleAuthenticator/issues",
  6284. "source": "https://github.com/Vectorface/GoogleAuthenticator"
  6285. },
  6286. "time": "2024-01-31T13:05:32+00:00"
  6287. },
  6288. {
  6289. "name": "voku/anti-xss",
  6290. "version": "4.1.42",
  6291. "source": {
  6292. "type": "git",
  6293. "url": "https://github.com/voku/anti-xss.git",
  6294. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675"
  6295. },
  6296. "dist": {
  6297. "type": "zip",
  6298. "url": "https://api.github.com/repos/voku/anti-xss/zipball/bca1f8607e55a3c5077483615cd93bd8f11bd675",
  6299. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675",
  6300. "shasum": ""
  6301. },
  6302. "require": {
  6303. "php": ">=7.0.0",
  6304. "voku/portable-utf8": "~6.0.2"
  6305. },
  6306. "require-dev": {
  6307. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6308. },
  6309. "type": "library",
  6310. "extra": {
  6311. "branch-alias": {
  6312. "dev-master": "4.1.x-dev"
  6313. }
  6314. },
  6315. "autoload": {
  6316. "psr-4": {
  6317. "voku\\helper\\": "src/voku/helper/"
  6318. }
  6319. },
  6320. "notification-url": "https://packagist.org/downloads/",
  6321. "license": [
  6322. "MIT"
  6323. ],
  6324. "authors": [
  6325. {
  6326. "name": "EllisLab Dev Team",
  6327. "homepage": "http://ellislab.com/"
  6328. },
  6329. {
  6330. "name": "Lars Moelleken",
  6331. "email": "[email protected]",
  6332. "homepage": "https://www.moelleken.org/"
  6333. }
  6334. ],
  6335. "description": "anti xss-library",
  6336. "homepage": "https://github.com/voku/anti-xss",
  6337. "keywords": [
  6338. "anti-xss",
  6339. "clean",
  6340. "security",
  6341. "xss"
  6342. ],
  6343. "support": {
  6344. "issues": "https://github.com/voku/anti-xss/issues",
  6345. "source": "https://github.com/voku/anti-xss/tree/4.1.42"
  6346. },
  6347. "funding": [
  6348. {
  6349. "url": "https://www.paypal.me/moelleken",
  6350. "type": "custom"
  6351. },
  6352. {
  6353. "url": "https://github.com/voku",
  6354. "type": "github"
  6355. },
  6356. {
  6357. "url": "https://opencollective.com/anti-xss",
  6358. "type": "open_collective"
  6359. },
  6360. {
  6361. "url": "https://www.patreon.com/voku",
  6362. "type": "patreon"
  6363. },
  6364. {
  6365. "url": "https://tidelift.com/funding/github/packagist/voku/anti-xss",
  6366. "type": "tidelift"
  6367. }
  6368. ],
  6369. "time": "2023-07-03T14:40:46+00:00"
  6370. },
  6371. {
  6372. "name": "voku/portable-ascii",
  6373. "version": "2.0.1",
  6374. "source": {
  6375. "type": "git",
  6376. "url": "https://github.com/voku/portable-ascii.git",
  6377. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  6378. },
  6379. "dist": {
  6380. "type": "zip",
  6381. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  6382. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  6383. "shasum": ""
  6384. },
  6385. "require": {
  6386. "php": ">=7.0.0"
  6387. },
  6388. "require-dev": {
  6389. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6390. },
  6391. "suggest": {
  6392. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6393. },
  6394. "type": "library",
  6395. "autoload": {
  6396. "psr-4": {
  6397. "voku\\": "src/voku/"
  6398. }
  6399. },
  6400. "notification-url": "https://packagist.org/downloads/",
  6401. "license": [
  6402. "MIT"
  6403. ],
  6404. "authors": [
  6405. {
  6406. "name": "Lars Moelleken",
  6407. "homepage": "http://www.moelleken.org/"
  6408. }
  6409. ],
  6410. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6411. "homepage": "https://github.com/voku/portable-ascii",
  6412. "keywords": [
  6413. "ascii",
  6414. "clean",
  6415. "php"
  6416. ],
  6417. "support": {
  6418. "issues": "https://github.com/voku/portable-ascii/issues",
  6419. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  6420. },
  6421. "funding": [
  6422. {
  6423. "url": "https://www.paypal.me/moelleken",
  6424. "type": "custom"
  6425. },
  6426. {
  6427. "url": "https://github.com/voku",
  6428. "type": "github"
  6429. },
  6430. {
  6431. "url": "https://opencollective.com/portable-ascii",
  6432. "type": "open_collective"
  6433. },
  6434. {
  6435. "url": "https://www.patreon.com/voku",
  6436. "type": "patreon"
  6437. },
  6438. {
  6439. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6440. "type": "tidelift"
  6441. }
  6442. ],
  6443. "time": "2022-03-08T17:03:00+00:00"
  6444. },
  6445. {
  6446. "name": "voku/portable-utf8",
  6447. "version": "6.0.13",
  6448. "source": {
  6449. "type": "git",
  6450. "url": "https://github.com/voku/portable-utf8.git",
  6451. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f"
  6452. },
  6453. "dist": {
  6454. "type": "zip",
  6455. "url": "https://api.github.com/repos/voku/portable-utf8/zipball/b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6456. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6457. "shasum": ""
  6458. },
  6459. "require": {
  6460. "php": ">=7.0.0",
  6461. "symfony/polyfill-iconv": "~1.0",
  6462. "symfony/polyfill-intl-grapheme": "~1.0",
  6463. "symfony/polyfill-intl-normalizer": "~1.0",
  6464. "symfony/polyfill-mbstring": "~1.0",
  6465. "symfony/polyfill-php72": "~1.0",
  6466. "voku/portable-ascii": "~2.0.0"
  6467. },
  6468. "require-dev": {
  6469. "phpstan/phpstan": "1.9.*@dev",
  6470. "phpstan/phpstan-strict-rules": "1.4.*@dev",
  6471. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0",
  6472. "thecodingmachine/phpstan-strict-rules": "1.0.*@dev",
  6473. "voku/phpstan-rules": "3.1.*@dev"
  6474. },
  6475. "suggest": {
  6476. "ext-ctype": "Use Ctype for e.g. hexadecimal digit detection",
  6477. "ext-fileinfo": "Use Fileinfo for better binary file detection",
  6478. "ext-iconv": "Use iconv for best performance",
  6479. "ext-intl": "Use Intl for best performance",
  6480. "ext-json": "Use JSON for string detection",
  6481. "ext-mbstring": "Use Mbstring for best performance"
  6482. },
  6483. "type": "library",
  6484. "autoload": {
  6485. "files": [
  6486. "bootstrap.php"
  6487. ],
  6488. "psr-4": {
  6489. "voku\\": "src/voku/"
  6490. }
  6491. },
  6492. "notification-url": "https://packagist.org/downloads/",
  6493. "license": [
  6494. "(Apache-2.0 or GPL-2.0)"
  6495. ],
  6496. "authors": [
  6497. {
  6498. "name": "Nicolas Grekas",
  6499. "email": "[email protected]"
  6500. },
  6501. {
  6502. "name": "Hamid Sarfraz",
  6503. "homepage": "http://pageconfig.com/"
  6504. },
  6505. {
  6506. "name": "Lars Moelleken",
  6507. "homepage": "http://www.moelleken.org/"
  6508. }
  6509. ],
  6510. "description": "Portable UTF-8 library - performance optimized (unicode) string functions for php.",
  6511. "homepage": "https://github.com/voku/portable-utf8",
  6512. "keywords": [
  6513. "UTF",
  6514. "clean",
  6515. "php",
  6516. "unicode",
  6517. "utf-8",
  6518. "utf8"
  6519. ],
  6520. "support": {
  6521. "issues": "https://github.com/voku/portable-utf8/issues",
  6522. "source": "https://github.com/voku/portable-utf8/tree/6.0.13"
  6523. },
  6524. "funding": [
  6525. {
  6526. "url": "https://www.paypal.me/moelleken",
  6527. "type": "custom"
  6528. },
  6529. {
  6530. "url": "https://github.com/voku",
  6531. "type": "github"
  6532. },
  6533. {
  6534. "url": "https://opencollective.com/portable-utf8",
  6535. "type": "open_collective"
  6536. },
  6537. {
  6538. "url": "https://www.patreon.com/voku",
  6539. "type": "patreon"
  6540. },
  6541. {
  6542. "url": "https://tidelift.com/funding/github/packagist/voku/portable-utf8",
  6543. "type": "tidelift"
  6544. }
  6545. ],
  6546. "time": "2023-03-08T08:35:38+00:00"
  6547. },
  6548. {
  6549. "name": "webmozart/assert",
  6550. "version": "1.11.0",
  6551. "source": {
  6552. "type": "git",
  6553. "url": "https://github.com/webmozarts/assert.git",
  6554. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6555. },
  6556. "dist": {
  6557. "type": "zip",
  6558. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6559. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6560. "shasum": ""
  6561. },
  6562. "require": {
  6563. "ext-ctype": "*",
  6564. "php": "^7.2 || ^8.0"
  6565. },
  6566. "conflict": {
  6567. "phpstan/phpstan": "<0.12.20",
  6568. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6569. },
  6570. "require-dev": {
  6571. "phpunit/phpunit": "^8.5.13"
  6572. },
  6573. "type": "library",
  6574. "extra": {
  6575. "branch-alias": {
  6576. "dev-master": "1.10-dev"
  6577. }
  6578. },
  6579. "autoload": {
  6580. "psr-4": {
  6581. "Webmozart\\Assert\\": "src/"
  6582. }
  6583. },
  6584. "notification-url": "https://packagist.org/downloads/",
  6585. "license": [
  6586. "MIT"
  6587. ],
  6588. "authors": [
  6589. {
  6590. "name": "Bernhard Schussek",
  6591. "email": "[email protected]"
  6592. }
  6593. ],
  6594. "description": "Assertions to validate method input/output with nice error messages.",
  6595. "keywords": [
  6596. "assert",
  6597. "check",
  6598. "validate"
  6599. ],
  6600. "support": {
  6601. "issues": "https://github.com/webmozarts/assert/issues",
  6602. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6603. },
  6604. "time": "2022-06-03T18:03:27+00:00"
  6605. }
  6606. ],
  6607. "packages-dev": [
  6608. {
  6609. "name": "cmgmyr/phploc",
  6610. "version": "8.0.3",
  6611. "source": {
  6612. "type": "git",
  6613. "url": "https://github.com/cmgmyr/phploc.git",
  6614. "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f"
  6615. },
  6616. "dist": {
  6617. "type": "zip",
  6618. "url": "https://api.github.com/repos/cmgmyr/phploc/zipball/e61d4729df46c5920ab61973bfa3f70f81a70b5f",
  6619. "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f",
  6620. "shasum": ""
  6621. },
  6622. "require": {
  6623. "ext-dom": "*",
  6624. "ext-json": "*",
  6625. "php": "^7.4 || ^8.0",
  6626. "phpunit/php-file-iterator": "^3.0|^4.0",
  6627. "sebastian/cli-parser": "^1.0|^2.0"
  6628. },
  6629. "require-dev": {
  6630. "friendsofphp/php-cs-fixer": "^3.2",
  6631. "phpunit/phpunit": "^9.0|^10.0",
  6632. "vimeo/psalm": "^5.7"
  6633. },
  6634. "bin": [
  6635. "phploc"
  6636. ],
  6637. "type": "library",
  6638. "extra": {
  6639. "branch-alias": {
  6640. "dev-main": "8.0-dev"
  6641. }
  6642. },
  6643. "autoload": {
  6644. "classmap": [
  6645. "src/"
  6646. ]
  6647. },
  6648. "notification-url": "https://packagist.org/downloads/",
  6649. "license": [
  6650. "BSD-3-Clause"
  6651. ],
  6652. "authors": [
  6653. {
  6654. "name": "Chris Gmyr",
  6655. "email": "[email protected]",
  6656. "role": "lead"
  6657. }
  6658. ],
  6659. "description": "A tool for quickly measuring the size of a PHP project.",
  6660. "homepage": "https://github.com/cmgmyr/phploc",
  6661. "support": {
  6662. "issues": "https://github.com/cmgmyr/phploc/issues",
  6663. "source": "https://github.com/cmgmyr/phploc/tree/8.0.3"
  6664. },
  6665. "funding": [
  6666. {
  6667. "url": "https://github.com/cmgmyr",
  6668. "type": "github"
  6669. }
  6670. ],
  6671. "time": "2023-08-05T16:49:39+00:00"
  6672. },
  6673. {
  6674. "name": "composer/pcre",
  6675. "version": "3.1.1",
  6676. "source": {
  6677. "type": "git",
  6678. "url": "https://github.com/composer/pcre.git",
  6679. "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9"
  6680. },
  6681. "dist": {
  6682. "type": "zip",
  6683. "url": "https://api.github.com/repos/composer/pcre/zipball/00104306927c7a0919b4ced2aaa6782c1e61a3c9",
  6684. "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9",
  6685. "shasum": ""
  6686. },
  6687. "require": {
  6688. "php": "^7.4 || ^8.0"
  6689. },
  6690. "require-dev": {
  6691. "phpstan/phpstan": "^1.3",
  6692. "phpstan/phpstan-strict-rules": "^1.1",
  6693. "symfony/phpunit-bridge": "^5"
  6694. },
  6695. "type": "library",
  6696. "extra": {
  6697. "branch-alias": {
  6698. "dev-main": "3.x-dev"
  6699. }
  6700. },
  6701. "autoload": {
  6702. "psr-4": {
  6703. "Composer\\Pcre\\": "src"
  6704. }
  6705. },
  6706. "notification-url": "https://packagist.org/downloads/",
  6707. "license": [
  6708. "MIT"
  6709. ],
  6710. "authors": [
  6711. {
  6712. "name": "Jordi Boggiano",
  6713. "email": "[email protected]",
  6714. "homepage": "http://seld.be"
  6715. }
  6716. ],
  6717. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6718. "keywords": [
  6719. "PCRE",
  6720. "preg",
  6721. "regex",
  6722. "regular expression"
  6723. ],
  6724. "support": {
  6725. "issues": "https://github.com/composer/pcre/issues",
  6726. "source": "https://github.com/composer/pcre/tree/3.1.1"
  6727. },
  6728. "funding": [
  6729. {
  6730. "url": "https://packagist.com",
  6731. "type": "custom"
  6732. },
  6733. {
  6734. "url": "https://github.com/composer",
  6735. "type": "github"
  6736. },
  6737. {
  6738. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6739. "type": "tidelift"
  6740. }
  6741. ],
  6742. "time": "2023-10-11T07:11:09+00:00"
  6743. },
  6744. {
  6745. "name": "composer/semver",
  6746. "version": "3.4.0",
  6747. "source": {
  6748. "type": "git",
  6749. "url": "https://github.com/composer/semver.git",
  6750. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  6751. },
  6752. "dist": {
  6753. "type": "zip",
  6754. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  6755. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  6756. "shasum": ""
  6757. },
  6758. "require": {
  6759. "php": "^5.3.2 || ^7.0 || ^8.0"
  6760. },
  6761. "require-dev": {
  6762. "phpstan/phpstan": "^1.4",
  6763. "symfony/phpunit-bridge": "^4.2 || ^5"
  6764. },
  6765. "type": "library",
  6766. "extra": {
  6767. "branch-alias": {
  6768. "dev-main": "3.x-dev"
  6769. }
  6770. },
  6771. "autoload": {
  6772. "psr-4": {
  6773. "Composer\\Semver\\": "src"
  6774. }
  6775. },
  6776. "notification-url": "https://packagist.org/downloads/",
  6777. "license": [
  6778. "MIT"
  6779. ],
  6780. "authors": [
  6781. {
  6782. "name": "Nils Adermann",
  6783. "email": "[email protected]",
  6784. "homepage": "http://www.naderman.de"
  6785. },
  6786. {
  6787. "name": "Jordi Boggiano",
  6788. "email": "[email protected]",
  6789. "homepage": "http://seld.be"
  6790. },
  6791. {
  6792. "name": "Rob Bast",
  6793. "email": "[email protected]",
  6794. "homepage": "http://robbast.nl"
  6795. }
  6796. ],
  6797. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6798. "keywords": [
  6799. "semantic",
  6800. "semver",
  6801. "validation",
  6802. "versioning"
  6803. ],
  6804. "support": {
  6805. "irc": "ircs://irc.libera.chat:6697/composer",
  6806. "issues": "https://github.com/composer/semver/issues",
  6807. "source": "https://github.com/composer/semver/tree/3.4.0"
  6808. },
  6809. "funding": [
  6810. {
  6811. "url": "https://packagist.com",
  6812. "type": "custom"
  6813. },
  6814. {
  6815. "url": "https://github.com/composer",
  6816. "type": "github"
  6817. },
  6818. {
  6819. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6820. "type": "tidelift"
  6821. }
  6822. ],
  6823. "time": "2023-08-31T09:50:34+00:00"
  6824. },
  6825. {
  6826. "name": "composer/xdebug-handler",
  6827. "version": "3.0.3",
  6828. "source": {
  6829. "type": "git",
  6830. "url": "https://github.com/composer/xdebug-handler.git",
  6831. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  6832. },
  6833. "dist": {
  6834. "type": "zip",
  6835. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  6836. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  6837. "shasum": ""
  6838. },
  6839. "require": {
  6840. "composer/pcre": "^1 || ^2 || ^3",
  6841. "php": "^7.2.5 || ^8.0",
  6842. "psr/log": "^1 || ^2 || ^3"
  6843. },
  6844. "require-dev": {
  6845. "phpstan/phpstan": "^1.0",
  6846. "phpstan/phpstan-strict-rules": "^1.1",
  6847. "symfony/phpunit-bridge": "^6.0"
  6848. },
  6849. "type": "library",
  6850. "autoload": {
  6851. "psr-4": {
  6852. "Composer\\XdebugHandler\\": "src"
  6853. }
  6854. },
  6855. "notification-url": "https://packagist.org/downloads/",
  6856. "license": [
  6857. "MIT"
  6858. ],
  6859. "authors": [
  6860. {
  6861. "name": "John Stevenson",
  6862. "email": "[email protected]"
  6863. }
  6864. ],
  6865. "description": "Restarts a process without Xdebug.",
  6866. "keywords": [
  6867. "Xdebug",
  6868. "performance"
  6869. ],
  6870. "support": {
  6871. "irc": "irc://irc.freenode.org/composer",
  6872. "issues": "https://github.com/composer/xdebug-handler/issues",
  6873. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  6874. },
  6875. "funding": [
  6876. {
  6877. "url": "https://packagist.com",
  6878. "type": "custom"
  6879. },
  6880. {
  6881. "url": "https://github.com/composer",
  6882. "type": "github"
  6883. },
  6884. {
  6885. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6886. "type": "tidelift"
  6887. }
  6888. ],
  6889. "time": "2022-02-25T21:32:43+00:00"
  6890. },
  6891. {
  6892. "name": "dealerdirect/phpcodesniffer-composer-installer",
  6893. "version": "v1.0.0",
  6894. "source": {
  6895. "type": "git",
  6896. "url": "https://github.com/PHPCSStandards/composer-installer.git",
  6897. "reference": "4be43904336affa5c2f70744a348312336afd0da"
  6898. },
  6899. "dist": {
  6900. "type": "zip",
  6901. "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da",
  6902. "reference": "4be43904336affa5c2f70744a348312336afd0da",
  6903. "shasum": ""
  6904. },
  6905. "require": {
  6906. "composer-plugin-api": "^1.0 || ^2.0",
  6907. "php": ">=5.4",
  6908. "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
  6909. },
  6910. "require-dev": {
  6911. "composer/composer": "*",
  6912. "ext-json": "*",
  6913. "ext-zip": "*",
  6914. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  6915. "phpcompatibility/php-compatibility": "^9.0",
  6916. "yoast/phpunit-polyfills": "^1.0"
  6917. },
  6918. "type": "composer-plugin",
  6919. "extra": {
  6920. "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  6921. },
  6922. "autoload": {
  6923. "psr-4": {
  6924. "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  6925. }
  6926. },
  6927. "notification-url": "https://packagist.org/downloads/",
  6928. "license": [
  6929. "MIT"
  6930. ],
  6931. "authors": [
  6932. {
  6933. "name": "Franck Nijhof",
  6934. "email": "[email protected]",
  6935. "homepage": "http://www.frenck.nl",
  6936. "role": "Developer / IT Manager"
  6937. },
  6938. {
  6939. "name": "Contributors",
  6940. "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
  6941. }
  6942. ],
  6943. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  6944. "homepage": "http://www.dealerdirect.com",
  6945. "keywords": [
  6946. "PHPCodeSniffer",
  6947. "PHP_CodeSniffer",
  6948. "code quality",
  6949. "codesniffer",
  6950. "composer",
  6951. "installer",
  6952. "phpcbf",
  6953. "phpcs",
  6954. "plugin",
  6955. "qa",
  6956. "quality",
  6957. "standard",
  6958. "standards",
  6959. "style guide",
  6960. "stylecheck",
  6961. "tests"
  6962. ],
  6963. "support": {
  6964. "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
  6965. "source": "https://github.com/PHPCSStandards/composer-installer"
  6966. },
  6967. "time": "2023-01-05T11:28:13+00:00"
  6968. },
  6969. {
  6970. "name": "friendsofphp/php-cs-fixer",
  6971. "version": "v3.49.0",
  6972. "source": {
  6973. "type": "git",
  6974. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  6975. "reference": "8742f7aa6f72a399688b65e4f58992c2d4681fc2"
  6976. },
  6977. "dist": {
  6978. "type": "zip",
  6979. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/8742f7aa6f72a399688b65e4f58992c2d4681fc2",
  6980. "reference": "8742f7aa6f72a399688b65e4f58992c2d4681fc2",
  6981. "shasum": ""
  6982. },
  6983. "require": {
  6984. "composer/semver": "^3.4",
  6985. "composer/xdebug-handler": "^3.0.3",
  6986. "ext-filter": "*",
  6987. "ext-json": "*",
  6988. "ext-tokenizer": "*",
  6989. "php": "^7.4 || ^8.0",
  6990. "sebastian/diff": "^4.0 || ^5.0",
  6991. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  6992. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  6993. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  6994. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  6995. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  6996. "symfony/polyfill-mbstring": "^1.28",
  6997. "symfony/polyfill-php80": "^1.28",
  6998. "symfony/polyfill-php81": "^1.28",
  6999. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7000. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7001. },
  7002. "require-dev": {
  7003. "facile-it/paraunit": "^1.3 || ^2.0",
  7004. "justinrainbow/json-schema": "^5.2",
  7005. "keradus/cli-executor": "^2.1",
  7006. "mikey179/vfsstream": "^1.6.11",
  7007. "php-coveralls/php-coveralls": "^2.7",
  7008. "php-cs-fixer/accessible-object": "^1.1",
  7009. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7010. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7011. "phpunit/phpunit": "^9.6 || ^10.5.5",
  7012. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7013. },
  7014. "suggest": {
  7015. "ext-dom": "For handling output formats in XML",
  7016. "ext-mbstring": "For handling non-UTF8 characters."
  7017. },
  7018. "bin": [
  7019. "php-cs-fixer"
  7020. ],
  7021. "type": "application",
  7022. "autoload": {
  7023. "psr-4": {
  7024. "PhpCsFixer\\": "src/"
  7025. }
  7026. },
  7027. "notification-url": "https://packagist.org/downloads/",
  7028. "license": [
  7029. "MIT"
  7030. ],
  7031. "authors": [
  7032. {
  7033. "name": "Fabien Potencier",
  7034. "email": "[email protected]"
  7035. },
  7036. {
  7037. "name": "Dariusz Rumiński",
  7038. "email": "[email protected]"
  7039. }
  7040. ],
  7041. "description": "A tool to automatically fix PHP code style",
  7042. "keywords": [
  7043. "Static code analysis",
  7044. "fixer",
  7045. "standards",
  7046. "static analysis"
  7047. ],
  7048. "support": {
  7049. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7050. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.49.0"
  7051. },
  7052. "funding": [
  7053. {
  7054. "url": "https://github.com/keradus",
  7055. "type": "github"
  7056. }
  7057. ],
  7058. "time": "2024-02-02T00:41:40+00:00"
  7059. },
  7060. {
  7061. "name": "justinrainbow/json-schema",
  7062. "version": "v5.2.13",
  7063. "source": {
  7064. "type": "git",
  7065. "url": "https://github.com/justinrainbow/json-schema.git",
  7066. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
  7067. },
  7068. "dist": {
  7069. "type": "zip",
  7070. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
  7071. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
  7072. "shasum": ""
  7073. },
  7074. "require": {
  7075. "php": ">=5.3.3"
  7076. },
  7077. "require-dev": {
  7078. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  7079. "json-schema/json-schema-test-suite": "1.2.0",
  7080. "phpunit/phpunit": "^4.8.35"
  7081. },
  7082. "bin": [
  7083. "bin/validate-json"
  7084. ],
  7085. "type": "library",
  7086. "extra": {
  7087. "branch-alias": {
  7088. "dev-master": "5.0.x-dev"
  7089. }
  7090. },
  7091. "autoload": {
  7092. "psr-4": {
  7093. "JsonSchema\\": "src/JsonSchema/"
  7094. }
  7095. },
  7096. "notification-url": "https://packagist.org/downloads/",
  7097. "license": [
  7098. "MIT"
  7099. ],
  7100. "authors": [
  7101. {
  7102. "name": "Bruno Prieto Reis",
  7103. "email": "[email protected]"
  7104. },
  7105. {
  7106. "name": "Justin Rainbow",
  7107. "email": "[email protected]"
  7108. },
  7109. {
  7110. "name": "Igor Wiedler",
  7111. "email": "[email protected]"
  7112. },
  7113. {
  7114. "name": "Robert Schönthal",
  7115. "email": "[email protected]"
  7116. }
  7117. ],
  7118. "description": "A library to validate a json schema.",
  7119. "homepage": "https://github.com/justinrainbow/json-schema",
  7120. "keywords": [
  7121. "json",
  7122. "schema"
  7123. ],
  7124. "support": {
  7125. "issues": "https://github.com/justinrainbow/json-schema/issues",
  7126. "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
  7127. },
  7128. "time": "2023-09-26T02:20:38+00:00"
  7129. },
  7130. {
  7131. "name": "league/container",
  7132. "version": "4.2.0",
  7133. "source": {
  7134. "type": "git",
  7135. "url": "https://github.com/thephpleague/container.git",
  7136. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  7137. },
  7138. "dist": {
  7139. "type": "zip",
  7140. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7141. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7142. "shasum": ""
  7143. },
  7144. "require": {
  7145. "php": "^7.2 || ^8.0",
  7146. "psr/container": "^1.1 || ^2.0"
  7147. },
  7148. "provide": {
  7149. "psr/container-implementation": "^1.0"
  7150. },
  7151. "replace": {
  7152. "orno/di": "~2.0"
  7153. },
  7154. "require-dev": {
  7155. "nette/php-generator": "^3.4",
  7156. "nikic/php-parser": "^4.10",
  7157. "phpstan/phpstan": "^0.12.47",
  7158. "phpunit/phpunit": "^8.5.17",
  7159. "roave/security-advisories": "dev-latest",
  7160. "scrutinizer/ocular": "^1.8",
  7161. "squizlabs/php_codesniffer": "^3.6"
  7162. },
  7163. "type": "library",
  7164. "extra": {
  7165. "branch-alias": {
  7166. "dev-master": "4.x-dev",
  7167. "dev-4.x": "4.x-dev",
  7168. "dev-3.x": "3.x-dev",
  7169. "dev-2.x": "2.x-dev",
  7170. "dev-1.x": "1.x-dev"
  7171. }
  7172. },
  7173. "autoload": {
  7174. "psr-4": {
  7175. "League\\Container\\": "src"
  7176. }
  7177. },
  7178. "notification-url": "https://packagist.org/downloads/",
  7179. "license": [
  7180. "MIT"
  7181. ],
  7182. "authors": [
  7183. {
  7184. "name": "Phil Bennett",
  7185. "email": "[email protected]",
  7186. "role": "Developer"
  7187. }
  7188. ],
  7189. "description": "A fast and intuitive dependency injection container.",
  7190. "homepage": "https://github.com/thephpleague/container",
  7191. "keywords": [
  7192. "container",
  7193. "dependency",
  7194. "di",
  7195. "injection",
  7196. "league",
  7197. "provider",
  7198. "service"
  7199. ],
  7200. "support": {
  7201. "issues": "https://github.com/thephpleague/container/issues",
  7202. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  7203. },
  7204. "funding": [
  7205. {
  7206. "url": "https://github.com/philipobenito",
  7207. "type": "github"
  7208. }
  7209. ],
  7210. "time": "2021-11-16T10:29:06+00:00"
  7211. },
  7212. {
  7213. "name": "myclabs/deep-copy",
  7214. "version": "1.11.1",
  7215. "source": {
  7216. "type": "git",
  7217. "url": "https://github.com/myclabs/DeepCopy.git",
  7218. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7219. },
  7220. "dist": {
  7221. "type": "zip",
  7222. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7223. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7224. "shasum": ""
  7225. },
  7226. "require": {
  7227. "php": "^7.1 || ^8.0"
  7228. },
  7229. "conflict": {
  7230. "doctrine/collections": "<1.6.8",
  7231. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7232. },
  7233. "require-dev": {
  7234. "doctrine/collections": "^1.6.8",
  7235. "doctrine/common": "^2.13.3 || ^3.2.2",
  7236. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7237. },
  7238. "type": "library",
  7239. "autoload": {
  7240. "files": [
  7241. "src/DeepCopy/deep_copy.php"
  7242. ],
  7243. "psr-4": {
  7244. "DeepCopy\\": "src/DeepCopy/"
  7245. }
  7246. },
  7247. "notification-url": "https://packagist.org/downloads/",
  7248. "license": [
  7249. "MIT"
  7250. ],
  7251. "description": "Create deep copies (clones) of your objects",
  7252. "keywords": [
  7253. "clone",
  7254. "copy",
  7255. "duplicate",
  7256. "object",
  7257. "object graph"
  7258. ],
  7259. "support": {
  7260. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7261. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7262. },
  7263. "funding": [
  7264. {
  7265. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7266. "type": "tidelift"
  7267. }
  7268. ],
  7269. "time": "2023-03-08T13:26:56+00:00"
  7270. },
  7271. {
  7272. "name": "nikic/php-parser",
  7273. "version": "v5.0.0",
  7274. "source": {
  7275. "type": "git",
  7276. "url": "https://github.com/nikic/PHP-Parser.git",
  7277. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc"
  7278. },
  7279. "dist": {
  7280. "type": "zip",
  7281. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  7282. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  7283. "shasum": ""
  7284. },
  7285. "require": {
  7286. "ext-ctype": "*",
  7287. "ext-json": "*",
  7288. "ext-tokenizer": "*",
  7289. "php": ">=7.4"
  7290. },
  7291. "require-dev": {
  7292. "ircmaxell/php-yacc": "^0.0.7",
  7293. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7294. },
  7295. "bin": [
  7296. "bin/php-parse"
  7297. ],
  7298. "type": "library",
  7299. "extra": {
  7300. "branch-alias": {
  7301. "dev-master": "5.0-dev"
  7302. }
  7303. },
  7304. "autoload": {
  7305. "psr-4": {
  7306. "PhpParser\\": "lib/PhpParser"
  7307. }
  7308. },
  7309. "notification-url": "https://packagist.org/downloads/",
  7310. "license": [
  7311. "BSD-3-Clause"
  7312. ],
  7313. "authors": [
  7314. {
  7315. "name": "Nikita Popov"
  7316. }
  7317. ],
  7318. "description": "A PHP parser written in PHP",
  7319. "keywords": [
  7320. "parser",
  7321. "php"
  7322. ],
  7323. "support": {
  7324. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7325. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0"
  7326. },
  7327. "time": "2024-01-07T17:17:35+00:00"
  7328. },
  7329. {
  7330. "name": "nunomaduro/phpinsights",
  7331. "version": "v2.11.0",
  7332. "source": {
  7333. "type": "git",
  7334. "url": "https://github.com/nunomaduro/phpinsights.git",
  7335. "reference": "f476219759a61aad988641476259465c77203383"
  7336. },
  7337. "dist": {
  7338. "type": "zip",
  7339. "url": "https://api.github.com/repos/nunomaduro/phpinsights/zipball/f476219759a61aad988641476259465c77203383",
  7340. "reference": "f476219759a61aad988641476259465c77203383",
  7341. "shasum": ""
  7342. },
  7343. "require": {
  7344. "cmgmyr/phploc": "^8.0.3",
  7345. "composer/semver": "^3.4",
  7346. "ext-iconv": "*",
  7347. "ext-json": "*",
  7348. "ext-mbstring": "*",
  7349. "ext-tokenizer": "*",
  7350. "friendsofphp/php-cs-fixer": "^3.40.0",
  7351. "justinrainbow/json-schema": "^5.2.13",
  7352. "league/container": "^3.2|^4.2",
  7353. "php": "^7.4|^8.0",
  7354. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  7355. "psr/container": "^1.0|^2.0.2",
  7356. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7357. "sebastian/diff": "^4.0|^5.0.3",
  7358. "slevomat/coding-standard": "^8.14.1",
  7359. "squizlabs/php_codesniffer": "^3.7.2",
  7360. "symfony/cache": "^5.4|^6.0|^7.0",
  7361. "symfony/console": "^5.4|^6.4|^7.0",
  7362. "symfony/finder": "^5.4|^6.0|^7.0",
  7363. "symfony/http-client": "^5.4|^6.0|^7.0",
  7364. "symfony/process": "^5.4|^6.4|^7.0"
  7365. },
  7366. "require-dev": {
  7367. "ergebnis/phpstan-rules": "^0.15.3",
  7368. "illuminate/console": "^5.8|^6.0|^7.0|^8.0|^9.20|^10.0",
  7369. "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.52.16|^10.0",
  7370. "mockery/mockery": "^1.6.6",
  7371. "phpstan/phpstan-strict-rules": "^0.12.11",
  7372. "phpunit/phpunit": "^8.0|^9.0|^10.4.2",
  7373. "rector/rector": "0.11.56",
  7374. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  7375. "thecodingmachine/phpstan-strict-rules": "^0.12.2"
  7376. },
  7377. "suggest": {
  7378. "ext-simplexml": "It is needed for the checkstyle formatter"
  7379. },
  7380. "bin": [
  7381. "bin/phpinsights"
  7382. ],
  7383. "type": "library",
  7384. "extra": {
  7385. "laravel": {
  7386. "providers": [
  7387. "NunoMaduro\\PhpInsights\\Application\\Adapters\\Laravel\\InsightsServiceProvider"
  7388. ]
  7389. }
  7390. },
  7391. "autoload": {
  7392. "psr-4": {
  7393. "NunoMaduro\\PhpInsights\\": "src"
  7394. }
  7395. },
  7396. "notification-url": "https://packagist.org/downloads/",
  7397. "license": [
  7398. "MIT"
  7399. ],
  7400. "authors": [
  7401. {
  7402. "name": "Nuno Maduro",
  7403. "email": "[email protected]"
  7404. }
  7405. ],
  7406. "description": "Instant PHP quality checks from your console.",
  7407. "keywords": [
  7408. "Insights",
  7409. "code",
  7410. "console",
  7411. "php",
  7412. "quality",
  7413. "source"
  7414. ],
  7415. "support": {
  7416. "issues": "https://github.com/nunomaduro/phpinsights/issues",
  7417. "source": "https://github.com/nunomaduro/phpinsights/tree/v2.11.0"
  7418. },
  7419. "funding": [
  7420. {
  7421. "url": "https://github.com/JustSteveKing",
  7422. "type": "github"
  7423. },
  7424. {
  7425. "url": "https://github.com/cmgmyr",
  7426. "type": "github"
  7427. },
  7428. {
  7429. "url": "https://github.com/nunomaduro",
  7430. "type": "github"
  7431. }
  7432. ],
  7433. "time": "2023-11-30T10:54:50+00:00"
  7434. },
  7435. {
  7436. "name": "phar-io/manifest",
  7437. "version": "2.0.3",
  7438. "source": {
  7439. "type": "git",
  7440. "url": "https://github.com/phar-io/manifest.git",
  7441. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  7442. },
  7443. "dist": {
  7444. "type": "zip",
  7445. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  7446. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  7447. "shasum": ""
  7448. },
  7449. "require": {
  7450. "ext-dom": "*",
  7451. "ext-phar": "*",
  7452. "ext-xmlwriter": "*",
  7453. "phar-io/version": "^3.0.1",
  7454. "php": "^7.2 || ^8.0"
  7455. },
  7456. "type": "library",
  7457. "extra": {
  7458. "branch-alias": {
  7459. "dev-master": "2.0.x-dev"
  7460. }
  7461. },
  7462. "autoload": {
  7463. "classmap": [
  7464. "src/"
  7465. ]
  7466. },
  7467. "notification-url": "https://packagist.org/downloads/",
  7468. "license": [
  7469. "BSD-3-Clause"
  7470. ],
  7471. "authors": [
  7472. {
  7473. "name": "Arne Blankerts",
  7474. "email": "[email protected]",
  7475. "role": "Developer"
  7476. },
  7477. {
  7478. "name": "Sebastian Heuer",
  7479. "email": "[email protected]",
  7480. "role": "Developer"
  7481. },
  7482. {
  7483. "name": "Sebastian Bergmann",
  7484. "email": "[email protected]",
  7485. "role": "Developer"
  7486. }
  7487. ],
  7488. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7489. "support": {
  7490. "issues": "https://github.com/phar-io/manifest/issues",
  7491. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  7492. },
  7493. "time": "2021-07-20T11:28:43+00:00"
  7494. },
  7495. {
  7496. "name": "phar-io/version",
  7497. "version": "3.2.1",
  7498. "source": {
  7499. "type": "git",
  7500. "url": "https://github.com/phar-io/version.git",
  7501. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7502. },
  7503. "dist": {
  7504. "type": "zip",
  7505. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7506. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7507. "shasum": ""
  7508. },
  7509. "require": {
  7510. "php": "^7.2 || ^8.0"
  7511. },
  7512. "type": "library",
  7513. "autoload": {
  7514. "classmap": [
  7515. "src/"
  7516. ]
  7517. },
  7518. "notification-url": "https://packagist.org/downloads/",
  7519. "license": [
  7520. "BSD-3-Clause"
  7521. ],
  7522. "authors": [
  7523. {
  7524. "name": "Arne Blankerts",
  7525. "email": "[email protected]",
  7526. "role": "Developer"
  7527. },
  7528. {
  7529. "name": "Sebastian Heuer",
  7530. "email": "[email protected]",
  7531. "role": "Developer"
  7532. },
  7533. {
  7534. "name": "Sebastian Bergmann",
  7535. "email": "[email protected]",
  7536. "role": "Developer"
  7537. }
  7538. ],
  7539. "description": "Library for handling version information and constraints",
  7540. "support": {
  7541. "issues": "https://github.com/phar-io/version/issues",
  7542. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7543. },
  7544. "time": "2022-02-21T01:04:05+00:00"
  7545. },
  7546. {
  7547. "name": "php-parallel-lint/php-parallel-lint",
  7548. "version": "v1.3.2",
  7549. "source": {
  7550. "type": "git",
  7551. "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
  7552. "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de"
  7553. },
  7554. "dist": {
  7555. "type": "zip",
  7556. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6483c9832e71973ed29cf71bd6b3f4fde438a9de",
  7557. "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de",
  7558. "shasum": ""
  7559. },
  7560. "require": {
  7561. "ext-json": "*",
  7562. "php": ">=5.3.0"
  7563. },
  7564. "replace": {
  7565. "grogy/php-parallel-lint": "*",
  7566. "jakub-onderka/php-parallel-lint": "*"
  7567. },
  7568. "require-dev": {
  7569. "nette/tester": "^1.3 || ^2.0",
  7570. "php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
  7571. "squizlabs/php_codesniffer": "^3.6"
  7572. },
  7573. "suggest": {
  7574. "php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
  7575. },
  7576. "bin": [
  7577. "parallel-lint"
  7578. ],
  7579. "type": "library",
  7580. "autoload": {
  7581. "classmap": [
  7582. "./src/"
  7583. ]
  7584. },
  7585. "notification-url": "https://packagist.org/downloads/",
  7586. "license": [
  7587. "BSD-2-Clause"
  7588. ],
  7589. "authors": [
  7590. {
  7591. "name": "Jakub Onderka",
  7592. "email": "[email protected]"
  7593. }
  7594. ],
  7595. "description": "This tool check syntax of PHP files about 20x faster than serial check.",
  7596. "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
  7597. "support": {
  7598. "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
  7599. "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.3.2"
  7600. },
  7601. "time": "2022-02-21T12:50:22+00:00"
  7602. },
  7603. {
  7604. "name": "phpstan/phpdoc-parser",
  7605. "version": "1.25.0",
  7606. "source": {
  7607. "type": "git",
  7608. "url": "https://github.com/phpstan/phpdoc-parser.git",
  7609. "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240"
  7610. },
  7611. "dist": {
  7612. "type": "zip",
  7613. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd84b629c8de41aa2ae82c067c955e06f1b00240",
  7614. "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240",
  7615. "shasum": ""
  7616. },
  7617. "require": {
  7618. "php": "^7.2 || ^8.0"
  7619. },
  7620. "require-dev": {
  7621. "doctrine/annotations": "^2.0",
  7622. "nikic/php-parser": "^4.15",
  7623. "php-parallel-lint/php-parallel-lint": "^1.2",
  7624. "phpstan/extension-installer": "^1.0",
  7625. "phpstan/phpstan": "^1.5",
  7626. "phpstan/phpstan-phpunit": "^1.1",
  7627. "phpstan/phpstan-strict-rules": "^1.0",
  7628. "phpunit/phpunit": "^9.5",
  7629. "symfony/process": "^5.2"
  7630. },
  7631. "type": "library",
  7632. "autoload": {
  7633. "psr-4": {
  7634. "PHPStan\\PhpDocParser\\": [
  7635. "src/"
  7636. ]
  7637. }
  7638. },
  7639. "notification-url": "https://packagist.org/downloads/",
  7640. "license": [
  7641. "MIT"
  7642. ],
  7643. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  7644. "support": {
  7645. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  7646. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.25.0"
  7647. },
  7648. "time": "2024-01-04T17:06:16+00:00"
  7649. },
  7650. {
  7651. "name": "phpunit/php-code-coverage",
  7652. "version": "10.1.11",
  7653. "source": {
  7654. "type": "git",
  7655. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7656. "reference": "78c3b7625965c2513ee96569a4dbb62601784145"
  7657. },
  7658. "dist": {
  7659. "type": "zip",
  7660. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/78c3b7625965c2513ee96569a4dbb62601784145",
  7661. "reference": "78c3b7625965c2513ee96569a4dbb62601784145",
  7662. "shasum": ""
  7663. },
  7664. "require": {
  7665. "ext-dom": "*",
  7666. "ext-libxml": "*",
  7667. "ext-xmlwriter": "*",
  7668. "nikic/php-parser": "^4.18 || ^5.0",
  7669. "php": ">=8.1",
  7670. "phpunit/php-file-iterator": "^4.0",
  7671. "phpunit/php-text-template": "^3.0",
  7672. "sebastian/code-unit-reverse-lookup": "^3.0",
  7673. "sebastian/complexity": "^3.0",
  7674. "sebastian/environment": "^6.0",
  7675. "sebastian/lines-of-code": "^2.0",
  7676. "sebastian/version": "^4.0",
  7677. "theseer/tokenizer": "^1.2.0"
  7678. },
  7679. "require-dev": {
  7680. "phpunit/phpunit": "^10.1"
  7681. },
  7682. "suggest": {
  7683. "ext-pcov": "PHP extension that provides line coverage",
  7684. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7685. },
  7686. "type": "library",
  7687. "extra": {
  7688. "branch-alias": {
  7689. "dev-main": "10.1-dev"
  7690. }
  7691. },
  7692. "autoload": {
  7693. "classmap": [
  7694. "src/"
  7695. ]
  7696. },
  7697. "notification-url": "https://packagist.org/downloads/",
  7698. "license": [
  7699. "BSD-3-Clause"
  7700. ],
  7701. "authors": [
  7702. {
  7703. "name": "Sebastian Bergmann",
  7704. "email": "[email protected]",
  7705. "role": "lead"
  7706. }
  7707. ],
  7708. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7709. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7710. "keywords": [
  7711. "coverage",
  7712. "testing",
  7713. "xunit"
  7714. ],
  7715. "support": {
  7716. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7717. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7718. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.11"
  7719. },
  7720. "funding": [
  7721. {
  7722. "url": "https://github.com/sebastianbergmann",
  7723. "type": "github"
  7724. }
  7725. ],
  7726. "time": "2023-12-21T15:38:30+00:00"
  7727. },
  7728. {
  7729. "name": "phpunit/php-file-iterator",
  7730. "version": "4.1.0",
  7731. "source": {
  7732. "type": "git",
  7733. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7734. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  7735. },
  7736. "dist": {
  7737. "type": "zip",
  7738. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7739. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7740. "shasum": ""
  7741. },
  7742. "require": {
  7743. "php": ">=8.1"
  7744. },
  7745. "require-dev": {
  7746. "phpunit/phpunit": "^10.0"
  7747. },
  7748. "type": "library",
  7749. "extra": {
  7750. "branch-alias": {
  7751. "dev-main": "4.0-dev"
  7752. }
  7753. },
  7754. "autoload": {
  7755. "classmap": [
  7756. "src/"
  7757. ]
  7758. },
  7759. "notification-url": "https://packagist.org/downloads/",
  7760. "license": [
  7761. "BSD-3-Clause"
  7762. ],
  7763. "authors": [
  7764. {
  7765. "name": "Sebastian Bergmann",
  7766. "email": "[email protected]",
  7767. "role": "lead"
  7768. }
  7769. ],
  7770. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7771. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7772. "keywords": [
  7773. "filesystem",
  7774. "iterator"
  7775. ],
  7776. "support": {
  7777. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7778. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  7779. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  7780. },
  7781. "funding": [
  7782. {
  7783. "url": "https://github.com/sebastianbergmann",
  7784. "type": "github"
  7785. }
  7786. ],
  7787. "time": "2023-08-31T06:24:48+00:00"
  7788. },
  7789. {
  7790. "name": "phpunit/php-invoker",
  7791. "version": "4.0.0",
  7792. "source": {
  7793. "type": "git",
  7794. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7795. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  7796. },
  7797. "dist": {
  7798. "type": "zip",
  7799. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7800. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7801. "shasum": ""
  7802. },
  7803. "require": {
  7804. "php": ">=8.1"
  7805. },
  7806. "require-dev": {
  7807. "ext-pcntl": "*",
  7808. "phpunit/phpunit": "^10.0"
  7809. },
  7810. "suggest": {
  7811. "ext-pcntl": "*"
  7812. },
  7813. "type": "library",
  7814. "extra": {
  7815. "branch-alias": {
  7816. "dev-main": "4.0-dev"
  7817. }
  7818. },
  7819. "autoload": {
  7820. "classmap": [
  7821. "src/"
  7822. ]
  7823. },
  7824. "notification-url": "https://packagist.org/downloads/",
  7825. "license": [
  7826. "BSD-3-Clause"
  7827. ],
  7828. "authors": [
  7829. {
  7830. "name": "Sebastian Bergmann",
  7831. "email": "[email protected]",
  7832. "role": "lead"
  7833. }
  7834. ],
  7835. "description": "Invoke callables with a timeout",
  7836. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7837. "keywords": [
  7838. "process"
  7839. ],
  7840. "support": {
  7841. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7842. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  7843. },
  7844. "funding": [
  7845. {
  7846. "url": "https://github.com/sebastianbergmann",
  7847. "type": "github"
  7848. }
  7849. ],
  7850. "time": "2023-02-03T06:56:09+00:00"
  7851. },
  7852. {
  7853. "name": "phpunit/php-text-template",
  7854. "version": "3.0.1",
  7855. "source": {
  7856. "type": "git",
  7857. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7858. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  7859. },
  7860. "dist": {
  7861. "type": "zip",
  7862. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7863. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7864. "shasum": ""
  7865. },
  7866. "require": {
  7867. "php": ">=8.1"
  7868. },
  7869. "require-dev": {
  7870. "phpunit/phpunit": "^10.0"
  7871. },
  7872. "type": "library",
  7873. "extra": {
  7874. "branch-alias": {
  7875. "dev-main": "3.0-dev"
  7876. }
  7877. },
  7878. "autoload": {
  7879. "classmap": [
  7880. "src/"
  7881. ]
  7882. },
  7883. "notification-url": "https://packagist.org/downloads/",
  7884. "license": [
  7885. "BSD-3-Clause"
  7886. ],
  7887. "authors": [
  7888. {
  7889. "name": "Sebastian Bergmann",
  7890. "email": "[email protected]",
  7891. "role": "lead"
  7892. }
  7893. ],
  7894. "description": "Simple template engine.",
  7895. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7896. "keywords": [
  7897. "template"
  7898. ],
  7899. "support": {
  7900. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7901. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  7902. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  7903. },
  7904. "funding": [
  7905. {
  7906. "url": "https://github.com/sebastianbergmann",
  7907. "type": "github"
  7908. }
  7909. ],
  7910. "time": "2023-08-31T14:07:24+00:00"
  7911. },
  7912. {
  7913. "name": "phpunit/php-timer",
  7914. "version": "6.0.0",
  7915. "source": {
  7916. "type": "git",
  7917. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7918. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  7919. },
  7920. "dist": {
  7921. "type": "zip",
  7922. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7923. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7924. "shasum": ""
  7925. },
  7926. "require": {
  7927. "php": ">=8.1"
  7928. },
  7929. "require-dev": {
  7930. "phpunit/phpunit": "^10.0"
  7931. },
  7932. "type": "library",
  7933. "extra": {
  7934. "branch-alias": {
  7935. "dev-main": "6.0-dev"
  7936. }
  7937. },
  7938. "autoload": {
  7939. "classmap": [
  7940. "src/"
  7941. ]
  7942. },
  7943. "notification-url": "https://packagist.org/downloads/",
  7944. "license": [
  7945. "BSD-3-Clause"
  7946. ],
  7947. "authors": [
  7948. {
  7949. "name": "Sebastian Bergmann",
  7950. "email": "[email protected]",
  7951. "role": "lead"
  7952. }
  7953. ],
  7954. "description": "Utility class for timing",
  7955. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7956. "keywords": [
  7957. "timer"
  7958. ],
  7959. "support": {
  7960. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7961. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  7962. },
  7963. "funding": [
  7964. {
  7965. "url": "https://github.com/sebastianbergmann",
  7966. "type": "github"
  7967. }
  7968. ],
  7969. "time": "2023-02-03T06:57:52+00:00"
  7970. },
  7971. {
  7972. "name": "phpunit/phpunit",
  7973. "version": "10.5.10",
  7974. "source": {
  7975. "type": "git",
  7976. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7977. "reference": "50b8e314b6d0dd06521dc31d1abffa73f25f850c"
  7978. },
  7979. "dist": {
  7980. "type": "zip",
  7981. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/50b8e314b6d0dd06521dc31d1abffa73f25f850c",
  7982. "reference": "50b8e314b6d0dd06521dc31d1abffa73f25f850c",
  7983. "shasum": ""
  7984. },
  7985. "require": {
  7986. "ext-dom": "*",
  7987. "ext-json": "*",
  7988. "ext-libxml": "*",
  7989. "ext-mbstring": "*",
  7990. "ext-xml": "*",
  7991. "ext-xmlwriter": "*",
  7992. "myclabs/deep-copy": "^1.10.1",
  7993. "phar-io/manifest": "^2.0.3",
  7994. "phar-io/version": "^3.0.2",
  7995. "php": ">=8.1",
  7996. "phpunit/php-code-coverage": "^10.1.5",
  7997. "phpunit/php-file-iterator": "^4.0",
  7998. "phpunit/php-invoker": "^4.0",
  7999. "phpunit/php-text-template": "^3.0",
  8000. "phpunit/php-timer": "^6.0",
  8001. "sebastian/cli-parser": "^2.0",
  8002. "sebastian/code-unit": "^2.0",
  8003. "sebastian/comparator": "^5.0",
  8004. "sebastian/diff": "^5.0",
  8005. "sebastian/environment": "^6.0",
  8006. "sebastian/exporter": "^5.1",
  8007. "sebastian/global-state": "^6.0.1",
  8008. "sebastian/object-enumerator": "^5.0",
  8009. "sebastian/recursion-context": "^5.0",
  8010. "sebastian/type": "^4.0",
  8011. "sebastian/version": "^4.0"
  8012. },
  8013. "suggest": {
  8014. "ext-soap": "To be able to generate mocks based on WSDL files"
  8015. },
  8016. "bin": [
  8017. "phpunit"
  8018. ],
  8019. "type": "library",
  8020. "extra": {
  8021. "branch-alias": {
  8022. "dev-main": "10.5-dev"
  8023. }
  8024. },
  8025. "autoload": {
  8026. "files": [
  8027. "src/Framework/Assert/Functions.php"
  8028. ],
  8029. "classmap": [
  8030. "src/"
  8031. ]
  8032. },
  8033. "notification-url": "https://packagist.org/downloads/",
  8034. "license": [
  8035. "BSD-3-Clause"
  8036. ],
  8037. "authors": [
  8038. {
  8039. "name": "Sebastian Bergmann",
  8040. "email": "[email protected]",
  8041. "role": "lead"
  8042. }
  8043. ],
  8044. "description": "The PHP Unit Testing framework.",
  8045. "homepage": "https://phpunit.de/",
  8046. "keywords": [
  8047. "phpunit",
  8048. "testing",
  8049. "xunit"
  8050. ],
  8051. "support": {
  8052. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8053. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8054. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.10"
  8055. },
  8056. "funding": [
  8057. {
  8058. "url": "https://phpunit.de/sponsors.html",
  8059. "type": "custom"
  8060. },
  8061. {
  8062. "url": "https://github.com/sebastianbergmann",
  8063. "type": "github"
  8064. },
  8065. {
  8066. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8067. "type": "tidelift"
  8068. }
  8069. ],
  8070. "time": "2024-02-04T09:07:51+00:00"
  8071. },
  8072. {
  8073. "name": "psr/cache",
  8074. "version": "3.0.0",
  8075. "source": {
  8076. "type": "git",
  8077. "url": "https://github.com/php-fig/cache.git",
  8078. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  8079. },
  8080. "dist": {
  8081. "type": "zip",
  8082. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8083. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8084. "shasum": ""
  8085. },
  8086. "require": {
  8087. "php": ">=8.0.0"
  8088. },
  8089. "type": "library",
  8090. "extra": {
  8091. "branch-alias": {
  8092. "dev-master": "1.0.x-dev"
  8093. }
  8094. },
  8095. "autoload": {
  8096. "psr-4": {
  8097. "Psr\\Cache\\": "src/"
  8098. }
  8099. },
  8100. "notification-url": "https://packagist.org/downloads/",
  8101. "license": [
  8102. "MIT"
  8103. ],
  8104. "authors": [
  8105. {
  8106. "name": "PHP-FIG",
  8107. "homepage": "https://www.php-fig.org/"
  8108. }
  8109. ],
  8110. "description": "Common interface for caching libraries",
  8111. "keywords": [
  8112. "cache",
  8113. "psr",
  8114. "psr-6"
  8115. ],
  8116. "support": {
  8117. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  8118. },
  8119. "time": "2021-02-03T23:26:27+00:00"
  8120. },
  8121. {
  8122. "name": "sebastian/cli-parser",
  8123. "version": "2.0.0",
  8124. "source": {
  8125. "type": "git",
  8126. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8127. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae"
  8128. },
  8129. "dist": {
  8130. "type": "zip",
  8131. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae",
  8132. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  8133. "shasum": ""
  8134. },
  8135. "require": {
  8136. "php": ">=8.1"
  8137. },
  8138. "require-dev": {
  8139. "phpunit/phpunit": "^10.0"
  8140. },
  8141. "type": "library",
  8142. "extra": {
  8143. "branch-alias": {
  8144. "dev-main": "2.0-dev"
  8145. }
  8146. },
  8147. "autoload": {
  8148. "classmap": [
  8149. "src/"
  8150. ]
  8151. },
  8152. "notification-url": "https://packagist.org/downloads/",
  8153. "license": [
  8154. "BSD-3-Clause"
  8155. ],
  8156. "authors": [
  8157. {
  8158. "name": "Sebastian Bergmann",
  8159. "email": "[email protected]",
  8160. "role": "lead"
  8161. }
  8162. ],
  8163. "description": "Library for parsing CLI options",
  8164. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8165. "support": {
  8166. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8167. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0"
  8168. },
  8169. "funding": [
  8170. {
  8171. "url": "https://github.com/sebastianbergmann",
  8172. "type": "github"
  8173. }
  8174. ],
  8175. "time": "2023-02-03T06:58:15+00:00"
  8176. },
  8177. {
  8178. "name": "sebastian/code-unit",
  8179. "version": "2.0.0",
  8180. "source": {
  8181. "type": "git",
  8182. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8183. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8184. },
  8185. "dist": {
  8186. "type": "zip",
  8187. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8188. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8189. "shasum": ""
  8190. },
  8191. "require": {
  8192. "php": ">=8.1"
  8193. },
  8194. "require-dev": {
  8195. "phpunit/phpunit": "^10.0"
  8196. },
  8197. "type": "library",
  8198. "extra": {
  8199. "branch-alias": {
  8200. "dev-main": "2.0-dev"
  8201. }
  8202. },
  8203. "autoload": {
  8204. "classmap": [
  8205. "src/"
  8206. ]
  8207. },
  8208. "notification-url": "https://packagist.org/downloads/",
  8209. "license": [
  8210. "BSD-3-Clause"
  8211. ],
  8212. "authors": [
  8213. {
  8214. "name": "Sebastian Bergmann",
  8215. "email": "[email protected]",
  8216. "role": "lead"
  8217. }
  8218. ],
  8219. "description": "Collection of value objects that represent the PHP code units",
  8220. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8221. "support": {
  8222. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8223. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8224. },
  8225. "funding": [
  8226. {
  8227. "url": "https://github.com/sebastianbergmann",
  8228. "type": "github"
  8229. }
  8230. ],
  8231. "time": "2023-02-03T06:58:43+00:00"
  8232. },
  8233. {
  8234. "name": "sebastian/code-unit-reverse-lookup",
  8235. "version": "3.0.0",
  8236. "source": {
  8237. "type": "git",
  8238. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8239. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8240. },
  8241. "dist": {
  8242. "type": "zip",
  8243. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8244. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8245. "shasum": ""
  8246. },
  8247. "require": {
  8248. "php": ">=8.1"
  8249. },
  8250. "require-dev": {
  8251. "phpunit/phpunit": "^10.0"
  8252. },
  8253. "type": "library",
  8254. "extra": {
  8255. "branch-alias": {
  8256. "dev-main": "3.0-dev"
  8257. }
  8258. },
  8259. "autoload": {
  8260. "classmap": [
  8261. "src/"
  8262. ]
  8263. },
  8264. "notification-url": "https://packagist.org/downloads/",
  8265. "license": [
  8266. "BSD-3-Clause"
  8267. ],
  8268. "authors": [
  8269. {
  8270. "name": "Sebastian Bergmann",
  8271. "email": "[email protected]"
  8272. }
  8273. ],
  8274. "description": "Looks up which function or method a line of code belongs to",
  8275. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8276. "support": {
  8277. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8278. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8279. },
  8280. "funding": [
  8281. {
  8282. "url": "https://github.com/sebastianbergmann",
  8283. "type": "github"
  8284. }
  8285. ],
  8286. "time": "2023-02-03T06:59:15+00:00"
  8287. },
  8288. {
  8289. "name": "sebastian/comparator",
  8290. "version": "5.0.1",
  8291. "source": {
  8292. "type": "git",
  8293. "url": "https://github.com/sebastianbergmann/comparator.git",
  8294. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  8295. },
  8296. "dist": {
  8297. "type": "zip",
  8298. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  8299. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  8300. "shasum": ""
  8301. },
  8302. "require": {
  8303. "ext-dom": "*",
  8304. "ext-mbstring": "*",
  8305. "php": ">=8.1",
  8306. "sebastian/diff": "^5.0",
  8307. "sebastian/exporter": "^5.0"
  8308. },
  8309. "require-dev": {
  8310. "phpunit/phpunit": "^10.3"
  8311. },
  8312. "type": "library",
  8313. "extra": {
  8314. "branch-alias": {
  8315. "dev-main": "5.0-dev"
  8316. }
  8317. },
  8318. "autoload": {
  8319. "classmap": [
  8320. "src/"
  8321. ]
  8322. },
  8323. "notification-url": "https://packagist.org/downloads/",
  8324. "license": [
  8325. "BSD-3-Clause"
  8326. ],
  8327. "authors": [
  8328. {
  8329. "name": "Sebastian Bergmann",
  8330. "email": "[email protected]"
  8331. },
  8332. {
  8333. "name": "Jeff Welch",
  8334. "email": "[email protected]"
  8335. },
  8336. {
  8337. "name": "Volker Dusch",
  8338. "email": "[email protected]"
  8339. },
  8340. {
  8341. "name": "Bernhard Schussek",
  8342. "email": "[email protected]"
  8343. }
  8344. ],
  8345. "description": "Provides the functionality to compare PHP values for equality",
  8346. "homepage": "https://github.com/sebastianbergmann/comparator",
  8347. "keywords": [
  8348. "comparator",
  8349. "compare",
  8350. "equality"
  8351. ],
  8352. "support": {
  8353. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8354. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8355. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  8356. },
  8357. "funding": [
  8358. {
  8359. "url": "https://github.com/sebastianbergmann",
  8360. "type": "github"
  8361. }
  8362. ],
  8363. "time": "2023-08-14T13:18:12+00:00"
  8364. },
  8365. {
  8366. "name": "sebastian/complexity",
  8367. "version": "3.2.0",
  8368. "source": {
  8369. "type": "git",
  8370. "url": "https://github.com/sebastianbergmann/complexity.git",
  8371. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  8372. },
  8373. "dist": {
  8374. "type": "zip",
  8375. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  8376. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  8377. "shasum": ""
  8378. },
  8379. "require": {
  8380. "nikic/php-parser": "^4.18 || ^5.0",
  8381. "php": ">=8.1"
  8382. },
  8383. "require-dev": {
  8384. "phpunit/phpunit": "^10.0"
  8385. },
  8386. "type": "library",
  8387. "extra": {
  8388. "branch-alias": {
  8389. "dev-main": "3.2-dev"
  8390. }
  8391. },
  8392. "autoload": {
  8393. "classmap": [
  8394. "src/"
  8395. ]
  8396. },
  8397. "notification-url": "https://packagist.org/downloads/",
  8398. "license": [
  8399. "BSD-3-Clause"
  8400. ],
  8401. "authors": [
  8402. {
  8403. "name": "Sebastian Bergmann",
  8404. "email": "[email protected]",
  8405. "role": "lead"
  8406. }
  8407. ],
  8408. "description": "Library for calculating the complexity of PHP code units",
  8409. "homepage": "https://github.com/sebastianbergmann/complexity",
  8410. "support": {
  8411. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8412. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8413. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  8414. },
  8415. "funding": [
  8416. {
  8417. "url": "https://github.com/sebastianbergmann",
  8418. "type": "github"
  8419. }
  8420. ],
  8421. "time": "2023-12-21T08:37:17+00:00"
  8422. },
  8423. {
  8424. "name": "sebastian/diff",
  8425. "version": "5.1.0",
  8426. "source": {
  8427. "type": "git",
  8428. "url": "https://github.com/sebastianbergmann/diff.git",
  8429. "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f"
  8430. },
  8431. "dist": {
  8432. "type": "zip",
  8433. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/fbf413a49e54f6b9b17e12d900ac7f6101591b7f",
  8434. "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f",
  8435. "shasum": ""
  8436. },
  8437. "require": {
  8438. "php": ">=8.1"
  8439. },
  8440. "require-dev": {
  8441. "phpunit/phpunit": "^10.0",
  8442. "symfony/process": "^4.2 || ^5"
  8443. },
  8444. "type": "library",
  8445. "extra": {
  8446. "branch-alias": {
  8447. "dev-main": "5.1-dev"
  8448. }
  8449. },
  8450. "autoload": {
  8451. "classmap": [
  8452. "src/"
  8453. ]
  8454. },
  8455. "notification-url": "https://packagist.org/downloads/",
  8456. "license": [
  8457. "BSD-3-Clause"
  8458. ],
  8459. "authors": [
  8460. {
  8461. "name": "Sebastian Bergmann",
  8462. "email": "[email protected]"
  8463. },
  8464. {
  8465. "name": "Kore Nordmann",
  8466. "email": "[email protected]"
  8467. }
  8468. ],
  8469. "description": "Diff implementation",
  8470. "homepage": "https://github.com/sebastianbergmann/diff",
  8471. "keywords": [
  8472. "diff",
  8473. "udiff",
  8474. "unidiff",
  8475. "unified diff"
  8476. ],
  8477. "support": {
  8478. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8479. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8480. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.0"
  8481. },
  8482. "funding": [
  8483. {
  8484. "url": "https://github.com/sebastianbergmann",
  8485. "type": "github"
  8486. }
  8487. ],
  8488. "time": "2023-12-22T10:55:06+00:00"
  8489. },
  8490. {
  8491. "name": "sebastian/environment",
  8492. "version": "6.0.1",
  8493. "source": {
  8494. "type": "git",
  8495. "url": "https://github.com/sebastianbergmann/environment.git",
  8496. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951"
  8497. },
  8498. "dist": {
  8499. "type": "zip",
  8500. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951",
  8501. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  8502. "shasum": ""
  8503. },
  8504. "require": {
  8505. "php": ">=8.1"
  8506. },
  8507. "require-dev": {
  8508. "phpunit/phpunit": "^10.0"
  8509. },
  8510. "suggest": {
  8511. "ext-posix": "*"
  8512. },
  8513. "type": "library",
  8514. "extra": {
  8515. "branch-alias": {
  8516. "dev-main": "6.0-dev"
  8517. }
  8518. },
  8519. "autoload": {
  8520. "classmap": [
  8521. "src/"
  8522. ]
  8523. },
  8524. "notification-url": "https://packagist.org/downloads/",
  8525. "license": [
  8526. "BSD-3-Clause"
  8527. ],
  8528. "authors": [
  8529. {
  8530. "name": "Sebastian Bergmann",
  8531. "email": "[email protected]"
  8532. }
  8533. ],
  8534. "description": "Provides functionality to handle HHVM/PHP environments",
  8535. "homepage": "https://github.com/sebastianbergmann/environment",
  8536. "keywords": [
  8537. "Xdebug",
  8538. "environment",
  8539. "hhvm"
  8540. ],
  8541. "support": {
  8542. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8543. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  8544. "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1"
  8545. },
  8546. "funding": [
  8547. {
  8548. "url": "https://github.com/sebastianbergmann",
  8549. "type": "github"
  8550. }
  8551. ],
  8552. "time": "2023-04-11T05:39:26+00:00"
  8553. },
  8554. {
  8555. "name": "sebastian/exporter",
  8556. "version": "5.1.1",
  8557. "source": {
  8558. "type": "git",
  8559. "url": "https://github.com/sebastianbergmann/exporter.git",
  8560. "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc"
  8561. },
  8562. "dist": {
  8563. "type": "zip",
  8564. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/64f51654862e0f5e318db7e9dcc2292c63cdbddc",
  8565. "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc",
  8566. "shasum": ""
  8567. },
  8568. "require": {
  8569. "ext-mbstring": "*",
  8570. "php": ">=8.1",
  8571. "sebastian/recursion-context": "^5.0"
  8572. },
  8573. "require-dev": {
  8574. "phpunit/phpunit": "^10.0"
  8575. },
  8576. "type": "library",
  8577. "extra": {
  8578. "branch-alias": {
  8579. "dev-main": "5.1-dev"
  8580. }
  8581. },
  8582. "autoload": {
  8583. "classmap": [
  8584. "src/"
  8585. ]
  8586. },
  8587. "notification-url": "https://packagist.org/downloads/",
  8588. "license": [
  8589. "BSD-3-Clause"
  8590. ],
  8591. "authors": [
  8592. {
  8593. "name": "Sebastian Bergmann",
  8594. "email": "[email protected]"
  8595. },
  8596. {
  8597. "name": "Jeff Welch",
  8598. "email": "[email protected]"
  8599. },
  8600. {
  8601. "name": "Volker Dusch",
  8602. "email": "[email protected]"
  8603. },
  8604. {
  8605. "name": "Adam Harvey",
  8606. "email": "[email protected]"
  8607. },
  8608. {
  8609. "name": "Bernhard Schussek",
  8610. "email": "[email protected]"
  8611. }
  8612. ],
  8613. "description": "Provides the functionality to export PHP variables for visualization",
  8614. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8615. "keywords": [
  8616. "export",
  8617. "exporter"
  8618. ],
  8619. "support": {
  8620. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8621. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  8622. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.1"
  8623. },
  8624. "funding": [
  8625. {
  8626. "url": "https://github.com/sebastianbergmann",
  8627. "type": "github"
  8628. }
  8629. ],
  8630. "time": "2023-09-24T13:22:09+00:00"
  8631. },
  8632. {
  8633. "name": "sebastian/global-state",
  8634. "version": "6.0.1",
  8635. "source": {
  8636. "type": "git",
  8637. "url": "https://github.com/sebastianbergmann/global-state.git",
  8638. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4"
  8639. },
  8640. "dist": {
  8641. "type": "zip",
  8642. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  8643. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  8644. "shasum": ""
  8645. },
  8646. "require": {
  8647. "php": ">=8.1",
  8648. "sebastian/object-reflector": "^3.0",
  8649. "sebastian/recursion-context": "^5.0"
  8650. },
  8651. "require-dev": {
  8652. "ext-dom": "*",
  8653. "phpunit/phpunit": "^10.0"
  8654. },
  8655. "type": "library",
  8656. "extra": {
  8657. "branch-alias": {
  8658. "dev-main": "6.0-dev"
  8659. }
  8660. },
  8661. "autoload": {
  8662. "classmap": [
  8663. "src/"
  8664. ]
  8665. },
  8666. "notification-url": "https://packagist.org/downloads/",
  8667. "license": [
  8668. "BSD-3-Clause"
  8669. ],
  8670. "authors": [
  8671. {
  8672. "name": "Sebastian Bergmann",
  8673. "email": "[email protected]"
  8674. }
  8675. ],
  8676. "description": "Snapshotting of global state",
  8677. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8678. "keywords": [
  8679. "global state"
  8680. ],
  8681. "support": {
  8682. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8683. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  8684. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.1"
  8685. },
  8686. "funding": [
  8687. {
  8688. "url": "https://github.com/sebastianbergmann",
  8689. "type": "github"
  8690. }
  8691. ],
  8692. "time": "2023-07-19T07:19:23+00:00"
  8693. },
  8694. {
  8695. "name": "sebastian/lines-of-code",
  8696. "version": "2.0.2",
  8697. "source": {
  8698. "type": "git",
  8699. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8700. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  8701. },
  8702. "dist": {
  8703. "type": "zip",
  8704. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  8705. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  8706. "shasum": ""
  8707. },
  8708. "require": {
  8709. "nikic/php-parser": "^4.18 || ^5.0",
  8710. "php": ">=8.1"
  8711. },
  8712. "require-dev": {
  8713. "phpunit/phpunit": "^10.0"
  8714. },
  8715. "type": "library",
  8716. "extra": {
  8717. "branch-alias": {
  8718. "dev-main": "2.0-dev"
  8719. }
  8720. },
  8721. "autoload": {
  8722. "classmap": [
  8723. "src/"
  8724. ]
  8725. },
  8726. "notification-url": "https://packagist.org/downloads/",
  8727. "license": [
  8728. "BSD-3-Clause"
  8729. ],
  8730. "authors": [
  8731. {
  8732. "name": "Sebastian Bergmann",
  8733. "email": "[email protected]",
  8734. "role": "lead"
  8735. }
  8736. ],
  8737. "description": "Library for counting the lines of code in PHP source code",
  8738. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8739. "support": {
  8740. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8741. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  8742. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  8743. },
  8744. "funding": [
  8745. {
  8746. "url": "https://github.com/sebastianbergmann",
  8747. "type": "github"
  8748. }
  8749. ],
  8750. "time": "2023-12-21T08:38:20+00:00"
  8751. },
  8752. {
  8753. "name": "sebastian/object-enumerator",
  8754. "version": "5.0.0",
  8755. "source": {
  8756. "type": "git",
  8757. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8758. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  8759. },
  8760. "dist": {
  8761. "type": "zip",
  8762. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  8763. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  8764. "shasum": ""
  8765. },
  8766. "require": {
  8767. "php": ">=8.1",
  8768. "sebastian/object-reflector": "^3.0",
  8769. "sebastian/recursion-context": "^5.0"
  8770. },
  8771. "require-dev": {
  8772. "phpunit/phpunit": "^10.0"
  8773. },
  8774. "type": "library",
  8775. "extra": {
  8776. "branch-alias": {
  8777. "dev-main": "5.0-dev"
  8778. }
  8779. },
  8780. "autoload": {
  8781. "classmap": [
  8782. "src/"
  8783. ]
  8784. },
  8785. "notification-url": "https://packagist.org/downloads/",
  8786. "license": [
  8787. "BSD-3-Clause"
  8788. ],
  8789. "authors": [
  8790. {
  8791. "name": "Sebastian Bergmann",
  8792. "email": "[email protected]"
  8793. }
  8794. ],
  8795. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8796. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8797. "support": {
  8798. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8799. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  8800. },
  8801. "funding": [
  8802. {
  8803. "url": "https://github.com/sebastianbergmann",
  8804. "type": "github"
  8805. }
  8806. ],
  8807. "time": "2023-02-03T07:08:32+00:00"
  8808. },
  8809. {
  8810. "name": "sebastian/object-reflector",
  8811. "version": "3.0.0",
  8812. "source": {
  8813. "type": "git",
  8814. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8815. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  8816. },
  8817. "dist": {
  8818. "type": "zip",
  8819. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  8820. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  8821. "shasum": ""
  8822. },
  8823. "require": {
  8824. "php": ">=8.1"
  8825. },
  8826. "require-dev": {
  8827. "phpunit/phpunit": "^10.0"
  8828. },
  8829. "type": "library",
  8830. "extra": {
  8831. "branch-alias": {
  8832. "dev-main": "3.0-dev"
  8833. }
  8834. },
  8835. "autoload": {
  8836. "classmap": [
  8837. "src/"
  8838. ]
  8839. },
  8840. "notification-url": "https://packagist.org/downloads/",
  8841. "license": [
  8842. "BSD-3-Clause"
  8843. ],
  8844. "authors": [
  8845. {
  8846. "name": "Sebastian Bergmann",
  8847. "email": "[email protected]"
  8848. }
  8849. ],
  8850. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8851. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8852. "support": {
  8853. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  8854. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  8855. },
  8856. "funding": [
  8857. {
  8858. "url": "https://github.com/sebastianbergmann",
  8859. "type": "github"
  8860. }
  8861. ],
  8862. "time": "2023-02-03T07:06:18+00:00"
  8863. },
  8864. {
  8865. "name": "sebastian/recursion-context",
  8866. "version": "5.0.0",
  8867. "source": {
  8868. "type": "git",
  8869. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8870. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  8871. },
  8872. "dist": {
  8873. "type": "zip",
  8874. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  8875. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  8876. "shasum": ""
  8877. },
  8878. "require": {
  8879. "php": ">=8.1"
  8880. },
  8881. "require-dev": {
  8882. "phpunit/phpunit": "^10.0"
  8883. },
  8884. "type": "library",
  8885. "extra": {
  8886. "branch-alias": {
  8887. "dev-main": "5.0-dev"
  8888. }
  8889. },
  8890. "autoload": {
  8891. "classmap": [
  8892. "src/"
  8893. ]
  8894. },
  8895. "notification-url": "https://packagist.org/downloads/",
  8896. "license": [
  8897. "BSD-3-Clause"
  8898. ],
  8899. "authors": [
  8900. {
  8901. "name": "Sebastian Bergmann",
  8902. "email": "[email protected]"
  8903. },
  8904. {
  8905. "name": "Jeff Welch",
  8906. "email": "[email protected]"
  8907. },
  8908. {
  8909. "name": "Adam Harvey",
  8910. "email": "[email protected]"
  8911. }
  8912. ],
  8913. "description": "Provides functionality to recursively process PHP variables",
  8914. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  8915. "support": {
  8916. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8917. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  8918. },
  8919. "funding": [
  8920. {
  8921. "url": "https://github.com/sebastianbergmann",
  8922. "type": "github"
  8923. }
  8924. ],
  8925. "time": "2023-02-03T07:05:40+00:00"
  8926. },
  8927. {
  8928. "name": "sebastian/type",
  8929. "version": "4.0.0",
  8930. "source": {
  8931. "type": "git",
  8932. "url": "https://github.com/sebastianbergmann/type.git",
  8933. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  8934. },
  8935. "dist": {
  8936. "type": "zip",
  8937. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  8938. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  8939. "shasum": ""
  8940. },
  8941. "require": {
  8942. "php": ">=8.1"
  8943. },
  8944. "require-dev": {
  8945. "phpunit/phpunit": "^10.0"
  8946. },
  8947. "type": "library",
  8948. "extra": {
  8949. "branch-alias": {
  8950. "dev-main": "4.0-dev"
  8951. }
  8952. },
  8953. "autoload": {
  8954. "classmap": [
  8955. "src/"
  8956. ]
  8957. },
  8958. "notification-url": "https://packagist.org/downloads/",
  8959. "license": [
  8960. "BSD-3-Clause"
  8961. ],
  8962. "authors": [
  8963. {
  8964. "name": "Sebastian Bergmann",
  8965. "email": "[email protected]",
  8966. "role": "lead"
  8967. }
  8968. ],
  8969. "description": "Collection of value objects that represent the types of the PHP type system",
  8970. "homepage": "https://github.com/sebastianbergmann/type",
  8971. "support": {
  8972. "issues": "https://github.com/sebastianbergmann/type/issues",
  8973. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  8974. },
  8975. "funding": [
  8976. {
  8977. "url": "https://github.com/sebastianbergmann",
  8978. "type": "github"
  8979. }
  8980. ],
  8981. "time": "2023-02-03T07:10:45+00:00"
  8982. },
  8983. {
  8984. "name": "sebastian/version",
  8985. "version": "4.0.1",
  8986. "source": {
  8987. "type": "git",
  8988. "url": "https://github.com/sebastianbergmann/version.git",
  8989. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  8990. },
  8991. "dist": {
  8992. "type": "zip",
  8993. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  8994. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  8995. "shasum": ""
  8996. },
  8997. "require": {
  8998. "php": ">=8.1"
  8999. },
  9000. "type": "library",
  9001. "extra": {
  9002. "branch-alias": {
  9003. "dev-main": "4.0-dev"
  9004. }
  9005. },
  9006. "autoload": {
  9007. "classmap": [
  9008. "src/"
  9009. ]
  9010. },
  9011. "notification-url": "https://packagist.org/downloads/",
  9012. "license": [
  9013. "BSD-3-Clause"
  9014. ],
  9015. "authors": [
  9016. {
  9017. "name": "Sebastian Bergmann",
  9018. "email": "[email protected]",
  9019. "role": "lead"
  9020. }
  9021. ],
  9022. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9023. "homepage": "https://github.com/sebastianbergmann/version",
  9024. "support": {
  9025. "issues": "https://github.com/sebastianbergmann/version/issues",
  9026. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9027. },
  9028. "funding": [
  9029. {
  9030. "url": "https://github.com/sebastianbergmann",
  9031. "type": "github"
  9032. }
  9033. ],
  9034. "time": "2023-02-07T11:34:05+00:00"
  9035. },
  9036. {
  9037. "name": "slevomat/coding-standard",
  9038. "version": "8.14.1",
  9039. "source": {
  9040. "type": "git",
  9041. "url": "https://github.com/slevomat/coding-standard.git",
  9042. "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926"
  9043. },
  9044. "dist": {
  9045. "type": "zip",
  9046. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/fea1fd6f137cc84f9cba0ae30d549615dbc6a926",
  9047. "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926",
  9048. "shasum": ""
  9049. },
  9050. "require": {
  9051. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0",
  9052. "php": "^7.2 || ^8.0",
  9053. "phpstan/phpdoc-parser": "^1.23.1",
  9054. "squizlabs/php_codesniffer": "^3.7.1"
  9055. },
  9056. "require-dev": {
  9057. "phing/phing": "2.17.4",
  9058. "php-parallel-lint/php-parallel-lint": "1.3.2",
  9059. "phpstan/phpstan": "1.10.37",
  9060. "phpstan/phpstan-deprecation-rules": "1.1.4",
  9061. "phpstan/phpstan-phpunit": "1.3.14",
  9062. "phpstan/phpstan-strict-rules": "1.5.1",
  9063. "phpunit/phpunit": "8.5.21|9.6.8|10.3.5"
  9064. },
  9065. "type": "phpcodesniffer-standard",
  9066. "extra": {
  9067. "branch-alias": {
  9068. "dev-master": "8.x-dev"
  9069. }
  9070. },
  9071. "autoload": {
  9072. "psr-4": {
  9073. "SlevomatCodingStandard\\": "SlevomatCodingStandard/"
  9074. }
  9075. },
  9076. "notification-url": "https://packagist.org/downloads/",
  9077. "license": [
  9078. "MIT"
  9079. ],
  9080. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  9081. "keywords": [
  9082. "dev",
  9083. "phpcs"
  9084. ],
  9085. "support": {
  9086. "issues": "https://github.com/slevomat/coding-standard/issues",
  9087. "source": "https://github.com/slevomat/coding-standard/tree/8.14.1"
  9088. },
  9089. "funding": [
  9090. {
  9091. "url": "https://github.com/kukulich",
  9092. "type": "github"
  9093. },
  9094. {
  9095. "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
  9096. "type": "tidelift"
  9097. }
  9098. ],
  9099. "time": "2023-10-08T07:28:08+00:00"
  9100. },
  9101. {
  9102. "name": "squizlabs/php_codesniffer",
  9103. "version": "3.8.1",
  9104. "source": {
  9105. "type": "git",
  9106. "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
  9107. "reference": "14f5fff1e64118595db5408e946f3a22c75807f7"
  9108. },
  9109. "dist": {
  9110. "type": "zip",
  9111. "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/14f5fff1e64118595db5408e946f3a22c75807f7",
  9112. "reference": "14f5fff1e64118595db5408e946f3a22c75807f7",
  9113. "shasum": ""
  9114. },
  9115. "require": {
  9116. "ext-simplexml": "*",
  9117. "ext-tokenizer": "*",
  9118. "ext-xmlwriter": "*",
  9119. "php": ">=5.4.0"
  9120. },
  9121. "require-dev": {
  9122. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
  9123. },
  9124. "bin": [
  9125. "bin/phpcbf",
  9126. "bin/phpcs"
  9127. ],
  9128. "type": "library",
  9129. "extra": {
  9130. "branch-alias": {
  9131. "dev-master": "3.x-dev"
  9132. }
  9133. },
  9134. "notification-url": "https://packagist.org/downloads/",
  9135. "license": [
  9136. "BSD-3-Clause"
  9137. ],
  9138. "authors": [
  9139. {
  9140. "name": "Greg Sherwood",
  9141. "role": "Former lead"
  9142. },
  9143. {
  9144. "name": "Juliette Reinders Folmer",
  9145. "role": "Current lead"
  9146. },
  9147. {
  9148. "name": "Contributors",
  9149. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
  9150. }
  9151. ],
  9152. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  9153. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  9154. "keywords": [
  9155. "phpcs",
  9156. "standards",
  9157. "static analysis"
  9158. ],
  9159. "support": {
  9160. "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
  9161. "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
  9162. "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  9163. "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
  9164. },
  9165. "funding": [
  9166. {
  9167. "url": "https://github.com/PHPCSStandards",
  9168. "type": "github"
  9169. },
  9170. {
  9171. "url": "https://github.com/jrfnl",
  9172. "type": "github"
  9173. },
  9174. {
  9175. "url": "https://opencollective.com/php_codesniffer",
  9176. "type": "open_collective"
  9177. }
  9178. ],
  9179. "time": "2024-01-11T20:47:48+00:00"
  9180. },
  9181. {
  9182. "name": "symfony/cache",
  9183. "version": "v7.0.3",
  9184. "source": {
  9185. "type": "git",
  9186. "url": "https://github.com/symfony/cache.git",
  9187. "reference": "2207eceb2433d74df81232d97439bf508cb9e050"
  9188. },
  9189. "dist": {
  9190. "type": "zip",
  9191. "url": "https://api.github.com/repos/symfony/cache/zipball/2207eceb2433d74df81232d97439bf508cb9e050",
  9192. "reference": "2207eceb2433d74df81232d97439bf508cb9e050",
  9193. "shasum": ""
  9194. },
  9195. "require": {
  9196. "php": ">=8.2",
  9197. "psr/cache": "^2.0|^3.0",
  9198. "psr/log": "^1.1|^2|^3",
  9199. "symfony/cache-contracts": "^2.5|^3",
  9200. "symfony/service-contracts": "^2.5|^3",
  9201. "symfony/var-exporter": "^6.4|^7.0"
  9202. },
  9203. "conflict": {
  9204. "doctrine/dbal": "<3.6",
  9205. "symfony/dependency-injection": "<6.4",
  9206. "symfony/http-kernel": "<6.4",
  9207. "symfony/var-dumper": "<6.4"
  9208. },
  9209. "provide": {
  9210. "psr/cache-implementation": "2.0|3.0",
  9211. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  9212. "symfony/cache-implementation": "1.1|2.0|3.0"
  9213. },
  9214. "require-dev": {
  9215. "cache/integration-tests": "dev-master",
  9216. "doctrine/dbal": "^3.6|^4",
  9217. "predis/predis": "^1.1|^2.0",
  9218. "psr/simple-cache": "^1.0|^2.0|^3.0",
  9219. "symfony/config": "^6.4|^7.0",
  9220. "symfony/dependency-injection": "^6.4|^7.0",
  9221. "symfony/filesystem": "^6.4|^7.0",
  9222. "symfony/http-kernel": "^6.4|^7.0",
  9223. "symfony/messenger": "^6.4|^7.0",
  9224. "symfony/var-dumper": "^6.4|^7.0"
  9225. },
  9226. "type": "library",
  9227. "autoload": {
  9228. "psr-4": {
  9229. "Symfony\\Component\\Cache\\": ""
  9230. },
  9231. "classmap": [
  9232. "Traits/ValueWrapper.php"
  9233. ],
  9234. "exclude-from-classmap": [
  9235. "/Tests/"
  9236. ]
  9237. },
  9238. "notification-url": "https://packagist.org/downloads/",
  9239. "license": [
  9240. "MIT"
  9241. ],
  9242. "authors": [
  9243. {
  9244. "name": "Nicolas Grekas",
  9245. "email": "[email protected]"
  9246. },
  9247. {
  9248. "name": "Symfony Community",
  9249. "homepage": "https://symfony.com/contributors"
  9250. }
  9251. ],
  9252. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  9253. "homepage": "https://symfony.com",
  9254. "keywords": [
  9255. "caching",
  9256. "psr6"
  9257. ],
  9258. "support": {
  9259. "source": "https://github.com/symfony/cache/tree/v7.0.3"
  9260. },
  9261. "funding": [
  9262. {
  9263. "url": "https://symfony.com/sponsor",
  9264. "type": "custom"
  9265. },
  9266. {
  9267. "url": "https://github.com/fabpot",
  9268. "type": "github"
  9269. },
  9270. {
  9271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9272. "type": "tidelift"
  9273. }
  9274. ],
  9275. "time": "2024-01-23T15:02:46+00:00"
  9276. },
  9277. {
  9278. "name": "symfony/cache-contracts",
  9279. "version": "v3.4.0",
  9280. "source": {
  9281. "type": "git",
  9282. "url": "https://github.com/symfony/cache-contracts.git",
  9283. "reference": "1d74b127da04ffa87aa940abe15446fa89653778"
  9284. },
  9285. "dist": {
  9286. "type": "zip",
  9287. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778",
  9288. "reference": "1d74b127da04ffa87aa940abe15446fa89653778",
  9289. "shasum": ""
  9290. },
  9291. "require": {
  9292. "php": ">=8.1",
  9293. "psr/cache": "^3.0"
  9294. },
  9295. "type": "library",
  9296. "extra": {
  9297. "branch-alias": {
  9298. "dev-main": "3.4-dev"
  9299. },
  9300. "thanks": {
  9301. "name": "symfony/contracts",
  9302. "url": "https://github.com/symfony/contracts"
  9303. }
  9304. },
  9305. "autoload": {
  9306. "psr-4": {
  9307. "Symfony\\Contracts\\Cache\\": ""
  9308. }
  9309. },
  9310. "notification-url": "https://packagist.org/downloads/",
  9311. "license": [
  9312. "MIT"
  9313. ],
  9314. "authors": [
  9315. {
  9316. "name": "Nicolas Grekas",
  9317. "email": "[email protected]"
  9318. },
  9319. {
  9320. "name": "Symfony Community",
  9321. "homepage": "https://symfony.com/contributors"
  9322. }
  9323. ],
  9324. "description": "Generic abstractions related to caching",
  9325. "homepage": "https://symfony.com",
  9326. "keywords": [
  9327. "abstractions",
  9328. "contracts",
  9329. "decoupling",
  9330. "interfaces",
  9331. "interoperability",
  9332. "standards"
  9333. ],
  9334. "support": {
  9335. "source": "https://github.com/symfony/cache-contracts/tree/v3.4.0"
  9336. },
  9337. "funding": [
  9338. {
  9339. "url": "https://symfony.com/sponsor",
  9340. "type": "custom"
  9341. },
  9342. {
  9343. "url": "https://github.com/fabpot",
  9344. "type": "github"
  9345. },
  9346. {
  9347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9348. "type": "tidelift"
  9349. }
  9350. ],
  9351. "time": "2023-09-25T12:52:38+00:00"
  9352. },
  9353. {
  9354. "name": "symfony/console",
  9355. "version": "v7.0.3",
  9356. "source": {
  9357. "type": "git",
  9358. "url": "https://github.com/symfony/console.git",
  9359. "reference": "c5010d50f1ee4b25cfa0201d9915cf1b14071456"
  9360. },
  9361. "dist": {
  9362. "type": "zip",
  9363. "url": "https://api.github.com/repos/symfony/console/zipball/c5010d50f1ee4b25cfa0201d9915cf1b14071456",
  9364. "reference": "c5010d50f1ee4b25cfa0201d9915cf1b14071456",
  9365. "shasum": ""
  9366. },
  9367. "require": {
  9368. "php": ">=8.2",
  9369. "symfony/polyfill-mbstring": "~1.0",
  9370. "symfony/service-contracts": "^2.5|^3",
  9371. "symfony/string": "^6.4|^7.0"
  9372. },
  9373. "conflict": {
  9374. "symfony/dependency-injection": "<6.4",
  9375. "symfony/dotenv": "<6.4",
  9376. "symfony/event-dispatcher": "<6.4",
  9377. "symfony/lock": "<6.4",
  9378. "symfony/process": "<6.4"
  9379. },
  9380. "provide": {
  9381. "psr/log-implementation": "1.0|2.0|3.0"
  9382. },
  9383. "require-dev": {
  9384. "psr/log": "^1|^2|^3",
  9385. "symfony/config": "^6.4|^7.0",
  9386. "symfony/dependency-injection": "^6.4|^7.0",
  9387. "symfony/event-dispatcher": "^6.4|^7.0",
  9388. "symfony/http-foundation": "^6.4|^7.0",
  9389. "symfony/http-kernel": "^6.4|^7.0",
  9390. "symfony/lock": "^6.4|^7.0",
  9391. "symfony/messenger": "^6.4|^7.0",
  9392. "symfony/process": "^6.4|^7.0",
  9393. "symfony/stopwatch": "^6.4|^7.0",
  9394. "symfony/var-dumper": "^6.4|^7.0"
  9395. },
  9396. "type": "library",
  9397. "autoload": {
  9398. "psr-4": {
  9399. "Symfony\\Component\\Console\\": ""
  9400. },
  9401. "exclude-from-classmap": [
  9402. "/Tests/"
  9403. ]
  9404. },
  9405. "notification-url": "https://packagist.org/downloads/",
  9406. "license": [
  9407. "MIT"
  9408. ],
  9409. "authors": [
  9410. {
  9411. "name": "Fabien Potencier",
  9412. "email": "[email protected]"
  9413. },
  9414. {
  9415. "name": "Symfony Community",
  9416. "homepage": "https://symfony.com/contributors"
  9417. }
  9418. ],
  9419. "description": "Eases the creation of beautiful and testable command line interfaces",
  9420. "homepage": "https://symfony.com",
  9421. "keywords": [
  9422. "cli",
  9423. "command-line",
  9424. "console",
  9425. "terminal"
  9426. ],
  9427. "support": {
  9428. "source": "https://github.com/symfony/console/tree/v7.0.3"
  9429. },
  9430. "funding": [
  9431. {
  9432. "url": "https://symfony.com/sponsor",
  9433. "type": "custom"
  9434. },
  9435. {
  9436. "url": "https://github.com/fabpot",
  9437. "type": "github"
  9438. },
  9439. {
  9440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9441. "type": "tidelift"
  9442. }
  9443. ],
  9444. "time": "2024-01-23T15:02:46+00:00"
  9445. },
  9446. {
  9447. "name": "symfony/event-dispatcher",
  9448. "version": "v7.0.3",
  9449. "source": {
  9450. "type": "git",
  9451. "url": "https://github.com/symfony/event-dispatcher.git",
  9452. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e"
  9453. },
  9454. "dist": {
  9455. "type": "zip",
  9456. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e",
  9457. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e",
  9458. "shasum": ""
  9459. },
  9460. "require": {
  9461. "php": ">=8.2",
  9462. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9463. },
  9464. "conflict": {
  9465. "symfony/dependency-injection": "<6.4",
  9466. "symfony/service-contracts": "<2.5"
  9467. },
  9468. "provide": {
  9469. "psr/event-dispatcher-implementation": "1.0",
  9470. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9471. },
  9472. "require-dev": {
  9473. "psr/log": "^1|^2|^3",
  9474. "symfony/config": "^6.4|^7.0",
  9475. "symfony/dependency-injection": "^6.4|^7.0",
  9476. "symfony/error-handler": "^6.4|^7.0",
  9477. "symfony/expression-language": "^6.4|^7.0",
  9478. "symfony/http-foundation": "^6.4|^7.0",
  9479. "symfony/service-contracts": "^2.5|^3",
  9480. "symfony/stopwatch": "^6.4|^7.0"
  9481. },
  9482. "type": "library",
  9483. "autoload": {
  9484. "psr-4": {
  9485. "Symfony\\Component\\EventDispatcher\\": ""
  9486. },
  9487. "exclude-from-classmap": [
  9488. "/Tests/"
  9489. ]
  9490. },
  9491. "notification-url": "https://packagist.org/downloads/",
  9492. "license": [
  9493. "MIT"
  9494. ],
  9495. "authors": [
  9496. {
  9497. "name": "Fabien Potencier",
  9498. "email": "[email protected]"
  9499. },
  9500. {
  9501. "name": "Symfony Community",
  9502. "homepage": "https://symfony.com/contributors"
  9503. }
  9504. ],
  9505. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9506. "homepage": "https://symfony.com",
  9507. "support": {
  9508. "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.3"
  9509. },
  9510. "funding": [
  9511. {
  9512. "url": "https://symfony.com/sponsor",
  9513. "type": "custom"
  9514. },
  9515. {
  9516. "url": "https://github.com/fabpot",
  9517. "type": "github"
  9518. },
  9519. {
  9520. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9521. "type": "tidelift"
  9522. }
  9523. ],
  9524. "time": "2024-01-23T15:02:46+00:00"
  9525. },
  9526. {
  9527. "name": "symfony/event-dispatcher-contracts",
  9528. "version": "v3.4.0",
  9529. "source": {
  9530. "type": "git",
  9531. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9532. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  9533. },
  9534. "dist": {
  9535. "type": "zip",
  9536. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  9537. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  9538. "shasum": ""
  9539. },
  9540. "require": {
  9541. "php": ">=8.1",
  9542. "psr/event-dispatcher": "^1"
  9543. },
  9544. "type": "library",
  9545. "extra": {
  9546. "branch-alias": {
  9547. "dev-main": "3.4-dev"
  9548. },
  9549. "thanks": {
  9550. "name": "symfony/contracts",
  9551. "url": "https://github.com/symfony/contracts"
  9552. }
  9553. },
  9554. "autoload": {
  9555. "psr-4": {
  9556. "Symfony\\Contracts\\EventDispatcher\\": ""
  9557. }
  9558. },
  9559. "notification-url": "https://packagist.org/downloads/",
  9560. "license": [
  9561. "MIT"
  9562. ],
  9563. "authors": [
  9564. {
  9565. "name": "Nicolas Grekas",
  9566. "email": "[email protected]"
  9567. },
  9568. {
  9569. "name": "Symfony Community",
  9570. "homepage": "https://symfony.com/contributors"
  9571. }
  9572. ],
  9573. "description": "Generic abstractions related to dispatching event",
  9574. "homepage": "https://symfony.com",
  9575. "keywords": [
  9576. "abstractions",
  9577. "contracts",
  9578. "decoupling",
  9579. "interfaces",
  9580. "interoperability",
  9581. "standards"
  9582. ],
  9583. "support": {
  9584. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  9585. },
  9586. "funding": [
  9587. {
  9588. "url": "https://symfony.com/sponsor",
  9589. "type": "custom"
  9590. },
  9591. {
  9592. "url": "https://github.com/fabpot",
  9593. "type": "github"
  9594. },
  9595. {
  9596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9597. "type": "tidelift"
  9598. }
  9599. ],
  9600. "time": "2023-05-23T14:45:45+00:00"
  9601. },
  9602. {
  9603. "name": "symfony/filesystem",
  9604. "version": "v7.0.3",
  9605. "source": {
  9606. "type": "git",
  9607. "url": "https://github.com/symfony/filesystem.git",
  9608. "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12"
  9609. },
  9610. "dist": {
  9611. "type": "zip",
  9612. "url": "https://api.github.com/repos/symfony/filesystem/zipball/2890e3a825bc0c0558526c04499c13f83e1b6b12",
  9613. "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12",
  9614. "shasum": ""
  9615. },
  9616. "require": {
  9617. "php": ">=8.2",
  9618. "symfony/polyfill-ctype": "~1.8",
  9619. "symfony/polyfill-mbstring": "~1.8"
  9620. },
  9621. "type": "library",
  9622. "autoload": {
  9623. "psr-4": {
  9624. "Symfony\\Component\\Filesystem\\": ""
  9625. },
  9626. "exclude-from-classmap": [
  9627. "/Tests/"
  9628. ]
  9629. },
  9630. "notification-url": "https://packagist.org/downloads/",
  9631. "license": [
  9632. "MIT"
  9633. ],
  9634. "authors": [
  9635. {
  9636. "name": "Fabien Potencier",
  9637. "email": "[email protected]"
  9638. },
  9639. {
  9640. "name": "Symfony Community",
  9641. "homepage": "https://symfony.com/contributors"
  9642. }
  9643. ],
  9644. "description": "Provides basic utilities for the filesystem",
  9645. "homepage": "https://symfony.com",
  9646. "support": {
  9647. "source": "https://github.com/symfony/filesystem/tree/v7.0.3"
  9648. },
  9649. "funding": [
  9650. {
  9651. "url": "https://symfony.com/sponsor",
  9652. "type": "custom"
  9653. },
  9654. {
  9655. "url": "https://github.com/fabpot",
  9656. "type": "github"
  9657. },
  9658. {
  9659. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9660. "type": "tidelift"
  9661. }
  9662. ],
  9663. "time": "2024-01-23T15:02:46+00:00"
  9664. },
  9665. {
  9666. "name": "symfony/finder",
  9667. "version": "v7.0.0",
  9668. "source": {
  9669. "type": "git",
  9670. "url": "https://github.com/symfony/finder.git",
  9671. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56"
  9672. },
  9673. "dist": {
  9674. "type": "zip",
  9675. "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  9676. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  9677. "shasum": ""
  9678. },
  9679. "require": {
  9680. "php": ">=8.2"
  9681. },
  9682. "require-dev": {
  9683. "symfony/filesystem": "^6.4|^7.0"
  9684. },
  9685. "type": "library",
  9686. "autoload": {
  9687. "psr-4": {
  9688. "Symfony\\Component\\Finder\\": ""
  9689. },
  9690. "exclude-from-classmap": [
  9691. "/Tests/"
  9692. ]
  9693. },
  9694. "notification-url": "https://packagist.org/downloads/",
  9695. "license": [
  9696. "MIT"
  9697. ],
  9698. "authors": [
  9699. {
  9700. "name": "Fabien Potencier",
  9701. "email": "[email protected]"
  9702. },
  9703. {
  9704. "name": "Symfony Community",
  9705. "homepage": "https://symfony.com/contributors"
  9706. }
  9707. ],
  9708. "description": "Finds files and directories via an intuitive fluent interface",
  9709. "homepage": "https://symfony.com",
  9710. "support": {
  9711. "source": "https://github.com/symfony/finder/tree/v7.0.0"
  9712. },
  9713. "funding": [
  9714. {
  9715. "url": "https://symfony.com/sponsor",
  9716. "type": "custom"
  9717. },
  9718. {
  9719. "url": "https://github.com/fabpot",
  9720. "type": "github"
  9721. },
  9722. {
  9723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9724. "type": "tidelift"
  9725. }
  9726. ],
  9727. "time": "2023-10-31T17:59:56+00:00"
  9728. },
  9729. {
  9730. "name": "symfony/polyfill-php81",
  9731. "version": "v1.29.0",
  9732. "source": {
  9733. "type": "git",
  9734. "url": "https://github.com/symfony/polyfill-php81.git",
  9735. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  9736. },
  9737. "dist": {
  9738. "type": "zip",
  9739. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  9740. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  9741. "shasum": ""
  9742. },
  9743. "require": {
  9744. "php": ">=7.1"
  9745. },
  9746. "type": "library",
  9747. "extra": {
  9748. "thanks": {
  9749. "name": "symfony/polyfill",
  9750. "url": "https://github.com/symfony/polyfill"
  9751. }
  9752. },
  9753. "autoload": {
  9754. "files": [
  9755. "bootstrap.php"
  9756. ],
  9757. "psr-4": {
  9758. "Symfony\\Polyfill\\Php81\\": ""
  9759. },
  9760. "classmap": [
  9761. "Resources/stubs"
  9762. ]
  9763. },
  9764. "notification-url": "https://packagist.org/downloads/",
  9765. "license": [
  9766. "MIT"
  9767. ],
  9768. "authors": [
  9769. {
  9770. "name": "Nicolas Grekas",
  9771. "email": "[email protected]"
  9772. },
  9773. {
  9774. "name": "Symfony Community",
  9775. "homepage": "https://symfony.com/contributors"
  9776. }
  9777. ],
  9778. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9779. "homepage": "https://symfony.com",
  9780. "keywords": [
  9781. "compatibility",
  9782. "polyfill",
  9783. "portable",
  9784. "shim"
  9785. ],
  9786. "support": {
  9787. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  9788. },
  9789. "funding": [
  9790. {
  9791. "url": "https://symfony.com/sponsor",
  9792. "type": "custom"
  9793. },
  9794. {
  9795. "url": "https://github.com/fabpot",
  9796. "type": "github"
  9797. },
  9798. {
  9799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9800. "type": "tidelift"
  9801. }
  9802. ],
  9803. "time": "2024-01-29T20:11:03+00:00"
  9804. },
  9805. {
  9806. "name": "symfony/process",
  9807. "version": "v7.0.3",
  9808. "source": {
  9809. "type": "git",
  9810. "url": "https://github.com/symfony/process.git",
  9811. "reference": "937a195147e0c27b2759ade834169ed006d0bc74"
  9812. },
  9813. "dist": {
  9814. "type": "zip",
  9815. "url": "https://api.github.com/repos/symfony/process/zipball/937a195147e0c27b2759ade834169ed006d0bc74",
  9816. "reference": "937a195147e0c27b2759ade834169ed006d0bc74",
  9817. "shasum": ""
  9818. },
  9819. "require": {
  9820. "php": ">=8.2"
  9821. },
  9822. "type": "library",
  9823. "autoload": {
  9824. "psr-4": {
  9825. "Symfony\\Component\\Process\\": ""
  9826. },
  9827. "exclude-from-classmap": [
  9828. "/Tests/"
  9829. ]
  9830. },
  9831. "notification-url": "https://packagist.org/downloads/",
  9832. "license": [
  9833. "MIT"
  9834. ],
  9835. "authors": [
  9836. {
  9837. "name": "Fabien Potencier",
  9838. "email": "[email protected]"
  9839. },
  9840. {
  9841. "name": "Symfony Community",
  9842. "homepage": "https://symfony.com/contributors"
  9843. }
  9844. ],
  9845. "description": "Executes commands in sub-processes",
  9846. "homepage": "https://symfony.com",
  9847. "support": {
  9848. "source": "https://github.com/symfony/process/tree/v7.0.3"
  9849. },
  9850. "funding": [
  9851. {
  9852. "url": "https://symfony.com/sponsor",
  9853. "type": "custom"
  9854. },
  9855. {
  9856. "url": "https://github.com/fabpot",
  9857. "type": "github"
  9858. },
  9859. {
  9860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9861. "type": "tidelift"
  9862. }
  9863. ],
  9864. "time": "2024-01-23T15:02:46+00:00"
  9865. },
  9866. {
  9867. "name": "symfony/stopwatch",
  9868. "version": "v7.0.3",
  9869. "source": {
  9870. "type": "git",
  9871. "url": "https://github.com/symfony/stopwatch.git",
  9872. "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112"
  9873. },
  9874. "dist": {
  9875. "type": "zip",
  9876. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/983900d6fddf2b0cbaacacbbad07610854bd8112",
  9877. "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112",
  9878. "shasum": ""
  9879. },
  9880. "require": {
  9881. "php": ">=8.2",
  9882. "symfony/service-contracts": "^2.5|^3"
  9883. },
  9884. "type": "library",
  9885. "autoload": {
  9886. "psr-4": {
  9887. "Symfony\\Component\\Stopwatch\\": ""
  9888. },
  9889. "exclude-from-classmap": [
  9890. "/Tests/"
  9891. ]
  9892. },
  9893. "notification-url": "https://packagist.org/downloads/",
  9894. "license": [
  9895. "MIT"
  9896. ],
  9897. "authors": [
  9898. {
  9899. "name": "Fabien Potencier",
  9900. "email": "[email protected]"
  9901. },
  9902. {
  9903. "name": "Symfony Community",
  9904. "homepage": "https://symfony.com/contributors"
  9905. }
  9906. ],
  9907. "description": "Provides a way to profile code",
  9908. "homepage": "https://symfony.com",
  9909. "support": {
  9910. "source": "https://github.com/symfony/stopwatch/tree/v7.0.3"
  9911. },
  9912. "funding": [
  9913. {
  9914. "url": "https://symfony.com/sponsor",
  9915. "type": "custom"
  9916. },
  9917. {
  9918. "url": "https://github.com/fabpot",
  9919. "type": "github"
  9920. },
  9921. {
  9922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9923. "type": "tidelift"
  9924. }
  9925. ],
  9926. "time": "2024-01-23T15:02:46+00:00"
  9927. },
  9928. {
  9929. "name": "symfony/string",
  9930. "version": "v7.0.3",
  9931. "source": {
  9932. "type": "git",
  9933. "url": "https://github.com/symfony/string.git",
  9934. "reference": "524aac4a280b90a4420d8d6a040718d0586505ac"
  9935. },
  9936. "dist": {
  9937. "type": "zip",
  9938. "url": "https://api.github.com/repos/symfony/string/zipball/524aac4a280b90a4420d8d6a040718d0586505ac",
  9939. "reference": "524aac4a280b90a4420d8d6a040718d0586505ac",
  9940. "shasum": ""
  9941. },
  9942. "require": {
  9943. "php": ">=8.2",
  9944. "symfony/polyfill-ctype": "~1.8",
  9945. "symfony/polyfill-intl-grapheme": "~1.0",
  9946. "symfony/polyfill-intl-normalizer": "~1.0",
  9947. "symfony/polyfill-mbstring": "~1.0"
  9948. },
  9949. "conflict": {
  9950. "symfony/translation-contracts": "<2.5"
  9951. },
  9952. "require-dev": {
  9953. "symfony/error-handler": "^6.4|^7.0",
  9954. "symfony/http-client": "^6.4|^7.0",
  9955. "symfony/intl": "^6.4|^7.0",
  9956. "symfony/translation-contracts": "^2.5|^3.0",
  9957. "symfony/var-exporter": "^6.4|^7.0"
  9958. },
  9959. "type": "library",
  9960. "autoload": {
  9961. "files": [
  9962. "Resources/functions.php"
  9963. ],
  9964. "psr-4": {
  9965. "Symfony\\Component\\String\\": ""
  9966. },
  9967. "exclude-from-classmap": [
  9968. "/Tests/"
  9969. ]
  9970. },
  9971. "notification-url": "https://packagist.org/downloads/",
  9972. "license": [
  9973. "MIT"
  9974. ],
  9975. "authors": [
  9976. {
  9977. "name": "Nicolas Grekas",
  9978. "email": "[email protected]"
  9979. },
  9980. {
  9981. "name": "Symfony Community",
  9982. "homepage": "https://symfony.com/contributors"
  9983. }
  9984. ],
  9985. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9986. "homepage": "https://symfony.com",
  9987. "keywords": [
  9988. "grapheme",
  9989. "i18n",
  9990. "string",
  9991. "unicode",
  9992. "utf-8",
  9993. "utf8"
  9994. ],
  9995. "support": {
  9996. "source": "https://github.com/symfony/string/tree/v7.0.3"
  9997. },
  9998. "funding": [
  9999. {
  10000. "url": "https://symfony.com/sponsor",
  10001. "type": "custom"
  10002. },
  10003. {
  10004. "url": "https://github.com/fabpot",
  10005. "type": "github"
  10006. },
  10007. {
  10008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10009. "type": "tidelift"
  10010. }
  10011. ],
  10012. "time": "2024-01-29T15:41:16+00:00"
  10013. },
  10014. {
  10015. "name": "symfony/var-exporter",
  10016. "version": "v7.0.3",
  10017. "source": {
  10018. "type": "git",
  10019. "url": "https://github.com/symfony/var-exporter.git",
  10020. "reference": "1fb79308cb5fc2b44bff6e8af10a5af6812e05b8"
  10021. },
  10022. "dist": {
  10023. "type": "zip",
  10024. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/1fb79308cb5fc2b44bff6e8af10a5af6812e05b8",
  10025. "reference": "1fb79308cb5fc2b44bff6e8af10a5af6812e05b8",
  10026. "shasum": ""
  10027. },
  10028. "require": {
  10029. "php": ">=8.2"
  10030. },
  10031. "require-dev": {
  10032. "symfony/var-dumper": "^6.4|^7.0"
  10033. },
  10034. "type": "library",
  10035. "autoload": {
  10036. "psr-4": {
  10037. "Symfony\\Component\\VarExporter\\": ""
  10038. },
  10039. "exclude-from-classmap": [
  10040. "/Tests/"
  10041. ]
  10042. },
  10043. "notification-url": "https://packagist.org/downloads/",
  10044. "license": [
  10045. "MIT"
  10046. ],
  10047. "authors": [
  10048. {
  10049. "name": "Nicolas Grekas",
  10050. "email": "[email protected]"
  10051. },
  10052. {
  10053. "name": "Symfony Community",
  10054. "homepage": "https://symfony.com/contributors"
  10055. }
  10056. ],
  10057. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  10058. "homepage": "https://symfony.com",
  10059. "keywords": [
  10060. "clone",
  10061. "construct",
  10062. "export",
  10063. "hydrate",
  10064. "instantiate",
  10065. "lazy-loading",
  10066. "proxy",
  10067. "serialize"
  10068. ],
  10069. "support": {
  10070. "source": "https://github.com/symfony/var-exporter/tree/v7.0.3"
  10071. },
  10072. "funding": [
  10073. {
  10074. "url": "https://symfony.com/sponsor",
  10075. "type": "custom"
  10076. },
  10077. {
  10078. "url": "https://github.com/fabpot",
  10079. "type": "github"
  10080. },
  10081. {
  10082. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10083. "type": "tidelift"
  10084. }
  10085. ],
  10086. "time": "2024-01-23T15:02:46+00:00"
  10087. },
  10088. {
  10089. "name": "theseer/tokenizer",
  10090. "version": "1.2.2",
  10091. "source": {
  10092. "type": "git",
  10093. "url": "https://github.com/theseer/tokenizer.git",
  10094. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  10095. },
  10096. "dist": {
  10097. "type": "zip",
  10098. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10099. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10100. "shasum": ""
  10101. },
  10102. "require": {
  10103. "ext-dom": "*",
  10104. "ext-tokenizer": "*",
  10105. "ext-xmlwriter": "*",
  10106. "php": "^7.2 || ^8.0"
  10107. },
  10108. "type": "library",
  10109. "autoload": {
  10110. "classmap": [
  10111. "src/"
  10112. ]
  10113. },
  10114. "notification-url": "https://packagist.org/downloads/",
  10115. "license": [
  10116. "BSD-3-Clause"
  10117. ],
  10118. "authors": [
  10119. {
  10120. "name": "Arne Blankerts",
  10121. "email": "[email protected]",
  10122. "role": "Developer"
  10123. }
  10124. ],
  10125. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10126. "support": {
  10127. "issues": "https://github.com/theseer/tokenizer/issues",
  10128. "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
  10129. },
  10130. "funding": [
  10131. {
  10132. "url": "https://github.com/theseer",
  10133. "type": "github"
  10134. }
  10135. ],
  10136. "time": "2023-11-20T00:12:19+00:00"
  10137. }
  10138. ],
  10139. "aliases": [],
  10140. "minimum-stability": "stable",
  10141. "stability-flags": [],
  10142. "prefer-stable": false,
  10143. "prefer-lowest": false,
  10144. "platform": {
  10145. "php": "^8.2",
  10146. "ext-bcmath": "*",
  10147. "ext-curl": "*",
  10148. "ext-fileinfo": "*",
  10149. "ext-json": "*",
  10150. "ext-mbstring": "*",
  10151. "ext-mysqli": "*",
  10152. "ext-openssl": "*",
  10153. "ext-pdo": "*",
  10154. "ext-posix": "*",
  10155. "ext-redis": "*",
  10156. "ext-xml": "*",
  10157. "ext-yaml": "*",
  10158. "ext-zip": "*"
  10159. },
  10160. "platform-dev": [],
  10161. "plugin-api-version": "2.6.0"
  10162. }