composer.lock 340 KB

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