composer.lock 371 KB

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