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