composer.lock 368 KB

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