composer.lock 433 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070
  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": "3fd68fad7b0a1d5ed580058ca79cf20e",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "riku@adbar.io"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  59. },
  60. "time": "2022-10-14T20:31:46+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/client",
  64. "version": "1.5.32",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  68. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  73. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.4.1",
  78. "clagiordano/weblibs-configmanager": "^1.0",
  79. "ext-curl": "*",
  80. "ext-json": "*",
  81. "ext-libxml": "*",
  82. "ext-mbstring": "*",
  83. "ext-openssl": "*",
  84. "ext-simplexml": "*",
  85. "ext-xmlwriter": "*",
  86. "guzzlehttp/guzzle": "^6.3|^7.0",
  87. "mtdowling/jmespath.php": "^2.5",
  88. "php": ">=5.5"
  89. },
  90. "require-dev": {
  91. "composer/composer": "^1.8",
  92. "drupal/coder": "^8.3",
  93. "ext-dom": "*",
  94. "ext-pcre": "*",
  95. "ext-sockets": "*",
  96. "ext-spl": "*",
  97. "league/climate": "^3.2.4",
  98. "mikey179/vfsstream": "^1.6",
  99. "monolog/monolog": "^1.24",
  100. "phpunit/phpunit": "^5.7|^6.6|^7.5|^8.5|^9.5",
  101. "psr/cache": "^1.0",
  102. "symfony/dotenv": "^3.4",
  103. "symfony/var-dumper": "^3.4"
  104. },
  105. "suggest": {
  106. "ext-sockets": "To use client-side monitoring"
  107. },
  108. "type": "library",
  109. "autoload": {
  110. "files": [
  111. "src/Functions.php"
  112. ],
  113. "psr-4": {
  114. "AlibabaCloud\\Client\\": "src"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "Apache-2.0"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Alibaba Cloud SDK",
  124. "email": "sdk-team@alibabacloud.com",
  125. "homepage": "http://www.alibabacloud.com"
  126. }
  127. ],
  128. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  129. "homepage": "https://www.alibabacloud.com/",
  130. "keywords": [
  131. "alibaba",
  132. "alibabacloud",
  133. "aliyun",
  134. "client",
  135. "cloud",
  136. "library",
  137. "sdk",
  138. "tool"
  139. ],
  140. "support": {
  141. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  142. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  143. },
  144. "time": "2022-12-09T04:05:55+00:00"
  145. },
  146. {
  147. "name": "alibabacloud/credentials",
  148. "version": "1.1.5",
  149. "source": {
  150. "type": "git",
  151. "url": "https://github.com/aliyun/credentials-php.git",
  152. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
  153. },
  154. "dist": {
  155. "type": "zip",
  156. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
  157. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
  158. "shasum": ""
  159. },
  160. "require": {
  161. "adbario/php-dot-notation": "^2.2",
  162. "alibabacloud/tea": "^3.0",
  163. "ext-curl": "*",
  164. "ext-json": "*",
  165. "ext-libxml": "*",
  166. "ext-mbstring": "*",
  167. "ext-openssl": "*",
  168. "ext-simplexml": "*",
  169. "ext-xmlwriter": "*",
  170. "guzzlehttp/guzzle": "^6.3|^7.0",
  171. "php": ">=5.6"
  172. },
  173. "require-dev": {
  174. "composer/composer": "^1.8",
  175. "drupal/coder": "^8.3",
  176. "ext-dom": "*",
  177. "ext-pcre": "*",
  178. "ext-sockets": "*",
  179. "ext-spl": "*",
  180. "mikey179/vfsstream": "^1.6",
  181. "monolog/monolog": "^1.24",
  182. "phpunit/phpunit": "^5.7|^6.6|^7.5",
  183. "psr/cache": "^1.0",
  184. "symfony/dotenv": "^3.4",
  185. "symfony/var-dumper": "^3.4"
  186. },
  187. "suggest": {
  188. "ext-sockets": "To use client-side monitoring"
  189. },
  190. "type": "library",
  191. "autoload": {
  192. "psr-4": {
  193. "AlibabaCloud\\Credentials\\": "src"
  194. }
  195. },
  196. "notification-url": "https://packagist.org/downloads/",
  197. "license": [
  198. "Apache-2.0"
  199. ],
  200. "authors": [
  201. {
  202. "name": "Alibaba Cloud SDK",
  203. "email": "sdk-team@alibabacloud.com",
  204. "homepage": "http://www.alibabacloud.com"
  205. }
  206. ],
  207. "description": "Alibaba Cloud Credentials for PHP",
  208. "homepage": "https://www.alibabacloud.com/",
  209. "keywords": [
  210. "alibaba",
  211. "alibabacloud",
  212. "aliyun",
  213. "client",
  214. "cloud",
  215. "credentials",
  216. "library",
  217. "sdk",
  218. "tool"
  219. ],
  220. "support": {
  221. "issues": "https://github.com/aliyun/credentials-php/issues",
  222. "source": "https://github.com/aliyun/credentials-php"
  223. },
  224. "time": "2023-04-11T02:12:12+00:00"
  225. },
  226. {
  227. "name": "alibabacloud/darabonba-openapi",
  228. "version": "0.2.10",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  232. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  237. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  238. "shasum": ""
  239. },
  240. "require": {
  241. "alibabacloud/credentials": "^1.1",
  242. "alibabacloud/gateway-spi": "^1",
  243. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  244. "alibabacloud/tea-utils": "^0.2.19",
  245. "alibabacloud/tea-xml": "^0.2",
  246. "php": ">5.5"
  247. },
  248. "type": "library",
  249. "autoload": {
  250. "psr-4": {
  251. "Darabonba\\OpenApi\\": "src"
  252. }
  253. },
  254. "notification-url": "https://packagist.org/downloads/",
  255. "license": [
  256. "Apache-2.0"
  257. ],
  258. "authors": [
  259. {
  260. "name": "Alibaba Cloud SDK",
  261. "email": "sdk-team@alibabacloud.com"
  262. }
  263. ],
  264. "description": "Alibaba Cloud OpenApi Client",
  265. "support": {
  266. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  267. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.10"
  268. },
  269. "time": "2023-11-23T07:01:20+00:00"
  270. },
  271. {
  272. "name": "alibabacloud/dm-20151123",
  273. "version": "1.0.9",
  274. "source": {
  275. "type": "git",
  276. "url": "https://github.com/alibabacloud-sdk-php/dm-20151123.git",
  277. "reference": "b167d114543dcde5cf70afc893844b47087415e2"
  278. },
  279. "dist": {
  280. "type": "zip",
  281. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dm-20151123/zipball/b167d114543dcde5cf70afc893844b47087415e2",
  282. "reference": "b167d114543dcde5cf70afc893844b47087415e2",
  283. "shasum": ""
  284. },
  285. "require": {
  286. "alibabacloud/darabonba-openapi": "^0.2.10",
  287. "alibabacloud/endpoint-util": "^0.1.0",
  288. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  289. "alibabacloud/tea-utils": "^0.2.19",
  290. "php": ">5.5"
  291. },
  292. "type": "library",
  293. "autoload": {
  294. "psr-4": {
  295. "AlibabaCloud\\SDK\\Dm\\V20151123\\": "src"
  296. }
  297. },
  298. "notification-url": "https://packagist.org/downloads/",
  299. "license": [
  300. "Apache-2.0"
  301. ],
  302. "authors": [
  303. {
  304. "name": "Alibaba Cloud SDK",
  305. "email": "sdk-team@alibabacloud.com"
  306. }
  307. ],
  308. "description": "Alibaba Cloud Dm (20151123) SDK Library for PHP",
  309. "support": {
  310. "source": "https://github.com/alibabacloud-sdk-php/dm-20151123/tree/1.0.9"
  311. },
  312. "time": "2024-01-15T17:08:44+00:00"
  313. },
  314. {
  315. "name": "alibabacloud/dm-20170622",
  316. "version": "1.2.0",
  317. "source": {
  318. "type": "git",
  319. "url": "https://github.com/alibabacloud-sdk-php/dm-20170622.git",
  320. "reference": "cf41389081797e75e8f5c430ec24df64ffc2c67d"
  321. },
  322. "dist": {
  323. "type": "zip",
  324. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dm-20170622/zipball/cf41389081797e75e8f5c430ec24df64ffc2c67d",
  325. "reference": "cf41389081797e75e8f5c430ec24df64ffc2c67d",
  326. "shasum": "",
  327. "mirrors": [
  328. {
  329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  330. "preferred": true
  331. }
  332. ]
  333. },
  334. "require": {
  335. "alibabacloud/darabonba-openapi": "^0.2.10",
  336. "alibabacloud/endpoint-util": "^0.1.0",
  337. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  338. "alibabacloud/tea-utils": "^0.2.19",
  339. "php": ">5.5"
  340. },
  341. "type": "library",
  342. "autoload": {
  343. "psr-4": {
  344. "AlibabaCloud\\SDK\\Dm\\V20170622\\": "src"
  345. }
  346. },
  347. "notification-url": "https://packagist.org/downloads/",
  348. "license": [
  349. "Apache-2.0"
  350. ],
  351. "authors": [
  352. {
  353. "name": "Alibaba Cloud SDK",
  354. "email": "sdk-team@alibabacloud.com"
  355. }
  356. ],
  357. "description": "Alibaba Cloud Dm (20170622) SDK Library for PHP",
  358. "support": {
  359. "source": "https://github.com/alibabacloud-sdk-php/dm-20170622/tree/1.2.0"
  360. },
  361. "time": "2024-01-15T17:09:47+00:00"
  362. },
  363. {
  364. "name": "alibabacloud/dysmsapi-20170525",
  365. "version": "2.0.24",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  369. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/75d8a8c7259f53e58ba3330e004150841be6010d",
  374. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d",
  375. "shasum": ""
  376. },
  377. "require": {
  378. "alibabacloud/darabonba-openapi": "^0.2.8",
  379. "alibabacloud/endpoint-util": "^0.1.0",
  380. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  381. "alibabacloud/tea-utils": "^0.2.19",
  382. "php": ">5.5"
  383. },
  384. "type": "library",
  385. "autoload": {
  386. "psr-4": {
  387. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  388. }
  389. },
  390. "notification-url": "https://packagist.org/downloads/",
  391. "license": [
  392. "Apache-2.0"
  393. ],
  394. "authors": [
  395. {
  396. "name": "Alibaba Cloud SDK",
  397. "email": "sdk-team@alibabacloud.com"
  398. }
  399. ],
  400. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  401. "support": {
  402. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/2.0.24"
  403. },
  404. "time": "2023-07-04T11:32:11+00:00"
  405. },
  406. {
  407. "name": "alibabacloud/endpoint-util",
  408. "version": "0.1.1",
  409. "source": {
  410. "type": "git",
  411. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  412. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  413. },
  414. "dist": {
  415. "type": "zip",
  416. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  417. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  418. "shasum": ""
  419. },
  420. "require": {
  421. "php": ">5.5"
  422. },
  423. "require-dev": {
  424. "phpunit/phpunit": "^4.8.35|^5.4.3"
  425. },
  426. "type": "library",
  427. "autoload": {
  428. "psr-4": {
  429. "AlibabaCloud\\Endpoint\\": "src"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "Apache-2.0"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Alibaba Cloud SDK",
  439. "email": "sdk-team@alibabacloud.com"
  440. }
  441. ],
  442. "description": "Alibaba Cloud Endpoint Library for PHP",
  443. "support": {
  444. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  445. },
  446. "time": "2020-06-04T10:57:15+00:00"
  447. },
  448. {
  449. "name": "alibabacloud/gateway-spi",
  450. "version": "1.0.0",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  454. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  459. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "alibabacloud/credentials": "^1.1",
  464. "php": ">5.5"
  465. },
  466. "type": "library",
  467. "autoload": {
  468. "psr-4": {
  469. "Darabonba\\GatewaySpi\\": "src"
  470. }
  471. },
  472. "notification-url": "https://packagist.org/downloads/",
  473. "license": [
  474. "Apache-2.0"
  475. ],
  476. "authors": [
  477. {
  478. "name": "Alibaba Cloud SDK",
  479. "email": "sdk-team@alibabacloud.com"
  480. }
  481. ],
  482. "description": "Alibaba Cloud Gateway SPI Client",
  483. "support": {
  484. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  485. },
  486. "time": "2022-07-14T05:31:35+00:00"
  487. },
  488. {
  489. "name": "alibabacloud/live",
  490. "version": "1.8.958",
  491. "source": {
  492. "type": "git",
  493. "url": "https://github.com/alibabacloud-sdk-php/live.git",
  494. "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60"
  495. },
  496. "dist": {
  497. "type": "zip",
  498. "url": "https://api.github.com/repos/alibabacloud-sdk-php/live/zipball/2dc756e9e156cb33bc1287d28fc3fade87e4ae60",
  499. "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60",
  500. "shasum": ""
  501. },
  502. "require": {
  503. "alibabacloud/client": "^1.5",
  504. "php": ">=5.5"
  505. },
  506. "type": "library",
  507. "autoload": {
  508. "psr-4": {
  509. "AlibabaCloud\\Live\\": ""
  510. }
  511. },
  512. "notification-url": "https://packagist.org/downloads/",
  513. "license": [
  514. "Apache-2.0"
  515. ],
  516. "authors": [
  517. {
  518. "name": "Alibaba Cloud SDK",
  519. "email": "sdk-team@alibabacloud.com",
  520. "homepage": "http://www.alibabacloud.com"
  521. }
  522. ],
  523. "description": "Alibaba Cloud Live SDK for PHP",
  524. "homepage": "https://www.alibabacloud.com/",
  525. "keywords": [
  526. "alibaba",
  527. "alibabacloud",
  528. "aliyun",
  529. "cloud",
  530. "library",
  531. "live",
  532. "sdk"
  533. ],
  534. "support": {
  535. "issues": "https://github.com/alibabacloud-sdk-php/live/issues",
  536. "source": "https://github.com/alibabacloud-sdk-php/live"
  537. },
  538. "time": "2021-04-29T09:14:45+00:00"
  539. },
  540. {
  541. "name": "alibabacloud/openapi-util",
  542. "version": "0.2.1",
  543. "source": {
  544. "type": "git",
  545. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  546. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  547. },
  548. "dist": {
  549. "type": "zip",
  550. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  551. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  552. "shasum": ""
  553. },
  554. "require": {
  555. "alibabacloud/tea": "^3.1",
  556. "alibabacloud/tea-utils": "^0.2",
  557. "lizhichao/one-sm": "^1.5",
  558. "php": ">5.5"
  559. },
  560. "require-dev": {
  561. "phpunit/phpunit": "*"
  562. },
  563. "type": "library",
  564. "autoload": {
  565. "psr-4": {
  566. "AlibabaCloud\\OpenApiUtil\\": "src"
  567. }
  568. },
  569. "notification-url": "https://packagist.org/downloads/",
  570. "license": [
  571. "Apache-2.0"
  572. ],
  573. "authors": [
  574. {
  575. "name": "Alibaba Cloud SDK",
  576. "email": "sdk-team@alibabacloud.com"
  577. }
  578. ],
  579. "description": "Alibaba Cloud OpenApi Util",
  580. "support": {
  581. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  582. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  583. },
  584. "time": "2023-01-10T09:10:10+00:00"
  585. },
  586. {
  587. "name": "alibabacloud/tea",
  588. "version": "3.2.1",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/aliyun/tea-php.git",
  592. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  597. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  598. "shasum": ""
  599. },
  600. "require": {
  601. "adbario/php-dot-notation": "^2.4",
  602. "ext-curl": "*",
  603. "ext-json": "*",
  604. "ext-libxml": "*",
  605. "ext-mbstring": "*",
  606. "ext-openssl": "*",
  607. "ext-simplexml": "*",
  608. "ext-xmlwriter": "*",
  609. "guzzlehttp/guzzle": "^6.3|^7.0",
  610. "php": ">=5.5"
  611. },
  612. "require-dev": {
  613. "phpunit/phpunit": "*",
  614. "symfony/dotenv": "^3.4",
  615. "symfony/var-dumper": "^3.4"
  616. },
  617. "suggest": {
  618. "ext-sockets": "To use client-side monitoring"
  619. },
  620. "type": "library",
  621. "autoload": {
  622. "psr-4": {
  623. "AlibabaCloud\\Tea\\": "src"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "Apache-2.0"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Alibaba Cloud SDK",
  633. "email": "sdk-team@alibabacloud.com",
  634. "homepage": "http://www.alibabacloud.com"
  635. }
  636. ],
  637. "description": "Client of Tea for PHP",
  638. "homepage": "https://www.alibabacloud.com/",
  639. "keywords": [
  640. "alibabacloud",
  641. "client",
  642. "cloud",
  643. "tea"
  644. ],
  645. "support": {
  646. "issues": "https://github.com/aliyun/tea-php/issues",
  647. "source": "https://github.com/aliyun/tea-php"
  648. },
  649. "time": "2023-05-16T06:43:41+00:00"
  650. },
  651. {
  652. "name": "alibabacloud/tea-utils",
  653. "version": "0.2.19",
  654. "source": {
  655. "type": "git",
  656. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  657. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4"
  658. },
  659. "dist": {
  660. "type": "zip",
  661. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4",
  662. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4",
  663. "shasum": ""
  664. },
  665. "require": {
  666. "alibabacloud/tea": "^3.1",
  667. "php": ">5.5"
  668. },
  669. "type": "library",
  670. "autoload": {
  671. "psr-4": {
  672. "AlibabaCloud\\Tea\\Utils\\": "src"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "Apache-2.0"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Alibaba Cloud SDK",
  682. "email": "sdk-team@alibabacloud.com"
  683. }
  684. ],
  685. "description": "Alibaba Cloud Tea Utils for PHP",
  686. "support": {
  687. "issues": "https://github.com/aliyun/tea-util/issues",
  688. "source": "https://github.com/aliyun/tea-util"
  689. },
  690. "time": "2023-06-26T09:49:19+00:00"
  691. },
  692. {
  693. "name": "alibabacloud/tea-xml",
  694. "version": "0.2.4",
  695. "source": {
  696. "type": "git",
  697. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  698. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  699. },
  700. "dist": {
  701. "type": "zip",
  702. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  703. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  704. "shasum": ""
  705. },
  706. "require": {
  707. "php": ">5.5"
  708. },
  709. "require-dev": {
  710. "phpunit/phpunit": "*",
  711. "symfony/var-dumper": "*"
  712. },
  713. "type": "library",
  714. "autoload": {
  715. "psr-4": {
  716. "AlibabaCloud\\Tea\\XML\\": "src"
  717. }
  718. },
  719. "notification-url": "https://packagist.org/downloads/",
  720. "license": [
  721. "Apache-2.0"
  722. ],
  723. "authors": [
  724. {
  725. "name": "Alibaba Cloud SDK",
  726. "email": "sdk-team@alibabacloud.com"
  727. }
  728. ],
  729. "description": "Alibaba Cloud Tea XML Library for PHP",
  730. "support": {
  731. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  732. },
  733. "time": "2022-08-02T04:12:58+00:00"
  734. },
  735. {
  736. "name": "asm89/stack-cors",
  737. "version": "v2.2.0",
  738. "source": {
  739. "type": "git",
  740. "url": "https://github.com/asm89/stack-cors.git",
  741. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  742. },
  743. "dist": {
  744. "type": "zip",
  745. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  746. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  747. "shasum": ""
  748. },
  749. "require": {
  750. "php": "^7.3|^8.0",
  751. "symfony/http-foundation": "^5.3|^6|^7",
  752. "symfony/http-kernel": "^5.3|^6|^7"
  753. },
  754. "require-dev": {
  755. "phpunit/phpunit": "^9",
  756. "squizlabs/php_codesniffer": "^3.5"
  757. },
  758. "type": "library",
  759. "extra": {
  760. "branch-alias": {
  761. "dev-master": "2.2-dev"
  762. }
  763. },
  764. "autoload": {
  765. "psr-4": {
  766. "Asm89\\Stack\\": "src/"
  767. }
  768. },
  769. "notification-url": "https://packagist.org/downloads/",
  770. "license": [
  771. "MIT"
  772. ],
  773. "authors": [
  774. {
  775. "name": "Alexander",
  776. "email": "iam.asm89@gmail.com"
  777. }
  778. ],
  779. "description": "Cross-origin resource sharing library and stack middleware",
  780. "homepage": "https://github.com/asm89/stack-cors",
  781. "keywords": [
  782. "cors",
  783. "stack"
  784. ],
  785. "support": {
  786. "issues": "https://github.com/asm89/stack-cors/issues",
  787. "source": "https://github.com/asm89/stack-cors/tree/v2.2.0"
  788. },
  789. "time": "2023-11-14T13:51:46+00:00"
  790. },
  791. {
  792. "name": "brick/math",
  793. "version": "0.11.0",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/brick/math.git",
  797. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  802. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  803. "shasum": ""
  804. },
  805. "require": {
  806. "php": "^8.0"
  807. },
  808. "require-dev": {
  809. "php-coveralls/php-coveralls": "^2.2",
  810. "phpunit/phpunit": "^9.0",
  811. "vimeo/psalm": "5.0.0"
  812. },
  813. "type": "library",
  814. "autoload": {
  815. "psr-4": {
  816. "Brick\\Math\\": "src/"
  817. }
  818. },
  819. "notification-url": "https://packagist.org/downloads/",
  820. "license": [
  821. "MIT"
  822. ],
  823. "description": "Arbitrary-precision arithmetic library",
  824. "keywords": [
  825. "Arbitrary-precision",
  826. "BigInteger",
  827. "BigRational",
  828. "arithmetic",
  829. "bigdecimal",
  830. "bignum",
  831. "brick",
  832. "math"
  833. ],
  834. "support": {
  835. "issues": "https://github.com/brick/math/issues",
  836. "source": "https://github.com/brick/math/tree/0.11.0"
  837. },
  838. "funding": [
  839. {
  840. "url": "https://github.com/BenMorel",
  841. "type": "github"
  842. }
  843. ],
  844. "time": "2023-01-15T23:15:59+00:00"
  845. },
  846. {
  847. "name": "cache/adapter-common",
  848. "version": "1.3.0",
  849. "source": {
  850. "type": "git",
  851. "url": "https://github.com/php-cache/adapter-common.git",
  852. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479"
  853. },
  854. "dist": {
  855. "type": "zip",
  856. "url": "https://api.github.com/repos/php-cache/adapter-common/zipball/8788309be72aa7be69b88cdc0687549c74a7d479",
  857. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479",
  858. "shasum": ""
  859. },
  860. "require": {
  861. "cache/tag-interop": "^1.0",
  862. "php": ">=7.4",
  863. "psr/cache": "^1.0 || ^2.0",
  864. "psr/log": "^1.0 || ^2.0 || ^3.0",
  865. "psr/simple-cache": "^1.0"
  866. },
  867. "require-dev": {
  868. "cache/integration-tests": "^0.17",
  869. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  870. },
  871. "type": "library",
  872. "extra": {
  873. "branch-alias": {
  874. "dev-master": "1.1-dev"
  875. }
  876. },
  877. "autoload": {
  878. "psr-4": {
  879. "Cache\\Adapter\\Common\\": ""
  880. }
  881. },
  882. "notification-url": "https://packagist.org/downloads/",
  883. "license": [
  884. "MIT"
  885. ],
  886. "authors": [
  887. {
  888. "name": "Aaron Scherer",
  889. "email": "aequasi@gmail.com",
  890. "homepage": "https://github.com/aequasi"
  891. },
  892. {
  893. "name": "Tobias Nyholm",
  894. "email": "tobias.nyholm@gmail.com",
  895. "homepage": "https://github.com/nyholm"
  896. }
  897. ],
  898. "description": "Common classes for PSR-6 adapters",
  899. "homepage": "http://www.php-cache.com/en/latest/",
  900. "keywords": [
  901. "cache",
  902. "psr-6",
  903. "tag"
  904. ],
  905. "support": {
  906. "source": "https://github.com/php-cache/adapter-common/tree/1.3.0"
  907. },
  908. "time": "2022-01-15T15:47:19+00:00"
  909. },
  910. {
  911. "name": "cache/filesystem-adapter",
  912. "version": "1.2.0",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/php-cache/filesystem-adapter.git",
  916. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/php-cache/filesystem-adapter/zipball/f1faaae40aaa696ef899cef6f6888aedb90b419b",
  921. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "cache/adapter-common": "^1.0",
  926. "league/flysystem": "^1.0",
  927. "php": ">=7.4",
  928. "psr/cache": "^1.0 || ^2.0",
  929. "psr/simple-cache": "^1.0"
  930. },
  931. "provide": {
  932. "psr/cache-implementation": "^1.0",
  933. "psr/simple-cache-implementation": "^1.0"
  934. },
  935. "require-dev": {
  936. "cache/integration-tests": "^0.17",
  937. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  938. },
  939. "type": "library",
  940. "extra": {
  941. "branch-alias": {
  942. "dev-master": "1.1-dev"
  943. }
  944. },
  945. "autoload": {
  946. "psr-4": {
  947. "Cache\\Adapter\\Filesystem\\": ""
  948. },
  949. "exclude-from-classmap": [
  950. "/Tests/"
  951. ]
  952. },
  953. "notification-url": "https://packagist.org/downloads/",
  954. "license": [
  955. "MIT"
  956. ],
  957. "authors": [
  958. {
  959. "name": "Aaron Scherer",
  960. "email": "aequasi@gmail.com",
  961. "homepage": "https://github.com/aequasi"
  962. },
  963. {
  964. "name": "Tobias Nyholm",
  965. "email": "tobias.nyholm@gmail.com",
  966. "homepage": "https://github.com/nyholm"
  967. }
  968. ],
  969. "description": "A PSR-6 cache implementation using filesystem. This implementation supports tags",
  970. "homepage": "http://www.php-cache.com/en/latest/",
  971. "keywords": [
  972. "cache",
  973. "filesystem",
  974. "psr-6",
  975. "tag"
  976. ],
  977. "support": {
  978. "source": "https://github.com/php-cache/filesystem-adapter/tree/1.2.0"
  979. },
  980. "time": "2022-01-15T15:47:19+00:00"
  981. },
  982. {
  983. "name": "cache/tag-interop",
  984. "version": "1.1.0",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/php-cache/tag-interop.git",
  988. "reference": "b062b1d735357da50edf8387f7a8696f3027d328"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/php-cache/tag-interop/zipball/b062b1d735357da50edf8387f7a8696f3027d328",
  993. "reference": "b062b1d735357da50edf8387f7a8696f3027d328",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "php": "^5.5 || ^7.0 || ^8.0",
  998. "psr/cache": "^1.0 || ^2.0"
  999. },
  1000. "type": "library",
  1001. "extra": {
  1002. "branch-alias": {
  1003. "dev-master": "1.1-dev"
  1004. }
  1005. },
  1006. "autoload": {
  1007. "psr-4": {
  1008. "Cache\\TagInterop\\": ""
  1009. }
  1010. },
  1011. "notification-url": "https://packagist.org/downloads/",
  1012. "license": [
  1013. "MIT"
  1014. ],
  1015. "authors": [
  1016. {
  1017. "name": "Tobias Nyholm",
  1018. "email": "tobias.nyholm@gmail.com",
  1019. "homepage": "https://github.com/nyholm"
  1020. },
  1021. {
  1022. "name": "Nicolas Grekas",
  1023. "email": "p@tchwork.com",
  1024. "homepage": "https://github.com/nicolas-grekas"
  1025. }
  1026. ],
  1027. "description": "Framework interoperable interfaces for tags",
  1028. "homepage": "https://www.php-cache.com/en/latest/",
  1029. "keywords": [
  1030. "cache",
  1031. "psr",
  1032. "psr6",
  1033. "tag"
  1034. ],
  1035. "support": {
  1036. "issues": "https://github.com/php-cache/tag-interop/issues",
  1037. "source": "https://github.com/php-cache/tag-interop/tree/1.1.0"
  1038. },
  1039. "time": "2021-12-31T10:03:23+00:00"
  1040. },
  1041. {
  1042. "name": "carbonphp/carbon-doctrine-types",
  1043. "version": "2.1.0",
  1044. "source": {
  1045. "type": "git",
  1046. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1047. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  1048. },
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1052. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1053. "shasum": ""
  1054. },
  1055. "require": {
  1056. "php": "^7.4 || ^8.0"
  1057. },
  1058. "conflict": {
  1059. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  1060. },
  1061. "require-dev": {
  1062. "doctrine/dbal": "^3.7.0",
  1063. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1064. "phpunit/phpunit": "^10.3"
  1065. },
  1066. "type": "library",
  1067. "autoload": {
  1068. "psr-4": {
  1069. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1070. }
  1071. },
  1072. "notification-url": "https://packagist.org/downloads/",
  1073. "license": [
  1074. "MIT"
  1075. ],
  1076. "authors": [
  1077. {
  1078. "name": "KyleKatarn",
  1079. "email": "kylekatarnls@gmail.com"
  1080. }
  1081. ],
  1082. "description": "Types to use Carbon in Doctrine",
  1083. "keywords": [
  1084. "carbon",
  1085. "date",
  1086. "datetime",
  1087. "doctrine",
  1088. "time"
  1089. ],
  1090. "support": {
  1091. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1092. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  1093. },
  1094. "funding": [
  1095. {
  1096. "url": "https://github.com/kylekatarnls",
  1097. "type": "github"
  1098. },
  1099. {
  1100. "url": "https://opencollective.com/Carbon",
  1101. "type": "open_collective"
  1102. },
  1103. {
  1104. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1105. "type": "tidelift"
  1106. }
  1107. ],
  1108. "time": "2023-12-11T17:09:12+00:00"
  1109. },
  1110. {
  1111. "name": "cboden/ratchet",
  1112. "version": "v0.4.4",
  1113. "source": {
  1114. "type": "git",
  1115. "url": "https://github.com/ratchetphp/Ratchet.git",
  1116. "reference": "5012dc954541b40c5599d286fd40653f5716a38f"
  1117. },
  1118. "dist": {
  1119. "type": "zip",
  1120. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/5012dc954541b40c5599d286fd40653f5716a38f",
  1121. "reference": "5012dc954541b40c5599d286fd40653f5716a38f",
  1122. "shasum": ""
  1123. },
  1124. "require": {
  1125. "guzzlehttp/psr7": "^1.7|^2.0",
  1126. "php": ">=5.4.2",
  1127. "ratchet/rfc6455": "^0.3.1",
  1128. "react/event-loop": ">=0.4",
  1129. "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5",
  1130. "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0",
  1131. "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0"
  1132. },
  1133. "require-dev": {
  1134. "phpunit/phpunit": "~4.8"
  1135. },
  1136. "type": "library",
  1137. "autoload": {
  1138. "psr-4": {
  1139. "Ratchet\\": "src/Ratchet"
  1140. }
  1141. },
  1142. "notification-url": "https://packagist.org/downloads/",
  1143. "license": [
  1144. "MIT"
  1145. ],
  1146. "authors": [
  1147. {
  1148. "name": "Chris Boden",
  1149. "email": "cboden@gmail.com",
  1150. "role": "Developer"
  1151. },
  1152. {
  1153. "name": "Matt Bonneau",
  1154. "role": "Developer"
  1155. }
  1156. ],
  1157. "description": "PHP WebSocket library",
  1158. "homepage": "http://socketo.me",
  1159. "keywords": [
  1160. "Ratchet",
  1161. "WebSockets",
  1162. "server",
  1163. "sockets",
  1164. "websocket"
  1165. ],
  1166. "support": {
  1167. "chat": "https://gitter.im/reactphp/reactphp",
  1168. "issues": "https://github.com/ratchetphp/Ratchet/issues",
  1169. "source": "https://github.com/ratchetphp/Ratchet/tree/v0.4.4"
  1170. },
  1171. "time": "2021-12-14T00:20:41+00:00"
  1172. },
  1173. {
  1174. "name": "clagiordano/weblibs-configmanager",
  1175. "version": "v1.2.0",
  1176. "source": {
  1177. "type": "git",
  1178. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  1179. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  1180. },
  1181. "dist": {
  1182. "type": "zip",
  1183. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  1184. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  1185. "shasum": ""
  1186. },
  1187. "require": {
  1188. "php": ">=5.4"
  1189. },
  1190. "require-dev": {
  1191. "clagiordano/phpunit-result-printer": "^1",
  1192. "phpunit/phpunit": "^4.8"
  1193. },
  1194. "type": "library",
  1195. "autoload": {
  1196. "psr-4": {
  1197. "clagiordano\\weblibs\\configmanager\\": "src/"
  1198. }
  1199. },
  1200. "notification-url": "https://packagist.org/downloads/",
  1201. "license": [
  1202. "LGPL-3.0-or-later"
  1203. ],
  1204. "authors": [
  1205. {
  1206. "name": "Claudio Giordano",
  1207. "email": "claudio.giordano@autistici.org",
  1208. "role": "Developer"
  1209. }
  1210. ],
  1211. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  1212. "keywords": [
  1213. "clagiordano",
  1214. "configuration",
  1215. "manager",
  1216. "tool",
  1217. "weblibs"
  1218. ],
  1219. "support": {
  1220. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  1221. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  1222. },
  1223. "time": "2021-05-18T17:55:57+00:00"
  1224. },
  1225. {
  1226. "name": "composer/semver",
  1227. "version": "3.4.0",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/composer/semver.git",
  1231. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  1236. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "php": "^5.3.2 || ^7.0 || ^8.0"
  1241. },
  1242. "require-dev": {
  1243. "phpstan/phpstan": "^1.4",
  1244. "symfony/phpunit-bridge": "^4.2 || ^5"
  1245. },
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-main": "3.x-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "psr-4": {
  1254. "Composer\\Semver\\": "src"
  1255. }
  1256. },
  1257. "notification-url": "https://packagist.org/downloads/",
  1258. "license": [
  1259. "MIT"
  1260. ],
  1261. "authors": [
  1262. {
  1263. "name": "Nils Adermann",
  1264. "email": "naderman@naderman.de",
  1265. "homepage": "http://www.naderman.de"
  1266. },
  1267. {
  1268. "name": "Jordi Boggiano",
  1269. "email": "j.boggiano@seld.be",
  1270. "homepage": "http://seld.be"
  1271. },
  1272. {
  1273. "name": "Rob Bast",
  1274. "email": "rob.bast@gmail.com",
  1275. "homepage": "http://robbast.nl"
  1276. }
  1277. ],
  1278. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  1279. "keywords": [
  1280. "semantic",
  1281. "semver",
  1282. "validation",
  1283. "versioning"
  1284. ],
  1285. "support": {
  1286. "irc": "ircs://irc.libera.chat:6697/composer",
  1287. "issues": "https://github.com/composer/semver/issues",
  1288. "source": "https://github.com/composer/semver/tree/3.4.0"
  1289. },
  1290. "funding": [
  1291. {
  1292. "url": "https://packagist.com",
  1293. "type": "custom"
  1294. },
  1295. {
  1296. "url": "https://github.com/composer",
  1297. "type": "github"
  1298. },
  1299. {
  1300. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1301. "type": "tidelift"
  1302. }
  1303. ],
  1304. "time": "2023-08-31T09:50:34+00:00"
  1305. },
  1306. {
  1307. "name": "dflydev/dot-access-data",
  1308. "version": "v3.0.2",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1312. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1317. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "php": "^7.1 || ^8.0"
  1322. },
  1323. "require-dev": {
  1324. "phpstan/phpstan": "^0.12.42",
  1325. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1326. "scrutinizer/ocular": "1.6.0",
  1327. "squizlabs/php_codesniffer": "^3.5",
  1328. "vimeo/psalm": "^4.0.0"
  1329. },
  1330. "type": "library",
  1331. "extra": {
  1332. "branch-alias": {
  1333. "dev-main": "3.x-dev"
  1334. }
  1335. },
  1336. "autoload": {
  1337. "psr-4": {
  1338. "Dflydev\\DotAccessData\\": "src/"
  1339. }
  1340. },
  1341. "notification-url": "https://packagist.org/downloads/",
  1342. "license": [
  1343. "MIT"
  1344. ],
  1345. "authors": [
  1346. {
  1347. "name": "Dragonfly Development Inc.",
  1348. "email": "info@dflydev.com",
  1349. "homepage": "http://dflydev.com"
  1350. },
  1351. {
  1352. "name": "Beau Simensen",
  1353. "email": "beau@dflydev.com",
  1354. "homepage": "http://beausimensen.com"
  1355. },
  1356. {
  1357. "name": "Carlos Frutos",
  1358. "email": "carlos@kiwing.it",
  1359. "homepage": "https://github.com/cfrutos"
  1360. },
  1361. {
  1362. "name": "Colin O'Dell",
  1363. "email": "colinodell@gmail.com",
  1364. "homepage": "https://www.colinodell.com"
  1365. }
  1366. ],
  1367. "description": "Given a deep data structure, access data by dot notation.",
  1368. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1369. "keywords": [
  1370. "access",
  1371. "data",
  1372. "dot",
  1373. "notation"
  1374. ],
  1375. "support": {
  1376. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1377. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1378. },
  1379. "time": "2022-10-27T11:44:00+00:00"
  1380. },
  1381. {
  1382. "name": "doctrine/cache",
  1383. "version": "1.13.0",
  1384. "source": {
  1385. "type": "git",
  1386. "url": "https://github.com/doctrine/cache.git",
  1387. "reference": "56cd022adb5514472cb144c087393c1821911d09"
  1388. },
  1389. "dist": {
  1390. "type": "zip",
  1391. "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09",
  1392. "reference": "56cd022adb5514472cb144c087393c1821911d09",
  1393. "shasum": "",
  1394. "mirrors": [
  1395. {
  1396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1397. "preferred": true
  1398. }
  1399. ]
  1400. },
  1401. "require": {
  1402. "php": "~7.1 || ^8.0"
  1403. },
  1404. "conflict": {
  1405. "doctrine/common": ">2.2,<2.4"
  1406. },
  1407. "require-dev": {
  1408. "alcaeus/mongo-php-adapter": "^1.1",
  1409. "cache/integration-tests": "dev-master",
  1410. "doctrine/coding-standard": "^9",
  1411. "mongodb/mongodb": "^1.1",
  1412. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1413. "predis/predis": "~1.0",
  1414. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1415. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1416. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1417. },
  1418. "suggest": {
  1419. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1420. },
  1421. "type": "library",
  1422. "autoload": {
  1423. "psr-4": {
  1424. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1425. }
  1426. },
  1427. "notification-url": "https://packagist.org/downloads/",
  1428. "license": [
  1429. "MIT"
  1430. ],
  1431. "authors": [
  1432. {
  1433. "name": "Guilherme Blanco",
  1434. "email": "guilhermeblanco@gmail.com"
  1435. },
  1436. {
  1437. "name": "Roman Borschel",
  1438. "email": "roman@code-factory.org"
  1439. },
  1440. {
  1441. "name": "Benjamin Eberlei",
  1442. "email": "kontakt@beberlei.de"
  1443. },
  1444. {
  1445. "name": "Jonathan Wage",
  1446. "email": "jonwage@gmail.com"
  1447. },
  1448. {
  1449. "name": "Johannes Schmitt",
  1450. "email": "schmittjoh@gmail.com"
  1451. }
  1452. ],
  1453. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1454. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1455. "keywords": [
  1456. "abstraction",
  1457. "apcu",
  1458. "cache",
  1459. "caching",
  1460. "couchdb",
  1461. "memcached",
  1462. "php",
  1463. "redis",
  1464. "xcache"
  1465. ],
  1466. "support": {
  1467. "issues": "https://github.com/doctrine/cache/issues",
  1468. "source": "https://github.com/doctrine/cache/tree/1.13.0"
  1469. },
  1470. "funding": [
  1471. {
  1472. "url": "https://www.doctrine-project.org/sponsorship.html",
  1473. "type": "custom"
  1474. },
  1475. {
  1476. "url": "https://www.patreon.com/phpdoctrine",
  1477. "type": "patreon"
  1478. },
  1479. {
  1480. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1481. "type": "tidelift"
  1482. }
  1483. ],
  1484. "time": "2022-05-20T20:06:54+00:00"
  1485. },
  1486. {
  1487. "name": "doctrine/inflector",
  1488. "version": "2.0.8",
  1489. "source": {
  1490. "type": "git",
  1491. "url": "https://github.com/doctrine/inflector.git",
  1492. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  1493. },
  1494. "dist": {
  1495. "type": "zip",
  1496. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1497. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1498. "shasum": ""
  1499. },
  1500. "require": {
  1501. "php": "^7.2 || ^8.0"
  1502. },
  1503. "require-dev": {
  1504. "doctrine/coding-standard": "^11.0",
  1505. "phpstan/phpstan": "^1.8",
  1506. "phpstan/phpstan-phpunit": "^1.1",
  1507. "phpstan/phpstan-strict-rules": "^1.3",
  1508. "phpunit/phpunit": "^8.5 || ^9.5",
  1509. "vimeo/psalm": "^4.25 || ^5.4"
  1510. },
  1511. "type": "library",
  1512. "autoload": {
  1513. "psr-4": {
  1514. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1515. }
  1516. },
  1517. "notification-url": "https://packagist.org/downloads/",
  1518. "license": [
  1519. "MIT"
  1520. ],
  1521. "authors": [
  1522. {
  1523. "name": "Guilherme Blanco",
  1524. "email": "guilhermeblanco@gmail.com"
  1525. },
  1526. {
  1527. "name": "Roman Borschel",
  1528. "email": "roman@code-factory.org"
  1529. },
  1530. {
  1531. "name": "Benjamin Eberlei",
  1532. "email": "kontakt@beberlei.de"
  1533. },
  1534. {
  1535. "name": "Jonathan Wage",
  1536. "email": "jonwage@gmail.com"
  1537. },
  1538. {
  1539. "name": "Johannes Schmitt",
  1540. "email": "schmittjoh@gmail.com"
  1541. }
  1542. ],
  1543. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1544. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1545. "keywords": [
  1546. "inflection",
  1547. "inflector",
  1548. "lowercase",
  1549. "manipulation",
  1550. "php",
  1551. "plural",
  1552. "singular",
  1553. "strings",
  1554. "uppercase",
  1555. "words"
  1556. ],
  1557. "support": {
  1558. "issues": "https://github.com/doctrine/inflector/issues",
  1559. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1560. },
  1561. "funding": [
  1562. {
  1563. "url": "https://www.doctrine-project.org/sponsorship.html",
  1564. "type": "custom"
  1565. },
  1566. {
  1567. "url": "https://www.patreon.com/phpdoctrine",
  1568. "type": "patreon"
  1569. },
  1570. {
  1571. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1572. "type": "tidelift"
  1573. }
  1574. ],
  1575. "time": "2023-06-16T13:40:37+00:00"
  1576. },
  1577. {
  1578. "name": "doctrine/lexer",
  1579. "version": "1.2.3",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://github.com/doctrine/lexer.git",
  1583. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1588. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1589. "shasum": ""
  1590. },
  1591. "require": {
  1592. "php": "^7.1 || ^8.0"
  1593. },
  1594. "require-dev": {
  1595. "doctrine/coding-standard": "^9.0",
  1596. "phpstan/phpstan": "^1.3",
  1597. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1598. "vimeo/psalm": "^4.11"
  1599. },
  1600. "type": "library",
  1601. "autoload": {
  1602. "psr-4": {
  1603. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1604. }
  1605. },
  1606. "notification-url": "https://packagist.org/downloads/",
  1607. "license": [
  1608. "MIT"
  1609. ],
  1610. "authors": [
  1611. {
  1612. "name": "Guilherme Blanco",
  1613. "email": "guilhermeblanco@gmail.com"
  1614. },
  1615. {
  1616. "name": "Roman Borschel",
  1617. "email": "roman@code-factory.org"
  1618. },
  1619. {
  1620. "name": "Johannes Schmitt",
  1621. "email": "schmittjoh@gmail.com"
  1622. }
  1623. ],
  1624. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1625. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1626. "keywords": [
  1627. "annotations",
  1628. "docblock",
  1629. "lexer",
  1630. "parser",
  1631. "php"
  1632. ],
  1633. "support": {
  1634. "issues": "https://github.com/doctrine/lexer/issues",
  1635. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1636. },
  1637. "funding": [
  1638. {
  1639. "url": "https://www.doctrine-project.org/sponsorship.html",
  1640. "type": "custom"
  1641. },
  1642. {
  1643. "url": "https://www.patreon.com/phpdoctrine",
  1644. "type": "patreon"
  1645. },
  1646. {
  1647. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1648. "type": "tidelift"
  1649. }
  1650. ],
  1651. "time": "2022-02-28T11:07:21+00:00"
  1652. },
  1653. {
  1654. "name": "dragonmantank/cron-expression",
  1655. "version": "v3.3.3",
  1656. "source": {
  1657. "type": "git",
  1658. "url": "https://github.com/dragonmantank/cron-expression.git",
  1659. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1660. },
  1661. "dist": {
  1662. "type": "zip",
  1663. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1664. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1665. "shasum": ""
  1666. },
  1667. "require": {
  1668. "php": "^7.2|^8.0",
  1669. "webmozart/assert": "^1.0"
  1670. },
  1671. "replace": {
  1672. "mtdowling/cron-expression": "^1.0"
  1673. },
  1674. "require-dev": {
  1675. "phpstan/extension-installer": "^1.0",
  1676. "phpstan/phpstan": "^1.0",
  1677. "phpstan/phpstan-webmozart-assert": "^1.0",
  1678. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1679. },
  1680. "type": "library",
  1681. "autoload": {
  1682. "psr-4": {
  1683. "Cron\\": "src/Cron/"
  1684. }
  1685. },
  1686. "notification-url": "https://packagist.org/downloads/",
  1687. "license": [
  1688. "MIT"
  1689. ],
  1690. "authors": [
  1691. {
  1692. "name": "Chris Tankersley",
  1693. "email": "chris@ctankersley.com",
  1694. "homepage": "https://github.com/dragonmantank"
  1695. }
  1696. ],
  1697. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1698. "keywords": [
  1699. "cron",
  1700. "schedule"
  1701. ],
  1702. "support": {
  1703. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1704. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1705. },
  1706. "funding": [
  1707. {
  1708. "url": "https://github.com/dragonmantank",
  1709. "type": "github"
  1710. }
  1711. ],
  1712. "time": "2023-08-10T19:36:49+00:00"
  1713. },
  1714. {
  1715. "name": "egulias/email-validator",
  1716. "version": "2.1.25",
  1717. "source": {
  1718. "type": "git",
  1719. "url": "https://github.com/egulias/EmailValidator.git",
  1720. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1721. },
  1722. "dist": {
  1723. "type": "zip",
  1724. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1725. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1726. "shasum": ""
  1727. },
  1728. "require": {
  1729. "doctrine/lexer": "^1.0.1",
  1730. "php": ">=5.5",
  1731. "symfony/polyfill-intl-idn": "^1.10"
  1732. },
  1733. "require-dev": {
  1734. "dominicsayers/isemail": "^3.0.7",
  1735. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1736. "satooshi/php-coveralls": "^1.0.1"
  1737. },
  1738. "suggest": {
  1739. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1740. },
  1741. "type": "library",
  1742. "extra": {
  1743. "branch-alias": {
  1744. "dev-master": "2.1.x-dev"
  1745. }
  1746. },
  1747. "autoload": {
  1748. "psr-4": {
  1749. "Egulias\\EmailValidator\\": "src"
  1750. }
  1751. },
  1752. "notification-url": "https://packagist.org/downloads/",
  1753. "license": [
  1754. "MIT"
  1755. ],
  1756. "authors": [
  1757. {
  1758. "name": "Eduardo Gulias Davis"
  1759. }
  1760. ],
  1761. "description": "A library for validating emails against several RFCs",
  1762. "homepage": "https://github.com/egulias/EmailValidator",
  1763. "keywords": [
  1764. "email",
  1765. "emailvalidation",
  1766. "emailvalidator",
  1767. "validation",
  1768. "validator"
  1769. ],
  1770. "support": {
  1771. "issues": "https://github.com/egulias/EmailValidator/issues",
  1772. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1773. },
  1774. "funding": [
  1775. {
  1776. "url": "https://github.com/egulias",
  1777. "type": "github"
  1778. }
  1779. ],
  1780. "time": "2020-12-29T14:50:06+00:00"
  1781. },
  1782. {
  1783. "name": "evenement/evenement",
  1784. "version": "v3.0.2",
  1785. "source": {
  1786. "type": "git",
  1787. "url": "https://github.com/igorw/evenement.git",
  1788. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  1789. },
  1790. "dist": {
  1791. "type": "zip",
  1792. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1793. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1794. "shasum": ""
  1795. },
  1796. "require": {
  1797. "php": ">=7.0"
  1798. },
  1799. "require-dev": {
  1800. "phpunit/phpunit": "^9 || ^6"
  1801. },
  1802. "type": "library",
  1803. "autoload": {
  1804. "psr-4": {
  1805. "Evenement\\": "src/"
  1806. }
  1807. },
  1808. "notification-url": "https://packagist.org/downloads/",
  1809. "license": [
  1810. "MIT"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "Igor Wiedler",
  1815. "email": "igor@wiedler.ch"
  1816. }
  1817. ],
  1818. "description": "Événement is a very simple event dispatching library for PHP",
  1819. "keywords": [
  1820. "event-dispatcher",
  1821. "event-emitter"
  1822. ],
  1823. "support": {
  1824. "issues": "https://github.com/igorw/evenement/issues",
  1825. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  1826. },
  1827. "time": "2023-08-08T05:53:35+00:00"
  1828. },
  1829. {
  1830. "name": "ezyang/htmlpurifier",
  1831. "version": "v4.17.0",
  1832. "source": {
  1833. "type": "git",
  1834. "url": "https://github.com/ezyang/htmlpurifier.git",
  1835. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
  1836. },
  1837. "dist": {
  1838. "type": "zip",
  1839. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1840. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1841. "shasum": ""
  1842. },
  1843. "require": {
  1844. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  1845. },
  1846. "require-dev": {
  1847. "cerdic/css-tidy": "^1.7 || ^2.0",
  1848. "simpletest/simpletest": "dev-master"
  1849. },
  1850. "suggest": {
  1851. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1852. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1853. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1854. "ext-tidy": "Used for pretty-printing HTML"
  1855. },
  1856. "type": "library",
  1857. "autoload": {
  1858. "files": [
  1859. "library/HTMLPurifier.composer.php"
  1860. ],
  1861. "psr-0": {
  1862. "HTMLPurifier": "library/"
  1863. },
  1864. "exclude-from-classmap": [
  1865. "/library/HTMLPurifier/Language/"
  1866. ]
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "LGPL-2.1-or-later"
  1871. ],
  1872. "authors": [
  1873. {
  1874. "name": "Edward Z. Yang",
  1875. "email": "admin@htmlpurifier.org",
  1876. "homepage": "http://ezyang.com"
  1877. }
  1878. ],
  1879. "description": "Standards compliant HTML filter written in PHP",
  1880. "homepage": "http://htmlpurifier.org/",
  1881. "keywords": [
  1882. "html"
  1883. ],
  1884. "support": {
  1885. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1886. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
  1887. },
  1888. "time": "2023-11-17T15:01:25+00:00"
  1889. },
  1890. {
  1891. "name": "fenguoz/data-types",
  1892. "version": "1.0.0",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "https://github.com/Fenguoz/data-types.git",
  1896. "reference": "82cfdf1f0df382845d36c9bd81d9b22630970fca"
  1897. },
  1898. "dist": {
  1899. "type": "zip",
  1900. "url": "https://api.github.com/repos/Fenguoz/data-types/zipball/82cfdf1f0df382845d36c9bd81d9b22630970fca",
  1901. "reference": "82cfdf1f0df382845d36c9bd81d9b22630970fca",
  1902. "shasum": "",
  1903. "mirrors": [
  1904. {
  1905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1906. "preferred": true
  1907. }
  1908. ]
  1909. },
  1910. "require": {
  1911. "ext-bcmath": "*",
  1912. "ext-mbstring": "*",
  1913. "php": ">=7.2"
  1914. },
  1915. "type": "library",
  1916. "autoload": {
  1917. "psr-4": {
  1918. "Comely\\DataTypes\\": [
  1919. "src"
  1920. ]
  1921. }
  1922. },
  1923. "notification-url": "https://packagist.org/downloads/",
  1924. "license": [
  1925. "MIT"
  1926. ],
  1927. "authors": [
  1928. {
  1929. "name": "Furqan A. Siddiqui",
  1930. "email": "hello@furqansiddiqui.com",
  1931. "homepage": "https://www.furqansiddiqui.com",
  1932. "role": "Author"
  1933. }
  1934. ],
  1935. "description": "PHP data types",
  1936. "homepage": "https://github.com/comely-io/data-types",
  1937. "support": {
  1938. "source": "https://github.com/Fenguoz/data-types/tree/1.0.0"
  1939. },
  1940. "time": "2023-02-09T05:42:25+00:00"
  1941. },
  1942. {
  1943. "name": "fenguoz/tron-api",
  1944. "version": "1.1.0",
  1945. "source": {
  1946. "type": "git",
  1947. "url": "https://github.com/Fenguoz/tron-api.git",
  1948. "reference": "76c8335bcecf8d39e6b139cf2c6ce6a224c75f1c"
  1949. },
  1950. "dist": {
  1951. "type": "zip",
  1952. "url": "https://api.github.com/repos/Fenguoz/tron-api/zipball/76c8335bcecf8d39e6b139cf2c6ce6a224c75f1c",
  1953. "reference": "76c8335bcecf8d39e6b139cf2c6ce6a224c75f1c",
  1954. "shasum": "",
  1955. "mirrors": [
  1956. {
  1957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1958. "preferred": true
  1959. }
  1960. ]
  1961. },
  1962. "require": {
  1963. "ext-bcmath": "*",
  1964. "ext-json": "*",
  1965. "fenguoz/data-types": "^1.0",
  1966. "fenguoz/web3.php": "^1.0",
  1967. "guzzlehttp/guzzle": "^7.2",
  1968. "kornrunner/secp256k1": "^0.2",
  1969. "php": ">=8.0",
  1970. "simplito/elliptic-php": "^1.0"
  1971. },
  1972. "require-dev": {
  1973. "phpunit/phpunit": "~9.0"
  1974. },
  1975. "type": "library",
  1976. "autoload": {
  1977. "psr-4": {
  1978. "IEXBase\\TronAPI\\": "src"
  1979. }
  1980. },
  1981. "notification-url": "https://packagist.org/downloads/",
  1982. "license": [
  1983. "MIT"
  1984. ],
  1985. "authors": [
  1986. {
  1987. "name": "Shamsudin Serderov",
  1988. "email": "steein.shamsudin@gmail.com"
  1989. }
  1990. ],
  1991. "description": "A PHP API for interacting with Tron (Trx)",
  1992. "homepage": "https://github.com/fenguoz/tron-api",
  1993. "keywords": [
  1994. "tron-api",
  1995. "tron-lib",
  1996. "tron-php",
  1997. "tron-rest-api"
  1998. ],
  1999. "support": {
  2000. "source": "https://github.com/Fenguoz/tron-api/tree/1.1.0"
  2001. },
  2002. "time": "2023-02-09T08:00:44+00:00"
  2003. },
  2004. {
  2005. "name": "fenguoz/tron-php",
  2006. "version": "2.0.0",
  2007. "source": {
  2008. "type": "git",
  2009. "url": "https://github.com/Fenguoz/tron-php.git",
  2010. "reference": "e12b9d2d63e2fd46dcbedfbe6efc26d13c824b64"
  2011. },
  2012. "dist": {
  2013. "type": "zip",
  2014. "url": "https://api.github.com/repos/Fenguoz/tron-php/zipball/e12b9d2d63e2fd46dcbedfbe6efc26d13c824b64",
  2015. "reference": "e12b9d2d63e2fd46dcbedfbe6efc26d13c824b64",
  2016. "shasum": "",
  2017. "mirrors": [
  2018. {
  2019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2020. "preferred": true
  2021. }
  2022. ]
  2023. },
  2024. "require": {
  2025. "fenguoz/tron-api": "~1.1",
  2026. "fenguoz/web3.php": "^1.0",
  2027. "ionux/phactor": "1.0.8",
  2028. "kornrunner/keccak": "~1.0",
  2029. "php": ">=8.0"
  2030. },
  2031. "require-dev": {
  2032. "phpunit/phpunit": "~7.5 || ~9.0"
  2033. },
  2034. "type": "library",
  2035. "autoload": {
  2036. "psr-4": {
  2037. "Tron\\": "src/"
  2038. }
  2039. },
  2040. "notification-url": "https://packagist.org/downloads/",
  2041. "license": [
  2042. "MIT"
  2043. ],
  2044. "authors": [
  2045. {
  2046. "name": "Fenguoz",
  2047. "email": "243944672@qq.com"
  2048. }
  2049. ],
  2050. "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",
  2051. "homepage": "https://github.com/Fenguoz/tron-php",
  2052. "keywords": [
  2053. "php",
  2054. "trc20",
  2055. "tron",
  2056. "trx"
  2057. ],
  2058. "support": {
  2059. "issues": "https://github.com/Fenguoz/tron-php/issues",
  2060. "source": "https://github.com/Fenguoz/tron-php/tree/2.0.0"
  2061. },
  2062. "time": "2023-02-09T08:08:18+00:00"
  2063. },
  2064. {
  2065. "name": "fenguoz/web3.php",
  2066. "version": "1.0",
  2067. "source": {
  2068. "type": "git",
  2069. "url": "https://github.com/Fenguoz/web3.php.git",
  2070. "reference": "5b1c11e2d1e15971a677721e93975db2e78afd3b"
  2071. },
  2072. "dist": {
  2073. "type": "zip",
  2074. "url": "https://api.github.com/repos/Fenguoz/web3.php/zipball/5b1c11e2d1e15971a677721e93975db2e78afd3b",
  2075. "reference": "5b1c11e2d1e15971a677721e93975db2e78afd3b",
  2076. "shasum": "",
  2077. "mirrors": [
  2078. {
  2079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2080. "preferred": true
  2081. }
  2082. ]
  2083. },
  2084. "require": {
  2085. "ext-mbstring": "*",
  2086. "guzzlehttp/guzzle": "^6.3|~7.0",
  2087. "kornrunner/keccak": "~1.0",
  2088. "php": ">=7.2",
  2089. "phpseclib/phpseclib": "~2.0.30"
  2090. },
  2091. "require-dev": {
  2092. "phpunit/phpunit": "~8.0|~9.0"
  2093. },
  2094. "type": "library",
  2095. "autoload": {
  2096. "psr-4": {
  2097. "Web3\\": "src/"
  2098. }
  2099. },
  2100. "notification-url": "https://packagist.org/downloads/",
  2101. "license": [
  2102. "MIT"
  2103. ],
  2104. "authors": [
  2105. {
  2106. "name": "sc0Vu",
  2107. "email": "alk03073135@gmail.com"
  2108. }
  2109. ],
  2110. "description": "Ethereum web3 interface.",
  2111. "support": {
  2112. "source": "https://github.com/Fenguoz/web3.php/tree/1.0"
  2113. },
  2114. "time": "2023-02-08T09:33:09+00:00"
  2115. },
  2116. {
  2117. "name": "fgrosse/phpasn1",
  2118. "version": "v2.5.0",
  2119. "source": {
  2120. "type": "git",
  2121. "url": "https://github.com/fgrosse/PHPASN1.git",
  2122. "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b"
  2123. },
  2124. "dist": {
  2125. "type": "zip",
  2126. "url": "https://api.github.com/repos/fgrosse/PHPASN1/zipball/42060ed45344789fb9f21f9f1864fc47b9e3507b",
  2127. "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b",
  2128. "shasum": "",
  2129. "mirrors": [
  2130. {
  2131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2132. "preferred": true
  2133. }
  2134. ]
  2135. },
  2136. "require": {
  2137. "php": "^7.1 || ^8.0"
  2138. },
  2139. "require-dev": {
  2140. "php-coveralls/php-coveralls": "~2.0",
  2141. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  2142. },
  2143. "suggest": {
  2144. "ext-bcmath": "BCmath is the fallback extension for big integer calculations",
  2145. "ext-curl": "For loading OID information from the web if they have not bee defined statically",
  2146. "ext-gmp": "GMP is the preferred extension for big integer calculations",
  2147. "phpseclib/bcmath_compat": "BCmath polyfill for servers where neither GMP nor BCmath is available"
  2148. },
  2149. "type": "library",
  2150. "extra": {
  2151. "branch-alias": {
  2152. "dev-master": "2.0.x-dev"
  2153. }
  2154. },
  2155. "autoload": {
  2156. "psr-4": {
  2157. "FG\\": "lib/"
  2158. }
  2159. },
  2160. "notification-url": "https://packagist.org/downloads/",
  2161. "license": [
  2162. "MIT"
  2163. ],
  2164. "authors": [
  2165. {
  2166. "name": "Friedrich Große",
  2167. "email": "friedrich.grosse@gmail.com",
  2168. "homepage": "https://github.com/FGrosse",
  2169. "role": "Author"
  2170. },
  2171. {
  2172. "name": "All contributors",
  2173. "homepage": "https://github.com/FGrosse/PHPASN1/contributors"
  2174. }
  2175. ],
  2176. "description": "A PHP Framework that allows you to encode and decode arbitrary ASN.1 structures using the ITU-T X.690 Encoding Rules.",
  2177. "homepage": "https://github.com/FGrosse/PHPASN1",
  2178. "keywords": [
  2179. "DER",
  2180. "asn.1",
  2181. "asn1",
  2182. "ber",
  2183. "binary",
  2184. "decoding",
  2185. "encoding",
  2186. "x.509",
  2187. "x.690",
  2188. "x509",
  2189. "x690"
  2190. ],
  2191. "support": {
  2192. "issues": "https://github.com/fgrosse/PHPASN1/issues",
  2193. "source": "https://github.com/fgrosse/PHPASN1/tree/v2.5.0"
  2194. },
  2195. "abandoned": true,
  2196. "time": "2022-12-19T11:08:26+00:00"
  2197. },
  2198. {
  2199. "name": "fideloper/proxy",
  2200. "version": "4.4.2",
  2201. "source": {
  2202. "type": "git",
  2203. "url": "https://github.com/fideloper/TrustedProxy.git",
  2204. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  2205. },
  2206. "dist": {
  2207. "type": "zip",
  2208. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  2209. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  2210. "shasum": ""
  2211. },
  2212. "require": {
  2213. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  2214. "php": ">=5.4.0"
  2215. },
  2216. "require-dev": {
  2217. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  2218. "mockery/mockery": "^1.0",
  2219. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2220. },
  2221. "type": "library",
  2222. "extra": {
  2223. "laravel": {
  2224. "providers": [
  2225. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  2226. ]
  2227. }
  2228. },
  2229. "autoload": {
  2230. "psr-4": {
  2231. "Fideloper\\Proxy\\": "src/"
  2232. }
  2233. },
  2234. "notification-url": "https://packagist.org/downloads/",
  2235. "license": [
  2236. "MIT"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "Chris Fidao",
  2241. "email": "fideloper@gmail.com"
  2242. }
  2243. ],
  2244. "description": "Set trusted proxies for Laravel",
  2245. "keywords": [
  2246. "load balancing",
  2247. "proxy",
  2248. "trusted proxy"
  2249. ],
  2250. "support": {
  2251. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  2252. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  2253. },
  2254. "time": "2022-02-09T13:33:34+00:00"
  2255. },
  2256. {
  2257. "name": "fruitcake/laravel-cors",
  2258. "version": "v2.2.0",
  2259. "source": {
  2260. "type": "git",
  2261. "url": "https://github.com/fruitcake/laravel-cors.git",
  2262. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  2263. },
  2264. "dist": {
  2265. "type": "zip",
  2266. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  2267. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  2268. "shasum": ""
  2269. },
  2270. "require": {
  2271. "asm89/stack-cors": "^2.0.1",
  2272. "illuminate/contracts": "^6|^7|^8|^9",
  2273. "illuminate/support": "^6|^7|^8|^9",
  2274. "php": ">=7.2"
  2275. },
  2276. "require-dev": {
  2277. "laravel/framework": "^6|^7.24|^8",
  2278. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  2279. "phpunit/phpunit": "^6|^7|^8|^9",
  2280. "squizlabs/php_codesniffer": "^3.5"
  2281. },
  2282. "type": "library",
  2283. "extra": {
  2284. "branch-alias": {
  2285. "dev-master": "2.1-dev"
  2286. },
  2287. "laravel": {
  2288. "providers": [
  2289. "Fruitcake\\Cors\\CorsServiceProvider"
  2290. ]
  2291. }
  2292. },
  2293. "autoload": {
  2294. "psr-4": {
  2295. "Fruitcake\\Cors\\": "src/"
  2296. }
  2297. },
  2298. "notification-url": "https://packagist.org/downloads/",
  2299. "license": [
  2300. "MIT"
  2301. ],
  2302. "authors": [
  2303. {
  2304. "name": "Fruitcake",
  2305. "homepage": "https://fruitcake.nl"
  2306. },
  2307. {
  2308. "name": "Barry vd. Heuvel",
  2309. "email": "barryvdh@gmail.com"
  2310. }
  2311. ],
  2312. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  2313. "keywords": [
  2314. "api",
  2315. "cors",
  2316. "crossdomain",
  2317. "laravel"
  2318. ],
  2319. "support": {
  2320. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  2321. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  2322. },
  2323. "funding": [
  2324. {
  2325. "url": "https://fruitcake.nl",
  2326. "type": "custom"
  2327. },
  2328. {
  2329. "url": "https://github.com/barryvdh",
  2330. "type": "github"
  2331. }
  2332. ],
  2333. "abandoned": true,
  2334. "time": "2022-02-23T14:25:13+00:00"
  2335. },
  2336. {
  2337. "name": "getuilaboratory/getui-pushapi-php-client-v2",
  2338. "version": "dev-master",
  2339. "source": {
  2340. "type": "git",
  2341. "url": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2.git",
  2342. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6"
  2343. },
  2344. "dist": {
  2345. "type": "zip",
  2346. "url": "https://api.github.com/repos/GetuiLaboratory/getui-pushapi-php-client-v2/zipball/255cc076624d049c0481d7172cd3c519ae7b07f6",
  2347. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6",
  2348. "shasum": ""
  2349. },
  2350. "default-branch": true,
  2351. "type": "library",
  2352. "autoload": {
  2353. "classmap": [
  2354. ""
  2355. ]
  2356. },
  2357. "notification-url": "https://packagist.org/downloads/",
  2358. "license": [
  2359. "MIT"
  2360. ],
  2361. "authors": [
  2362. {
  2363. "name": "getui",
  2364. "homepage": "https://www.getui.com/cn"
  2365. }
  2366. ],
  2367. "description": "getui php client V2",
  2368. "homepage": "https://www.getui.com/cn/",
  2369. "keywords": [
  2370. "GeTui",
  2371. "GetuiLaboratory",
  2372. "getui-pushapi-php-client",
  2373. "getui-pushapi-php-client-v2",
  2374. "pushapi"
  2375. ],
  2376. "support": {
  2377. "issues": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/issues",
  2378. "source": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/tree/master"
  2379. },
  2380. "time": "2021-06-21T03:22:42+00:00"
  2381. },
  2382. {
  2383. "name": "graham-campbell/result-type",
  2384. "version": "v1.1.2",
  2385. "source": {
  2386. "type": "git",
  2387. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2388. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  2389. },
  2390. "dist": {
  2391. "type": "zip",
  2392. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  2393. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  2394. "shasum": ""
  2395. },
  2396. "require": {
  2397. "php": "^7.2.5 || ^8.0",
  2398. "phpoption/phpoption": "^1.9.2"
  2399. },
  2400. "require-dev": {
  2401. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  2402. },
  2403. "type": "library",
  2404. "autoload": {
  2405. "psr-4": {
  2406. "GrahamCampbell\\ResultType\\": "src/"
  2407. }
  2408. },
  2409. "notification-url": "https://packagist.org/downloads/",
  2410. "license": [
  2411. "MIT"
  2412. ],
  2413. "authors": [
  2414. {
  2415. "name": "Graham Campbell",
  2416. "email": "hello@gjcampbell.co.uk",
  2417. "homepage": "https://github.com/GrahamCampbell"
  2418. }
  2419. ],
  2420. "description": "An Implementation Of The Result Type",
  2421. "keywords": [
  2422. "Graham Campbell",
  2423. "GrahamCampbell",
  2424. "Result Type",
  2425. "Result-Type",
  2426. "result"
  2427. ],
  2428. "support": {
  2429. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2430. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  2431. },
  2432. "funding": [
  2433. {
  2434. "url": "https://github.com/GrahamCampbell",
  2435. "type": "github"
  2436. },
  2437. {
  2438. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2439. "type": "tidelift"
  2440. }
  2441. ],
  2442. "time": "2023-11-12T22:16:48+00:00"
  2443. },
  2444. {
  2445. "name": "gregwar/captcha",
  2446. "version": "v1.2.1",
  2447. "source": {
  2448. "type": "git",
  2449. "url": "https://github.com/Gregwar/Captcha.git",
  2450. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  2451. },
  2452. "dist": {
  2453. "type": "zip",
  2454. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  2455. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  2456. "shasum": ""
  2457. },
  2458. "require": {
  2459. "ext-gd": "*",
  2460. "ext-mbstring": "*",
  2461. "php": ">=5.3.0",
  2462. "symfony/finder": "*"
  2463. },
  2464. "require-dev": {
  2465. "phpunit/phpunit": "^6.4"
  2466. },
  2467. "type": "library",
  2468. "autoload": {
  2469. "psr-4": {
  2470. "Gregwar\\": "src/Gregwar"
  2471. }
  2472. },
  2473. "notification-url": "https://packagist.org/downloads/",
  2474. "license": [
  2475. "MIT"
  2476. ],
  2477. "authors": [
  2478. {
  2479. "name": "Grégoire Passault",
  2480. "email": "g.passault@gmail.com",
  2481. "homepage": "http://www.gregwar.com/"
  2482. },
  2483. {
  2484. "name": "Jeremy Livingston",
  2485. "email": "jeremy.j.livingston@gmail.com"
  2486. }
  2487. ],
  2488. "description": "Captcha generator",
  2489. "homepage": "https://github.com/Gregwar/Captcha",
  2490. "keywords": [
  2491. "bot",
  2492. "captcha",
  2493. "spam"
  2494. ],
  2495. "support": {
  2496. "issues": "https://github.com/Gregwar/Captcha/issues",
  2497. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  2498. },
  2499. "time": "2023-09-26T13:45:37+00:00"
  2500. },
  2501. {
  2502. "name": "guzzlehttp/guzzle",
  2503. "version": "7.8.1",
  2504. "source": {
  2505. "type": "git",
  2506. "url": "https://github.com/guzzle/guzzle.git",
  2507. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  2508. },
  2509. "dist": {
  2510. "type": "zip",
  2511. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  2512. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  2513. "shasum": ""
  2514. },
  2515. "require": {
  2516. "ext-json": "*",
  2517. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  2518. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  2519. "php": "^7.2.5 || ^8.0",
  2520. "psr/http-client": "^1.0",
  2521. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2522. },
  2523. "provide": {
  2524. "psr/http-client-implementation": "1.0"
  2525. },
  2526. "require-dev": {
  2527. "bamarni/composer-bin-plugin": "^1.8.2",
  2528. "ext-curl": "*",
  2529. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  2530. "php-http/message-factory": "^1.1",
  2531. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2532. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2533. },
  2534. "suggest": {
  2535. "ext-curl": "Required for CURL handler support",
  2536. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2537. "psr/log": "Required for using the Log middleware"
  2538. },
  2539. "type": "library",
  2540. "extra": {
  2541. "bamarni-bin": {
  2542. "bin-links": true,
  2543. "forward-command": false
  2544. }
  2545. },
  2546. "autoload": {
  2547. "files": [
  2548. "src/functions_include.php"
  2549. ],
  2550. "psr-4": {
  2551. "GuzzleHttp\\": "src/"
  2552. }
  2553. },
  2554. "notification-url": "https://packagist.org/downloads/",
  2555. "license": [
  2556. "MIT"
  2557. ],
  2558. "authors": [
  2559. {
  2560. "name": "Graham Campbell",
  2561. "email": "hello@gjcampbell.co.uk",
  2562. "homepage": "https://github.com/GrahamCampbell"
  2563. },
  2564. {
  2565. "name": "Michael Dowling",
  2566. "email": "mtdowling@gmail.com",
  2567. "homepage": "https://github.com/mtdowling"
  2568. },
  2569. {
  2570. "name": "Jeremy Lindblom",
  2571. "email": "jeremeamia@gmail.com",
  2572. "homepage": "https://github.com/jeremeamia"
  2573. },
  2574. {
  2575. "name": "George Mponos",
  2576. "email": "gmponos@gmail.com",
  2577. "homepage": "https://github.com/gmponos"
  2578. },
  2579. {
  2580. "name": "Tobias Nyholm",
  2581. "email": "tobias.nyholm@gmail.com",
  2582. "homepage": "https://github.com/Nyholm"
  2583. },
  2584. {
  2585. "name": "Márk Sági-Kazár",
  2586. "email": "mark.sagikazar@gmail.com",
  2587. "homepage": "https://github.com/sagikazarmark"
  2588. },
  2589. {
  2590. "name": "Tobias Schultze",
  2591. "email": "webmaster@tubo-world.de",
  2592. "homepage": "https://github.com/Tobion"
  2593. }
  2594. ],
  2595. "description": "Guzzle is a PHP HTTP client library",
  2596. "keywords": [
  2597. "client",
  2598. "curl",
  2599. "framework",
  2600. "http",
  2601. "http client",
  2602. "psr-18",
  2603. "psr-7",
  2604. "rest",
  2605. "web service"
  2606. ],
  2607. "support": {
  2608. "issues": "https://github.com/guzzle/guzzle/issues",
  2609. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  2610. },
  2611. "funding": [
  2612. {
  2613. "url": "https://github.com/GrahamCampbell",
  2614. "type": "github"
  2615. },
  2616. {
  2617. "url": "https://github.com/Nyholm",
  2618. "type": "github"
  2619. },
  2620. {
  2621. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2622. "type": "tidelift"
  2623. }
  2624. ],
  2625. "time": "2023-12-03T20:35:24+00:00"
  2626. },
  2627. {
  2628. "name": "guzzlehttp/promises",
  2629. "version": "2.0.2",
  2630. "source": {
  2631. "type": "git",
  2632. "url": "https://github.com/guzzle/promises.git",
  2633. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  2634. },
  2635. "dist": {
  2636. "type": "zip",
  2637. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  2638. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  2639. "shasum": ""
  2640. },
  2641. "require": {
  2642. "php": "^7.2.5 || ^8.0"
  2643. },
  2644. "require-dev": {
  2645. "bamarni/composer-bin-plugin": "^1.8.2",
  2646. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2647. },
  2648. "type": "library",
  2649. "extra": {
  2650. "bamarni-bin": {
  2651. "bin-links": true,
  2652. "forward-command": false
  2653. }
  2654. },
  2655. "autoload": {
  2656. "psr-4": {
  2657. "GuzzleHttp\\Promise\\": "src/"
  2658. }
  2659. },
  2660. "notification-url": "https://packagist.org/downloads/",
  2661. "license": [
  2662. "MIT"
  2663. ],
  2664. "authors": [
  2665. {
  2666. "name": "Graham Campbell",
  2667. "email": "hello@gjcampbell.co.uk",
  2668. "homepage": "https://github.com/GrahamCampbell"
  2669. },
  2670. {
  2671. "name": "Michael Dowling",
  2672. "email": "mtdowling@gmail.com",
  2673. "homepage": "https://github.com/mtdowling"
  2674. },
  2675. {
  2676. "name": "Tobias Nyholm",
  2677. "email": "tobias.nyholm@gmail.com",
  2678. "homepage": "https://github.com/Nyholm"
  2679. },
  2680. {
  2681. "name": "Tobias Schultze",
  2682. "email": "webmaster@tubo-world.de",
  2683. "homepage": "https://github.com/Tobion"
  2684. }
  2685. ],
  2686. "description": "Guzzle promises library",
  2687. "keywords": [
  2688. "promise"
  2689. ],
  2690. "support": {
  2691. "issues": "https://github.com/guzzle/promises/issues",
  2692. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  2693. },
  2694. "funding": [
  2695. {
  2696. "url": "https://github.com/GrahamCampbell",
  2697. "type": "github"
  2698. },
  2699. {
  2700. "url": "https://github.com/Nyholm",
  2701. "type": "github"
  2702. },
  2703. {
  2704. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2705. "type": "tidelift"
  2706. }
  2707. ],
  2708. "time": "2023-12-03T20:19:20+00:00"
  2709. },
  2710. {
  2711. "name": "guzzlehttp/psr7",
  2712. "version": "2.6.2",
  2713. "source": {
  2714. "type": "git",
  2715. "url": "https://github.com/guzzle/psr7.git",
  2716. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  2717. },
  2718. "dist": {
  2719. "type": "zip",
  2720. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2721. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2722. "shasum": ""
  2723. },
  2724. "require": {
  2725. "php": "^7.2.5 || ^8.0",
  2726. "psr/http-factory": "^1.0",
  2727. "psr/http-message": "^1.1 || ^2.0",
  2728. "ralouphie/getallheaders": "^3.0"
  2729. },
  2730. "provide": {
  2731. "psr/http-factory-implementation": "1.0",
  2732. "psr/http-message-implementation": "1.0"
  2733. },
  2734. "require-dev": {
  2735. "bamarni/composer-bin-plugin": "^1.8.2",
  2736. "http-interop/http-factory-tests": "^0.9",
  2737. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2738. },
  2739. "suggest": {
  2740. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2741. },
  2742. "type": "library",
  2743. "extra": {
  2744. "bamarni-bin": {
  2745. "bin-links": true,
  2746. "forward-command": false
  2747. }
  2748. },
  2749. "autoload": {
  2750. "psr-4": {
  2751. "GuzzleHttp\\Psr7\\": "src/"
  2752. }
  2753. },
  2754. "notification-url": "https://packagist.org/downloads/",
  2755. "license": [
  2756. "MIT"
  2757. ],
  2758. "authors": [
  2759. {
  2760. "name": "Graham Campbell",
  2761. "email": "hello@gjcampbell.co.uk",
  2762. "homepage": "https://github.com/GrahamCampbell"
  2763. },
  2764. {
  2765. "name": "Michael Dowling",
  2766. "email": "mtdowling@gmail.com",
  2767. "homepage": "https://github.com/mtdowling"
  2768. },
  2769. {
  2770. "name": "George Mponos",
  2771. "email": "gmponos@gmail.com",
  2772. "homepage": "https://github.com/gmponos"
  2773. },
  2774. {
  2775. "name": "Tobias Nyholm",
  2776. "email": "tobias.nyholm@gmail.com",
  2777. "homepage": "https://github.com/Nyholm"
  2778. },
  2779. {
  2780. "name": "Márk Sági-Kazár",
  2781. "email": "mark.sagikazar@gmail.com",
  2782. "homepage": "https://github.com/sagikazarmark"
  2783. },
  2784. {
  2785. "name": "Tobias Schultze",
  2786. "email": "webmaster@tubo-world.de",
  2787. "homepage": "https://github.com/Tobion"
  2788. },
  2789. {
  2790. "name": "Márk Sági-Kazár",
  2791. "email": "mark.sagikazar@gmail.com",
  2792. "homepage": "https://sagikazarmark.hu"
  2793. }
  2794. ],
  2795. "description": "PSR-7 message implementation that also provides common utility methods",
  2796. "keywords": [
  2797. "http",
  2798. "message",
  2799. "psr-7",
  2800. "request",
  2801. "response",
  2802. "stream",
  2803. "uri",
  2804. "url"
  2805. ],
  2806. "support": {
  2807. "issues": "https://github.com/guzzle/psr7/issues",
  2808. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  2809. },
  2810. "funding": [
  2811. {
  2812. "url": "https://github.com/GrahamCampbell",
  2813. "type": "github"
  2814. },
  2815. {
  2816. "url": "https://github.com/Nyholm",
  2817. "type": "github"
  2818. },
  2819. {
  2820. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2821. "type": "tidelift"
  2822. }
  2823. ],
  2824. "time": "2023-12-03T20:05:35+00:00"
  2825. },
  2826. {
  2827. "name": "hanson/foundation-sdk",
  2828. "version": "5.0.2",
  2829. "source": {
  2830. "type": "git",
  2831. "url": "https://github.com/Hanson/foundation-sdk.git",
  2832. "reference": "cffcef228937105b8c87c1376548b56f3e0564a4"
  2833. },
  2834. "dist": {
  2835. "type": "zip",
  2836. "url": "https://api.github.com/repos/Hanson/foundation-sdk/zipball/cffcef228937105b8c87c1376548b56f3e0564a4",
  2837. "reference": "cffcef228937105b8c87c1376548b56f3e0564a4",
  2838. "shasum": "",
  2839. "mirrors": [
  2840. {
  2841. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2842. "preferred": true
  2843. }
  2844. ]
  2845. },
  2846. "require": {
  2847. "doctrine/cache": "^1.6",
  2848. "ext-curl": "*",
  2849. "guzzlehttp/guzzle": "^6.2|^7.0",
  2850. "monolog/monolog": "^1.22|^2.0|^3.0",
  2851. "php": "^7.0|^8.0",
  2852. "pimple/pimple": "^3.0",
  2853. "symfony/http-foundation": "^3.3|^4.0|^5.0|^6.0"
  2854. },
  2855. "require-dev": {
  2856. "phpunit/phpunit": "^9.3"
  2857. },
  2858. "type": "library",
  2859. "autoload": {
  2860. "psr-4": {
  2861. "Hanson\\Foundation\\": "src/"
  2862. }
  2863. },
  2864. "notification-url": "https://packagist.org/downloads/",
  2865. "license": [
  2866. "MIT"
  2867. ],
  2868. "authors": [
  2869. {
  2870. "name": "HanSon",
  2871. "email": "h@hanc.cc"
  2872. }
  2873. ],
  2874. "support": {
  2875. "issues": "https://github.com/Hanson/foundation-sdk/issues",
  2876. "source": "https://github.com/Hanson/foundation-sdk/tree/5.0.2"
  2877. },
  2878. "time": "2023-05-31T05:51:32+00:00"
  2879. },
  2880. {
  2881. "name": "ionux/phactor",
  2882. "version": "v1.0.8",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://github.com/ionux/phactor.git",
  2886. "reference": "271373b65cffe75a8c28f7f8c392fe460251f4f7"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://api.github.com/repos/ionux/phactor/zipball/271373b65cffe75a8c28f7f8c392fe460251f4f7",
  2891. "reference": "271373b65cffe75a8c28f7f8c392fe460251f4f7",
  2892. "shasum": "",
  2893. "mirrors": [
  2894. {
  2895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2896. "preferred": true
  2897. }
  2898. ]
  2899. },
  2900. "require": {
  2901. "ext-bcmath": "*",
  2902. "ext-openssl": "*",
  2903. "php": ">=5.6.0"
  2904. },
  2905. "require-dev": {
  2906. "phpunit/phpunit": "^5.7.9"
  2907. },
  2908. "suggest": {
  2909. "ext-gmp": "Highest performing math library and preferred for this library's Elliptic Curve calculations."
  2910. },
  2911. "type": "library",
  2912. "autoload": {
  2913. "psr-4": {
  2914. "Phactor\\": "src/"
  2915. }
  2916. },
  2917. "notification-url": "https://packagist.org/downloads/",
  2918. "license": [
  2919. "MIT"
  2920. ],
  2921. "authors": [
  2922. {
  2923. "name": "Rich Morgan",
  2924. "email": "rich@richmorgan.me",
  2925. "role": "Creator and Lead Developer"
  2926. }
  2927. ],
  2928. "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.",
  2929. "homepage": "https://github.com/ionux/phactor",
  2930. "keywords": [
  2931. "Algorithm",
  2932. "BIP",
  2933. "ECDSA",
  2934. "SIN",
  2935. "arbitrary",
  2936. "asymmetric",
  2937. "base",
  2938. "base58",
  2939. "bcmath",
  2940. "binary",
  2941. "bitcoin",
  2942. "calculator",
  2943. "coprime",
  2944. "crypto",
  2945. "cryptography",
  2946. "curve",
  2947. "digital",
  2948. "dsa",
  2949. "ec",
  2950. "elliptic",
  2951. "encryption",
  2952. "generate",
  2953. "gmp",
  2954. "hex",
  2955. "identification",
  2956. "identity",
  2957. "integer",
  2958. "key",
  2959. "keygen",
  2960. "keypair",
  2961. "keys",
  2962. "library",
  2963. "math",
  2964. "number",
  2965. "performance",
  2966. "phactor",
  2967. "precision",
  2968. "prime",
  2969. "private",
  2970. "protocol",
  2971. "public",
  2972. "secp256k1",
  2973. "service",
  2974. "signature",
  2975. "verify"
  2976. ],
  2977. "support": {
  2978. "email": "rich@richmorgan.me",
  2979. "issues": "https://github.com/ionux/phactor/issues",
  2980. "source": "https://github.com/ionux/phactor"
  2981. },
  2982. "time": "2018-04-27T16:49:28+00:00"
  2983. },
  2984. {
  2985. "name": "jaeger/g-http",
  2986. "version": "V1.7.2",
  2987. "source": {
  2988. "type": "git",
  2989. "url": "https://github.com/jae-jae/GHttp.git",
  2990. "reference": "82585ddd5e2c6651e37ab1d8166efcdbb6b293d4"
  2991. },
  2992. "dist": {
  2993. "type": "zip",
  2994. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/82585ddd5e2c6651e37ab1d8166efcdbb6b293d4",
  2995. "reference": "82585ddd5e2c6651e37ab1d8166efcdbb6b293d4",
  2996. "shasum": ""
  2997. },
  2998. "require": {
  2999. "cache/filesystem-adapter": "^1",
  3000. "guzzlehttp/guzzle": "^6.0 | ^7.0"
  3001. },
  3002. "type": "library",
  3003. "autoload": {
  3004. "psr-4": {
  3005. "Jaeger\\": "src"
  3006. }
  3007. },
  3008. "notification-url": "https://packagist.org/downloads/",
  3009. "license": [
  3010. "MIT"
  3011. ],
  3012. "authors": [
  3013. {
  3014. "name": "Jaeger",
  3015. "email": "JaegerCode@gmail.com"
  3016. }
  3017. ],
  3018. "description": "Simple Http client base on GuzzleHttp",
  3019. "support": {
  3020. "issues": "https://github.com/jae-jae/GHttp/issues",
  3021. "source": "https://github.com/jae-jae/GHttp/tree/V1.7.2"
  3022. },
  3023. "time": "2021-08-08T04:59:44+00:00"
  3024. },
  3025. {
  3026. "name": "jaeger/phpquery-single",
  3027. "version": "1.1.1",
  3028. "source": {
  3029. "type": "git",
  3030. "url": "https://github.com/jae-jae/phpQuery-single.git",
  3031. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  3032. },
  3033. "dist": {
  3034. "type": "zip",
  3035. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  3036. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  3037. "shasum": ""
  3038. },
  3039. "require": {
  3040. "php": ">=5.3.0"
  3041. },
  3042. "type": "library",
  3043. "autoload": {
  3044. "classmap": [
  3045. "phpQuery.php"
  3046. ]
  3047. },
  3048. "notification-url": "https://packagist.org/downloads/",
  3049. "license": [
  3050. "MIT"
  3051. ],
  3052. "authors": [
  3053. {
  3054. "name": "Tobiasz Cudnik",
  3055. "email": "tobiasz.cudnik@gmail.com",
  3056. "homepage": "https://github.com/TobiaszCudnik",
  3057. "role": "Developer"
  3058. },
  3059. {
  3060. "name": "Jaeger",
  3061. "role": "Packager"
  3062. }
  3063. ],
  3064. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  3065. "homepage": "http://code.google.com/p/phpquery/",
  3066. "support": {
  3067. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  3068. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  3069. },
  3070. "time": "2022-03-26T15:01:16+00:00"
  3071. },
  3072. {
  3073. "name": "jaeger/querylist",
  3074. "version": "V4.2.8",
  3075. "source": {
  3076. "type": "git",
  3077. "url": "https://github.com/jae-jae/QueryList.git",
  3078. "reference": "39dc0ca9c668bec7a793e20472ccd7d26ef89ea4"
  3079. },
  3080. "dist": {
  3081. "type": "zip",
  3082. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/39dc0ca9c668bec7a793e20472ccd7d26ef89ea4",
  3083. "reference": "39dc0ca9c668bec7a793e20472ccd7d26ef89ea4",
  3084. "shasum": ""
  3085. },
  3086. "require": {
  3087. "ext-dom": "*",
  3088. "jaeger/g-http": "^1.1",
  3089. "jaeger/phpquery-single": "^1",
  3090. "php": ">=7.1",
  3091. "tightenco/collect": ">5.0"
  3092. },
  3093. "require-dev": {
  3094. "phpunit/phpunit": "^8.5",
  3095. "symfony/var-dumper": "^3.3"
  3096. },
  3097. "type": "library",
  3098. "autoload": {
  3099. "psr-4": {
  3100. "QL\\": "src"
  3101. }
  3102. },
  3103. "notification-url": "https://packagist.org/downloads/",
  3104. "license": [
  3105. "MIT"
  3106. ],
  3107. "authors": [
  3108. {
  3109. "name": "Jaeger",
  3110. "email": "JaegerCode@gmail.com"
  3111. }
  3112. ],
  3113. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  3114. "homepage": "http://querylist.cc",
  3115. "keywords": [
  3116. "QueryList",
  3117. "phpQuery",
  3118. "spider"
  3119. ],
  3120. "support": {
  3121. "issues": "https://github.com/jae-jae/QueryList/issues",
  3122. "source": "https://github.com/jae-jae/QueryList/tree/V4.2.8"
  3123. },
  3124. "funding": [
  3125. {
  3126. "url": "https://opencollective.com/querylist",
  3127. "type": "open_collective"
  3128. }
  3129. ],
  3130. "time": "2021-07-05T06:07:58+00:00"
  3131. },
  3132. {
  3133. "name": "kornrunner/keccak",
  3134. "version": "1.1.0",
  3135. "source": {
  3136. "type": "git",
  3137. "url": "https://github.com/kornrunner/php-keccak.git",
  3138. "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890"
  3139. },
  3140. "dist": {
  3141. "type": "zip",
  3142. "url": "https://api.github.com/repos/kornrunner/php-keccak/zipball/433749d28e117fb97baf9f2631b92b5d9ab3c890",
  3143. "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890",
  3144. "shasum": "",
  3145. "mirrors": [
  3146. {
  3147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3148. "preferred": true
  3149. }
  3150. ]
  3151. },
  3152. "require": {
  3153. "php": ">=7.3",
  3154. "symfony/polyfill-mbstring": "^1.8"
  3155. },
  3156. "require-dev": {
  3157. "phpunit/phpunit": "^8.2"
  3158. },
  3159. "type": "library",
  3160. "autoload": {
  3161. "psr-4": {
  3162. "kornrunner\\": "src"
  3163. }
  3164. },
  3165. "notification-url": "https://packagist.org/downloads/",
  3166. "license": [
  3167. "MIT"
  3168. ],
  3169. "authors": [
  3170. {
  3171. "name": "Boris Momcilovic",
  3172. "homepage": "https://github.com/kornrunner/php-keccak"
  3173. }
  3174. ],
  3175. "description": "Pure PHP implementation of Keccak",
  3176. "keywords": [
  3177. "keccak",
  3178. "sha-3",
  3179. "sha3-256"
  3180. ],
  3181. "support": {
  3182. "issues": "https://github.com/kornrunner/php-keccak/issues",
  3183. "source": "https://github.com/kornrunner/php-keccak/tree/1.1.0"
  3184. },
  3185. "time": "2020-12-07T15:40:44+00:00"
  3186. },
  3187. {
  3188. "name": "kornrunner/secp256k1",
  3189. "version": "0.2.0",
  3190. "source": {
  3191. "type": "git",
  3192. "url": "https://github.com/kornrunner/php-secp256k1.git",
  3193. "reference": "c3990dba47c7a8b0c9fd858fb29c61a5794fbb39"
  3194. },
  3195. "dist": {
  3196. "type": "zip",
  3197. "url": "https://api.github.com/repos/kornrunner/php-secp256k1/zipball/c3990dba47c7a8b0c9fd858fb29c61a5794fbb39",
  3198. "reference": "c3990dba47c7a8b0c9fd858fb29c61a5794fbb39",
  3199. "shasum": "",
  3200. "mirrors": [
  3201. {
  3202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3203. "preferred": true
  3204. }
  3205. ]
  3206. },
  3207. "require": {
  3208. "mdanter/ecc": "^1",
  3209. "php": ">=7.3"
  3210. },
  3211. "require-dev": {
  3212. "phpunit/phpunit": "^9"
  3213. },
  3214. "type": "library",
  3215. "autoload": {
  3216. "psr-4": {
  3217. "kornrunner\\": "src/"
  3218. }
  3219. },
  3220. "notification-url": "https://packagist.org/downloads/",
  3221. "license": [
  3222. "MIT"
  3223. ],
  3224. "authors": [
  3225. {
  3226. "name": "Boris Momčilović",
  3227. "email": "boris.momcilovic@gmail.com"
  3228. }
  3229. ],
  3230. "description": "Pure PHP secp256k1",
  3231. "keywords": [
  3232. "curve",
  3233. "ecc",
  3234. "elliptic",
  3235. "secp256k1"
  3236. ],
  3237. "support": {
  3238. "issues": "https://github.com/kornrunner/php-secp256k1/issues",
  3239. "source": "https://github.com/kornrunner/php-secp256k1/tree/0.2.0"
  3240. },
  3241. "time": "2021-01-19T03:30:01+00:00"
  3242. },
  3243. {
  3244. "name": "laravel/framework",
  3245. "version": "v8.83.27",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://github.com/laravel/framework.git",
  3249. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  3254. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  3255. "shasum": ""
  3256. },
  3257. "require": {
  3258. "doctrine/inflector": "^1.4|^2.0",
  3259. "dragonmantank/cron-expression": "^3.0.2",
  3260. "egulias/email-validator": "^2.1.10",
  3261. "ext-json": "*",
  3262. "ext-mbstring": "*",
  3263. "ext-openssl": "*",
  3264. "laravel/serializable-closure": "^1.0",
  3265. "league/commonmark": "^1.3|^2.0.2",
  3266. "league/flysystem": "^1.1",
  3267. "monolog/monolog": "^2.0",
  3268. "nesbot/carbon": "^2.53.1",
  3269. "opis/closure": "^3.6",
  3270. "php": "^7.3|^8.0",
  3271. "psr/container": "^1.0",
  3272. "psr/log": "^1.0|^2.0",
  3273. "psr/simple-cache": "^1.0",
  3274. "ramsey/uuid": "^4.2.2",
  3275. "swiftmailer/swiftmailer": "^6.3",
  3276. "symfony/console": "^5.4",
  3277. "symfony/error-handler": "^5.4",
  3278. "symfony/finder": "^5.4",
  3279. "symfony/http-foundation": "^5.4",
  3280. "symfony/http-kernel": "^5.4",
  3281. "symfony/mime": "^5.4",
  3282. "symfony/process": "^5.4",
  3283. "symfony/routing": "^5.4",
  3284. "symfony/var-dumper": "^5.4",
  3285. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  3286. "vlucas/phpdotenv": "^5.4.1",
  3287. "voku/portable-ascii": "^1.6.1"
  3288. },
  3289. "conflict": {
  3290. "tightenco/collect": "<5.5.33"
  3291. },
  3292. "provide": {
  3293. "psr/container-implementation": "1.0",
  3294. "psr/simple-cache-implementation": "1.0"
  3295. },
  3296. "replace": {
  3297. "illuminate/auth": "self.version",
  3298. "illuminate/broadcasting": "self.version",
  3299. "illuminate/bus": "self.version",
  3300. "illuminate/cache": "self.version",
  3301. "illuminate/collections": "self.version",
  3302. "illuminate/config": "self.version",
  3303. "illuminate/console": "self.version",
  3304. "illuminate/container": "self.version",
  3305. "illuminate/contracts": "self.version",
  3306. "illuminate/cookie": "self.version",
  3307. "illuminate/database": "self.version",
  3308. "illuminate/encryption": "self.version",
  3309. "illuminate/events": "self.version",
  3310. "illuminate/filesystem": "self.version",
  3311. "illuminate/hashing": "self.version",
  3312. "illuminate/http": "self.version",
  3313. "illuminate/log": "self.version",
  3314. "illuminate/macroable": "self.version",
  3315. "illuminate/mail": "self.version",
  3316. "illuminate/notifications": "self.version",
  3317. "illuminate/pagination": "self.version",
  3318. "illuminate/pipeline": "self.version",
  3319. "illuminate/queue": "self.version",
  3320. "illuminate/redis": "self.version",
  3321. "illuminate/routing": "self.version",
  3322. "illuminate/session": "self.version",
  3323. "illuminate/support": "self.version",
  3324. "illuminate/testing": "self.version",
  3325. "illuminate/translation": "self.version",
  3326. "illuminate/validation": "self.version",
  3327. "illuminate/view": "self.version"
  3328. },
  3329. "require-dev": {
  3330. "aws/aws-sdk-php": "^3.198.1",
  3331. "doctrine/dbal": "^2.13.3|^3.1.4",
  3332. "filp/whoops": "^2.14.3",
  3333. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  3334. "league/flysystem-cached-adapter": "^1.0",
  3335. "mockery/mockery": "^1.4.4",
  3336. "orchestra/testbench-core": "^6.27",
  3337. "pda/pheanstalk": "^4.0",
  3338. "phpunit/phpunit": "^8.5.19|^9.5.8",
  3339. "predis/predis": "^1.1.9",
  3340. "symfony/cache": "^5.4"
  3341. },
  3342. "suggest": {
  3343. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3344. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  3345. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  3346. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  3347. "ext-bcmath": "Required to use the multiple_of validation rule.",
  3348. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3349. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3350. "ext-memcached": "Required to use the memcache cache driver.",
  3351. "ext-pcntl": "Required to use all features of the queue worker.",
  3352. "ext-posix": "Required to use all features of the queue worker.",
  3353. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  3354. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3355. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3356. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  3357. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3358. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  3359. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  3360. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  3361. "mockery/mockery": "Required to use mocking (^1.4.4).",
  3362. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3363. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  3364. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  3365. "predis/predis": "Required to use the predis connector (^1.1.9).",
  3366. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3367. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  3368. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  3369. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  3370. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  3371. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  3372. },
  3373. "type": "library",
  3374. "extra": {
  3375. "branch-alias": {
  3376. "dev-master": "8.x-dev"
  3377. }
  3378. },
  3379. "autoload": {
  3380. "files": [
  3381. "src/Illuminate/Collections/helpers.php",
  3382. "src/Illuminate/Events/functions.php",
  3383. "src/Illuminate/Foundation/helpers.php",
  3384. "src/Illuminate/Support/helpers.php"
  3385. ],
  3386. "psr-4": {
  3387. "Illuminate\\": "src/Illuminate/",
  3388. "Illuminate\\Support\\": [
  3389. "src/Illuminate/Macroable/",
  3390. "src/Illuminate/Collections/"
  3391. ]
  3392. }
  3393. },
  3394. "notification-url": "https://packagist.org/downloads/",
  3395. "license": [
  3396. "MIT"
  3397. ],
  3398. "authors": [
  3399. {
  3400. "name": "Taylor Otwell",
  3401. "email": "taylor@laravel.com"
  3402. }
  3403. ],
  3404. "description": "The Laravel Framework.",
  3405. "homepage": "https://laravel.com",
  3406. "keywords": [
  3407. "framework",
  3408. "laravel"
  3409. ],
  3410. "support": {
  3411. "issues": "https://github.com/laravel/framework/issues",
  3412. "source": "https://github.com/laravel/framework"
  3413. },
  3414. "time": "2022-12-08T15:28:55+00:00"
  3415. },
  3416. {
  3417. "name": "laravel/serializable-closure",
  3418. "version": "v1.3.3",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/laravel/serializable-closure.git",
  3422. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  3427. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  3428. "shasum": ""
  3429. },
  3430. "require": {
  3431. "php": "^7.3|^8.0"
  3432. },
  3433. "require-dev": {
  3434. "nesbot/carbon": "^2.61",
  3435. "pestphp/pest": "^1.21.3",
  3436. "phpstan/phpstan": "^1.8.2",
  3437. "symfony/var-dumper": "^5.4.11"
  3438. },
  3439. "type": "library",
  3440. "extra": {
  3441. "branch-alias": {
  3442. "dev-master": "1.x-dev"
  3443. }
  3444. },
  3445. "autoload": {
  3446. "psr-4": {
  3447. "Laravel\\SerializableClosure\\": "src/"
  3448. }
  3449. },
  3450. "notification-url": "https://packagist.org/downloads/",
  3451. "license": [
  3452. "MIT"
  3453. ],
  3454. "authors": [
  3455. {
  3456. "name": "Taylor Otwell",
  3457. "email": "taylor@laravel.com"
  3458. },
  3459. {
  3460. "name": "Nuno Maduro",
  3461. "email": "nuno@laravel.com"
  3462. }
  3463. ],
  3464. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3465. "keywords": [
  3466. "closure",
  3467. "laravel",
  3468. "serializable"
  3469. ],
  3470. "support": {
  3471. "issues": "https://github.com/laravel/serializable-closure/issues",
  3472. "source": "https://github.com/laravel/serializable-closure"
  3473. },
  3474. "time": "2023-11-08T14:08:06+00:00"
  3475. },
  3476. {
  3477. "name": "laravel/socialite",
  3478. "version": "v5.11.0",
  3479. "source": {
  3480. "type": "git",
  3481. "url": "https://github.com/laravel/socialite.git",
  3482. "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10"
  3483. },
  3484. "dist": {
  3485. "type": "zip",
  3486. "url": "https://api.github.com/repos/laravel/socialite/zipball/4f6a8af6f3f7c18da03d19842dd0514315501c10",
  3487. "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10",
  3488. "shasum": ""
  3489. },
  3490. "require": {
  3491. "ext-json": "*",
  3492. "guzzlehttp/guzzle": "^6.0|^7.0",
  3493. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3494. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3495. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3496. "league/oauth1-client": "^1.10.1",
  3497. "php": "^7.2|^8.0"
  3498. },
  3499. "require-dev": {
  3500. "mockery/mockery": "^1.0",
  3501. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3502. "phpstan/phpstan": "^1.10",
  3503. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  3504. },
  3505. "type": "library",
  3506. "extra": {
  3507. "branch-alias": {
  3508. "dev-master": "5.x-dev"
  3509. },
  3510. "laravel": {
  3511. "providers": [
  3512. "Laravel\\Socialite\\SocialiteServiceProvider"
  3513. ],
  3514. "aliases": {
  3515. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3516. }
  3517. }
  3518. },
  3519. "autoload": {
  3520. "psr-4": {
  3521. "Laravel\\Socialite\\": "src/"
  3522. }
  3523. },
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "MIT"
  3527. ],
  3528. "authors": [
  3529. {
  3530. "name": "Taylor Otwell",
  3531. "email": "taylor@laravel.com"
  3532. }
  3533. ],
  3534. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3535. "homepage": "https://laravel.com",
  3536. "keywords": [
  3537. "laravel",
  3538. "oauth"
  3539. ],
  3540. "support": {
  3541. "issues": "https://github.com/laravel/socialite/issues",
  3542. "source": "https://github.com/laravel/socialite"
  3543. },
  3544. "time": "2023-12-02T18:22:36+00:00"
  3545. },
  3546. {
  3547. "name": "laravel/tinker",
  3548. "version": "v2.8.2",
  3549. "source": {
  3550. "type": "git",
  3551. "url": "https://github.com/laravel/tinker.git",
  3552. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3"
  3553. },
  3554. "dist": {
  3555. "type": "zip",
  3556. "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  3557. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  3558. "shasum": ""
  3559. },
  3560. "require": {
  3561. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3562. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3563. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3564. "php": "^7.2.5|^8.0",
  3565. "psy/psysh": "^0.10.4|^0.11.1",
  3566. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  3567. },
  3568. "require-dev": {
  3569. "mockery/mockery": "~1.3.3|^1.4.2",
  3570. "phpstan/phpstan": "^1.10",
  3571. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3572. },
  3573. "suggest": {
  3574. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  3575. },
  3576. "type": "library",
  3577. "extra": {
  3578. "branch-alias": {
  3579. "dev-master": "2.x-dev"
  3580. },
  3581. "laravel": {
  3582. "providers": [
  3583. "Laravel\\Tinker\\TinkerServiceProvider"
  3584. ]
  3585. }
  3586. },
  3587. "autoload": {
  3588. "psr-4": {
  3589. "Laravel\\Tinker\\": "src/"
  3590. }
  3591. },
  3592. "notification-url": "https://packagist.org/downloads/",
  3593. "license": [
  3594. "MIT"
  3595. ],
  3596. "authors": [
  3597. {
  3598. "name": "Taylor Otwell",
  3599. "email": "taylor@laravel.com"
  3600. }
  3601. ],
  3602. "description": "Powerful REPL for the Laravel framework.",
  3603. "keywords": [
  3604. "REPL",
  3605. "Tinker",
  3606. "laravel",
  3607. "psysh"
  3608. ],
  3609. "support": {
  3610. "issues": "https://github.com/laravel/tinker/issues",
  3611. "source": "https://github.com/laravel/tinker/tree/v2.8.2"
  3612. },
  3613. "time": "2023-08-15T14:27:00+00:00"
  3614. },
  3615. {
  3616. "name": "league/commonmark",
  3617. "version": "2.4.1",
  3618. "source": {
  3619. "type": "git",
  3620. "url": "https://github.com/thephpleague/commonmark.git",
  3621. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  3622. },
  3623. "dist": {
  3624. "type": "zip",
  3625. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  3626. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  3627. "shasum": ""
  3628. },
  3629. "require": {
  3630. "ext-mbstring": "*",
  3631. "league/config": "^1.1.1",
  3632. "php": "^7.4 || ^8.0",
  3633. "psr/event-dispatcher": "^1.0",
  3634. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3635. "symfony/polyfill-php80": "^1.16"
  3636. },
  3637. "require-dev": {
  3638. "cebe/markdown": "^1.0",
  3639. "commonmark/cmark": "0.30.0",
  3640. "commonmark/commonmark.js": "0.30.0",
  3641. "composer/package-versions-deprecated": "^1.8",
  3642. "embed/embed": "^4.4",
  3643. "erusev/parsedown": "^1.0",
  3644. "ext-json": "*",
  3645. "github/gfm": "0.29.0",
  3646. "michelf/php-markdown": "^1.4 || ^2.0",
  3647. "nyholm/psr7": "^1.5",
  3648. "phpstan/phpstan": "^1.8.2",
  3649. "phpunit/phpunit": "^9.5.21",
  3650. "scrutinizer/ocular": "^1.8.1",
  3651. "symfony/finder": "^5.3 | ^6.0",
  3652. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  3653. "unleashedtech/php-coding-standard": "^3.1.1",
  3654. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3655. },
  3656. "suggest": {
  3657. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3658. },
  3659. "type": "library",
  3660. "extra": {
  3661. "branch-alias": {
  3662. "dev-main": "2.5-dev"
  3663. }
  3664. },
  3665. "autoload": {
  3666. "psr-4": {
  3667. "League\\CommonMark\\": "src"
  3668. }
  3669. },
  3670. "notification-url": "https://packagist.org/downloads/",
  3671. "license": [
  3672. "BSD-3-Clause"
  3673. ],
  3674. "authors": [
  3675. {
  3676. "name": "Colin O'Dell",
  3677. "email": "colinodell@gmail.com",
  3678. "homepage": "https://www.colinodell.com",
  3679. "role": "Lead Developer"
  3680. }
  3681. ],
  3682. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3683. "homepage": "https://commonmark.thephpleague.com",
  3684. "keywords": [
  3685. "commonmark",
  3686. "flavored",
  3687. "gfm",
  3688. "github",
  3689. "github-flavored",
  3690. "markdown",
  3691. "md",
  3692. "parser"
  3693. ],
  3694. "support": {
  3695. "docs": "https://commonmark.thephpleague.com/",
  3696. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3697. "issues": "https://github.com/thephpleague/commonmark/issues",
  3698. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3699. "source": "https://github.com/thephpleague/commonmark"
  3700. },
  3701. "funding": [
  3702. {
  3703. "url": "https://www.colinodell.com/sponsor",
  3704. "type": "custom"
  3705. },
  3706. {
  3707. "url": "https://www.paypal.me/colinpodell/10.00",
  3708. "type": "custom"
  3709. },
  3710. {
  3711. "url": "https://github.com/colinodell",
  3712. "type": "github"
  3713. },
  3714. {
  3715. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3716. "type": "tidelift"
  3717. }
  3718. ],
  3719. "time": "2023-08-30T16:55:00+00:00"
  3720. },
  3721. {
  3722. "name": "league/config",
  3723. "version": "v1.2.0",
  3724. "source": {
  3725. "type": "git",
  3726. "url": "https://github.com/thephpleague/config.git",
  3727. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3728. },
  3729. "dist": {
  3730. "type": "zip",
  3731. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3732. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3733. "shasum": ""
  3734. },
  3735. "require": {
  3736. "dflydev/dot-access-data": "^3.0.1",
  3737. "nette/schema": "^1.2",
  3738. "php": "^7.4 || ^8.0"
  3739. },
  3740. "require-dev": {
  3741. "phpstan/phpstan": "^1.8.2",
  3742. "phpunit/phpunit": "^9.5.5",
  3743. "scrutinizer/ocular": "^1.8.1",
  3744. "unleashedtech/php-coding-standard": "^3.1",
  3745. "vimeo/psalm": "^4.7.3"
  3746. },
  3747. "type": "library",
  3748. "extra": {
  3749. "branch-alias": {
  3750. "dev-main": "1.2-dev"
  3751. }
  3752. },
  3753. "autoload": {
  3754. "psr-4": {
  3755. "League\\Config\\": "src"
  3756. }
  3757. },
  3758. "notification-url": "https://packagist.org/downloads/",
  3759. "license": [
  3760. "BSD-3-Clause"
  3761. ],
  3762. "authors": [
  3763. {
  3764. "name": "Colin O'Dell",
  3765. "email": "colinodell@gmail.com",
  3766. "homepage": "https://www.colinodell.com",
  3767. "role": "Lead Developer"
  3768. }
  3769. ],
  3770. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3771. "homepage": "https://config.thephpleague.com",
  3772. "keywords": [
  3773. "array",
  3774. "config",
  3775. "configuration",
  3776. "dot",
  3777. "dot-access",
  3778. "nested",
  3779. "schema"
  3780. ],
  3781. "support": {
  3782. "docs": "https://config.thephpleague.com/",
  3783. "issues": "https://github.com/thephpleague/config/issues",
  3784. "rss": "https://github.com/thephpleague/config/releases.atom",
  3785. "source": "https://github.com/thephpleague/config"
  3786. },
  3787. "funding": [
  3788. {
  3789. "url": "https://www.colinodell.com/sponsor",
  3790. "type": "custom"
  3791. },
  3792. {
  3793. "url": "https://www.paypal.me/colinpodell/10.00",
  3794. "type": "custom"
  3795. },
  3796. {
  3797. "url": "https://github.com/colinodell",
  3798. "type": "github"
  3799. }
  3800. ],
  3801. "time": "2022-12-11T20:36:23+00:00"
  3802. },
  3803. {
  3804. "name": "league/flysystem",
  3805. "version": "1.1.10",
  3806. "source": {
  3807. "type": "git",
  3808. "url": "https://github.com/thephpleague/flysystem.git",
  3809. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  3810. },
  3811. "dist": {
  3812. "type": "zip",
  3813. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3814. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3815. "shasum": ""
  3816. },
  3817. "require": {
  3818. "ext-fileinfo": "*",
  3819. "league/mime-type-detection": "^1.3",
  3820. "php": "^7.2.5 || ^8.0"
  3821. },
  3822. "conflict": {
  3823. "league/flysystem-sftp": "<1.0.6"
  3824. },
  3825. "require-dev": {
  3826. "phpspec/prophecy": "^1.11.1",
  3827. "phpunit/phpunit": "^8.5.8"
  3828. },
  3829. "suggest": {
  3830. "ext-ftp": "Allows you to use FTP server storage",
  3831. "ext-openssl": "Allows you to use FTPS server storage",
  3832. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3833. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3834. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3835. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3836. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3837. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3838. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3839. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3840. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3841. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3842. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3843. },
  3844. "type": "library",
  3845. "extra": {
  3846. "branch-alias": {
  3847. "dev-master": "1.1-dev"
  3848. }
  3849. },
  3850. "autoload": {
  3851. "psr-4": {
  3852. "League\\Flysystem\\": "src/"
  3853. }
  3854. },
  3855. "notification-url": "https://packagist.org/downloads/",
  3856. "license": [
  3857. "MIT"
  3858. ],
  3859. "authors": [
  3860. {
  3861. "name": "Frank de Jonge",
  3862. "email": "info@frenky.net"
  3863. }
  3864. ],
  3865. "description": "Filesystem abstraction: Many filesystems, one API.",
  3866. "keywords": [
  3867. "Cloud Files",
  3868. "WebDAV",
  3869. "abstraction",
  3870. "aws",
  3871. "cloud",
  3872. "copy.com",
  3873. "dropbox",
  3874. "file systems",
  3875. "files",
  3876. "filesystem",
  3877. "filesystems",
  3878. "ftp",
  3879. "rackspace",
  3880. "remote",
  3881. "s3",
  3882. "sftp",
  3883. "storage"
  3884. ],
  3885. "support": {
  3886. "issues": "https://github.com/thephpleague/flysystem/issues",
  3887. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  3888. },
  3889. "funding": [
  3890. {
  3891. "url": "https://offset.earth/frankdejonge",
  3892. "type": "other"
  3893. }
  3894. ],
  3895. "time": "2022-10-04T09:16:37+00:00"
  3896. },
  3897. {
  3898. "name": "league/mime-type-detection",
  3899. "version": "1.14.0",
  3900. "source": {
  3901. "type": "git",
  3902. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3903. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e"
  3904. },
  3905. "dist": {
  3906. "type": "zip",
  3907. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e",
  3908. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e",
  3909. "shasum": ""
  3910. },
  3911. "require": {
  3912. "ext-fileinfo": "*",
  3913. "php": "^7.4 || ^8.0"
  3914. },
  3915. "require-dev": {
  3916. "friendsofphp/php-cs-fixer": "^3.2",
  3917. "phpstan/phpstan": "^0.12.68",
  3918. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3919. },
  3920. "type": "library",
  3921. "autoload": {
  3922. "psr-4": {
  3923. "League\\MimeTypeDetection\\": "src"
  3924. }
  3925. },
  3926. "notification-url": "https://packagist.org/downloads/",
  3927. "license": [
  3928. "MIT"
  3929. ],
  3930. "authors": [
  3931. {
  3932. "name": "Frank de Jonge",
  3933. "email": "info@frankdejonge.nl"
  3934. }
  3935. ],
  3936. "description": "Mime-type detection for Flysystem",
  3937. "support": {
  3938. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3939. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.14.0"
  3940. },
  3941. "funding": [
  3942. {
  3943. "url": "https://github.com/frankdejonge",
  3944. "type": "github"
  3945. },
  3946. {
  3947. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3948. "type": "tidelift"
  3949. }
  3950. ],
  3951. "time": "2023-10-17T14:13:20+00:00"
  3952. },
  3953. {
  3954. "name": "league/oauth1-client",
  3955. "version": "v1.10.1",
  3956. "source": {
  3957. "type": "git",
  3958. "url": "https://github.com/thephpleague/oauth1-client.git",
  3959. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3960. },
  3961. "dist": {
  3962. "type": "zip",
  3963. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3964. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3965. "shasum": ""
  3966. },
  3967. "require": {
  3968. "ext-json": "*",
  3969. "ext-openssl": "*",
  3970. "guzzlehttp/guzzle": "^6.0|^7.0",
  3971. "guzzlehttp/psr7": "^1.7|^2.0",
  3972. "php": ">=7.1||>=8.0"
  3973. },
  3974. "require-dev": {
  3975. "ext-simplexml": "*",
  3976. "friendsofphp/php-cs-fixer": "^2.17",
  3977. "mockery/mockery": "^1.3.3",
  3978. "phpstan/phpstan": "^0.12.42",
  3979. "phpunit/phpunit": "^7.5||9.5"
  3980. },
  3981. "suggest": {
  3982. "ext-simplexml": "For decoding XML-based responses."
  3983. },
  3984. "type": "library",
  3985. "extra": {
  3986. "branch-alias": {
  3987. "dev-master": "1.0-dev",
  3988. "dev-develop": "2.0-dev"
  3989. }
  3990. },
  3991. "autoload": {
  3992. "psr-4": {
  3993. "League\\OAuth1\\Client\\": "src/"
  3994. }
  3995. },
  3996. "notification-url": "https://packagist.org/downloads/",
  3997. "license": [
  3998. "MIT"
  3999. ],
  4000. "authors": [
  4001. {
  4002. "name": "Ben Corlett",
  4003. "email": "bencorlett@me.com",
  4004. "homepage": "http://www.webcomm.com.au",
  4005. "role": "Developer"
  4006. }
  4007. ],
  4008. "description": "OAuth 1.0 Client Library",
  4009. "keywords": [
  4010. "Authentication",
  4011. "SSO",
  4012. "authorization",
  4013. "bitbucket",
  4014. "identity",
  4015. "idp",
  4016. "oauth",
  4017. "oauth1",
  4018. "single sign on",
  4019. "trello",
  4020. "tumblr",
  4021. "twitter"
  4022. ],
  4023. "support": {
  4024. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4025. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4026. },
  4027. "time": "2022-04-15T14:02:14+00:00"
  4028. },
  4029. {
  4030. "name": "lizhichao/one-sm",
  4031. "version": "1.10",
  4032. "source": {
  4033. "type": "git",
  4034. "url": "https://github.com/lizhichao/sm.git",
  4035. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  4036. },
  4037. "dist": {
  4038. "type": "zip",
  4039. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  4040. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  4041. "shasum": ""
  4042. },
  4043. "require": {
  4044. "php": ">=5.6"
  4045. },
  4046. "type": "library",
  4047. "autoload": {
  4048. "psr-4": {
  4049. "OneSm\\": "src/"
  4050. }
  4051. },
  4052. "notification-url": "https://packagist.org/downloads/",
  4053. "license": [
  4054. "Apache-2.0"
  4055. ],
  4056. "authors": [
  4057. {
  4058. "name": "tanszhe",
  4059. "email": "1018595261@qq.com"
  4060. }
  4061. ],
  4062. "description": "国密sm3",
  4063. "keywords": [
  4064. "php",
  4065. "sm3"
  4066. ],
  4067. "support": {
  4068. "issues": "https://github.com/lizhichao/sm/issues",
  4069. "source": "https://github.com/lizhichao/sm/tree/1.10"
  4070. },
  4071. "funding": [
  4072. {
  4073. "url": "https://www.vicsdf.com/img/w.jpg",
  4074. "type": "custom"
  4075. },
  4076. {
  4077. "url": "https://www.vicsdf.com/img/z.jpg",
  4078. "type": "custom"
  4079. }
  4080. ],
  4081. "time": "2021-05-26T06:19:22+00:00"
  4082. },
  4083. {
  4084. "name": "maatwebsite/excel",
  4085. "version": "3.1.51",
  4086. "source": {
  4087. "type": "git",
  4088. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  4089. "reference": "6d3c78ce6645abada32e03b40dc7f3c561878bc3"
  4090. },
  4091. "dist": {
  4092. "type": "zip",
  4093. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d3c78ce6645abada32e03b40dc7f3c561878bc3",
  4094. "reference": "6d3c78ce6645abada32e03b40dc7f3c561878bc3",
  4095. "shasum": ""
  4096. },
  4097. "require": {
  4098. "composer/semver": "^3.3",
  4099. "ext-json": "*",
  4100. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0",
  4101. "php": "^7.0||^8.0",
  4102. "phpoffice/phpspreadsheet": "^1.18",
  4103. "psr/simple-cache": "^1.0||^2.0||^3.0"
  4104. },
  4105. "require-dev": {
  4106. "orchestra/testbench": "^6.0||^7.0||^8.0",
  4107. "predis/predis": "^1.1"
  4108. },
  4109. "type": "library",
  4110. "extra": {
  4111. "laravel": {
  4112. "providers": [
  4113. "Maatwebsite\\Excel\\ExcelServiceProvider"
  4114. ],
  4115. "aliases": {
  4116. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  4117. }
  4118. }
  4119. },
  4120. "autoload": {
  4121. "psr-4": {
  4122. "Maatwebsite\\Excel\\": "src/"
  4123. }
  4124. },
  4125. "notification-url": "https://packagist.org/downloads/",
  4126. "license": [
  4127. "MIT"
  4128. ],
  4129. "authors": [
  4130. {
  4131. "name": "Patrick Brouwers",
  4132. "email": "patrick@spartner.nl"
  4133. }
  4134. ],
  4135. "description": "Supercharged Excel exports and imports in Laravel",
  4136. "keywords": [
  4137. "PHPExcel",
  4138. "batch",
  4139. "csv",
  4140. "excel",
  4141. "export",
  4142. "import",
  4143. "laravel",
  4144. "php",
  4145. "phpspreadsheet"
  4146. ],
  4147. "support": {
  4148. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  4149. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.51"
  4150. },
  4151. "funding": [
  4152. {
  4153. "url": "https://laravel-excel.com/commercial-support",
  4154. "type": "custom"
  4155. },
  4156. {
  4157. "url": "https://github.com/patrickbrouwers",
  4158. "type": "github"
  4159. }
  4160. ],
  4161. "time": "2023-12-08T12:44:49+00:00"
  4162. },
  4163. {
  4164. "name": "maennchen/zipstream-php",
  4165. "version": "2.4.0",
  4166. "source": {
  4167. "type": "git",
  4168. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  4169. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  4170. },
  4171. "dist": {
  4172. "type": "zip",
  4173. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  4174. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  4175. "shasum": ""
  4176. },
  4177. "require": {
  4178. "ext-mbstring": "*",
  4179. "myclabs/php-enum": "^1.5",
  4180. "php": "^8.0",
  4181. "psr/http-message": "^1.0"
  4182. },
  4183. "require-dev": {
  4184. "ext-zip": "*",
  4185. "friendsofphp/php-cs-fixer": "^3.9",
  4186. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  4187. "mikey179/vfsstream": "^1.6",
  4188. "php-coveralls/php-coveralls": "^2.4",
  4189. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  4190. "vimeo/psalm": "^5.0"
  4191. },
  4192. "type": "library",
  4193. "autoload": {
  4194. "psr-4": {
  4195. "ZipStream\\": "src/"
  4196. }
  4197. },
  4198. "notification-url": "https://packagist.org/downloads/",
  4199. "license": [
  4200. "MIT"
  4201. ],
  4202. "authors": [
  4203. {
  4204. "name": "Paul Duncan",
  4205. "email": "pabs@pablotron.org"
  4206. },
  4207. {
  4208. "name": "Jonatan Männchen",
  4209. "email": "jonatan@maennchen.ch"
  4210. },
  4211. {
  4212. "name": "Jesse Donat",
  4213. "email": "donatj@gmail.com"
  4214. },
  4215. {
  4216. "name": "András Kolesár",
  4217. "email": "kolesar@kolesar.hu"
  4218. }
  4219. ],
  4220. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  4221. "keywords": [
  4222. "stream",
  4223. "zip"
  4224. ],
  4225. "support": {
  4226. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  4227. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  4228. },
  4229. "funding": [
  4230. {
  4231. "url": "https://github.com/maennchen",
  4232. "type": "github"
  4233. },
  4234. {
  4235. "url": "https://opencollective.com/zipstream",
  4236. "type": "open_collective"
  4237. }
  4238. ],
  4239. "time": "2022-12-08T12:29:14+00:00"
  4240. },
  4241. {
  4242. "name": "markbaker/complex",
  4243. "version": "3.0.2",
  4244. "source": {
  4245. "type": "git",
  4246. "url": "https://github.com/MarkBaker/PHPComplex.git",
  4247. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  4248. },
  4249. "dist": {
  4250. "type": "zip",
  4251. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  4252. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  4253. "shasum": ""
  4254. },
  4255. "require": {
  4256. "php": "^7.2 || ^8.0"
  4257. },
  4258. "require-dev": {
  4259. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4260. "phpcompatibility/php-compatibility": "^9.3",
  4261. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4262. "squizlabs/php_codesniffer": "^3.7"
  4263. },
  4264. "type": "library",
  4265. "autoload": {
  4266. "psr-4": {
  4267. "Complex\\": "classes/src/"
  4268. }
  4269. },
  4270. "notification-url": "https://packagist.org/downloads/",
  4271. "license": [
  4272. "MIT"
  4273. ],
  4274. "authors": [
  4275. {
  4276. "name": "Mark Baker",
  4277. "email": "mark@lange.demon.co.uk"
  4278. }
  4279. ],
  4280. "description": "PHP Class for working with complex numbers",
  4281. "homepage": "https://github.com/MarkBaker/PHPComplex",
  4282. "keywords": [
  4283. "complex",
  4284. "mathematics"
  4285. ],
  4286. "support": {
  4287. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  4288. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  4289. },
  4290. "time": "2022-12-06T16:21:08+00:00"
  4291. },
  4292. {
  4293. "name": "markbaker/matrix",
  4294. "version": "3.0.1",
  4295. "source": {
  4296. "type": "git",
  4297. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  4298. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  4299. },
  4300. "dist": {
  4301. "type": "zip",
  4302. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  4303. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  4304. "shasum": ""
  4305. },
  4306. "require": {
  4307. "php": "^7.1 || ^8.0"
  4308. },
  4309. "require-dev": {
  4310. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4311. "phpcompatibility/php-compatibility": "^9.3",
  4312. "phpdocumentor/phpdocumentor": "2.*",
  4313. "phploc/phploc": "^4.0",
  4314. "phpmd/phpmd": "2.*",
  4315. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4316. "sebastian/phpcpd": "^4.0",
  4317. "squizlabs/php_codesniffer": "^3.7"
  4318. },
  4319. "type": "library",
  4320. "autoload": {
  4321. "psr-4": {
  4322. "Matrix\\": "classes/src/"
  4323. }
  4324. },
  4325. "notification-url": "https://packagist.org/downloads/",
  4326. "license": [
  4327. "MIT"
  4328. ],
  4329. "authors": [
  4330. {
  4331. "name": "Mark Baker",
  4332. "email": "mark@demon-angel.eu"
  4333. }
  4334. ],
  4335. "description": "PHP Class for working with matrices",
  4336. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  4337. "keywords": [
  4338. "mathematics",
  4339. "matrix",
  4340. "vector"
  4341. ],
  4342. "support": {
  4343. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  4344. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  4345. },
  4346. "time": "2022-12-02T22:17:43+00:00"
  4347. },
  4348. {
  4349. "name": "mdanter/ecc",
  4350. "version": "v1.0.0",
  4351. "source": {
  4352. "type": "git",
  4353. "url": "https://github.com/phpecc/phpecc.git",
  4354. "reference": "34e2eec096bf3dcda814e8f66dd91ae87a2db7cd"
  4355. },
  4356. "dist": {
  4357. "type": "zip",
  4358. "url": "https://api.github.com/repos/phpecc/phpecc/zipball/34e2eec096bf3dcda814e8f66dd91ae87a2db7cd",
  4359. "reference": "34e2eec096bf3dcda814e8f66dd91ae87a2db7cd",
  4360. "shasum": "",
  4361. "mirrors": [
  4362. {
  4363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4364. "preferred": true
  4365. }
  4366. ]
  4367. },
  4368. "require": {
  4369. "ext-gmp": "*",
  4370. "fgrosse/phpasn1": "^2.0",
  4371. "php": "^7.0||^8.0"
  4372. },
  4373. "require-dev": {
  4374. "phpunit/phpunit": "^6.0||^8.0||^9.0",
  4375. "squizlabs/php_codesniffer": "^2.0",
  4376. "symfony/yaml": "^2.6|^3.0"
  4377. },
  4378. "type": "library",
  4379. "autoload": {
  4380. "psr-4": {
  4381. "Mdanter\\Ecc\\": "src/"
  4382. }
  4383. },
  4384. "notification-url": "https://packagist.org/downloads/",
  4385. "license": [
  4386. "MIT"
  4387. ],
  4388. "authors": [
  4389. {
  4390. "name": "Matyas Danter",
  4391. "homepage": "http://matejdanter.com/",
  4392. "role": "Author"
  4393. },
  4394. {
  4395. "name": "Thibaud Fabre",
  4396. "email": "thibaud@aztech.io",
  4397. "homepage": "http://aztech.io",
  4398. "role": "Maintainer"
  4399. },
  4400. {
  4401. "name": "Thomas Kerin",
  4402. "email": "afk11@users.noreply.github.com",
  4403. "role": "Maintainer"
  4404. }
  4405. ],
  4406. "description": "PHP Elliptic Curve Cryptography library",
  4407. "homepage": "https://github.com/phpecc/phpecc",
  4408. "keywords": [
  4409. "Diffie",
  4410. "ECDSA",
  4411. "Hellman",
  4412. "curve",
  4413. "ecdh",
  4414. "elliptic",
  4415. "nistp192",
  4416. "nistp224",
  4417. "nistp256",
  4418. "nistp384",
  4419. "nistp521",
  4420. "phpecc",
  4421. "secp256k1",
  4422. "secp256r1"
  4423. ],
  4424. "support": {
  4425. "issues": "https://github.com/phpecc/phpecc/issues",
  4426. "source": "https://github.com/phpecc/phpecc/tree/v1.0.0"
  4427. },
  4428. "time": "2021-01-16T19:42:14+00:00"
  4429. },
  4430. {
  4431. "name": "monolog/monolog",
  4432. "version": "2.9.2",
  4433. "source": {
  4434. "type": "git",
  4435. "url": "https://github.com/Seldaek/monolog.git",
  4436. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  4437. },
  4438. "dist": {
  4439. "type": "zip",
  4440. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  4441. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  4442. "shasum": ""
  4443. },
  4444. "require": {
  4445. "php": ">=7.2",
  4446. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4447. },
  4448. "provide": {
  4449. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4450. },
  4451. "require-dev": {
  4452. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4453. "doctrine/couchdb": "~1.0@dev",
  4454. "elasticsearch/elasticsearch": "^7 || ^8",
  4455. "ext-json": "*",
  4456. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  4457. "guzzlehttp/guzzle": "^7.4",
  4458. "guzzlehttp/psr7": "^2.2",
  4459. "mongodb/mongodb": "^1.8",
  4460. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4461. "phpspec/prophecy": "^1.15",
  4462. "phpstan/phpstan": "^0.12.91",
  4463. "phpunit/phpunit": "^8.5.14",
  4464. "predis/predis": "^1.1 || ^2.0",
  4465. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4466. "ruflin/elastica": "^7",
  4467. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4468. "symfony/mailer": "^5.4 || ^6",
  4469. "symfony/mime": "^5.4 || ^6"
  4470. },
  4471. "suggest": {
  4472. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4473. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4474. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4475. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4476. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4477. "ext-mbstring": "Allow to work properly with unicode symbols",
  4478. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4479. "ext-openssl": "Required to send log messages using SSL",
  4480. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4481. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4482. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4483. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4484. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4485. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4486. },
  4487. "type": "library",
  4488. "extra": {
  4489. "branch-alias": {
  4490. "dev-main": "2.x-dev"
  4491. }
  4492. },
  4493. "autoload": {
  4494. "psr-4": {
  4495. "Monolog\\": "src/Monolog"
  4496. }
  4497. },
  4498. "notification-url": "https://packagist.org/downloads/",
  4499. "license": [
  4500. "MIT"
  4501. ],
  4502. "authors": [
  4503. {
  4504. "name": "Jordi Boggiano",
  4505. "email": "j.boggiano@seld.be",
  4506. "homepage": "https://seld.be"
  4507. }
  4508. ],
  4509. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4510. "homepage": "https://github.com/Seldaek/monolog",
  4511. "keywords": [
  4512. "log",
  4513. "logging",
  4514. "psr-3"
  4515. ],
  4516. "support": {
  4517. "issues": "https://github.com/Seldaek/monolog/issues",
  4518. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  4519. },
  4520. "funding": [
  4521. {
  4522. "url": "https://github.com/Seldaek",
  4523. "type": "github"
  4524. },
  4525. {
  4526. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4527. "type": "tidelift"
  4528. }
  4529. ],
  4530. "time": "2023-10-27T15:25:26+00:00"
  4531. },
  4532. {
  4533. "name": "mtdowling/jmespath.php",
  4534. "version": "2.7.0",
  4535. "source": {
  4536. "type": "git",
  4537. "url": "https://github.com/jmespath/jmespath.php.git",
  4538. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  4539. },
  4540. "dist": {
  4541. "type": "zip",
  4542. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4543. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4544. "shasum": ""
  4545. },
  4546. "require": {
  4547. "php": "^7.2.5 || ^8.0",
  4548. "symfony/polyfill-mbstring": "^1.17"
  4549. },
  4550. "require-dev": {
  4551. "composer/xdebug-handler": "^3.0.3",
  4552. "phpunit/phpunit": "^8.5.33"
  4553. },
  4554. "bin": [
  4555. "bin/jp.php"
  4556. ],
  4557. "type": "library",
  4558. "extra": {
  4559. "branch-alias": {
  4560. "dev-master": "2.7-dev"
  4561. }
  4562. },
  4563. "autoload": {
  4564. "files": [
  4565. "src/JmesPath.php"
  4566. ],
  4567. "psr-4": {
  4568. "JmesPath\\": "src/"
  4569. }
  4570. },
  4571. "notification-url": "https://packagist.org/downloads/",
  4572. "license": [
  4573. "MIT"
  4574. ],
  4575. "authors": [
  4576. {
  4577. "name": "Graham Campbell",
  4578. "email": "hello@gjcampbell.co.uk",
  4579. "homepage": "https://github.com/GrahamCampbell"
  4580. },
  4581. {
  4582. "name": "Michael Dowling",
  4583. "email": "mtdowling@gmail.com",
  4584. "homepage": "https://github.com/mtdowling"
  4585. }
  4586. ],
  4587. "description": "Declaratively specify how to extract elements from a JSON document",
  4588. "keywords": [
  4589. "json",
  4590. "jsonpath"
  4591. ],
  4592. "support": {
  4593. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4594. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  4595. },
  4596. "time": "2023-08-25T10:54:48+00:00"
  4597. },
  4598. {
  4599. "name": "myclabs/php-enum",
  4600. "version": "1.8.4",
  4601. "source": {
  4602. "type": "git",
  4603. "url": "https://github.com/myclabs/php-enum.git",
  4604. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  4605. },
  4606. "dist": {
  4607. "type": "zip",
  4608. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  4609. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  4610. "shasum": ""
  4611. },
  4612. "require": {
  4613. "ext-json": "*",
  4614. "php": "^7.3 || ^8.0"
  4615. },
  4616. "require-dev": {
  4617. "phpunit/phpunit": "^9.5",
  4618. "squizlabs/php_codesniffer": "1.*",
  4619. "vimeo/psalm": "^4.6.2"
  4620. },
  4621. "type": "library",
  4622. "autoload": {
  4623. "psr-4": {
  4624. "MyCLabs\\Enum\\": "src/"
  4625. },
  4626. "classmap": [
  4627. "stubs/Stringable.php"
  4628. ]
  4629. },
  4630. "notification-url": "https://packagist.org/downloads/",
  4631. "license": [
  4632. "MIT"
  4633. ],
  4634. "authors": [
  4635. {
  4636. "name": "PHP Enum contributors",
  4637. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  4638. }
  4639. ],
  4640. "description": "PHP Enum implementation",
  4641. "homepage": "http://github.com/myclabs/php-enum",
  4642. "keywords": [
  4643. "enum"
  4644. ],
  4645. "support": {
  4646. "issues": "https://github.com/myclabs/php-enum/issues",
  4647. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  4648. },
  4649. "funding": [
  4650. {
  4651. "url": "https://github.com/mnapoli",
  4652. "type": "github"
  4653. },
  4654. {
  4655. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  4656. "type": "tidelift"
  4657. }
  4658. ],
  4659. "time": "2022-08-04T09:53:51+00:00"
  4660. },
  4661. {
  4662. "name": "nesbot/carbon",
  4663. "version": "2.72.1",
  4664. "source": {
  4665. "type": "git",
  4666. "url": "https://github.com/briannesbitt/Carbon.git",
  4667. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  4668. },
  4669. "dist": {
  4670. "type": "zip",
  4671. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  4672. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  4673. "shasum": ""
  4674. },
  4675. "require": {
  4676. "carbonphp/carbon-doctrine-types": "*",
  4677. "ext-json": "*",
  4678. "php": "^7.1.8 || ^8.0",
  4679. "psr/clock": "^1.0",
  4680. "symfony/polyfill-mbstring": "^1.0",
  4681. "symfony/polyfill-php80": "^1.16",
  4682. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4683. },
  4684. "provide": {
  4685. "psr/clock-implementation": "1.0"
  4686. },
  4687. "require-dev": {
  4688. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4689. "doctrine/orm": "^2.7 || ^3.0",
  4690. "friendsofphp/php-cs-fixer": "^3.0",
  4691. "kylekatarnls/multi-tester": "^2.0",
  4692. "ondrejmirtes/better-reflection": "*",
  4693. "phpmd/phpmd": "^2.9",
  4694. "phpstan/extension-installer": "^1.0",
  4695. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4696. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4697. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4698. "squizlabs/php_codesniffer": "^3.4"
  4699. },
  4700. "bin": [
  4701. "bin/carbon"
  4702. ],
  4703. "type": "library",
  4704. "extra": {
  4705. "branch-alias": {
  4706. "dev-3.x": "3.x-dev",
  4707. "dev-master": "2.x-dev"
  4708. },
  4709. "laravel": {
  4710. "providers": [
  4711. "Carbon\\Laravel\\ServiceProvider"
  4712. ]
  4713. },
  4714. "phpstan": {
  4715. "includes": [
  4716. "extension.neon"
  4717. ]
  4718. }
  4719. },
  4720. "autoload": {
  4721. "psr-4": {
  4722. "Carbon\\": "src/Carbon/"
  4723. }
  4724. },
  4725. "notification-url": "https://packagist.org/downloads/",
  4726. "license": [
  4727. "MIT"
  4728. ],
  4729. "authors": [
  4730. {
  4731. "name": "Brian Nesbitt",
  4732. "email": "brian@nesbot.com",
  4733. "homepage": "https://markido.com"
  4734. },
  4735. {
  4736. "name": "kylekatarnls",
  4737. "homepage": "https://github.com/kylekatarnls"
  4738. }
  4739. ],
  4740. "description": "An API extension for DateTime that supports 281 different languages.",
  4741. "homepage": "https://carbon.nesbot.com",
  4742. "keywords": [
  4743. "date",
  4744. "datetime",
  4745. "time"
  4746. ],
  4747. "support": {
  4748. "docs": "https://carbon.nesbot.com/docs",
  4749. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4750. "source": "https://github.com/briannesbitt/Carbon"
  4751. },
  4752. "funding": [
  4753. {
  4754. "url": "https://github.com/sponsors/kylekatarnls",
  4755. "type": "github"
  4756. },
  4757. {
  4758. "url": "https://opencollective.com/Carbon#sponsor",
  4759. "type": "opencollective"
  4760. },
  4761. {
  4762. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4763. "type": "tidelift"
  4764. }
  4765. ],
  4766. "time": "2023-12-08T23:47:49+00:00"
  4767. },
  4768. {
  4769. "name": "nette/schema",
  4770. "version": "v1.2.5",
  4771. "source": {
  4772. "type": "git",
  4773. "url": "https://github.com/nette/schema.git",
  4774. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  4775. },
  4776. "dist": {
  4777. "type": "zip",
  4778. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  4779. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  4780. "shasum": ""
  4781. },
  4782. "require": {
  4783. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  4784. "php": "7.1 - 8.3"
  4785. },
  4786. "require-dev": {
  4787. "nette/tester": "^2.3 || ^2.4",
  4788. "phpstan/phpstan-nette": "^1.0",
  4789. "tracy/tracy": "^2.7"
  4790. },
  4791. "type": "library",
  4792. "extra": {
  4793. "branch-alias": {
  4794. "dev-master": "1.2-dev"
  4795. }
  4796. },
  4797. "autoload": {
  4798. "classmap": [
  4799. "src/"
  4800. ]
  4801. },
  4802. "notification-url": "https://packagist.org/downloads/",
  4803. "license": [
  4804. "BSD-3-Clause",
  4805. "GPL-2.0-only",
  4806. "GPL-3.0-only"
  4807. ],
  4808. "authors": [
  4809. {
  4810. "name": "David Grudl",
  4811. "homepage": "https://davidgrudl.com"
  4812. },
  4813. {
  4814. "name": "Nette Community",
  4815. "homepage": "https://nette.org/contributors"
  4816. }
  4817. ],
  4818. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4819. "homepage": "https://nette.org",
  4820. "keywords": [
  4821. "config",
  4822. "nette"
  4823. ],
  4824. "support": {
  4825. "issues": "https://github.com/nette/schema/issues",
  4826. "source": "https://github.com/nette/schema/tree/v1.2.5"
  4827. },
  4828. "time": "2023-10-05T20:37:59+00:00"
  4829. },
  4830. {
  4831. "name": "nette/utils",
  4832. "version": "v4.0.3",
  4833. "source": {
  4834. "type": "git",
  4835. "url": "https://github.com/nette/utils.git",
  4836. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015"
  4837. },
  4838. "dist": {
  4839. "type": "zip",
  4840. "url": "https://api.github.com/repos/nette/utils/zipball/a9d127dd6a203ce6d255b2e2db49759f7506e015",
  4841. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015",
  4842. "shasum": ""
  4843. },
  4844. "require": {
  4845. "php": ">=8.0 <8.4"
  4846. },
  4847. "conflict": {
  4848. "nette/finder": "<3",
  4849. "nette/schema": "<1.2.2"
  4850. },
  4851. "require-dev": {
  4852. "jetbrains/phpstorm-attributes": "dev-master",
  4853. "nette/tester": "^2.5",
  4854. "phpstan/phpstan": "^1.0",
  4855. "tracy/tracy": "^2.9"
  4856. },
  4857. "suggest": {
  4858. "ext-gd": "to use Image",
  4859. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4860. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4861. "ext-json": "to use Nette\\Utils\\Json",
  4862. "ext-mbstring": "to use Strings::lower() etc...",
  4863. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4864. },
  4865. "type": "library",
  4866. "extra": {
  4867. "branch-alias": {
  4868. "dev-master": "4.0-dev"
  4869. }
  4870. },
  4871. "autoload": {
  4872. "classmap": [
  4873. "src/"
  4874. ]
  4875. },
  4876. "notification-url": "https://packagist.org/downloads/",
  4877. "license": [
  4878. "BSD-3-Clause",
  4879. "GPL-2.0-only",
  4880. "GPL-3.0-only"
  4881. ],
  4882. "authors": [
  4883. {
  4884. "name": "David Grudl",
  4885. "homepage": "https://davidgrudl.com"
  4886. },
  4887. {
  4888. "name": "Nette Community",
  4889. "homepage": "https://nette.org/contributors"
  4890. }
  4891. ],
  4892. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4893. "homepage": "https://nette.org",
  4894. "keywords": [
  4895. "array",
  4896. "core",
  4897. "datetime",
  4898. "images",
  4899. "json",
  4900. "nette",
  4901. "paginator",
  4902. "password",
  4903. "slugify",
  4904. "string",
  4905. "unicode",
  4906. "utf-8",
  4907. "utility",
  4908. "validation"
  4909. ],
  4910. "support": {
  4911. "issues": "https://github.com/nette/utils/issues",
  4912. "source": "https://github.com/nette/utils/tree/v4.0.3"
  4913. },
  4914. "time": "2023-10-29T21:02:13+00:00"
  4915. },
  4916. {
  4917. "name": "nikic/php-parser",
  4918. "version": "v4.18.0",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://github.com/nikic/PHP-Parser.git",
  4922. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  4927. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  4928. "shasum": ""
  4929. },
  4930. "require": {
  4931. "ext-tokenizer": "*",
  4932. "php": ">=7.0"
  4933. },
  4934. "require-dev": {
  4935. "ircmaxell/php-yacc": "^0.0.7",
  4936. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4937. },
  4938. "bin": [
  4939. "bin/php-parse"
  4940. ],
  4941. "type": "library",
  4942. "extra": {
  4943. "branch-alias": {
  4944. "dev-master": "4.9-dev"
  4945. }
  4946. },
  4947. "autoload": {
  4948. "psr-4": {
  4949. "PhpParser\\": "lib/PhpParser"
  4950. }
  4951. },
  4952. "notification-url": "https://packagist.org/downloads/",
  4953. "license": [
  4954. "BSD-3-Clause"
  4955. ],
  4956. "authors": [
  4957. {
  4958. "name": "Nikita Popov"
  4959. }
  4960. ],
  4961. "description": "A PHP parser written in PHP",
  4962. "keywords": [
  4963. "parser",
  4964. "php"
  4965. ],
  4966. "support": {
  4967. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4968. "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
  4969. },
  4970. "time": "2023-12-10T21:03:43+00:00"
  4971. },
  4972. {
  4973. "name": "opis/closure",
  4974. "version": "3.6.3",
  4975. "source": {
  4976. "type": "git",
  4977. "url": "https://github.com/opis/closure.git",
  4978. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4979. },
  4980. "dist": {
  4981. "type": "zip",
  4982. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4983. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4984. "shasum": ""
  4985. },
  4986. "require": {
  4987. "php": "^5.4 || ^7.0 || ^8.0"
  4988. },
  4989. "require-dev": {
  4990. "jeremeamia/superclosure": "^2.0",
  4991. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4992. },
  4993. "type": "library",
  4994. "extra": {
  4995. "branch-alias": {
  4996. "dev-master": "3.6.x-dev"
  4997. }
  4998. },
  4999. "autoload": {
  5000. "files": [
  5001. "functions.php"
  5002. ],
  5003. "psr-4": {
  5004. "Opis\\Closure\\": "src/"
  5005. }
  5006. },
  5007. "notification-url": "https://packagist.org/downloads/",
  5008. "license": [
  5009. "MIT"
  5010. ],
  5011. "authors": [
  5012. {
  5013. "name": "Marius Sarca",
  5014. "email": "marius.sarca@gmail.com"
  5015. },
  5016. {
  5017. "name": "Sorin Sarca",
  5018. "email": "sarca_sorin@hotmail.com"
  5019. }
  5020. ],
  5021. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  5022. "homepage": "https://opis.io/closure",
  5023. "keywords": [
  5024. "anonymous functions",
  5025. "closure",
  5026. "function",
  5027. "serializable",
  5028. "serialization",
  5029. "serialize"
  5030. ],
  5031. "support": {
  5032. "issues": "https://github.com/opis/closure/issues",
  5033. "source": "https://github.com/opis/closure/tree/3.6.3"
  5034. },
  5035. "time": "2022-01-27T09:35:39+00:00"
  5036. },
  5037. {
  5038. "name": "phpoffice/phpspreadsheet",
  5039. "version": "1.29.0",
  5040. "source": {
  5041. "type": "git",
  5042. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  5043. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  5044. },
  5045. "dist": {
  5046. "type": "zip",
  5047. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  5048. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  5049. "shasum": ""
  5050. },
  5051. "require": {
  5052. "ext-ctype": "*",
  5053. "ext-dom": "*",
  5054. "ext-fileinfo": "*",
  5055. "ext-gd": "*",
  5056. "ext-iconv": "*",
  5057. "ext-libxml": "*",
  5058. "ext-mbstring": "*",
  5059. "ext-simplexml": "*",
  5060. "ext-xml": "*",
  5061. "ext-xmlreader": "*",
  5062. "ext-xmlwriter": "*",
  5063. "ext-zip": "*",
  5064. "ext-zlib": "*",
  5065. "ezyang/htmlpurifier": "^4.15",
  5066. "maennchen/zipstream-php": "^2.1 || ^3.0",
  5067. "markbaker/complex": "^3.0",
  5068. "markbaker/matrix": "^3.0",
  5069. "php": "^7.4 || ^8.0",
  5070. "psr/http-client": "^1.0",
  5071. "psr/http-factory": "^1.0",
  5072. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  5073. },
  5074. "require-dev": {
  5075. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  5076. "dompdf/dompdf": "^1.0 || ^2.0",
  5077. "friendsofphp/php-cs-fixer": "^3.2",
  5078. "mitoteam/jpgraph": "^10.3",
  5079. "mpdf/mpdf": "^8.1.1",
  5080. "phpcompatibility/php-compatibility": "^9.3",
  5081. "phpstan/phpstan": "^1.1",
  5082. "phpstan/phpstan-phpunit": "^1.0",
  5083. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  5084. "squizlabs/php_codesniffer": "^3.7",
  5085. "tecnickcom/tcpdf": "^6.5"
  5086. },
  5087. "suggest": {
  5088. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  5089. "ext-intl": "PHP Internationalization Functions",
  5090. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  5091. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  5092. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  5093. },
  5094. "type": "library",
  5095. "autoload": {
  5096. "psr-4": {
  5097. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  5098. }
  5099. },
  5100. "notification-url": "https://packagist.org/downloads/",
  5101. "license": [
  5102. "MIT"
  5103. ],
  5104. "authors": [
  5105. {
  5106. "name": "Maarten Balliauw",
  5107. "homepage": "https://blog.maartenballiauw.be"
  5108. },
  5109. {
  5110. "name": "Mark Baker",
  5111. "homepage": "https://markbakeruk.net"
  5112. },
  5113. {
  5114. "name": "Franck Lefevre",
  5115. "homepage": "https://rootslabs.net"
  5116. },
  5117. {
  5118. "name": "Erik Tilt"
  5119. },
  5120. {
  5121. "name": "Adrien Crivelli"
  5122. }
  5123. ],
  5124. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  5125. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  5126. "keywords": [
  5127. "OpenXML",
  5128. "excel",
  5129. "gnumeric",
  5130. "ods",
  5131. "php",
  5132. "spreadsheet",
  5133. "xls",
  5134. "xlsx"
  5135. ],
  5136. "support": {
  5137. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  5138. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  5139. },
  5140. "time": "2023-06-14T22:48:31+00:00"
  5141. },
  5142. {
  5143. "name": "phpoption/phpoption",
  5144. "version": "1.9.2",
  5145. "source": {
  5146. "type": "git",
  5147. "url": "https://github.com/schmittjoh/php-option.git",
  5148. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5149. },
  5150. "dist": {
  5151. "type": "zip",
  5152. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5153. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5154. "shasum": ""
  5155. },
  5156. "require": {
  5157. "php": "^7.2.5 || ^8.0"
  5158. },
  5159. "require-dev": {
  5160. "bamarni/composer-bin-plugin": "^1.8.2",
  5161. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5162. },
  5163. "type": "library",
  5164. "extra": {
  5165. "bamarni-bin": {
  5166. "bin-links": true,
  5167. "forward-command": true
  5168. },
  5169. "branch-alias": {
  5170. "dev-master": "1.9-dev"
  5171. }
  5172. },
  5173. "autoload": {
  5174. "psr-4": {
  5175. "PhpOption\\": "src/PhpOption/"
  5176. }
  5177. },
  5178. "notification-url": "https://packagist.org/downloads/",
  5179. "license": [
  5180. "Apache-2.0"
  5181. ],
  5182. "authors": [
  5183. {
  5184. "name": "Johannes M. Schmitt",
  5185. "email": "schmittjoh@gmail.com",
  5186. "homepage": "https://github.com/schmittjoh"
  5187. },
  5188. {
  5189. "name": "Graham Campbell",
  5190. "email": "hello@gjcampbell.co.uk",
  5191. "homepage": "https://github.com/GrahamCampbell"
  5192. }
  5193. ],
  5194. "description": "Option Type for PHP",
  5195. "keywords": [
  5196. "language",
  5197. "option",
  5198. "php",
  5199. "type"
  5200. ],
  5201. "support": {
  5202. "issues": "https://github.com/schmittjoh/php-option/issues",
  5203. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5204. },
  5205. "funding": [
  5206. {
  5207. "url": "https://github.com/GrahamCampbell",
  5208. "type": "github"
  5209. },
  5210. {
  5211. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5212. "type": "tidelift"
  5213. }
  5214. ],
  5215. "time": "2023-11-12T21:59:55+00:00"
  5216. },
  5217. {
  5218. "name": "phpseclib/phpseclib",
  5219. "version": "2.0.46",
  5220. "source": {
  5221. "type": "git",
  5222. "url": "https://github.com/phpseclib/phpseclib.git",
  5223. "reference": "498e67a0c82bd5791fda9b0dd0f4ec8e8aebb02d"
  5224. },
  5225. "dist": {
  5226. "type": "zip",
  5227. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/498e67a0c82bd5791fda9b0dd0f4ec8e8aebb02d",
  5228. "reference": "498e67a0c82bd5791fda9b0dd0f4ec8e8aebb02d",
  5229. "shasum": "",
  5230. "mirrors": [
  5231. {
  5232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5233. "preferred": true
  5234. }
  5235. ]
  5236. },
  5237. "require": {
  5238. "php": ">=5.3.3"
  5239. },
  5240. "require-dev": {
  5241. "phing/phing": "~2.7",
  5242. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  5243. "squizlabs/php_codesniffer": "~2.0"
  5244. },
  5245. "suggest": {
  5246. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5247. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5248. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5249. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
  5250. "ext-xml": "Install the XML extension to load XML formatted public keys."
  5251. },
  5252. "type": "library",
  5253. "autoload": {
  5254. "files": [
  5255. "phpseclib/bootstrap.php"
  5256. ],
  5257. "psr-4": {
  5258. "phpseclib\\": "phpseclib/"
  5259. }
  5260. },
  5261. "notification-url": "https://packagist.org/downloads/",
  5262. "license": [
  5263. "MIT"
  5264. ],
  5265. "authors": [
  5266. {
  5267. "name": "Jim Wigginton",
  5268. "email": "terrafrost@php.net",
  5269. "role": "Lead Developer"
  5270. },
  5271. {
  5272. "name": "Patrick Monnerat",
  5273. "email": "pm@datasphere.ch",
  5274. "role": "Developer"
  5275. },
  5276. {
  5277. "name": "Andreas Fischer",
  5278. "email": "bantu@phpbb.com",
  5279. "role": "Developer"
  5280. },
  5281. {
  5282. "name": "Hans-Jürgen Petrich",
  5283. "email": "petrich@tronic-media.com",
  5284. "role": "Developer"
  5285. },
  5286. {
  5287. "name": "Graham Campbell",
  5288. "email": "graham@alt-three.com",
  5289. "role": "Developer"
  5290. }
  5291. ],
  5292. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5293. "homepage": "http://phpseclib.sourceforge.net",
  5294. "keywords": [
  5295. "BigInteger",
  5296. "aes",
  5297. "asn.1",
  5298. "asn1",
  5299. "blowfish",
  5300. "crypto",
  5301. "cryptography",
  5302. "encryption",
  5303. "rsa",
  5304. "security",
  5305. "sftp",
  5306. "signature",
  5307. "signing",
  5308. "ssh",
  5309. "twofish",
  5310. "x.509",
  5311. "x509"
  5312. ],
  5313. "support": {
  5314. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5315. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.46"
  5316. },
  5317. "funding": [
  5318. {
  5319. "url": "https://github.com/terrafrost",
  5320. "type": "github"
  5321. },
  5322. {
  5323. "url": "https://www.patreon.com/phpseclib",
  5324. "type": "patreon"
  5325. },
  5326. {
  5327. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5328. "type": "tidelift"
  5329. }
  5330. ],
  5331. "time": "2023-12-29T01:52:43+00:00"
  5332. },
  5333. {
  5334. "name": "pimple/pimple",
  5335. "version": "v3.5.0",
  5336. "source": {
  5337. "type": "git",
  5338. "url": "https://github.com/silexphp/Pimple.git",
  5339. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  5340. },
  5341. "dist": {
  5342. "type": "zip",
  5343. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5344. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5345. "shasum": "",
  5346. "mirrors": [
  5347. {
  5348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5349. "preferred": true
  5350. }
  5351. ]
  5352. },
  5353. "require": {
  5354. "php": ">=7.2.5",
  5355. "psr/container": "^1.1 || ^2.0"
  5356. },
  5357. "require-dev": {
  5358. "symfony/phpunit-bridge": "^5.4@dev"
  5359. },
  5360. "type": "library",
  5361. "extra": {
  5362. "branch-alias": {
  5363. "dev-master": "3.4.x-dev"
  5364. }
  5365. },
  5366. "autoload": {
  5367. "psr-0": {
  5368. "Pimple": "src/"
  5369. }
  5370. },
  5371. "notification-url": "https://packagist.org/downloads/",
  5372. "license": [
  5373. "MIT"
  5374. ],
  5375. "authors": [
  5376. {
  5377. "name": "Fabien Potencier",
  5378. "email": "fabien@symfony.com"
  5379. }
  5380. ],
  5381. "description": "Pimple, a simple Dependency Injection Container",
  5382. "homepage": "https://pimple.symfony.com",
  5383. "keywords": [
  5384. "container",
  5385. "dependency injection"
  5386. ],
  5387. "support": {
  5388. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  5389. },
  5390. "time": "2021-10-28T11:13:42+00:00"
  5391. },
  5392. {
  5393. "name": "psr/cache",
  5394. "version": "2.0.0",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/php-fig/cache.git",
  5398. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5403. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "php": ">=8.0.0"
  5408. },
  5409. "type": "library",
  5410. "extra": {
  5411. "branch-alias": {
  5412. "dev-master": "1.0.x-dev"
  5413. }
  5414. },
  5415. "autoload": {
  5416. "psr-4": {
  5417. "Psr\\Cache\\": "src/"
  5418. }
  5419. },
  5420. "notification-url": "https://packagist.org/downloads/",
  5421. "license": [
  5422. "MIT"
  5423. ],
  5424. "authors": [
  5425. {
  5426. "name": "PHP-FIG",
  5427. "homepage": "https://www.php-fig.org/"
  5428. }
  5429. ],
  5430. "description": "Common interface for caching libraries",
  5431. "keywords": [
  5432. "cache",
  5433. "psr",
  5434. "psr-6"
  5435. ],
  5436. "support": {
  5437. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  5438. },
  5439. "time": "2021-02-03T23:23:37+00:00"
  5440. },
  5441. {
  5442. "name": "psr/clock",
  5443. "version": "1.0.0",
  5444. "source": {
  5445. "type": "git",
  5446. "url": "https://github.com/php-fig/clock.git",
  5447. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5448. },
  5449. "dist": {
  5450. "type": "zip",
  5451. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5452. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5453. "shasum": ""
  5454. },
  5455. "require": {
  5456. "php": "^7.0 || ^8.0"
  5457. },
  5458. "type": "library",
  5459. "autoload": {
  5460. "psr-4": {
  5461. "Psr\\Clock\\": "src/"
  5462. }
  5463. },
  5464. "notification-url": "https://packagist.org/downloads/",
  5465. "license": [
  5466. "MIT"
  5467. ],
  5468. "authors": [
  5469. {
  5470. "name": "PHP-FIG",
  5471. "homepage": "https://www.php-fig.org/"
  5472. }
  5473. ],
  5474. "description": "Common interface for reading the clock.",
  5475. "homepage": "https://github.com/php-fig/clock",
  5476. "keywords": [
  5477. "clock",
  5478. "now",
  5479. "psr",
  5480. "psr-20",
  5481. "time"
  5482. ],
  5483. "support": {
  5484. "issues": "https://github.com/php-fig/clock/issues",
  5485. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5486. },
  5487. "time": "2022-11-25T14:36:26+00:00"
  5488. },
  5489. {
  5490. "name": "psr/container",
  5491. "version": "1.1.2",
  5492. "source": {
  5493. "type": "git",
  5494. "url": "https://github.com/php-fig/container.git",
  5495. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  5496. },
  5497. "dist": {
  5498. "type": "zip",
  5499. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  5500. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  5501. "shasum": ""
  5502. },
  5503. "require": {
  5504. "php": ">=7.4.0"
  5505. },
  5506. "type": "library",
  5507. "autoload": {
  5508. "psr-4": {
  5509. "Psr\\Container\\": "src/"
  5510. }
  5511. },
  5512. "notification-url": "https://packagist.org/downloads/",
  5513. "license": [
  5514. "MIT"
  5515. ],
  5516. "authors": [
  5517. {
  5518. "name": "PHP-FIG",
  5519. "homepage": "https://www.php-fig.org/"
  5520. }
  5521. ],
  5522. "description": "Common Container Interface (PHP FIG PSR-11)",
  5523. "homepage": "https://github.com/php-fig/container",
  5524. "keywords": [
  5525. "PSR-11",
  5526. "container",
  5527. "container-interface",
  5528. "container-interop",
  5529. "psr"
  5530. ],
  5531. "support": {
  5532. "issues": "https://github.com/php-fig/container/issues",
  5533. "source": "https://github.com/php-fig/container/tree/1.1.2"
  5534. },
  5535. "time": "2021-11-05T16:50:12+00:00"
  5536. },
  5537. {
  5538. "name": "psr/event-dispatcher",
  5539. "version": "1.0.0",
  5540. "source": {
  5541. "type": "git",
  5542. "url": "https://github.com/php-fig/event-dispatcher.git",
  5543. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5544. },
  5545. "dist": {
  5546. "type": "zip",
  5547. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5548. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5549. "shasum": ""
  5550. },
  5551. "require": {
  5552. "php": ">=7.2.0"
  5553. },
  5554. "type": "library",
  5555. "extra": {
  5556. "branch-alias": {
  5557. "dev-master": "1.0.x-dev"
  5558. }
  5559. },
  5560. "autoload": {
  5561. "psr-4": {
  5562. "Psr\\EventDispatcher\\": "src/"
  5563. }
  5564. },
  5565. "notification-url": "https://packagist.org/downloads/",
  5566. "license": [
  5567. "MIT"
  5568. ],
  5569. "authors": [
  5570. {
  5571. "name": "PHP-FIG",
  5572. "homepage": "http://www.php-fig.org/"
  5573. }
  5574. ],
  5575. "description": "Standard interfaces for event handling.",
  5576. "keywords": [
  5577. "events",
  5578. "psr",
  5579. "psr-14"
  5580. ],
  5581. "support": {
  5582. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5583. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5584. },
  5585. "time": "2019-01-08T18:20:26+00:00"
  5586. },
  5587. {
  5588. "name": "psr/http-client",
  5589. "version": "1.0.3",
  5590. "source": {
  5591. "type": "git",
  5592. "url": "https://github.com/php-fig/http-client.git",
  5593. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5594. },
  5595. "dist": {
  5596. "type": "zip",
  5597. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5598. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5599. "shasum": ""
  5600. },
  5601. "require": {
  5602. "php": "^7.0 || ^8.0",
  5603. "psr/http-message": "^1.0 || ^2.0"
  5604. },
  5605. "type": "library",
  5606. "extra": {
  5607. "branch-alias": {
  5608. "dev-master": "1.0.x-dev"
  5609. }
  5610. },
  5611. "autoload": {
  5612. "psr-4": {
  5613. "Psr\\Http\\Client\\": "src/"
  5614. }
  5615. },
  5616. "notification-url": "https://packagist.org/downloads/",
  5617. "license": [
  5618. "MIT"
  5619. ],
  5620. "authors": [
  5621. {
  5622. "name": "PHP-FIG",
  5623. "homepage": "https://www.php-fig.org/"
  5624. }
  5625. ],
  5626. "description": "Common interface for HTTP clients",
  5627. "homepage": "https://github.com/php-fig/http-client",
  5628. "keywords": [
  5629. "http",
  5630. "http-client",
  5631. "psr",
  5632. "psr-18"
  5633. ],
  5634. "support": {
  5635. "source": "https://github.com/php-fig/http-client"
  5636. },
  5637. "time": "2023-09-23T14:17:50+00:00"
  5638. },
  5639. {
  5640. "name": "psr/http-factory",
  5641. "version": "1.0.2",
  5642. "source": {
  5643. "type": "git",
  5644. "url": "https://github.com/php-fig/http-factory.git",
  5645. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  5646. },
  5647. "dist": {
  5648. "type": "zip",
  5649. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  5650. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  5651. "shasum": ""
  5652. },
  5653. "require": {
  5654. "php": ">=7.0.0",
  5655. "psr/http-message": "^1.0 || ^2.0"
  5656. },
  5657. "type": "library",
  5658. "extra": {
  5659. "branch-alias": {
  5660. "dev-master": "1.0.x-dev"
  5661. }
  5662. },
  5663. "autoload": {
  5664. "psr-4": {
  5665. "Psr\\Http\\Message\\": "src/"
  5666. }
  5667. },
  5668. "notification-url": "https://packagist.org/downloads/",
  5669. "license": [
  5670. "MIT"
  5671. ],
  5672. "authors": [
  5673. {
  5674. "name": "PHP-FIG",
  5675. "homepage": "https://www.php-fig.org/"
  5676. }
  5677. ],
  5678. "description": "Common interfaces for PSR-7 HTTP message factories",
  5679. "keywords": [
  5680. "factory",
  5681. "http",
  5682. "message",
  5683. "psr",
  5684. "psr-17",
  5685. "psr-7",
  5686. "request",
  5687. "response"
  5688. ],
  5689. "support": {
  5690. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  5691. },
  5692. "time": "2023-04-10T20:10:41+00:00"
  5693. },
  5694. {
  5695. "name": "psr/http-message",
  5696. "version": "1.1",
  5697. "source": {
  5698. "type": "git",
  5699. "url": "https://github.com/php-fig/http-message.git",
  5700. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  5701. },
  5702. "dist": {
  5703. "type": "zip",
  5704. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  5705. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  5706. "shasum": ""
  5707. },
  5708. "require": {
  5709. "php": "^7.2 || ^8.0"
  5710. },
  5711. "type": "library",
  5712. "extra": {
  5713. "branch-alias": {
  5714. "dev-master": "1.1.x-dev"
  5715. }
  5716. },
  5717. "autoload": {
  5718. "psr-4": {
  5719. "Psr\\Http\\Message\\": "src/"
  5720. }
  5721. },
  5722. "notification-url": "https://packagist.org/downloads/",
  5723. "license": [
  5724. "MIT"
  5725. ],
  5726. "authors": [
  5727. {
  5728. "name": "PHP-FIG",
  5729. "homepage": "http://www.php-fig.org/"
  5730. }
  5731. ],
  5732. "description": "Common interface for HTTP messages",
  5733. "homepage": "https://github.com/php-fig/http-message",
  5734. "keywords": [
  5735. "http",
  5736. "http-message",
  5737. "psr",
  5738. "psr-7",
  5739. "request",
  5740. "response"
  5741. ],
  5742. "support": {
  5743. "source": "https://github.com/php-fig/http-message/tree/1.1"
  5744. },
  5745. "time": "2023-04-04T09:50:52+00:00"
  5746. },
  5747. {
  5748. "name": "psr/log",
  5749. "version": "2.0.0",
  5750. "source": {
  5751. "type": "git",
  5752. "url": "https://github.com/php-fig/log.git",
  5753. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  5754. },
  5755. "dist": {
  5756. "type": "zip",
  5757. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  5758. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  5759. "shasum": ""
  5760. },
  5761. "require": {
  5762. "php": ">=8.0.0"
  5763. },
  5764. "type": "library",
  5765. "extra": {
  5766. "branch-alias": {
  5767. "dev-master": "2.0.x-dev"
  5768. }
  5769. },
  5770. "autoload": {
  5771. "psr-4": {
  5772. "Psr\\Log\\": "src"
  5773. }
  5774. },
  5775. "notification-url": "https://packagist.org/downloads/",
  5776. "license": [
  5777. "MIT"
  5778. ],
  5779. "authors": [
  5780. {
  5781. "name": "PHP-FIG",
  5782. "homepage": "https://www.php-fig.org/"
  5783. }
  5784. ],
  5785. "description": "Common interface for logging libraries",
  5786. "homepage": "https://github.com/php-fig/log",
  5787. "keywords": [
  5788. "log",
  5789. "psr",
  5790. "psr-3"
  5791. ],
  5792. "support": {
  5793. "source": "https://github.com/php-fig/log/tree/2.0.0"
  5794. },
  5795. "time": "2021-07-14T16:41:46+00:00"
  5796. },
  5797. {
  5798. "name": "psr/simple-cache",
  5799. "version": "1.0.1",
  5800. "source": {
  5801. "type": "git",
  5802. "url": "https://github.com/php-fig/simple-cache.git",
  5803. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5804. },
  5805. "dist": {
  5806. "type": "zip",
  5807. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5808. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5809. "shasum": ""
  5810. },
  5811. "require": {
  5812. "php": ">=5.3.0"
  5813. },
  5814. "type": "library",
  5815. "extra": {
  5816. "branch-alias": {
  5817. "dev-master": "1.0.x-dev"
  5818. }
  5819. },
  5820. "autoload": {
  5821. "psr-4": {
  5822. "Psr\\SimpleCache\\": "src/"
  5823. }
  5824. },
  5825. "notification-url": "https://packagist.org/downloads/",
  5826. "license": [
  5827. "MIT"
  5828. ],
  5829. "authors": [
  5830. {
  5831. "name": "PHP-FIG",
  5832. "homepage": "http://www.php-fig.org/"
  5833. }
  5834. ],
  5835. "description": "Common interfaces for simple caching",
  5836. "keywords": [
  5837. "cache",
  5838. "caching",
  5839. "psr",
  5840. "psr-16",
  5841. "simple-cache"
  5842. ],
  5843. "support": {
  5844. "source": "https://github.com/php-fig/simple-cache/tree/master"
  5845. },
  5846. "time": "2017-10-23T01:57:42+00:00"
  5847. },
  5848. {
  5849. "name": "psy/psysh",
  5850. "version": "v0.11.22",
  5851. "source": {
  5852. "type": "git",
  5853. "url": "https://github.com/bobthecow/psysh.git",
  5854. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  5855. },
  5856. "dist": {
  5857. "type": "zip",
  5858. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  5859. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  5860. "shasum": ""
  5861. },
  5862. "require": {
  5863. "ext-json": "*",
  5864. "ext-tokenizer": "*",
  5865. "nikic/php-parser": "^4.0 || ^3.1",
  5866. "php": "^8.0 || ^7.0.8",
  5867. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  5868. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  5869. },
  5870. "conflict": {
  5871. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5872. },
  5873. "require-dev": {
  5874. "bamarni/composer-bin-plugin": "^1.2"
  5875. },
  5876. "suggest": {
  5877. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5878. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5879. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5880. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  5881. },
  5882. "bin": [
  5883. "bin/psysh"
  5884. ],
  5885. "type": "library",
  5886. "extra": {
  5887. "branch-alias": {
  5888. "dev-0.11": "0.11.x-dev"
  5889. },
  5890. "bamarni-bin": {
  5891. "bin-links": false,
  5892. "forward-command": false
  5893. }
  5894. },
  5895. "autoload": {
  5896. "files": [
  5897. "src/functions.php"
  5898. ],
  5899. "psr-4": {
  5900. "Psy\\": "src/"
  5901. }
  5902. },
  5903. "notification-url": "https://packagist.org/downloads/",
  5904. "license": [
  5905. "MIT"
  5906. ],
  5907. "authors": [
  5908. {
  5909. "name": "Justin Hileman",
  5910. "email": "justin@justinhileman.info",
  5911. "homepage": "http://justinhileman.com"
  5912. }
  5913. ],
  5914. "description": "An interactive shell for modern PHP.",
  5915. "homepage": "http://psysh.org",
  5916. "keywords": [
  5917. "REPL",
  5918. "console",
  5919. "interactive",
  5920. "shell"
  5921. ],
  5922. "support": {
  5923. "issues": "https://github.com/bobthecow/psysh/issues",
  5924. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  5925. },
  5926. "time": "2023-10-14T21:56:36+00:00"
  5927. },
  5928. {
  5929. "name": "ralouphie/getallheaders",
  5930. "version": "3.0.3",
  5931. "source": {
  5932. "type": "git",
  5933. "url": "https://github.com/ralouphie/getallheaders.git",
  5934. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5935. },
  5936. "dist": {
  5937. "type": "zip",
  5938. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5939. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5940. "shasum": ""
  5941. },
  5942. "require": {
  5943. "php": ">=5.6"
  5944. },
  5945. "require-dev": {
  5946. "php-coveralls/php-coveralls": "^2.1",
  5947. "phpunit/phpunit": "^5 || ^6.5"
  5948. },
  5949. "type": "library",
  5950. "autoload": {
  5951. "files": [
  5952. "src/getallheaders.php"
  5953. ]
  5954. },
  5955. "notification-url": "https://packagist.org/downloads/",
  5956. "license": [
  5957. "MIT"
  5958. ],
  5959. "authors": [
  5960. {
  5961. "name": "Ralph Khattar",
  5962. "email": "ralph.khattar@gmail.com"
  5963. }
  5964. ],
  5965. "description": "A polyfill for getallheaders.",
  5966. "support": {
  5967. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5968. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5969. },
  5970. "time": "2019-03-08T08:55:37+00:00"
  5971. },
  5972. {
  5973. "name": "ramsey/collection",
  5974. "version": "1.3.0",
  5975. "source": {
  5976. "type": "git",
  5977. "url": "https://github.com/ramsey/collection.git",
  5978. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  5979. },
  5980. "dist": {
  5981. "type": "zip",
  5982. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  5983. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  5984. "shasum": ""
  5985. },
  5986. "require": {
  5987. "php": "^7.4 || ^8.0",
  5988. "symfony/polyfill-php81": "^1.23"
  5989. },
  5990. "require-dev": {
  5991. "captainhook/plugin-composer": "^5.3",
  5992. "ergebnis/composer-normalize": "^2.28.3",
  5993. "fakerphp/faker": "^1.21",
  5994. "hamcrest/hamcrest-php": "^2.0",
  5995. "jangregor/phpstan-prophecy": "^1.0",
  5996. "mockery/mockery": "^1.5",
  5997. "php-parallel-lint/php-console-highlighter": "^1.0",
  5998. "php-parallel-lint/php-parallel-lint": "^1.3",
  5999. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6000. "phpspec/prophecy-phpunit": "^2.0",
  6001. "phpstan/extension-installer": "^1.2",
  6002. "phpstan/phpstan": "^1.9",
  6003. "phpstan/phpstan-mockery": "^1.1",
  6004. "phpstan/phpstan-phpunit": "^1.3",
  6005. "phpunit/phpunit": "^9.5",
  6006. "psalm/plugin-mockery": "^1.1",
  6007. "psalm/plugin-phpunit": "^0.18.4",
  6008. "ramsey/coding-standard": "^2.0.3",
  6009. "ramsey/conventional-commits": "^1.3",
  6010. "vimeo/psalm": "^5.4"
  6011. },
  6012. "type": "library",
  6013. "extra": {
  6014. "captainhook": {
  6015. "force-install": true
  6016. },
  6017. "ramsey/conventional-commits": {
  6018. "configFile": "conventional-commits.json"
  6019. }
  6020. },
  6021. "autoload": {
  6022. "psr-4": {
  6023. "Ramsey\\Collection\\": "src/"
  6024. }
  6025. },
  6026. "notification-url": "https://packagist.org/downloads/",
  6027. "license": [
  6028. "MIT"
  6029. ],
  6030. "authors": [
  6031. {
  6032. "name": "Ben Ramsey",
  6033. "email": "ben@benramsey.com",
  6034. "homepage": "https://benramsey.com"
  6035. }
  6036. ],
  6037. "description": "A PHP library for representing and manipulating collections.",
  6038. "keywords": [
  6039. "array",
  6040. "collection",
  6041. "hash",
  6042. "map",
  6043. "queue",
  6044. "set"
  6045. ],
  6046. "support": {
  6047. "issues": "https://github.com/ramsey/collection/issues",
  6048. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  6049. },
  6050. "funding": [
  6051. {
  6052. "url": "https://github.com/ramsey",
  6053. "type": "github"
  6054. },
  6055. {
  6056. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6057. "type": "tidelift"
  6058. }
  6059. ],
  6060. "time": "2022-12-27T19:12:24+00:00"
  6061. },
  6062. {
  6063. "name": "ramsey/uuid",
  6064. "version": "4.7.5",
  6065. "source": {
  6066. "type": "git",
  6067. "url": "https://github.com/ramsey/uuid.git",
  6068. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  6069. },
  6070. "dist": {
  6071. "type": "zip",
  6072. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  6073. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  6074. "shasum": ""
  6075. },
  6076. "require": {
  6077. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  6078. "ext-json": "*",
  6079. "php": "^8.0",
  6080. "ramsey/collection": "^1.2 || ^2.0"
  6081. },
  6082. "replace": {
  6083. "rhumsaa/uuid": "self.version"
  6084. },
  6085. "require-dev": {
  6086. "captainhook/captainhook": "^5.10",
  6087. "captainhook/plugin-composer": "^5.3",
  6088. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6089. "doctrine/annotations": "^1.8",
  6090. "ergebnis/composer-normalize": "^2.15",
  6091. "mockery/mockery": "^1.3",
  6092. "paragonie/random-lib": "^2",
  6093. "php-mock/php-mock": "^2.2",
  6094. "php-mock/php-mock-mockery": "^1.3",
  6095. "php-parallel-lint/php-parallel-lint": "^1.1",
  6096. "phpbench/phpbench": "^1.0",
  6097. "phpstan/extension-installer": "^1.1",
  6098. "phpstan/phpstan": "^1.8",
  6099. "phpstan/phpstan-mockery": "^1.1",
  6100. "phpstan/phpstan-phpunit": "^1.1",
  6101. "phpunit/phpunit": "^8.5 || ^9",
  6102. "ramsey/composer-repl": "^1.4",
  6103. "slevomat/coding-standard": "^8.4",
  6104. "squizlabs/php_codesniffer": "^3.5",
  6105. "vimeo/psalm": "^4.9"
  6106. },
  6107. "suggest": {
  6108. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6109. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6110. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6111. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6112. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6113. },
  6114. "type": "library",
  6115. "extra": {
  6116. "captainhook": {
  6117. "force-install": true
  6118. }
  6119. },
  6120. "autoload": {
  6121. "files": [
  6122. "src/functions.php"
  6123. ],
  6124. "psr-4": {
  6125. "Ramsey\\Uuid\\": "src/"
  6126. }
  6127. },
  6128. "notification-url": "https://packagist.org/downloads/",
  6129. "license": [
  6130. "MIT"
  6131. ],
  6132. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6133. "keywords": [
  6134. "guid",
  6135. "identifier",
  6136. "uuid"
  6137. ],
  6138. "support": {
  6139. "issues": "https://github.com/ramsey/uuid/issues",
  6140. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  6141. },
  6142. "funding": [
  6143. {
  6144. "url": "https://github.com/ramsey",
  6145. "type": "github"
  6146. },
  6147. {
  6148. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6149. "type": "tidelift"
  6150. }
  6151. ],
  6152. "time": "2023-11-08T05:53:05+00:00"
  6153. },
  6154. {
  6155. "name": "ratchet/rfc6455",
  6156. "version": "v0.3.1",
  6157. "source": {
  6158. "type": "git",
  6159. "url": "https://github.com/ratchetphp/RFC6455.git",
  6160. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  6161. },
  6162. "dist": {
  6163. "type": "zip",
  6164. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  6165. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  6166. "shasum": ""
  6167. },
  6168. "require": {
  6169. "guzzlehttp/psr7": "^2 || ^1.7",
  6170. "php": ">=5.4.2"
  6171. },
  6172. "require-dev": {
  6173. "phpunit/phpunit": "^5.7",
  6174. "react/socket": "^1.3"
  6175. },
  6176. "type": "library",
  6177. "autoload": {
  6178. "psr-4": {
  6179. "Ratchet\\RFC6455\\": "src"
  6180. }
  6181. },
  6182. "notification-url": "https://packagist.org/downloads/",
  6183. "license": [
  6184. "MIT"
  6185. ],
  6186. "authors": [
  6187. {
  6188. "name": "Chris Boden",
  6189. "email": "cboden@gmail.com",
  6190. "role": "Developer"
  6191. },
  6192. {
  6193. "name": "Matt Bonneau",
  6194. "role": "Developer"
  6195. }
  6196. ],
  6197. "description": "RFC6455 WebSocket protocol handler",
  6198. "homepage": "http://socketo.me",
  6199. "keywords": [
  6200. "WebSockets",
  6201. "rfc6455",
  6202. "websocket"
  6203. ],
  6204. "support": {
  6205. "chat": "https://gitter.im/reactphp/reactphp",
  6206. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  6207. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  6208. },
  6209. "time": "2021-12-09T23:20:49+00:00"
  6210. },
  6211. {
  6212. "name": "react/cache",
  6213. "version": "v1.2.0",
  6214. "source": {
  6215. "type": "git",
  6216. "url": "https://github.com/reactphp/cache.git",
  6217. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  6218. },
  6219. "dist": {
  6220. "type": "zip",
  6221. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  6222. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  6223. "shasum": ""
  6224. },
  6225. "require": {
  6226. "php": ">=5.3.0",
  6227. "react/promise": "^3.0 || ^2.0 || ^1.1"
  6228. },
  6229. "require-dev": {
  6230. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  6231. },
  6232. "type": "library",
  6233. "autoload": {
  6234. "psr-4": {
  6235. "React\\Cache\\": "src/"
  6236. }
  6237. },
  6238. "notification-url": "https://packagist.org/downloads/",
  6239. "license": [
  6240. "MIT"
  6241. ],
  6242. "authors": [
  6243. {
  6244. "name": "Christian Lück",
  6245. "email": "christian@clue.engineering",
  6246. "homepage": "https://clue.engineering/"
  6247. },
  6248. {
  6249. "name": "Cees-Jan Kiewiet",
  6250. "email": "reactphp@ceesjankiewiet.nl",
  6251. "homepage": "https://wyrihaximus.net/"
  6252. },
  6253. {
  6254. "name": "Jan Sorgalla",
  6255. "email": "jsorgalla@gmail.com",
  6256. "homepage": "https://sorgalla.com/"
  6257. },
  6258. {
  6259. "name": "Chris Boden",
  6260. "email": "cboden@gmail.com",
  6261. "homepage": "https://cboden.dev/"
  6262. }
  6263. ],
  6264. "description": "Async, Promise-based cache interface for ReactPHP",
  6265. "keywords": [
  6266. "cache",
  6267. "caching",
  6268. "promise",
  6269. "reactphp"
  6270. ],
  6271. "support": {
  6272. "issues": "https://github.com/reactphp/cache/issues",
  6273. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  6274. },
  6275. "funding": [
  6276. {
  6277. "url": "https://opencollective.com/reactphp",
  6278. "type": "open_collective"
  6279. }
  6280. ],
  6281. "time": "2022-11-30T15:59:55+00:00"
  6282. },
  6283. {
  6284. "name": "react/dns",
  6285. "version": "v1.12.0",
  6286. "source": {
  6287. "type": "git",
  6288. "url": "https://github.com/reactphp/dns.git",
  6289. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  6290. },
  6291. "dist": {
  6292. "type": "zip",
  6293. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  6294. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  6295. "shasum": ""
  6296. },
  6297. "require": {
  6298. "php": ">=5.3.0",
  6299. "react/cache": "^1.0 || ^0.6 || ^0.5",
  6300. "react/event-loop": "^1.2",
  6301. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  6302. },
  6303. "require-dev": {
  6304. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  6305. "react/async": "^4 || ^3 || ^2",
  6306. "react/promise-timer": "^1.9"
  6307. },
  6308. "type": "library",
  6309. "autoload": {
  6310. "psr-4": {
  6311. "React\\Dns\\": "src/"
  6312. }
  6313. },
  6314. "notification-url": "https://packagist.org/downloads/",
  6315. "license": [
  6316. "MIT"
  6317. ],
  6318. "authors": [
  6319. {
  6320. "name": "Christian Lück",
  6321. "email": "christian@clue.engineering",
  6322. "homepage": "https://clue.engineering/"
  6323. },
  6324. {
  6325. "name": "Cees-Jan Kiewiet",
  6326. "email": "reactphp@ceesjankiewiet.nl",
  6327. "homepage": "https://wyrihaximus.net/"
  6328. },
  6329. {
  6330. "name": "Jan Sorgalla",
  6331. "email": "jsorgalla@gmail.com",
  6332. "homepage": "https://sorgalla.com/"
  6333. },
  6334. {
  6335. "name": "Chris Boden",
  6336. "email": "cboden@gmail.com",
  6337. "homepage": "https://cboden.dev/"
  6338. }
  6339. ],
  6340. "description": "Async DNS resolver for ReactPHP",
  6341. "keywords": [
  6342. "async",
  6343. "dns",
  6344. "dns-resolver",
  6345. "reactphp"
  6346. ],
  6347. "support": {
  6348. "issues": "https://github.com/reactphp/dns/issues",
  6349. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  6350. },
  6351. "funding": [
  6352. {
  6353. "url": "https://opencollective.com/reactphp",
  6354. "type": "open_collective"
  6355. }
  6356. ],
  6357. "time": "2023-11-29T12:41:06+00:00"
  6358. },
  6359. {
  6360. "name": "react/event-loop",
  6361. "version": "v1.5.0",
  6362. "source": {
  6363. "type": "git",
  6364. "url": "https://github.com/reactphp/event-loop.git",
  6365. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  6366. },
  6367. "dist": {
  6368. "type": "zip",
  6369. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  6370. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  6371. "shasum": ""
  6372. },
  6373. "require": {
  6374. "php": ">=5.3.0"
  6375. },
  6376. "require-dev": {
  6377. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  6378. },
  6379. "suggest": {
  6380. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  6381. },
  6382. "type": "library",
  6383. "autoload": {
  6384. "psr-4": {
  6385. "React\\EventLoop\\": "src/"
  6386. }
  6387. },
  6388. "notification-url": "https://packagist.org/downloads/",
  6389. "license": [
  6390. "MIT"
  6391. ],
  6392. "authors": [
  6393. {
  6394. "name": "Christian Lück",
  6395. "email": "christian@clue.engineering",
  6396. "homepage": "https://clue.engineering/"
  6397. },
  6398. {
  6399. "name": "Cees-Jan Kiewiet",
  6400. "email": "reactphp@ceesjankiewiet.nl",
  6401. "homepage": "https://wyrihaximus.net/"
  6402. },
  6403. {
  6404. "name": "Jan Sorgalla",
  6405. "email": "jsorgalla@gmail.com",
  6406. "homepage": "https://sorgalla.com/"
  6407. },
  6408. {
  6409. "name": "Chris Boden",
  6410. "email": "cboden@gmail.com",
  6411. "homepage": "https://cboden.dev/"
  6412. }
  6413. ],
  6414. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  6415. "keywords": [
  6416. "asynchronous",
  6417. "event-loop"
  6418. ],
  6419. "support": {
  6420. "issues": "https://github.com/reactphp/event-loop/issues",
  6421. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  6422. },
  6423. "funding": [
  6424. {
  6425. "url": "https://opencollective.com/reactphp",
  6426. "type": "open_collective"
  6427. }
  6428. ],
  6429. "time": "2023-11-13T13:48:05+00:00"
  6430. },
  6431. {
  6432. "name": "react/promise",
  6433. "version": "v3.1.0",
  6434. "source": {
  6435. "type": "git",
  6436. "url": "https://github.com/reactphp/promise.git",
  6437. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c"
  6438. },
  6439. "dist": {
  6440. "type": "zip",
  6441. "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  6442. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  6443. "shasum": ""
  6444. },
  6445. "require": {
  6446. "php": ">=7.1.0"
  6447. },
  6448. "require-dev": {
  6449. "phpstan/phpstan": "1.10.39 || 1.4.10",
  6450. "phpunit/phpunit": "^9.6 || ^7.5"
  6451. },
  6452. "type": "library",
  6453. "autoload": {
  6454. "files": [
  6455. "src/functions_include.php"
  6456. ],
  6457. "psr-4": {
  6458. "React\\Promise\\": "src/"
  6459. }
  6460. },
  6461. "notification-url": "https://packagist.org/downloads/",
  6462. "license": [
  6463. "MIT"
  6464. ],
  6465. "authors": [
  6466. {
  6467. "name": "Jan Sorgalla",
  6468. "email": "jsorgalla@gmail.com",
  6469. "homepage": "https://sorgalla.com/"
  6470. },
  6471. {
  6472. "name": "Christian Lück",
  6473. "email": "christian@clue.engineering",
  6474. "homepage": "https://clue.engineering/"
  6475. },
  6476. {
  6477. "name": "Cees-Jan Kiewiet",
  6478. "email": "reactphp@ceesjankiewiet.nl",
  6479. "homepage": "https://wyrihaximus.net/"
  6480. },
  6481. {
  6482. "name": "Chris Boden",
  6483. "email": "cboden@gmail.com",
  6484. "homepage": "https://cboden.dev/"
  6485. }
  6486. ],
  6487. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  6488. "keywords": [
  6489. "promise",
  6490. "promises"
  6491. ],
  6492. "support": {
  6493. "issues": "https://github.com/reactphp/promise/issues",
  6494. "source": "https://github.com/reactphp/promise/tree/v3.1.0"
  6495. },
  6496. "funding": [
  6497. {
  6498. "url": "https://opencollective.com/reactphp",
  6499. "type": "open_collective"
  6500. }
  6501. ],
  6502. "time": "2023-11-16T16:21:57+00:00"
  6503. },
  6504. {
  6505. "name": "react/socket",
  6506. "version": "v1.15.0",
  6507. "source": {
  6508. "type": "git",
  6509. "url": "https://github.com/reactphp/socket.git",
  6510. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  6511. },
  6512. "dist": {
  6513. "type": "zip",
  6514. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  6515. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  6516. "shasum": ""
  6517. },
  6518. "require": {
  6519. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  6520. "php": ">=5.3.0",
  6521. "react/dns": "^1.11",
  6522. "react/event-loop": "^1.2",
  6523. "react/promise": "^3 || ^2.6 || ^1.2.1",
  6524. "react/stream": "^1.2"
  6525. },
  6526. "require-dev": {
  6527. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  6528. "react/async": "^4 || ^3 || ^2",
  6529. "react/promise-stream": "^1.4",
  6530. "react/promise-timer": "^1.10"
  6531. },
  6532. "type": "library",
  6533. "autoload": {
  6534. "psr-4": {
  6535. "React\\Socket\\": "src/"
  6536. }
  6537. },
  6538. "notification-url": "https://packagist.org/downloads/",
  6539. "license": [
  6540. "MIT"
  6541. ],
  6542. "authors": [
  6543. {
  6544. "name": "Christian Lück",
  6545. "email": "christian@clue.engineering",
  6546. "homepage": "https://clue.engineering/"
  6547. },
  6548. {
  6549. "name": "Cees-Jan Kiewiet",
  6550. "email": "reactphp@ceesjankiewiet.nl",
  6551. "homepage": "https://wyrihaximus.net/"
  6552. },
  6553. {
  6554. "name": "Jan Sorgalla",
  6555. "email": "jsorgalla@gmail.com",
  6556. "homepage": "https://sorgalla.com/"
  6557. },
  6558. {
  6559. "name": "Chris Boden",
  6560. "email": "cboden@gmail.com",
  6561. "homepage": "https://cboden.dev/"
  6562. }
  6563. ],
  6564. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  6565. "keywords": [
  6566. "Connection",
  6567. "Socket",
  6568. "async",
  6569. "reactphp",
  6570. "stream"
  6571. ],
  6572. "support": {
  6573. "issues": "https://github.com/reactphp/socket/issues",
  6574. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  6575. },
  6576. "funding": [
  6577. {
  6578. "url": "https://opencollective.com/reactphp",
  6579. "type": "open_collective"
  6580. }
  6581. ],
  6582. "time": "2023-12-15T11:02:10+00:00"
  6583. },
  6584. {
  6585. "name": "react/stream",
  6586. "version": "v1.3.0",
  6587. "source": {
  6588. "type": "git",
  6589. "url": "https://github.com/reactphp/stream.git",
  6590. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  6591. },
  6592. "dist": {
  6593. "type": "zip",
  6594. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  6595. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  6596. "shasum": ""
  6597. },
  6598. "require": {
  6599. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  6600. "php": ">=5.3.8",
  6601. "react/event-loop": "^1.2"
  6602. },
  6603. "require-dev": {
  6604. "clue/stream-filter": "~1.2",
  6605. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  6606. },
  6607. "type": "library",
  6608. "autoload": {
  6609. "psr-4": {
  6610. "React\\Stream\\": "src/"
  6611. }
  6612. },
  6613. "notification-url": "https://packagist.org/downloads/",
  6614. "license": [
  6615. "MIT"
  6616. ],
  6617. "authors": [
  6618. {
  6619. "name": "Christian Lück",
  6620. "email": "christian@clue.engineering",
  6621. "homepage": "https://clue.engineering/"
  6622. },
  6623. {
  6624. "name": "Cees-Jan Kiewiet",
  6625. "email": "reactphp@ceesjankiewiet.nl",
  6626. "homepage": "https://wyrihaximus.net/"
  6627. },
  6628. {
  6629. "name": "Jan Sorgalla",
  6630. "email": "jsorgalla@gmail.com",
  6631. "homepage": "https://sorgalla.com/"
  6632. },
  6633. {
  6634. "name": "Chris Boden",
  6635. "email": "cboden@gmail.com",
  6636. "homepage": "https://cboden.dev/"
  6637. }
  6638. ],
  6639. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  6640. "keywords": [
  6641. "event-driven",
  6642. "io",
  6643. "non-blocking",
  6644. "pipe",
  6645. "reactphp",
  6646. "readable",
  6647. "stream",
  6648. "writable"
  6649. ],
  6650. "support": {
  6651. "issues": "https://github.com/reactphp/stream/issues",
  6652. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  6653. },
  6654. "funding": [
  6655. {
  6656. "url": "https://opencollective.com/reactphp",
  6657. "type": "open_collective"
  6658. }
  6659. ],
  6660. "time": "2023-06-16T10:52:11+00:00"
  6661. },
  6662. {
  6663. "name": "simplito/bigint-wrapper-php",
  6664. "version": "1.0.0",
  6665. "source": {
  6666. "type": "git",
  6667. "url": "https://github.com/simplito/bigint-wrapper-php.git",
  6668. "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930"
  6669. },
  6670. "dist": {
  6671. "type": "zip",
  6672. "url": "https://api.github.com/repos/simplito/bigint-wrapper-php/zipball/cf21ec76d33f103add487b3eadbd9f5033a25930",
  6673. "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930",
  6674. "shasum": "",
  6675. "mirrors": [
  6676. {
  6677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6678. "preferred": true
  6679. }
  6680. ]
  6681. },
  6682. "type": "library",
  6683. "autoload": {
  6684. "psr-4": {
  6685. "BI\\": "lib/"
  6686. }
  6687. },
  6688. "notification-url": "https://packagist.org/downloads/",
  6689. "license": [
  6690. "MIT"
  6691. ],
  6692. "authors": [
  6693. {
  6694. "name": "Simplito Team",
  6695. "email": "s.smyczynski@simplito.com",
  6696. "homepage": "https://simplito.com"
  6697. }
  6698. ],
  6699. "description": "Common interface for php_gmp and php_bcmath modules",
  6700. "support": {
  6701. "issues": "https://github.com/simplito/bigint-wrapper-php/issues",
  6702. "source": "https://github.com/simplito/bigint-wrapper-php/tree/1.0.0"
  6703. },
  6704. "time": "2018-02-27T12:38:08+00:00"
  6705. },
  6706. {
  6707. "name": "simplito/bn-php",
  6708. "version": "1.1.3",
  6709. "source": {
  6710. "type": "git",
  6711. "url": "https://github.com/simplito/bn-php.git",
  6712. "reference": "189167f940cdb681288a967b0f4d66de81adcd97"
  6713. },
  6714. "dist": {
  6715. "type": "zip",
  6716. "url": "https://api.github.com/repos/simplito/bn-php/zipball/189167f940cdb681288a967b0f4d66de81adcd97",
  6717. "reference": "189167f940cdb681288a967b0f4d66de81adcd97",
  6718. "shasum": "",
  6719. "mirrors": [
  6720. {
  6721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6722. "preferred": true
  6723. }
  6724. ]
  6725. },
  6726. "require": {
  6727. "simplito/bigint-wrapper-php": "~1.0.0"
  6728. },
  6729. "require-dev": {
  6730. "phpunit/phpunit": "*"
  6731. },
  6732. "type": "library",
  6733. "autoload": {
  6734. "psr-4": {
  6735. "BN\\": "lib/"
  6736. }
  6737. },
  6738. "notification-url": "https://packagist.org/downloads/",
  6739. "license": [
  6740. "MIT"
  6741. ],
  6742. "authors": [
  6743. {
  6744. "name": "Simplito Team",
  6745. "email": "s.smyczynski@simplito.com",
  6746. "homepage": "https://simplito.com"
  6747. }
  6748. ],
  6749. "description": "Big number implementation compatible with bn.js",
  6750. "support": {
  6751. "issues": "https://github.com/simplito/bn-php/issues",
  6752. "source": "https://github.com/simplito/bn-php/tree/1.1.3"
  6753. },
  6754. "time": "2022-08-12T18:58:14+00:00"
  6755. },
  6756. {
  6757. "name": "simplito/elliptic-php",
  6758. "version": "1.0.12",
  6759. "source": {
  6760. "type": "git",
  6761. "url": "https://github.com/simplito/elliptic-php.git",
  6762. "reference": "be321666781be2be2c89c79c43ffcac834bc8868"
  6763. },
  6764. "dist": {
  6765. "type": "zip",
  6766. "url": "https://api.github.com/repos/simplito/elliptic-php/zipball/be321666781be2be2c89c79c43ffcac834bc8868",
  6767. "reference": "be321666781be2be2c89c79c43ffcac834bc8868",
  6768. "shasum": "",
  6769. "mirrors": [
  6770. {
  6771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6772. "preferred": true
  6773. }
  6774. ]
  6775. },
  6776. "require": {
  6777. "ext-gmp": "*",
  6778. "simplito/bn-php": "~1.1.0"
  6779. },
  6780. "require-dev": {
  6781. "phpbench/phpbench": "@dev",
  6782. "phpunit/phpunit": "*"
  6783. },
  6784. "type": "library",
  6785. "autoload": {
  6786. "psr-4": {
  6787. "Elliptic\\": "lib/"
  6788. }
  6789. },
  6790. "notification-url": "https://packagist.org/downloads/",
  6791. "license": [
  6792. "MIT"
  6793. ],
  6794. "authors": [
  6795. {
  6796. "name": "Simplito Team",
  6797. "email": "s.smyczynski@simplito.com",
  6798. "homepage": "https://simplito.com"
  6799. }
  6800. ],
  6801. "description": "Fast elliptic curve cryptography",
  6802. "homepage": "https://github.com/simplito/elliptic-php",
  6803. "keywords": [
  6804. "Curve25519",
  6805. "ECDSA",
  6806. "Ed25519",
  6807. "EdDSA",
  6808. "cryptography",
  6809. "curve",
  6810. "curve25519-weier",
  6811. "ecc",
  6812. "ecdh",
  6813. "elliptic",
  6814. "nistp192",
  6815. "nistp224",
  6816. "nistp256",
  6817. "nistp384",
  6818. "nistp521",
  6819. "secp256k1"
  6820. ],
  6821. "support": {
  6822. "issues": "https://github.com/simplito/elliptic-php/issues",
  6823. "source": "https://github.com/simplito/elliptic-php/tree/1.0.12"
  6824. },
  6825. "time": "2024-01-09T14:57:04+00:00"
  6826. },
  6827. {
  6828. "name": "socialiteproviders/manager",
  6829. "version": "v4.4.0",
  6830. "source": {
  6831. "type": "git",
  6832. "url": "https://github.com/SocialiteProviders/Manager.git",
  6833. "reference": "df5e45b53d918ec3d689f014d98a6c838b98ed96"
  6834. },
  6835. "dist": {
  6836. "type": "zip",
  6837. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/df5e45b53d918ec3d689f014d98a6c838b98ed96",
  6838. "reference": "df5e45b53d918ec3d689f014d98a6c838b98ed96",
  6839. "shasum": ""
  6840. },
  6841. "require": {
  6842. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  6843. "laravel/socialite": "~5.0",
  6844. "php": "^8.0"
  6845. },
  6846. "require-dev": {
  6847. "mockery/mockery": "^1.2",
  6848. "phpunit/phpunit": "^6.0 || ^9.0"
  6849. },
  6850. "type": "library",
  6851. "extra": {
  6852. "laravel": {
  6853. "providers": [
  6854. "SocialiteProviders\\Manager\\ServiceProvider"
  6855. ]
  6856. }
  6857. },
  6858. "autoload": {
  6859. "psr-4": {
  6860. "SocialiteProviders\\Manager\\": "src/"
  6861. }
  6862. },
  6863. "notification-url": "https://packagist.org/downloads/",
  6864. "license": [
  6865. "MIT"
  6866. ],
  6867. "authors": [
  6868. {
  6869. "name": "Andy Wendt",
  6870. "email": "andy@awendt.com"
  6871. },
  6872. {
  6873. "name": "Anton Komarev",
  6874. "email": "a.komarev@cybercog.su"
  6875. },
  6876. {
  6877. "name": "Miguel Piedrafita",
  6878. "email": "soy@miguelpiedrafita.com"
  6879. },
  6880. {
  6881. "name": "atymic",
  6882. "email": "atymicq@gmail.com",
  6883. "homepage": "https://atymic.dev"
  6884. }
  6885. ],
  6886. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  6887. "homepage": "https://socialiteproviders.com",
  6888. "keywords": [
  6889. "laravel",
  6890. "manager",
  6891. "oauth",
  6892. "providers",
  6893. "socialite"
  6894. ],
  6895. "support": {
  6896. "issues": "https://github.com/socialiteproviders/manager/issues",
  6897. "source": "https://github.com/socialiteproviders/manager"
  6898. },
  6899. "time": "2023-08-27T23:46:34+00:00"
  6900. },
  6901. {
  6902. "name": "socialiteproviders/weixin",
  6903. "version": "4.1.0",
  6904. "source": {
  6905. "type": "git",
  6906. "url": "https://github.com/SocialiteProviders/Weixin.git",
  6907. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  6908. },
  6909. "dist": {
  6910. "type": "zip",
  6911. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6912. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6913. "shasum": ""
  6914. },
  6915. "require": {
  6916. "ext-json": "*",
  6917. "php": "^7.2 || ^8.0",
  6918. "socialiteproviders/manager": "~4.0"
  6919. },
  6920. "type": "library",
  6921. "autoload": {
  6922. "psr-4": {
  6923. "SocialiteProviders\\Weixin\\": ""
  6924. }
  6925. },
  6926. "notification-url": "https://packagist.org/downloads/",
  6927. "license": [
  6928. "MIT"
  6929. ],
  6930. "authors": [
  6931. {
  6932. "name": "xyxu",
  6933. "email": "techxu@gmail.com"
  6934. },
  6935. {
  6936. "name": "xiami",
  6937. "email": "jhdxr@php.net"
  6938. }
  6939. ],
  6940. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  6941. "support": {
  6942. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  6943. },
  6944. "time": "2020-12-01T23:10:59+00:00"
  6945. },
  6946. {
  6947. "name": "socialiteproviders/weixin-web",
  6948. "version": "4.1.0",
  6949. "source": {
  6950. "type": "git",
  6951. "url": "https://github.com/SocialiteProviders/Weixin-Web.git",
  6952. "reference": "3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3"
  6953. },
  6954. "dist": {
  6955. "type": "zip",
  6956. "url": "https://api.github.com/repos/SocialiteProviders/Weixin-Web/zipball/3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3",
  6957. "reference": "3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3",
  6958. "shasum": ""
  6959. },
  6960. "require": {
  6961. "ext-json": "*",
  6962. "php": "^7.2 || ^8.0",
  6963. "socialiteproviders/manager": "~4.0"
  6964. },
  6965. "type": "library",
  6966. "autoload": {
  6967. "psr-4": {
  6968. "SocialiteProviders\\WeixinWeb\\": ""
  6969. }
  6970. },
  6971. "notification-url": "https://packagist.org/downloads/",
  6972. "license": [
  6973. "MIT"
  6974. ],
  6975. "authors": [
  6976. {
  6977. "name": "xyxu",
  6978. "email": "techxu@gmail.com"
  6979. }
  6980. ],
  6981. "description": "Weixin-Web OAuth2 Provider for Laravel Socialite",
  6982. "support": {
  6983. "source": "https://github.com/SocialiteProviders/Weixin-Web/tree/4.1.0"
  6984. },
  6985. "time": "2020-12-01T23:10:59+00:00"
  6986. },
  6987. {
  6988. "name": "swiftmailer/swiftmailer",
  6989. "version": "v6.3.0",
  6990. "source": {
  6991. "type": "git",
  6992. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6993. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  6994. },
  6995. "dist": {
  6996. "type": "zip",
  6997. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6998. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6999. "shasum": ""
  7000. },
  7001. "require": {
  7002. "egulias/email-validator": "^2.0|^3.1",
  7003. "php": ">=7.0.0",
  7004. "symfony/polyfill-iconv": "^1.0",
  7005. "symfony/polyfill-intl-idn": "^1.10",
  7006. "symfony/polyfill-mbstring": "^1.0"
  7007. },
  7008. "require-dev": {
  7009. "mockery/mockery": "^1.0",
  7010. "symfony/phpunit-bridge": "^4.4|^5.4"
  7011. },
  7012. "suggest": {
  7013. "ext-intl": "Needed to support internationalized email addresses"
  7014. },
  7015. "type": "library",
  7016. "extra": {
  7017. "branch-alias": {
  7018. "dev-master": "6.2-dev"
  7019. }
  7020. },
  7021. "autoload": {
  7022. "files": [
  7023. "lib/swift_required.php"
  7024. ]
  7025. },
  7026. "notification-url": "https://packagist.org/downloads/",
  7027. "license": [
  7028. "MIT"
  7029. ],
  7030. "authors": [
  7031. {
  7032. "name": "Chris Corbyn"
  7033. },
  7034. {
  7035. "name": "Fabien Potencier",
  7036. "email": "fabien@symfony.com"
  7037. }
  7038. ],
  7039. "description": "Swiftmailer, free feature-rich PHP mailer",
  7040. "homepage": "https://swiftmailer.symfony.com",
  7041. "keywords": [
  7042. "email",
  7043. "mail",
  7044. "mailer"
  7045. ],
  7046. "support": {
  7047. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  7048. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  7049. },
  7050. "funding": [
  7051. {
  7052. "url": "https://github.com/fabpot",
  7053. "type": "github"
  7054. },
  7055. {
  7056. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  7057. "type": "tidelift"
  7058. }
  7059. ],
  7060. "abandoned": "symfony/mailer",
  7061. "time": "2021-10-18T15:26:12+00:00"
  7062. },
  7063. {
  7064. "name": "symfony/console",
  7065. "version": "v5.4.32",
  7066. "source": {
  7067. "type": "git",
  7068. "url": "https://github.com/symfony/console.git",
  7069. "reference": "c70df1ffaf23a8d340bded3cfab1b86752ad6ed7"
  7070. },
  7071. "dist": {
  7072. "type": "zip",
  7073. "url": "https://api.github.com/repos/symfony/console/zipball/c70df1ffaf23a8d340bded3cfab1b86752ad6ed7",
  7074. "reference": "c70df1ffaf23a8d340bded3cfab1b86752ad6ed7",
  7075. "shasum": ""
  7076. },
  7077. "require": {
  7078. "php": ">=7.2.5",
  7079. "symfony/deprecation-contracts": "^2.1|^3",
  7080. "symfony/polyfill-mbstring": "~1.0",
  7081. "symfony/polyfill-php73": "^1.9",
  7082. "symfony/polyfill-php80": "^1.16",
  7083. "symfony/service-contracts": "^1.1|^2|^3",
  7084. "symfony/string": "^5.1|^6.0"
  7085. },
  7086. "conflict": {
  7087. "psr/log": ">=3",
  7088. "symfony/dependency-injection": "<4.4",
  7089. "symfony/dotenv": "<5.1",
  7090. "symfony/event-dispatcher": "<4.4",
  7091. "symfony/lock": "<4.4",
  7092. "symfony/process": "<4.4"
  7093. },
  7094. "provide": {
  7095. "psr/log-implementation": "1.0|2.0"
  7096. },
  7097. "require-dev": {
  7098. "psr/log": "^1|^2",
  7099. "symfony/config": "^4.4|^5.0|^6.0",
  7100. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7101. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  7102. "symfony/lock": "^4.4|^5.0|^6.0",
  7103. "symfony/process": "^4.4|^5.0|^6.0",
  7104. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7105. },
  7106. "suggest": {
  7107. "psr/log": "For using the console logger",
  7108. "symfony/event-dispatcher": "",
  7109. "symfony/lock": "",
  7110. "symfony/process": ""
  7111. },
  7112. "type": "library",
  7113. "autoload": {
  7114. "psr-4": {
  7115. "Symfony\\Component\\Console\\": ""
  7116. },
  7117. "exclude-from-classmap": [
  7118. "/Tests/"
  7119. ]
  7120. },
  7121. "notification-url": "https://packagist.org/downloads/",
  7122. "license": [
  7123. "MIT"
  7124. ],
  7125. "authors": [
  7126. {
  7127. "name": "Fabien Potencier",
  7128. "email": "fabien@symfony.com"
  7129. },
  7130. {
  7131. "name": "Symfony Community",
  7132. "homepage": "https://symfony.com/contributors"
  7133. }
  7134. ],
  7135. "description": "Eases the creation of beautiful and testable command line interfaces",
  7136. "homepage": "https://symfony.com",
  7137. "keywords": [
  7138. "cli",
  7139. "command-line",
  7140. "console",
  7141. "terminal"
  7142. ],
  7143. "support": {
  7144. "source": "https://github.com/symfony/console/tree/v5.4.32"
  7145. },
  7146. "funding": [
  7147. {
  7148. "url": "https://symfony.com/sponsor",
  7149. "type": "custom"
  7150. },
  7151. {
  7152. "url": "https://github.com/fabpot",
  7153. "type": "github"
  7154. },
  7155. {
  7156. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7157. "type": "tidelift"
  7158. }
  7159. ],
  7160. "time": "2023-11-18T18:23:04+00:00"
  7161. },
  7162. {
  7163. "name": "symfony/css-selector",
  7164. "version": "v6.0.19",
  7165. "source": {
  7166. "type": "git",
  7167. "url": "https://github.com/symfony/css-selector.git",
  7168. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  7169. },
  7170. "dist": {
  7171. "type": "zip",
  7172. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  7173. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  7174. "shasum": ""
  7175. },
  7176. "require": {
  7177. "php": ">=8.0.2"
  7178. },
  7179. "type": "library",
  7180. "autoload": {
  7181. "psr-4": {
  7182. "Symfony\\Component\\CssSelector\\": ""
  7183. },
  7184. "exclude-from-classmap": [
  7185. "/Tests/"
  7186. ]
  7187. },
  7188. "notification-url": "https://packagist.org/downloads/",
  7189. "license": [
  7190. "MIT"
  7191. ],
  7192. "authors": [
  7193. {
  7194. "name": "Fabien Potencier",
  7195. "email": "fabien@symfony.com"
  7196. },
  7197. {
  7198. "name": "Jean-François Simon",
  7199. "email": "jeanfrancois.simon@sensiolabs.com"
  7200. },
  7201. {
  7202. "name": "Symfony Community",
  7203. "homepage": "https://symfony.com/contributors"
  7204. }
  7205. ],
  7206. "description": "Converts CSS selectors to XPath expressions",
  7207. "homepage": "https://symfony.com",
  7208. "support": {
  7209. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  7210. },
  7211. "funding": [
  7212. {
  7213. "url": "https://symfony.com/sponsor",
  7214. "type": "custom"
  7215. },
  7216. {
  7217. "url": "https://github.com/fabpot",
  7218. "type": "github"
  7219. },
  7220. {
  7221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7222. "type": "tidelift"
  7223. }
  7224. ],
  7225. "time": "2023-01-01T08:36:10+00:00"
  7226. },
  7227. {
  7228. "name": "symfony/deprecation-contracts",
  7229. "version": "v3.0.2",
  7230. "source": {
  7231. "type": "git",
  7232. "url": "https://github.com/symfony/deprecation-contracts.git",
  7233. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  7234. },
  7235. "dist": {
  7236. "type": "zip",
  7237. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7238. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7239. "shasum": ""
  7240. },
  7241. "require": {
  7242. "php": ">=8.0.2"
  7243. },
  7244. "type": "library",
  7245. "extra": {
  7246. "branch-alias": {
  7247. "dev-main": "3.0-dev"
  7248. },
  7249. "thanks": {
  7250. "name": "symfony/contracts",
  7251. "url": "https://github.com/symfony/contracts"
  7252. }
  7253. },
  7254. "autoload": {
  7255. "files": [
  7256. "function.php"
  7257. ]
  7258. },
  7259. "notification-url": "https://packagist.org/downloads/",
  7260. "license": [
  7261. "MIT"
  7262. ],
  7263. "authors": [
  7264. {
  7265. "name": "Nicolas Grekas",
  7266. "email": "p@tchwork.com"
  7267. },
  7268. {
  7269. "name": "Symfony Community",
  7270. "homepage": "https://symfony.com/contributors"
  7271. }
  7272. ],
  7273. "description": "A generic function and convention to trigger deprecation notices",
  7274. "homepage": "https://symfony.com",
  7275. "support": {
  7276. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  7277. },
  7278. "funding": [
  7279. {
  7280. "url": "https://symfony.com/sponsor",
  7281. "type": "custom"
  7282. },
  7283. {
  7284. "url": "https://github.com/fabpot",
  7285. "type": "github"
  7286. },
  7287. {
  7288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7289. "type": "tidelift"
  7290. }
  7291. ],
  7292. "time": "2022-01-02T09:55:41+00:00"
  7293. },
  7294. {
  7295. "name": "symfony/error-handler",
  7296. "version": "v5.4.29",
  7297. "source": {
  7298. "type": "git",
  7299. "url": "https://github.com/symfony/error-handler.git",
  7300. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  7301. },
  7302. "dist": {
  7303. "type": "zip",
  7304. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  7305. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  7306. "shasum": ""
  7307. },
  7308. "require": {
  7309. "php": ">=7.2.5",
  7310. "psr/log": "^1|^2|^3",
  7311. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7312. },
  7313. "require-dev": {
  7314. "symfony/deprecation-contracts": "^2.1|^3",
  7315. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7316. "symfony/serializer": "^4.4|^5.0|^6.0"
  7317. },
  7318. "bin": [
  7319. "Resources/bin/patch-type-declarations"
  7320. ],
  7321. "type": "library",
  7322. "autoload": {
  7323. "psr-4": {
  7324. "Symfony\\Component\\ErrorHandler\\": ""
  7325. },
  7326. "exclude-from-classmap": [
  7327. "/Tests/"
  7328. ]
  7329. },
  7330. "notification-url": "https://packagist.org/downloads/",
  7331. "license": [
  7332. "MIT"
  7333. ],
  7334. "authors": [
  7335. {
  7336. "name": "Fabien Potencier",
  7337. "email": "fabien@symfony.com"
  7338. },
  7339. {
  7340. "name": "Symfony Community",
  7341. "homepage": "https://symfony.com/contributors"
  7342. }
  7343. ],
  7344. "description": "Provides tools to manage errors and ease debugging PHP code",
  7345. "homepage": "https://symfony.com",
  7346. "support": {
  7347. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  7348. },
  7349. "funding": [
  7350. {
  7351. "url": "https://symfony.com/sponsor",
  7352. "type": "custom"
  7353. },
  7354. {
  7355. "url": "https://github.com/fabpot",
  7356. "type": "github"
  7357. },
  7358. {
  7359. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7360. "type": "tidelift"
  7361. }
  7362. ],
  7363. "time": "2023-09-06T21:54:06+00:00"
  7364. },
  7365. {
  7366. "name": "symfony/event-dispatcher",
  7367. "version": "v6.0.19",
  7368. "source": {
  7369. "type": "git",
  7370. "url": "https://github.com/symfony/event-dispatcher.git",
  7371. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  7372. },
  7373. "dist": {
  7374. "type": "zip",
  7375. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  7376. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  7377. "shasum": ""
  7378. },
  7379. "require": {
  7380. "php": ">=8.0.2",
  7381. "symfony/event-dispatcher-contracts": "^2|^3"
  7382. },
  7383. "conflict": {
  7384. "symfony/dependency-injection": "<5.4"
  7385. },
  7386. "provide": {
  7387. "psr/event-dispatcher-implementation": "1.0",
  7388. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7389. },
  7390. "require-dev": {
  7391. "psr/log": "^1|^2|^3",
  7392. "symfony/config": "^5.4|^6.0",
  7393. "symfony/dependency-injection": "^5.4|^6.0",
  7394. "symfony/error-handler": "^5.4|^6.0",
  7395. "symfony/expression-language": "^5.4|^6.0",
  7396. "symfony/http-foundation": "^5.4|^6.0",
  7397. "symfony/service-contracts": "^1.1|^2|^3",
  7398. "symfony/stopwatch": "^5.4|^6.0"
  7399. },
  7400. "suggest": {
  7401. "symfony/dependency-injection": "",
  7402. "symfony/http-kernel": ""
  7403. },
  7404. "type": "library",
  7405. "autoload": {
  7406. "psr-4": {
  7407. "Symfony\\Component\\EventDispatcher\\": ""
  7408. },
  7409. "exclude-from-classmap": [
  7410. "/Tests/"
  7411. ]
  7412. },
  7413. "notification-url": "https://packagist.org/downloads/",
  7414. "license": [
  7415. "MIT"
  7416. ],
  7417. "authors": [
  7418. {
  7419. "name": "Fabien Potencier",
  7420. "email": "fabien@symfony.com"
  7421. },
  7422. {
  7423. "name": "Symfony Community",
  7424. "homepage": "https://symfony.com/contributors"
  7425. }
  7426. ],
  7427. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7428. "homepage": "https://symfony.com",
  7429. "support": {
  7430. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  7431. },
  7432. "funding": [
  7433. {
  7434. "url": "https://symfony.com/sponsor",
  7435. "type": "custom"
  7436. },
  7437. {
  7438. "url": "https://github.com/fabpot",
  7439. "type": "github"
  7440. },
  7441. {
  7442. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7443. "type": "tidelift"
  7444. }
  7445. ],
  7446. "time": "2023-01-01T08:36:10+00:00"
  7447. },
  7448. {
  7449. "name": "symfony/event-dispatcher-contracts",
  7450. "version": "v3.0.2",
  7451. "source": {
  7452. "type": "git",
  7453. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7454. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  7455. },
  7456. "dist": {
  7457. "type": "zip",
  7458. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  7459. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  7460. "shasum": ""
  7461. },
  7462. "require": {
  7463. "php": ">=8.0.2",
  7464. "psr/event-dispatcher": "^1"
  7465. },
  7466. "suggest": {
  7467. "symfony/event-dispatcher-implementation": ""
  7468. },
  7469. "type": "library",
  7470. "extra": {
  7471. "branch-alias": {
  7472. "dev-main": "3.0-dev"
  7473. },
  7474. "thanks": {
  7475. "name": "symfony/contracts",
  7476. "url": "https://github.com/symfony/contracts"
  7477. }
  7478. },
  7479. "autoload": {
  7480. "psr-4": {
  7481. "Symfony\\Contracts\\EventDispatcher\\": ""
  7482. }
  7483. },
  7484. "notification-url": "https://packagist.org/downloads/",
  7485. "license": [
  7486. "MIT"
  7487. ],
  7488. "authors": [
  7489. {
  7490. "name": "Nicolas Grekas",
  7491. "email": "p@tchwork.com"
  7492. },
  7493. {
  7494. "name": "Symfony Community",
  7495. "homepage": "https://symfony.com/contributors"
  7496. }
  7497. ],
  7498. "description": "Generic abstractions related to dispatching event",
  7499. "homepage": "https://symfony.com",
  7500. "keywords": [
  7501. "abstractions",
  7502. "contracts",
  7503. "decoupling",
  7504. "interfaces",
  7505. "interoperability",
  7506. "standards"
  7507. ],
  7508. "support": {
  7509. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  7510. },
  7511. "funding": [
  7512. {
  7513. "url": "https://symfony.com/sponsor",
  7514. "type": "custom"
  7515. },
  7516. {
  7517. "url": "https://github.com/fabpot",
  7518. "type": "github"
  7519. },
  7520. {
  7521. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7522. "type": "tidelift"
  7523. }
  7524. ],
  7525. "time": "2022-01-02T09:55:41+00:00"
  7526. },
  7527. {
  7528. "name": "symfony/finder",
  7529. "version": "v5.4.27",
  7530. "source": {
  7531. "type": "git",
  7532. "url": "https://github.com/symfony/finder.git",
  7533. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  7534. },
  7535. "dist": {
  7536. "type": "zip",
  7537. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  7538. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  7539. "shasum": ""
  7540. },
  7541. "require": {
  7542. "php": ">=7.2.5",
  7543. "symfony/deprecation-contracts": "^2.1|^3",
  7544. "symfony/polyfill-php80": "^1.16"
  7545. },
  7546. "type": "library",
  7547. "autoload": {
  7548. "psr-4": {
  7549. "Symfony\\Component\\Finder\\": ""
  7550. },
  7551. "exclude-from-classmap": [
  7552. "/Tests/"
  7553. ]
  7554. },
  7555. "notification-url": "https://packagist.org/downloads/",
  7556. "license": [
  7557. "MIT"
  7558. ],
  7559. "authors": [
  7560. {
  7561. "name": "Fabien Potencier",
  7562. "email": "fabien@symfony.com"
  7563. },
  7564. {
  7565. "name": "Symfony Community",
  7566. "homepage": "https://symfony.com/contributors"
  7567. }
  7568. ],
  7569. "description": "Finds files and directories via an intuitive fluent interface",
  7570. "homepage": "https://symfony.com",
  7571. "support": {
  7572. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  7573. },
  7574. "funding": [
  7575. {
  7576. "url": "https://symfony.com/sponsor",
  7577. "type": "custom"
  7578. },
  7579. {
  7580. "url": "https://github.com/fabpot",
  7581. "type": "github"
  7582. },
  7583. {
  7584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7585. "type": "tidelift"
  7586. }
  7587. ],
  7588. "time": "2023-07-31T08:02:31+00:00"
  7589. },
  7590. {
  7591. "name": "symfony/http-foundation",
  7592. "version": "v5.4.32",
  7593. "source": {
  7594. "type": "git",
  7595. "url": "https://github.com/symfony/http-foundation.git",
  7596. "reference": "cbcd80a4c36f59772d62860fdb0cb6a38da63fd2"
  7597. },
  7598. "dist": {
  7599. "type": "zip",
  7600. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cbcd80a4c36f59772d62860fdb0cb6a38da63fd2",
  7601. "reference": "cbcd80a4c36f59772d62860fdb0cb6a38da63fd2",
  7602. "shasum": ""
  7603. },
  7604. "require": {
  7605. "php": ">=7.2.5",
  7606. "symfony/deprecation-contracts": "^2.1|^3",
  7607. "symfony/polyfill-mbstring": "~1.1",
  7608. "symfony/polyfill-php80": "^1.16"
  7609. },
  7610. "require-dev": {
  7611. "predis/predis": "~1.0",
  7612. "symfony/cache": "^4.4|^5.0|^6.0",
  7613. "symfony/dependency-injection": "^5.4|^6.0",
  7614. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7615. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  7616. "symfony/mime": "^4.4|^5.0|^6.0",
  7617. "symfony/rate-limiter": "^5.2|^6.0"
  7618. },
  7619. "suggest": {
  7620. "symfony/mime": "To use the file extension guesser"
  7621. },
  7622. "type": "library",
  7623. "autoload": {
  7624. "psr-4": {
  7625. "Symfony\\Component\\HttpFoundation\\": ""
  7626. },
  7627. "exclude-from-classmap": [
  7628. "/Tests/"
  7629. ]
  7630. },
  7631. "notification-url": "https://packagist.org/downloads/",
  7632. "license": [
  7633. "MIT"
  7634. ],
  7635. "authors": [
  7636. {
  7637. "name": "Fabien Potencier",
  7638. "email": "fabien@symfony.com"
  7639. },
  7640. {
  7641. "name": "Symfony Community",
  7642. "homepage": "https://symfony.com/contributors"
  7643. }
  7644. ],
  7645. "description": "Defines an object-oriented layer for the HTTP specification",
  7646. "homepage": "https://symfony.com",
  7647. "support": {
  7648. "source": "https://github.com/symfony/http-foundation/tree/v5.4.32"
  7649. },
  7650. "funding": [
  7651. {
  7652. "url": "https://symfony.com/sponsor",
  7653. "type": "custom"
  7654. },
  7655. {
  7656. "url": "https://github.com/fabpot",
  7657. "type": "github"
  7658. },
  7659. {
  7660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7661. "type": "tidelift"
  7662. }
  7663. ],
  7664. "time": "2023-11-20T15:40:25+00:00"
  7665. },
  7666. {
  7667. "name": "symfony/http-kernel",
  7668. "version": "v5.4.33",
  7669. "source": {
  7670. "type": "git",
  7671. "url": "https://github.com/symfony/http-kernel.git",
  7672. "reference": "892636f9279f953dc266dc088f900b03eecb4ffa"
  7673. },
  7674. "dist": {
  7675. "type": "zip",
  7676. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/892636f9279f953dc266dc088f900b03eecb4ffa",
  7677. "reference": "892636f9279f953dc266dc088f900b03eecb4ffa",
  7678. "shasum": ""
  7679. },
  7680. "require": {
  7681. "php": ">=7.2.5",
  7682. "psr/log": "^1|^2",
  7683. "symfony/deprecation-contracts": "^2.1|^3",
  7684. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7685. "symfony/event-dispatcher": "^5.0|^6.0",
  7686. "symfony/http-foundation": "^5.4.21|^6.2.7",
  7687. "symfony/polyfill-ctype": "^1.8",
  7688. "symfony/polyfill-php73": "^1.9",
  7689. "symfony/polyfill-php80": "^1.16"
  7690. },
  7691. "conflict": {
  7692. "symfony/browser-kit": "<5.4",
  7693. "symfony/cache": "<5.0",
  7694. "symfony/config": "<5.0",
  7695. "symfony/console": "<4.4",
  7696. "symfony/dependency-injection": "<5.3",
  7697. "symfony/doctrine-bridge": "<5.0",
  7698. "symfony/form": "<5.0",
  7699. "symfony/http-client": "<5.0",
  7700. "symfony/mailer": "<5.0",
  7701. "symfony/messenger": "<5.0",
  7702. "symfony/translation": "<5.0",
  7703. "symfony/twig-bridge": "<5.0",
  7704. "symfony/validator": "<5.0",
  7705. "twig/twig": "<2.13"
  7706. },
  7707. "provide": {
  7708. "psr/log-implementation": "1.0|2.0"
  7709. },
  7710. "require-dev": {
  7711. "psr/cache": "^1.0|^2.0|^3.0",
  7712. "symfony/browser-kit": "^5.4|^6.0",
  7713. "symfony/config": "^5.0|^6.0",
  7714. "symfony/console": "^4.4|^5.0|^6.0",
  7715. "symfony/css-selector": "^4.4|^5.0|^6.0",
  7716. "symfony/dependency-injection": "^5.3|^6.0",
  7717. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  7718. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7719. "symfony/finder": "^4.4|^5.0|^6.0",
  7720. "symfony/http-client-contracts": "^1.1|^2|^3",
  7721. "symfony/process": "^4.4|^5.0|^6.0",
  7722. "symfony/routing": "^4.4|^5.0|^6.0",
  7723. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  7724. "symfony/translation": "^4.4|^5.0|^6.0",
  7725. "symfony/translation-contracts": "^1.1|^2|^3",
  7726. "twig/twig": "^2.13|^3.0.4"
  7727. },
  7728. "suggest": {
  7729. "symfony/browser-kit": "",
  7730. "symfony/config": "",
  7731. "symfony/console": "",
  7732. "symfony/dependency-injection": ""
  7733. },
  7734. "type": "library",
  7735. "autoload": {
  7736. "psr-4": {
  7737. "Symfony\\Component\\HttpKernel\\": ""
  7738. },
  7739. "exclude-from-classmap": [
  7740. "/Tests/"
  7741. ]
  7742. },
  7743. "notification-url": "https://packagist.org/downloads/",
  7744. "license": [
  7745. "MIT"
  7746. ],
  7747. "authors": [
  7748. {
  7749. "name": "Fabien Potencier",
  7750. "email": "fabien@symfony.com"
  7751. },
  7752. {
  7753. "name": "Symfony Community",
  7754. "homepage": "https://symfony.com/contributors"
  7755. }
  7756. ],
  7757. "description": "Provides a structured process for converting a Request into a Response",
  7758. "homepage": "https://symfony.com",
  7759. "support": {
  7760. "source": "https://github.com/symfony/http-kernel/tree/v5.4.33"
  7761. },
  7762. "funding": [
  7763. {
  7764. "url": "https://symfony.com/sponsor",
  7765. "type": "custom"
  7766. },
  7767. {
  7768. "url": "https://github.com/fabpot",
  7769. "type": "github"
  7770. },
  7771. {
  7772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7773. "type": "tidelift"
  7774. }
  7775. ],
  7776. "time": "2023-12-01T16:51:11+00:00"
  7777. },
  7778. {
  7779. "name": "symfony/mime",
  7780. "version": "v5.4.26",
  7781. "source": {
  7782. "type": "git",
  7783. "url": "https://github.com/symfony/mime.git",
  7784. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  7785. },
  7786. "dist": {
  7787. "type": "zip",
  7788. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  7789. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  7790. "shasum": ""
  7791. },
  7792. "require": {
  7793. "php": ">=7.2.5",
  7794. "symfony/deprecation-contracts": "^2.1|^3",
  7795. "symfony/polyfill-intl-idn": "^1.10",
  7796. "symfony/polyfill-mbstring": "^1.0",
  7797. "symfony/polyfill-php80": "^1.16"
  7798. },
  7799. "conflict": {
  7800. "egulias/email-validator": "~3.0.0",
  7801. "phpdocumentor/reflection-docblock": "<3.2.2",
  7802. "phpdocumentor/type-resolver": "<1.4.0",
  7803. "symfony/mailer": "<4.4",
  7804. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  7805. },
  7806. "require-dev": {
  7807. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7808. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7809. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7810. "symfony/property-access": "^4.4|^5.1|^6.0",
  7811. "symfony/property-info": "^4.4|^5.1|^6.0",
  7812. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  7813. },
  7814. "type": "library",
  7815. "autoload": {
  7816. "psr-4": {
  7817. "Symfony\\Component\\Mime\\": ""
  7818. },
  7819. "exclude-from-classmap": [
  7820. "/Tests/"
  7821. ]
  7822. },
  7823. "notification-url": "https://packagist.org/downloads/",
  7824. "license": [
  7825. "MIT"
  7826. ],
  7827. "authors": [
  7828. {
  7829. "name": "Fabien Potencier",
  7830. "email": "fabien@symfony.com"
  7831. },
  7832. {
  7833. "name": "Symfony Community",
  7834. "homepage": "https://symfony.com/contributors"
  7835. }
  7836. ],
  7837. "description": "Allows manipulating MIME messages",
  7838. "homepage": "https://symfony.com",
  7839. "keywords": [
  7840. "mime",
  7841. "mime-type"
  7842. ],
  7843. "support": {
  7844. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  7845. },
  7846. "funding": [
  7847. {
  7848. "url": "https://symfony.com/sponsor",
  7849. "type": "custom"
  7850. },
  7851. {
  7852. "url": "https://github.com/fabpot",
  7853. "type": "github"
  7854. },
  7855. {
  7856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7857. "type": "tidelift"
  7858. }
  7859. ],
  7860. "time": "2023-07-27T06:29:31+00:00"
  7861. },
  7862. {
  7863. "name": "symfony/polyfill-ctype",
  7864. "version": "v1.28.0",
  7865. "source": {
  7866. "type": "git",
  7867. "url": "https://github.com/symfony/polyfill-ctype.git",
  7868. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  7869. },
  7870. "dist": {
  7871. "type": "zip",
  7872. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7873. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7874. "shasum": ""
  7875. },
  7876. "require": {
  7877. "php": ">=7.1"
  7878. },
  7879. "provide": {
  7880. "ext-ctype": "*"
  7881. },
  7882. "suggest": {
  7883. "ext-ctype": "For best performance"
  7884. },
  7885. "type": "library",
  7886. "extra": {
  7887. "branch-alias": {
  7888. "dev-main": "1.28-dev"
  7889. },
  7890. "thanks": {
  7891. "name": "symfony/polyfill",
  7892. "url": "https://github.com/symfony/polyfill"
  7893. }
  7894. },
  7895. "autoload": {
  7896. "files": [
  7897. "bootstrap.php"
  7898. ],
  7899. "psr-4": {
  7900. "Symfony\\Polyfill\\Ctype\\": ""
  7901. }
  7902. },
  7903. "notification-url": "https://packagist.org/downloads/",
  7904. "license": [
  7905. "MIT"
  7906. ],
  7907. "authors": [
  7908. {
  7909. "name": "Gert de Pagter",
  7910. "email": "BackEndTea@gmail.com"
  7911. },
  7912. {
  7913. "name": "Symfony Community",
  7914. "homepage": "https://symfony.com/contributors"
  7915. }
  7916. ],
  7917. "description": "Symfony polyfill for ctype functions",
  7918. "homepage": "https://symfony.com",
  7919. "keywords": [
  7920. "compatibility",
  7921. "ctype",
  7922. "polyfill",
  7923. "portable"
  7924. ],
  7925. "support": {
  7926. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  7927. },
  7928. "funding": [
  7929. {
  7930. "url": "https://symfony.com/sponsor",
  7931. "type": "custom"
  7932. },
  7933. {
  7934. "url": "https://github.com/fabpot",
  7935. "type": "github"
  7936. },
  7937. {
  7938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7939. "type": "tidelift"
  7940. }
  7941. ],
  7942. "time": "2023-01-26T09:26:14+00:00"
  7943. },
  7944. {
  7945. "name": "symfony/polyfill-iconv",
  7946. "version": "v1.28.0",
  7947. "source": {
  7948. "type": "git",
  7949. "url": "https://github.com/symfony/polyfill-iconv.git",
  7950. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  7951. },
  7952. "dist": {
  7953. "type": "zip",
  7954. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  7955. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  7956. "shasum": ""
  7957. },
  7958. "require": {
  7959. "php": ">=7.1"
  7960. },
  7961. "provide": {
  7962. "ext-iconv": "*"
  7963. },
  7964. "suggest": {
  7965. "ext-iconv": "For best performance"
  7966. },
  7967. "type": "library",
  7968. "extra": {
  7969. "branch-alias": {
  7970. "dev-main": "1.28-dev"
  7971. },
  7972. "thanks": {
  7973. "name": "symfony/polyfill",
  7974. "url": "https://github.com/symfony/polyfill"
  7975. }
  7976. },
  7977. "autoload": {
  7978. "files": [
  7979. "bootstrap.php"
  7980. ],
  7981. "psr-4": {
  7982. "Symfony\\Polyfill\\Iconv\\": ""
  7983. }
  7984. },
  7985. "notification-url": "https://packagist.org/downloads/",
  7986. "license": [
  7987. "MIT"
  7988. ],
  7989. "authors": [
  7990. {
  7991. "name": "Nicolas Grekas",
  7992. "email": "p@tchwork.com"
  7993. },
  7994. {
  7995. "name": "Symfony Community",
  7996. "homepage": "https://symfony.com/contributors"
  7997. }
  7998. ],
  7999. "description": "Symfony polyfill for the Iconv extension",
  8000. "homepage": "https://symfony.com",
  8001. "keywords": [
  8002. "compatibility",
  8003. "iconv",
  8004. "polyfill",
  8005. "portable",
  8006. "shim"
  8007. ],
  8008. "support": {
  8009. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  8010. },
  8011. "funding": [
  8012. {
  8013. "url": "https://symfony.com/sponsor",
  8014. "type": "custom"
  8015. },
  8016. {
  8017. "url": "https://github.com/fabpot",
  8018. "type": "github"
  8019. },
  8020. {
  8021. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8022. "type": "tidelift"
  8023. }
  8024. ],
  8025. "time": "2023-01-26T09:26:14+00:00"
  8026. },
  8027. {
  8028. "name": "symfony/polyfill-intl-grapheme",
  8029. "version": "v1.28.0",
  8030. "source": {
  8031. "type": "git",
  8032. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8033. "reference": "875e90aeea2777b6f135677f618529449334a612"
  8034. },
  8035. "dist": {
  8036. "type": "zip",
  8037. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  8038. "reference": "875e90aeea2777b6f135677f618529449334a612",
  8039. "shasum": ""
  8040. },
  8041. "require": {
  8042. "php": ">=7.1"
  8043. },
  8044. "suggest": {
  8045. "ext-intl": "For best performance"
  8046. },
  8047. "type": "library",
  8048. "extra": {
  8049. "branch-alias": {
  8050. "dev-main": "1.28-dev"
  8051. },
  8052. "thanks": {
  8053. "name": "symfony/polyfill",
  8054. "url": "https://github.com/symfony/polyfill"
  8055. }
  8056. },
  8057. "autoload": {
  8058. "files": [
  8059. "bootstrap.php"
  8060. ],
  8061. "psr-4": {
  8062. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8063. }
  8064. },
  8065. "notification-url": "https://packagist.org/downloads/",
  8066. "license": [
  8067. "MIT"
  8068. ],
  8069. "authors": [
  8070. {
  8071. "name": "Nicolas Grekas",
  8072. "email": "p@tchwork.com"
  8073. },
  8074. {
  8075. "name": "Symfony Community",
  8076. "homepage": "https://symfony.com/contributors"
  8077. }
  8078. ],
  8079. "description": "Symfony polyfill for intl's grapheme_* functions",
  8080. "homepage": "https://symfony.com",
  8081. "keywords": [
  8082. "compatibility",
  8083. "grapheme",
  8084. "intl",
  8085. "polyfill",
  8086. "portable",
  8087. "shim"
  8088. ],
  8089. "support": {
  8090. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  8091. },
  8092. "funding": [
  8093. {
  8094. "url": "https://symfony.com/sponsor",
  8095. "type": "custom"
  8096. },
  8097. {
  8098. "url": "https://github.com/fabpot",
  8099. "type": "github"
  8100. },
  8101. {
  8102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8103. "type": "tidelift"
  8104. }
  8105. ],
  8106. "time": "2023-01-26T09:26:14+00:00"
  8107. },
  8108. {
  8109. "name": "symfony/polyfill-intl-idn",
  8110. "version": "v1.28.0",
  8111. "source": {
  8112. "type": "git",
  8113. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8114. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  8115. },
  8116. "dist": {
  8117. "type": "zip",
  8118. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  8119. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  8120. "shasum": ""
  8121. },
  8122. "require": {
  8123. "php": ">=7.1",
  8124. "symfony/polyfill-intl-normalizer": "^1.10",
  8125. "symfony/polyfill-php72": "^1.10"
  8126. },
  8127. "suggest": {
  8128. "ext-intl": "For best performance"
  8129. },
  8130. "type": "library",
  8131. "extra": {
  8132. "branch-alias": {
  8133. "dev-main": "1.28-dev"
  8134. },
  8135. "thanks": {
  8136. "name": "symfony/polyfill",
  8137. "url": "https://github.com/symfony/polyfill"
  8138. }
  8139. },
  8140. "autoload": {
  8141. "files": [
  8142. "bootstrap.php"
  8143. ],
  8144. "psr-4": {
  8145. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8146. }
  8147. },
  8148. "notification-url": "https://packagist.org/downloads/",
  8149. "license": [
  8150. "MIT"
  8151. ],
  8152. "authors": [
  8153. {
  8154. "name": "Laurent Bassin",
  8155. "email": "laurent@bassin.info"
  8156. },
  8157. {
  8158. "name": "Trevor Rowbotham",
  8159. "email": "trevor.rowbotham@pm.me"
  8160. },
  8161. {
  8162. "name": "Symfony Community",
  8163. "homepage": "https://symfony.com/contributors"
  8164. }
  8165. ],
  8166. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8167. "homepage": "https://symfony.com",
  8168. "keywords": [
  8169. "compatibility",
  8170. "idn",
  8171. "intl",
  8172. "polyfill",
  8173. "portable",
  8174. "shim"
  8175. ],
  8176. "support": {
  8177. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  8178. },
  8179. "funding": [
  8180. {
  8181. "url": "https://symfony.com/sponsor",
  8182. "type": "custom"
  8183. },
  8184. {
  8185. "url": "https://github.com/fabpot",
  8186. "type": "github"
  8187. },
  8188. {
  8189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8190. "type": "tidelift"
  8191. }
  8192. ],
  8193. "time": "2023-01-26T09:30:37+00:00"
  8194. },
  8195. {
  8196. "name": "symfony/polyfill-intl-normalizer",
  8197. "version": "v1.28.0",
  8198. "source": {
  8199. "type": "git",
  8200. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8201. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  8202. },
  8203. "dist": {
  8204. "type": "zip",
  8205. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  8206. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  8207. "shasum": ""
  8208. },
  8209. "require": {
  8210. "php": ">=7.1"
  8211. },
  8212. "suggest": {
  8213. "ext-intl": "For best performance"
  8214. },
  8215. "type": "library",
  8216. "extra": {
  8217. "branch-alias": {
  8218. "dev-main": "1.28-dev"
  8219. },
  8220. "thanks": {
  8221. "name": "symfony/polyfill",
  8222. "url": "https://github.com/symfony/polyfill"
  8223. }
  8224. },
  8225. "autoload": {
  8226. "files": [
  8227. "bootstrap.php"
  8228. ],
  8229. "psr-4": {
  8230. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8231. },
  8232. "classmap": [
  8233. "Resources/stubs"
  8234. ]
  8235. },
  8236. "notification-url": "https://packagist.org/downloads/",
  8237. "license": [
  8238. "MIT"
  8239. ],
  8240. "authors": [
  8241. {
  8242. "name": "Nicolas Grekas",
  8243. "email": "p@tchwork.com"
  8244. },
  8245. {
  8246. "name": "Symfony Community",
  8247. "homepage": "https://symfony.com/contributors"
  8248. }
  8249. ],
  8250. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8251. "homepage": "https://symfony.com",
  8252. "keywords": [
  8253. "compatibility",
  8254. "intl",
  8255. "normalizer",
  8256. "polyfill",
  8257. "portable",
  8258. "shim"
  8259. ],
  8260. "support": {
  8261. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  8262. },
  8263. "funding": [
  8264. {
  8265. "url": "https://symfony.com/sponsor",
  8266. "type": "custom"
  8267. },
  8268. {
  8269. "url": "https://github.com/fabpot",
  8270. "type": "github"
  8271. },
  8272. {
  8273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8274. "type": "tidelift"
  8275. }
  8276. ],
  8277. "time": "2023-01-26T09:26:14+00:00"
  8278. },
  8279. {
  8280. "name": "symfony/polyfill-mbstring",
  8281. "version": "v1.28.0",
  8282. "source": {
  8283. "type": "git",
  8284. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8285. "reference": "42292d99c55abe617799667f454222c54c60e229"
  8286. },
  8287. "dist": {
  8288. "type": "zip",
  8289. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  8290. "reference": "42292d99c55abe617799667f454222c54c60e229",
  8291. "shasum": ""
  8292. },
  8293. "require": {
  8294. "php": ">=7.1"
  8295. },
  8296. "provide": {
  8297. "ext-mbstring": "*"
  8298. },
  8299. "suggest": {
  8300. "ext-mbstring": "For best performance"
  8301. },
  8302. "type": "library",
  8303. "extra": {
  8304. "branch-alias": {
  8305. "dev-main": "1.28-dev"
  8306. },
  8307. "thanks": {
  8308. "name": "symfony/polyfill",
  8309. "url": "https://github.com/symfony/polyfill"
  8310. }
  8311. },
  8312. "autoload": {
  8313. "files": [
  8314. "bootstrap.php"
  8315. ],
  8316. "psr-4": {
  8317. "Symfony\\Polyfill\\Mbstring\\": ""
  8318. }
  8319. },
  8320. "notification-url": "https://packagist.org/downloads/",
  8321. "license": [
  8322. "MIT"
  8323. ],
  8324. "authors": [
  8325. {
  8326. "name": "Nicolas Grekas",
  8327. "email": "p@tchwork.com"
  8328. },
  8329. {
  8330. "name": "Symfony Community",
  8331. "homepage": "https://symfony.com/contributors"
  8332. }
  8333. ],
  8334. "description": "Symfony polyfill for the Mbstring extension",
  8335. "homepage": "https://symfony.com",
  8336. "keywords": [
  8337. "compatibility",
  8338. "mbstring",
  8339. "polyfill",
  8340. "portable",
  8341. "shim"
  8342. ],
  8343. "support": {
  8344. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  8345. },
  8346. "funding": [
  8347. {
  8348. "url": "https://symfony.com/sponsor",
  8349. "type": "custom"
  8350. },
  8351. {
  8352. "url": "https://github.com/fabpot",
  8353. "type": "github"
  8354. },
  8355. {
  8356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8357. "type": "tidelift"
  8358. }
  8359. ],
  8360. "time": "2023-07-28T09:04:16+00:00"
  8361. },
  8362. {
  8363. "name": "symfony/polyfill-php72",
  8364. "version": "v1.28.0",
  8365. "source": {
  8366. "type": "git",
  8367. "url": "https://github.com/symfony/polyfill-php72.git",
  8368. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  8369. },
  8370. "dist": {
  8371. "type": "zip",
  8372. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  8373. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  8374. "shasum": ""
  8375. },
  8376. "require": {
  8377. "php": ">=7.1"
  8378. },
  8379. "type": "library",
  8380. "extra": {
  8381. "branch-alias": {
  8382. "dev-main": "1.28-dev"
  8383. },
  8384. "thanks": {
  8385. "name": "symfony/polyfill",
  8386. "url": "https://github.com/symfony/polyfill"
  8387. }
  8388. },
  8389. "autoload": {
  8390. "files": [
  8391. "bootstrap.php"
  8392. ],
  8393. "psr-4": {
  8394. "Symfony\\Polyfill\\Php72\\": ""
  8395. }
  8396. },
  8397. "notification-url": "https://packagist.org/downloads/",
  8398. "license": [
  8399. "MIT"
  8400. ],
  8401. "authors": [
  8402. {
  8403. "name": "Nicolas Grekas",
  8404. "email": "p@tchwork.com"
  8405. },
  8406. {
  8407. "name": "Symfony Community",
  8408. "homepage": "https://symfony.com/contributors"
  8409. }
  8410. ],
  8411. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8412. "homepage": "https://symfony.com",
  8413. "keywords": [
  8414. "compatibility",
  8415. "polyfill",
  8416. "portable",
  8417. "shim"
  8418. ],
  8419. "support": {
  8420. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  8421. },
  8422. "funding": [
  8423. {
  8424. "url": "https://symfony.com/sponsor",
  8425. "type": "custom"
  8426. },
  8427. {
  8428. "url": "https://github.com/fabpot",
  8429. "type": "github"
  8430. },
  8431. {
  8432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8433. "type": "tidelift"
  8434. }
  8435. ],
  8436. "time": "2023-01-26T09:26:14+00:00"
  8437. },
  8438. {
  8439. "name": "symfony/polyfill-php73",
  8440. "version": "v1.28.0",
  8441. "source": {
  8442. "type": "git",
  8443. "url": "https://github.com/symfony/polyfill-php73.git",
  8444. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  8445. },
  8446. "dist": {
  8447. "type": "zip",
  8448. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  8449. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  8450. "shasum": ""
  8451. },
  8452. "require": {
  8453. "php": ">=7.1"
  8454. },
  8455. "type": "library",
  8456. "extra": {
  8457. "branch-alias": {
  8458. "dev-main": "1.28-dev"
  8459. },
  8460. "thanks": {
  8461. "name": "symfony/polyfill",
  8462. "url": "https://github.com/symfony/polyfill"
  8463. }
  8464. },
  8465. "autoload": {
  8466. "files": [
  8467. "bootstrap.php"
  8468. ],
  8469. "psr-4": {
  8470. "Symfony\\Polyfill\\Php73\\": ""
  8471. },
  8472. "classmap": [
  8473. "Resources/stubs"
  8474. ]
  8475. },
  8476. "notification-url": "https://packagist.org/downloads/",
  8477. "license": [
  8478. "MIT"
  8479. ],
  8480. "authors": [
  8481. {
  8482. "name": "Nicolas Grekas",
  8483. "email": "p@tchwork.com"
  8484. },
  8485. {
  8486. "name": "Symfony Community",
  8487. "homepage": "https://symfony.com/contributors"
  8488. }
  8489. ],
  8490. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  8491. "homepage": "https://symfony.com",
  8492. "keywords": [
  8493. "compatibility",
  8494. "polyfill",
  8495. "portable",
  8496. "shim"
  8497. ],
  8498. "support": {
  8499. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  8500. },
  8501. "funding": [
  8502. {
  8503. "url": "https://symfony.com/sponsor",
  8504. "type": "custom"
  8505. },
  8506. {
  8507. "url": "https://github.com/fabpot",
  8508. "type": "github"
  8509. },
  8510. {
  8511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8512. "type": "tidelift"
  8513. }
  8514. ],
  8515. "time": "2023-01-26T09:26:14+00:00"
  8516. },
  8517. {
  8518. "name": "symfony/polyfill-php80",
  8519. "version": "v1.28.0",
  8520. "source": {
  8521. "type": "git",
  8522. "url": "https://github.com/symfony/polyfill-php80.git",
  8523. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  8524. },
  8525. "dist": {
  8526. "type": "zip",
  8527. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  8528. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  8529. "shasum": ""
  8530. },
  8531. "require": {
  8532. "php": ">=7.1"
  8533. },
  8534. "type": "library",
  8535. "extra": {
  8536. "branch-alias": {
  8537. "dev-main": "1.28-dev"
  8538. },
  8539. "thanks": {
  8540. "name": "symfony/polyfill",
  8541. "url": "https://github.com/symfony/polyfill"
  8542. }
  8543. },
  8544. "autoload": {
  8545. "files": [
  8546. "bootstrap.php"
  8547. ],
  8548. "psr-4": {
  8549. "Symfony\\Polyfill\\Php80\\": ""
  8550. },
  8551. "classmap": [
  8552. "Resources/stubs"
  8553. ]
  8554. },
  8555. "notification-url": "https://packagist.org/downloads/",
  8556. "license": [
  8557. "MIT"
  8558. ],
  8559. "authors": [
  8560. {
  8561. "name": "Ion Bazan",
  8562. "email": "ion.bazan@gmail.com"
  8563. },
  8564. {
  8565. "name": "Nicolas Grekas",
  8566. "email": "p@tchwork.com"
  8567. },
  8568. {
  8569. "name": "Symfony Community",
  8570. "homepage": "https://symfony.com/contributors"
  8571. }
  8572. ],
  8573. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8574. "homepage": "https://symfony.com",
  8575. "keywords": [
  8576. "compatibility",
  8577. "polyfill",
  8578. "portable",
  8579. "shim"
  8580. ],
  8581. "support": {
  8582. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  8583. },
  8584. "funding": [
  8585. {
  8586. "url": "https://symfony.com/sponsor",
  8587. "type": "custom"
  8588. },
  8589. {
  8590. "url": "https://github.com/fabpot",
  8591. "type": "github"
  8592. },
  8593. {
  8594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8595. "type": "tidelift"
  8596. }
  8597. ],
  8598. "time": "2023-01-26T09:26:14+00:00"
  8599. },
  8600. {
  8601. "name": "symfony/polyfill-php81",
  8602. "version": "v1.28.0",
  8603. "source": {
  8604. "type": "git",
  8605. "url": "https://github.com/symfony/polyfill-php81.git",
  8606. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  8607. },
  8608. "dist": {
  8609. "type": "zip",
  8610. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  8611. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  8612. "shasum": ""
  8613. },
  8614. "require": {
  8615. "php": ">=7.1"
  8616. },
  8617. "type": "library",
  8618. "extra": {
  8619. "branch-alias": {
  8620. "dev-main": "1.28-dev"
  8621. },
  8622. "thanks": {
  8623. "name": "symfony/polyfill",
  8624. "url": "https://github.com/symfony/polyfill"
  8625. }
  8626. },
  8627. "autoload": {
  8628. "files": [
  8629. "bootstrap.php"
  8630. ],
  8631. "psr-4": {
  8632. "Symfony\\Polyfill\\Php81\\": ""
  8633. },
  8634. "classmap": [
  8635. "Resources/stubs"
  8636. ]
  8637. },
  8638. "notification-url": "https://packagist.org/downloads/",
  8639. "license": [
  8640. "MIT"
  8641. ],
  8642. "authors": [
  8643. {
  8644. "name": "Nicolas Grekas",
  8645. "email": "p@tchwork.com"
  8646. },
  8647. {
  8648. "name": "Symfony Community",
  8649. "homepage": "https://symfony.com/contributors"
  8650. }
  8651. ],
  8652. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  8653. "homepage": "https://symfony.com",
  8654. "keywords": [
  8655. "compatibility",
  8656. "polyfill",
  8657. "portable",
  8658. "shim"
  8659. ],
  8660. "support": {
  8661. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  8662. },
  8663. "funding": [
  8664. {
  8665. "url": "https://symfony.com/sponsor",
  8666. "type": "custom"
  8667. },
  8668. {
  8669. "url": "https://github.com/fabpot",
  8670. "type": "github"
  8671. },
  8672. {
  8673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8674. "type": "tidelift"
  8675. }
  8676. ],
  8677. "time": "2023-01-26T09:26:14+00:00"
  8678. },
  8679. {
  8680. "name": "symfony/process",
  8681. "version": "v5.4.28",
  8682. "source": {
  8683. "type": "git",
  8684. "url": "https://github.com/symfony/process.git",
  8685. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b"
  8686. },
  8687. "dist": {
  8688. "type": "zip",
  8689. "url": "https://api.github.com/repos/symfony/process/zipball/45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  8690. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  8691. "shasum": ""
  8692. },
  8693. "require": {
  8694. "php": ">=7.2.5",
  8695. "symfony/polyfill-php80": "^1.16"
  8696. },
  8697. "type": "library",
  8698. "autoload": {
  8699. "psr-4": {
  8700. "Symfony\\Component\\Process\\": ""
  8701. },
  8702. "exclude-from-classmap": [
  8703. "/Tests/"
  8704. ]
  8705. },
  8706. "notification-url": "https://packagist.org/downloads/",
  8707. "license": [
  8708. "MIT"
  8709. ],
  8710. "authors": [
  8711. {
  8712. "name": "Fabien Potencier",
  8713. "email": "fabien@symfony.com"
  8714. },
  8715. {
  8716. "name": "Symfony Community",
  8717. "homepage": "https://symfony.com/contributors"
  8718. }
  8719. ],
  8720. "description": "Executes commands in sub-processes",
  8721. "homepage": "https://symfony.com",
  8722. "support": {
  8723. "source": "https://github.com/symfony/process/tree/v5.4.28"
  8724. },
  8725. "funding": [
  8726. {
  8727. "url": "https://symfony.com/sponsor",
  8728. "type": "custom"
  8729. },
  8730. {
  8731. "url": "https://github.com/fabpot",
  8732. "type": "github"
  8733. },
  8734. {
  8735. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8736. "type": "tidelift"
  8737. }
  8738. ],
  8739. "time": "2023-08-07T10:36:04+00:00"
  8740. },
  8741. {
  8742. "name": "symfony/routing",
  8743. "version": "v5.4.33",
  8744. "source": {
  8745. "type": "git",
  8746. "url": "https://github.com/symfony/routing.git",
  8747. "reference": "5b5b86670f947db92ab54cdcff585e76064d0b04"
  8748. },
  8749. "dist": {
  8750. "type": "zip",
  8751. "url": "https://api.github.com/repos/symfony/routing/zipball/5b5b86670f947db92ab54cdcff585e76064d0b04",
  8752. "reference": "5b5b86670f947db92ab54cdcff585e76064d0b04",
  8753. "shasum": ""
  8754. },
  8755. "require": {
  8756. "php": ">=7.2.5",
  8757. "symfony/deprecation-contracts": "^2.1|^3",
  8758. "symfony/polyfill-php80": "^1.16"
  8759. },
  8760. "conflict": {
  8761. "doctrine/annotations": "<1.12",
  8762. "symfony/config": "<5.3",
  8763. "symfony/dependency-injection": "<4.4",
  8764. "symfony/yaml": "<4.4"
  8765. },
  8766. "require-dev": {
  8767. "doctrine/annotations": "^1.12|^2",
  8768. "psr/log": "^1|^2|^3",
  8769. "symfony/config": "^5.3|^6.0",
  8770. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8771. "symfony/expression-language": "^4.4|^5.0|^6.0",
  8772. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  8773. "symfony/yaml": "^4.4|^5.0|^6.0"
  8774. },
  8775. "suggest": {
  8776. "symfony/config": "For using the all-in-one router or any loader",
  8777. "symfony/expression-language": "For using expression matching",
  8778. "symfony/http-foundation": "For using a Symfony Request object",
  8779. "symfony/yaml": "For using the YAML loader"
  8780. },
  8781. "type": "library",
  8782. "autoload": {
  8783. "psr-4": {
  8784. "Symfony\\Component\\Routing\\": ""
  8785. },
  8786. "exclude-from-classmap": [
  8787. "/Tests/"
  8788. ]
  8789. },
  8790. "notification-url": "https://packagist.org/downloads/",
  8791. "license": [
  8792. "MIT"
  8793. ],
  8794. "authors": [
  8795. {
  8796. "name": "Fabien Potencier",
  8797. "email": "fabien@symfony.com"
  8798. },
  8799. {
  8800. "name": "Symfony Community",
  8801. "homepage": "https://symfony.com/contributors"
  8802. }
  8803. ],
  8804. "description": "Maps an HTTP request to a set of configuration variables",
  8805. "homepage": "https://symfony.com",
  8806. "keywords": [
  8807. "router",
  8808. "routing",
  8809. "uri",
  8810. "url"
  8811. ],
  8812. "support": {
  8813. "source": "https://github.com/symfony/routing/tree/v5.4.33"
  8814. },
  8815. "funding": [
  8816. {
  8817. "url": "https://symfony.com/sponsor",
  8818. "type": "custom"
  8819. },
  8820. {
  8821. "url": "https://github.com/fabpot",
  8822. "type": "github"
  8823. },
  8824. {
  8825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8826. "type": "tidelift"
  8827. }
  8828. ],
  8829. "time": "2023-12-01T09:28:00+00:00"
  8830. },
  8831. {
  8832. "name": "symfony/service-contracts",
  8833. "version": "v2.5.2",
  8834. "source": {
  8835. "type": "git",
  8836. "url": "https://github.com/symfony/service-contracts.git",
  8837. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  8838. },
  8839. "dist": {
  8840. "type": "zip",
  8841. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  8842. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  8843. "shasum": ""
  8844. },
  8845. "require": {
  8846. "php": ">=7.2.5",
  8847. "psr/container": "^1.1",
  8848. "symfony/deprecation-contracts": "^2.1|^3"
  8849. },
  8850. "conflict": {
  8851. "ext-psr": "<1.1|>=2"
  8852. },
  8853. "suggest": {
  8854. "symfony/service-implementation": ""
  8855. },
  8856. "type": "library",
  8857. "extra": {
  8858. "branch-alias": {
  8859. "dev-main": "2.5-dev"
  8860. },
  8861. "thanks": {
  8862. "name": "symfony/contracts",
  8863. "url": "https://github.com/symfony/contracts"
  8864. }
  8865. },
  8866. "autoload": {
  8867. "psr-4": {
  8868. "Symfony\\Contracts\\Service\\": ""
  8869. }
  8870. },
  8871. "notification-url": "https://packagist.org/downloads/",
  8872. "license": [
  8873. "MIT"
  8874. ],
  8875. "authors": [
  8876. {
  8877. "name": "Nicolas Grekas",
  8878. "email": "p@tchwork.com"
  8879. },
  8880. {
  8881. "name": "Symfony Community",
  8882. "homepage": "https://symfony.com/contributors"
  8883. }
  8884. ],
  8885. "description": "Generic abstractions related to writing services",
  8886. "homepage": "https://symfony.com",
  8887. "keywords": [
  8888. "abstractions",
  8889. "contracts",
  8890. "decoupling",
  8891. "interfaces",
  8892. "interoperability",
  8893. "standards"
  8894. ],
  8895. "support": {
  8896. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  8897. },
  8898. "funding": [
  8899. {
  8900. "url": "https://symfony.com/sponsor",
  8901. "type": "custom"
  8902. },
  8903. {
  8904. "url": "https://github.com/fabpot",
  8905. "type": "github"
  8906. },
  8907. {
  8908. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8909. "type": "tidelift"
  8910. }
  8911. ],
  8912. "time": "2022-05-30T19:17:29+00:00"
  8913. },
  8914. {
  8915. "name": "symfony/string",
  8916. "version": "v6.0.19",
  8917. "source": {
  8918. "type": "git",
  8919. "url": "https://github.com/symfony/string.git",
  8920. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  8921. },
  8922. "dist": {
  8923. "type": "zip",
  8924. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  8925. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  8926. "shasum": ""
  8927. },
  8928. "require": {
  8929. "php": ">=8.0.2",
  8930. "symfony/polyfill-ctype": "~1.8",
  8931. "symfony/polyfill-intl-grapheme": "~1.0",
  8932. "symfony/polyfill-intl-normalizer": "~1.0",
  8933. "symfony/polyfill-mbstring": "~1.0"
  8934. },
  8935. "conflict": {
  8936. "symfony/translation-contracts": "<2.0"
  8937. },
  8938. "require-dev": {
  8939. "symfony/error-handler": "^5.4|^6.0",
  8940. "symfony/http-client": "^5.4|^6.0",
  8941. "symfony/translation-contracts": "^2.0|^3.0",
  8942. "symfony/var-exporter": "^5.4|^6.0"
  8943. },
  8944. "type": "library",
  8945. "autoload": {
  8946. "files": [
  8947. "Resources/functions.php"
  8948. ],
  8949. "psr-4": {
  8950. "Symfony\\Component\\String\\": ""
  8951. },
  8952. "exclude-from-classmap": [
  8953. "/Tests/"
  8954. ]
  8955. },
  8956. "notification-url": "https://packagist.org/downloads/",
  8957. "license": [
  8958. "MIT"
  8959. ],
  8960. "authors": [
  8961. {
  8962. "name": "Nicolas Grekas",
  8963. "email": "p@tchwork.com"
  8964. },
  8965. {
  8966. "name": "Symfony Community",
  8967. "homepage": "https://symfony.com/contributors"
  8968. }
  8969. ],
  8970. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8971. "homepage": "https://symfony.com",
  8972. "keywords": [
  8973. "grapheme",
  8974. "i18n",
  8975. "string",
  8976. "unicode",
  8977. "utf-8",
  8978. "utf8"
  8979. ],
  8980. "support": {
  8981. "source": "https://github.com/symfony/string/tree/v6.0.19"
  8982. },
  8983. "funding": [
  8984. {
  8985. "url": "https://symfony.com/sponsor",
  8986. "type": "custom"
  8987. },
  8988. {
  8989. "url": "https://github.com/fabpot",
  8990. "type": "github"
  8991. },
  8992. {
  8993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8994. "type": "tidelift"
  8995. }
  8996. ],
  8997. "time": "2023-01-01T08:36:10+00:00"
  8998. },
  8999. {
  9000. "name": "symfony/translation",
  9001. "version": "v6.0.19",
  9002. "source": {
  9003. "type": "git",
  9004. "url": "https://github.com/symfony/translation.git",
  9005. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  9006. },
  9007. "dist": {
  9008. "type": "zip",
  9009. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  9010. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  9011. "shasum": ""
  9012. },
  9013. "require": {
  9014. "php": ">=8.0.2",
  9015. "symfony/polyfill-mbstring": "~1.0",
  9016. "symfony/translation-contracts": "^2.3|^3.0"
  9017. },
  9018. "conflict": {
  9019. "symfony/config": "<5.4",
  9020. "symfony/console": "<5.4",
  9021. "symfony/dependency-injection": "<5.4",
  9022. "symfony/http-kernel": "<5.4",
  9023. "symfony/twig-bundle": "<5.4",
  9024. "symfony/yaml": "<5.4"
  9025. },
  9026. "provide": {
  9027. "symfony/translation-implementation": "2.3|3.0"
  9028. },
  9029. "require-dev": {
  9030. "psr/log": "^1|^2|^3",
  9031. "symfony/config": "^5.4|^6.0",
  9032. "symfony/console": "^5.4|^6.0",
  9033. "symfony/dependency-injection": "^5.4|^6.0",
  9034. "symfony/finder": "^5.4|^6.0",
  9035. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  9036. "symfony/http-kernel": "^5.4|^6.0",
  9037. "symfony/intl": "^5.4|^6.0",
  9038. "symfony/polyfill-intl-icu": "^1.21",
  9039. "symfony/service-contracts": "^1.1.2|^2|^3",
  9040. "symfony/yaml": "^5.4|^6.0"
  9041. },
  9042. "suggest": {
  9043. "psr/log-implementation": "To use logging capability in translator",
  9044. "symfony/config": "",
  9045. "symfony/yaml": ""
  9046. },
  9047. "type": "library",
  9048. "autoload": {
  9049. "files": [
  9050. "Resources/functions.php"
  9051. ],
  9052. "psr-4": {
  9053. "Symfony\\Component\\Translation\\": ""
  9054. },
  9055. "exclude-from-classmap": [
  9056. "/Tests/"
  9057. ]
  9058. },
  9059. "notification-url": "https://packagist.org/downloads/",
  9060. "license": [
  9061. "MIT"
  9062. ],
  9063. "authors": [
  9064. {
  9065. "name": "Fabien Potencier",
  9066. "email": "fabien@symfony.com"
  9067. },
  9068. {
  9069. "name": "Symfony Community",
  9070. "homepage": "https://symfony.com/contributors"
  9071. }
  9072. ],
  9073. "description": "Provides tools to internationalize your application",
  9074. "homepage": "https://symfony.com",
  9075. "support": {
  9076. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  9077. },
  9078. "funding": [
  9079. {
  9080. "url": "https://symfony.com/sponsor",
  9081. "type": "custom"
  9082. },
  9083. {
  9084. "url": "https://github.com/fabpot",
  9085. "type": "github"
  9086. },
  9087. {
  9088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9089. "type": "tidelift"
  9090. }
  9091. ],
  9092. "time": "2023-01-01T08:36:10+00:00"
  9093. },
  9094. {
  9095. "name": "symfony/translation-contracts",
  9096. "version": "v3.0.2",
  9097. "source": {
  9098. "type": "git",
  9099. "url": "https://github.com/symfony/translation-contracts.git",
  9100. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  9101. },
  9102. "dist": {
  9103. "type": "zip",
  9104. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9105. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9106. "shasum": ""
  9107. },
  9108. "require": {
  9109. "php": ">=8.0.2"
  9110. },
  9111. "suggest": {
  9112. "symfony/translation-implementation": ""
  9113. },
  9114. "type": "library",
  9115. "extra": {
  9116. "branch-alias": {
  9117. "dev-main": "3.0-dev"
  9118. },
  9119. "thanks": {
  9120. "name": "symfony/contracts",
  9121. "url": "https://github.com/symfony/contracts"
  9122. }
  9123. },
  9124. "autoload": {
  9125. "psr-4": {
  9126. "Symfony\\Contracts\\Translation\\": ""
  9127. }
  9128. },
  9129. "notification-url": "https://packagist.org/downloads/",
  9130. "license": [
  9131. "MIT"
  9132. ],
  9133. "authors": [
  9134. {
  9135. "name": "Nicolas Grekas",
  9136. "email": "p@tchwork.com"
  9137. },
  9138. {
  9139. "name": "Symfony Community",
  9140. "homepage": "https://symfony.com/contributors"
  9141. }
  9142. ],
  9143. "description": "Generic abstractions related to translation",
  9144. "homepage": "https://symfony.com",
  9145. "keywords": [
  9146. "abstractions",
  9147. "contracts",
  9148. "decoupling",
  9149. "interfaces",
  9150. "interoperability",
  9151. "standards"
  9152. ],
  9153. "support": {
  9154. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  9155. },
  9156. "funding": [
  9157. {
  9158. "url": "https://symfony.com/sponsor",
  9159. "type": "custom"
  9160. },
  9161. {
  9162. "url": "https://github.com/fabpot",
  9163. "type": "github"
  9164. },
  9165. {
  9166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9167. "type": "tidelift"
  9168. }
  9169. ],
  9170. "time": "2022-06-27T17:10:44+00:00"
  9171. },
  9172. {
  9173. "name": "symfony/var-dumper",
  9174. "version": "v5.4.29",
  9175. "source": {
  9176. "type": "git",
  9177. "url": "https://github.com/symfony/var-dumper.git",
  9178. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  9179. },
  9180. "dist": {
  9181. "type": "zip",
  9182. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  9183. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  9184. "shasum": ""
  9185. },
  9186. "require": {
  9187. "php": ">=7.2.5",
  9188. "symfony/polyfill-mbstring": "~1.0",
  9189. "symfony/polyfill-php80": "^1.16"
  9190. },
  9191. "conflict": {
  9192. "symfony/console": "<4.4"
  9193. },
  9194. "require-dev": {
  9195. "ext-iconv": "*",
  9196. "symfony/console": "^4.4|^5.0|^6.0",
  9197. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  9198. "symfony/process": "^4.4|^5.0|^6.0",
  9199. "symfony/uid": "^5.1|^6.0",
  9200. "twig/twig": "^2.13|^3.0.4"
  9201. },
  9202. "suggest": {
  9203. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9204. "ext-intl": "To show region name in time zone dump",
  9205. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9206. },
  9207. "bin": [
  9208. "Resources/bin/var-dump-server"
  9209. ],
  9210. "type": "library",
  9211. "autoload": {
  9212. "files": [
  9213. "Resources/functions/dump.php"
  9214. ],
  9215. "psr-4": {
  9216. "Symfony\\Component\\VarDumper\\": ""
  9217. },
  9218. "exclude-from-classmap": [
  9219. "/Tests/"
  9220. ]
  9221. },
  9222. "notification-url": "https://packagist.org/downloads/",
  9223. "license": [
  9224. "MIT"
  9225. ],
  9226. "authors": [
  9227. {
  9228. "name": "Nicolas Grekas",
  9229. "email": "p@tchwork.com"
  9230. },
  9231. {
  9232. "name": "Symfony Community",
  9233. "homepage": "https://symfony.com/contributors"
  9234. }
  9235. ],
  9236. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9237. "homepage": "https://symfony.com",
  9238. "keywords": [
  9239. "debug",
  9240. "dump"
  9241. ],
  9242. "support": {
  9243. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  9244. },
  9245. "funding": [
  9246. {
  9247. "url": "https://symfony.com/sponsor",
  9248. "type": "custom"
  9249. },
  9250. {
  9251. "url": "https://github.com/fabpot",
  9252. "type": "github"
  9253. },
  9254. {
  9255. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9256. "type": "tidelift"
  9257. }
  9258. ],
  9259. "time": "2023-09-12T10:09:58+00:00"
  9260. },
  9261. {
  9262. "name": "tightenco/collect",
  9263. "version": "v9.52.7",
  9264. "source": {
  9265. "type": "git",
  9266. "url": "https://github.com/tighten/collect.git",
  9267. "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d"
  9268. },
  9269. "dist": {
  9270. "type": "zip",
  9271. "url": "https://api.github.com/repos/tighten/collect/zipball/b15143cd11fe01a700fcc449df61adc64452fa6d",
  9272. "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d",
  9273. "shasum": ""
  9274. },
  9275. "require": {
  9276. "php": "^8.0",
  9277. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  9278. },
  9279. "require-dev": {
  9280. "mockery/mockery": "^1.0",
  9281. "nesbot/carbon": "^2.23.0",
  9282. "phpunit/phpunit": "^8.3"
  9283. },
  9284. "type": "library",
  9285. "autoload": {
  9286. "files": [
  9287. "src/Collect/Support/helpers.php",
  9288. "src/Collect/Support/alias.php"
  9289. ],
  9290. "psr-4": {
  9291. "Tightenco\\Collect\\": "src/Collect"
  9292. }
  9293. },
  9294. "notification-url": "https://packagist.org/downloads/",
  9295. "license": [
  9296. "MIT"
  9297. ],
  9298. "authors": [
  9299. {
  9300. "name": "Taylor Otwell",
  9301. "email": "taylorotwell@gmail.com"
  9302. }
  9303. ],
  9304. "description": "Collect - Illuminate Collections as a separate package.",
  9305. "keywords": [
  9306. "collection",
  9307. "laravel"
  9308. ],
  9309. "support": {
  9310. "issues": "https://github.com/tighten/collect/issues",
  9311. "source": "https://github.com/tighten/collect/tree/v9.52.7"
  9312. },
  9313. "time": "2023-04-14T21:51:36+00:00"
  9314. },
  9315. {
  9316. "name": "tijsverkoyen/css-to-inline-styles",
  9317. "version": "v2.2.7",
  9318. "source": {
  9319. "type": "git",
  9320. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9321. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  9322. },
  9323. "dist": {
  9324. "type": "zip",
  9325. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  9326. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  9327. "shasum": ""
  9328. },
  9329. "require": {
  9330. "ext-dom": "*",
  9331. "ext-libxml": "*",
  9332. "php": "^5.5 || ^7.0 || ^8.0",
  9333. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  9334. },
  9335. "require-dev": {
  9336. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  9337. },
  9338. "type": "library",
  9339. "extra": {
  9340. "branch-alias": {
  9341. "dev-master": "2.2.x-dev"
  9342. }
  9343. },
  9344. "autoload": {
  9345. "psr-4": {
  9346. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9347. }
  9348. },
  9349. "notification-url": "https://packagist.org/downloads/",
  9350. "license": [
  9351. "BSD-3-Clause"
  9352. ],
  9353. "authors": [
  9354. {
  9355. "name": "Tijs Verkoyen",
  9356. "email": "css_to_inline_styles@verkoyen.eu",
  9357. "role": "Developer"
  9358. }
  9359. ],
  9360. "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.",
  9361. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9362. "support": {
  9363. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9364. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  9365. },
  9366. "time": "2023-12-08T13:03:43+00:00"
  9367. },
  9368. {
  9369. "name": "uduncloud/udun-wallet-sdk",
  9370. "version": "1.0.0",
  9371. "source": {
  9372. "type": "git",
  9373. "url": "https://github.com/uduncloud/udun-sdk-php.git",
  9374. "reference": "026af997276590542e29f281cfadf4e97c157087"
  9375. },
  9376. "dist": {
  9377. "type": "zip",
  9378. "url": "https://api.github.com/repos/uduncloud/udun-sdk-php/zipball/026af997276590542e29f281cfadf4e97c157087",
  9379. "reference": "026af997276590542e29f281cfadf4e97c157087",
  9380. "shasum": "",
  9381. "mirrors": [
  9382. {
  9383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9384. "preferred": true
  9385. }
  9386. ]
  9387. },
  9388. "require": {
  9389. "hanson/foundation-sdk": "^5.0",
  9390. "php": ">=7.0"
  9391. },
  9392. "require-dev": {
  9393. "phpunit/phpunit": "^9.5"
  9394. },
  9395. "type": "1",
  9396. "autoload": {
  9397. "psr-4": {
  9398. "Udun\\Dispatch\\": "src/"
  9399. }
  9400. },
  9401. "notification-url": "https://packagist.org/downloads/",
  9402. "license": [
  9403. "MIT"
  9404. ],
  9405. "authors": [
  9406. {
  9407. "name": "udun wallet"
  9408. }
  9409. ],
  9410. "description": "udun-wallet-sdk",
  9411. "support": {
  9412. "issues": "https://github.com/uduncloud/udun-sdk-php/issues",
  9413. "source": "https://github.com/uduncloud/udun-sdk-php/tree/v1.0.0"
  9414. },
  9415. "time": "2022-07-29T09:37:18+00:00"
  9416. },
  9417. {
  9418. "name": "vlucas/phpdotenv",
  9419. "version": "v5.6.0",
  9420. "source": {
  9421. "type": "git",
  9422. "url": "https://github.com/vlucas/phpdotenv.git",
  9423. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  9424. },
  9425. "dist": {
  9426. "type": "zip",
  9427. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  9428. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  9429. "shasum": ""
  9430. },
  9431. "require": {
  9432. "ext-pcre": "*",
  9433. "graham-campbell/result-type": "^1.1.2",
  9434. "php": "^7.2.5 || ^8.0",
  9435. "phpoption/phpoption": "^1.9.2",
  9436. "symfony/polyfill-ctype": "^1.24",
  9437. "symfony/polyfill-mbstring": "^1.24",
  9438. "symfony/polyfill-php80": "^1.24"
  9439. },
  9440. "require-dev": {
  9441. "bamarni/composer-bin-plugin": "^1.8.2",
  9442. "ext-filter": "*",
  9443. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9444. },
  9445. "suggest": {
  9446. "ext-filter": "Required to use the boolean validator."
  9447. },
  9448. "type": "library",
  9449. "extra": {
  9450. "bamarni-bin": {
  9451. "bin-links": true,
  9452. "forward-command": true
  9453. },
  9454. "branch-alias": {
  9455. "dev-master": "5.6-dev"
  9456. }
  9457. },
  9458. "autoload": {
  9459. "psr-4": {
  9460. "Dotenv\\": "src/"
  9461. }
  9462. },
  9463. "notification-url": "https://packagist.org/downloads/",
  9464. "license": [
  9465. "BSD-3-Clause"
  9466. ],
  9467. "authors": [
  9468. {
  9469. "name": "Graham Campbell",
  9470. "email": "hello@gjcampbell.co.uk",
  9471. "homepage": "https://github.com/GrahamCampbell"
  9472. },
  9473. {
  9474. "name": "Vance Lucas",
  9475. "email": "vance@vancelucas.com",
  9476. "homepage": "https://github.com/vlucas"
  9477. }
  9478. ],
  9479. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9480. "keywords": [
  9481. "dotenv",
  9482. "env",
  9483. "environment"
  9484. ],
  9485. "support": {
  9486. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9487. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  9488. },
  9489. "funding": [
  9490. {
  9491. "url": "https://github.com/GrahamCampbell",
  9492. "type": "github"
  9493. },
  9494. {
  9495. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9496. "type": "tidelift"
  9497. }
  9498. ],
  9499. "time": "2023-11-12T22:43:29+00:00"
  9500. },
  9501. {
  9502. "name": "voku/portable-ascii",
  9503. "version": "1.6.1",
  9504. "source": {
  9505. "type": "git",
  9506. "url": "https://github.com/voku/portable-ascii.git",
  9507. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  9508. },
  9509. "dist": {
  9510. "type": "zip",
  9511. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  9512. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  9513. "shasum": ""
  9514. },
  9515. "require": {
  9516. "php": ">=7.0.0"
  9517. },
  9518. "require-dev": {
  9519. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9520. },
  9521. "suggest": {
  9522. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9523. },
  9524. "type": "library",
  9525. "autoload": {
  9526. "psr-4": {
  9527. "voku\\": "src/voku/"
  9528. }
  9529. },
  9530. "notification-url": "https://packagist.org/downloads/",
  9531. "license": [
  9532. "MIT"
  9533. ],
  9534. "authors": [
  9535. {
  9536. "name": "Lars Moelleken",
  9537. "homepage": "http://www.moelleken.org/"
  9538. }
  9539. ],
  9540. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9541. "homepage": "https://github.com/voku/portable-ascii",
  9542. "keywords": [
  9543. "ascii",
  9544. "clean",
  9545. "php"
  9546. ],
  9547. "support": {
  9548. "issues": "https://github.com/voku/portable-ascii/issues",
  9549. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  9550. },
  9551. "funding": [
  9552. {
  9553. "url": "https://www.paypal.me/moelleken",
  9554. "type": "custom"
  9555. },
  9556. {
  9557. "url": "https://github.com/voku",
  9558. "type": "github"
  9559. },
  9560. {
  9561. "url": "https://opencollective.com/portable-ascii",
  9562. "type": "open_collective"
  9563. },
  9564. {
  9565. "url": "https://www.patreon.com/voku",
  9566. "type": "patreon"
  9567. },
  9568. {
  9569. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9570. "type": "tidelift"
  9571. }
  9572. ],
  9573. "time": "2022-01-24T18:55:24+00:00"
  9574. },
  9575. {
  9576. "name": "webmozart/assert",
  9577. "version": "1.11.0",
  9578. "source": {
  9579. "type": "git",
  9580. "url": "https://github.com/webmozarts/assert.git",
  9581. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9582. },
  9583. "dist": {
  9584. "type": "zip",
  9585. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9586. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9587. "shasum": ""
  9588. },
  9589. "require": {
  9590. "ext-ctype": "*",
  9591. "php": "^7.2 || ^8.0"
  9592. },
  9593. "conflict": {
  9594. "phpstan/phpstan": "<0.12.20",
  9595. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9596. },
  9597. "require-dev": {
  9598. "phpunit/phpunit": "^8.5.13"
  9599. },
  9600. "type": "library",
  9601. "extra": {
  9602. "branch-alias": {
  9603. "dev-master": "1.10-dev"
  9604. }
  9605. },
  9606. "autoload": {
  9607. "psr-4": {
  9608. "Webmozart\\Assert\\": "src/"
  9609. }
  9610. },
  9611. "notification-url": "https://packagist.org/downloads/",
  9612. "license": [
  9613. "MIT"
  9614. ],
  9615. "authors": [
  9616. {
  9617. "name": "Bernhard Schussek",
  9618. "email": "bschussek@gmail.com"
  9619. }
  9620. ],
  9621. "description": "Assertions to validate method input/output with nice error messages.",
  9622. "keywords": [
  9623. "assert",
  9624. "check",
  9625. "validate"
  9626. ],
  9627. "support": {
  9628. "issues": "https://github.com/webmozarts/assert/issues",
  9629. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9630. },
  9631. "time": "2022-06-03T18:03:27+00:00"
  9632. },
  9633. {
  9634. "name": "wechatpay/wechatpay-guzzle-middleware",
  9635. "version": "0.2.2",
  9636. "source": {
  9637. "type": "git",
  9638. "url": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware.git",
  9639. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a"
  9640. },
  9641. "dist": {
  9642. "type": "zip",
  9643. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-guzzle-middleware/zipball/6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  9644. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  9645. "shasum": ""
  9646. },
  9647. "require": {
  9648. "ext-openssl": "*",
  9649. "php": ">=5.5"
  9650. },
  9651. "require-dev": {
  9652. "guzzlehttp/guzzle": "^6.3"
  9653. },
  9654. "suggest": {
  9655. "ext-bcmath": "Require bcmath in php 5.* version.",
  9656. "guzzlehttp/guzzle": "For using wechatpay guzzle middleware."
  9657. },
  9658. "bin": [
  9659. "tool/CertificateDownloader.php"
  9660. ],
  9661. "type": "library",
  9662. "autoload": {
  9663. "psr-4": {
  9664. "WechatPay\\GuzzleMiddleware\\": "src/"
  9665. }
  9666. },
  9667. "notification-url": "https://packagist.org/downloads/",
  9668. "license": [
  9669. "Apache-2.0"
  9670. ],
  9671. "description": "WechatPay API V3 Guzzle Middleware",
  9672. "homepage": "https://wechatpay-api.gitbook.io/wechatpay-api-v3/",
  9673. "keywords": [
  9674. "wechatpay"
  9675. ],
  9676. "support": {
  9677. "issues": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/issues",
  9678. "source": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/tree/v0.2.2"
  9679. },
  9680. "time": "2021-03-05T03:09:29+00:00"
  9681. },
  9682. {
  9683. "name": "yansongda/pay",
  9684. "version": "v3.4.2",
  9685. "source": {
  9686. "type": "git",
  9687. "url": "https://github.com/yansongda/pay.git",
  9688. "reference": "de827f7a594ef02432432da1f873926662b478fc"
  9689. },
  9690. "dist": {
  9691. "type": "zip",
  9692. "url": "https://api.github.com/repos/yansongda/pay/zipball/de827f7a594ef02432432da1f873926662b478fc",
  9693. "reference": "de827f7a594ef02432432da1f873926662b478fc",
  9694. "shasum": ""
  9695. },
  9696. "require": {
  9697. "ext-bcmath": "*",
  9698. "ext-json": "*",
  9699. "ext-libxml": "*",
  9700. "ext-openssl": "*",
  9701. "ext-simplexml": "*",
  9702. "php": ">=8.0",
  9703. "psr/container": "^1.1 || ^2.0",
  9704. "psr/event-dispatcher": "^1.0",
  9705. "psr/http-client": "^1.0",
  9706. "psr/http-message": "^1.1 || ^2.0",
  9707. "psr/log": "^1.1 || ^2.0 || ^3.0",
  9708. "yansongda/supports": "~4.0.0"
  9709. },
  9710. "conflict": {
  9711. "hyperf/framework": "<3.0"
  9712. },
  9713. "require-dev": {
  9714. "friendsofphp/php-cs-fixer": "^3.0",
  9715. "guzzlehttp/guzzle": "^7.0",
  9716. "hyperf/pimple": "^2.2",
  9717. "mockery/mockery": "^1.4",
  9718. "monolog/monolog": "^2.2",
  9719. "phpstan/phpstan": "^1.0.0",
  9720. "phpunit/phpunit": "^9.0",
  9721. "symfony/event-dispatcher": "^5.2.0",
  9722. "symfony/http-foundation": "^5.2.0",
  9723. "symfony/psr-http-message-bridge": "^2.1",
  9724. "symfony/var-dumper": "^5.1"
  9725. },
  9726. "suggest": {
  9727. "hyperf/pimple": "其它/无框架下使用 SDK,请安装",
  9728. "hyperf/utils": "Hyperf 框架下使用 SDK,请安装",
  9729. "illuminate/container": "Laravel 框架下使用 SDK,请安装"
  9730. },
  9731. "type": "library",
  9732. "autoload": {
  9733. "files": [
  9734. "src/Functions.php"
  9735. ],
  9736. "psr-4": {
  9737. "Yansongda\\Pay\\": "src"
  9738. }
  9739. },
  9740. "notification-url": "https://packagist.org/downloads/",
  9741. "license": [
  9742. "MIT"
  9743. ],
  9744. "authors": [
  9745. {
  9746. "name": "yansongda",
  9747. "email": "me@yansongda.cn"
  9748. }
  9749. ],
  9750. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  9751. "keywords": [
  9752. "alipay",
  9753. "pay",
  9754. "wechat"
  9755. ],
  9756. "support": {
  9757. "homepage": "https://pay.yansongda.cn",
  9758. "issues": "https://github.com/yansongda/pay/issues",
  9759. "source": "https://github.com/yansongda/pay"
  9760. },
  9761. "time": "2023-06-27T09:54:37+00:00"
  9762. },
  9763. {
  9764. "name": "yansongda/supports",
  9765. "version": "v4.0.3",
  9766. "source": {
  9767. "type": "git",
  9768. "url": "https://github.com/yansongda/supports.git",
  9769. "reference": "73e01ed827202b33395c0827943410f6dbd790a4"
  9770. },
  9771. "dist": {
  9772. "type": "zip",
  9773. "url": "https://api.github.com/repos/yansongda/supports/zipball/73e01ed827202b33395c0827943410f6dbd790a4",
  9774. "reference": "73e01ed827202b33395c0827943410f6dbd790a4",
  9775. "shasum": ""
  9776. },
  9777. "require": {
  9778. "php": ">=8.0"
  9779. },
  9780. "require-dev": {
  9781. "friendsofphp/php-cs-fixer": "^3.0",
  9782. "mockery/mockery": "^1.4",
  9783. "phpstan/phpstan": "^1.1.0",
  9784. "phpunit/phpunit": "^9.0"
  9785. },
  9786. "suggest": {
  9787. "monolog/monolog": "Use logger",
  9788. "symfony/console": "Use stdout logger"
  9789. },
  9790. "type": "library",
  9791. "autoload": {
  9792. "files": [
  9793. "src/Functions.php"
  9794. ],
  9795. "psr-4": {
  9796. "Yansongda\\Supports\\": "src/"
  9797. }
  9798. },
  9799. "notification-url": "https://packagist.org/downloads/",
  9800. "license": [
  9801. "MIT"
  9802. ],
  9803. "authors": [
  9804. {
  9805. "name": "yansongda",
  9806. "email": "me@yansongda.cn"
  9807. }
  9808. ],
  9809. "description": "common components",
  9810. "keywords": [
  9811. "array",
  9812. "collection",
  9813. "config",
  9814. "support"
  9815. ],
  9816. "support": {
  9817. "issues": "https://github.com/yansongda/supports/issues",
  9818. "source": "https://github.com/yansongda/supports"
  9819. },
  9820. "time": "2023-12-23T15:04:07+00:00"
  9821. }
  9822. ],
  9823. "packages-dev": [
  9824. {
  9825. "name": "doctrine/instantiator",
  9826. "version": "1.5.0",
  9827. "source": {
  9828. "type": "git",
  9829. "url": "https://github.com/doctrine/instantiator.git",
  9830. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  9831. },
  9832. "dist": {
  9833. "type": "zip",
  9834. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  9835. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  9836. "shasum": ""
  9837. },
  9838. "require": {
  9839. "php": "^7.1 || ^8.0"
  9840. },
  9841. "require-dev": {
  9842. "doctrine/coding-standard": "^9 || ^11",
  9843. "ext-pdo": "*",
  9844. "ext-phar": "*",
  9845. "phpbench/phpbench": "^0.16 || ^1",
  9846. "phpstan/phpstan": "^1.4",
  9847. "phpstan/phpstan-phpunit": "^1",
  9848. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  9849. "vimeo/psalm": "^4.30 || ^5.4"
  9850. },
  9851. "type": "library",
  9852. "autoload": {
  9853. "psr-4": {
  9854. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9855. }
  9856. },
  9857. "notification-url": "https://packagist.org/downloads/",
  9858. "license": [
  9859. "MIT"
  9860. ],
  9861. "authors": [
  9862. {
  9863. "name": "Marco Pivetta",
  9864. "email": "ocramius@gmail.com",
  9865. "homepage": "https://ocramius.github.io/"
  9866. }
  9867. ],
  9868. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9869. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  9870. "keywords": [
  9871. "constructor",
  9872. "instantiate"
  9873. ],
  9874. "support": {
  9875. "issues": "https://github.com/doctrine/instantiator/issues",
  9876. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  9877. },
  9878. "funding": [
  9879. {
  9880. "url": "https://www.doctrine-project.org/sponsorship.html",
  9881. "type": "custom"
  9882. },
  9883. {
  9884. "url": "https://www.patreon.com/phpdoctrine",
  9885. "type": "patreon"
  9886. },
  9887. {
  9888. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  9889. "type": "tidelift"
  9890. }
  9891. ],
  9892. "time": "2022-12-30T00:15:36+00:00"
  9893. },
  9894. {
  9895. "name": "facade/flare-client-php",
  9896. "version": "1.10.0",
  9897. "source": {
  9898. "type": "git",
  9899. "url": "https://github.com/facade/flare-client-php.git",
  9900. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  9901. },
  9902. "dist": {
  9903. "type": "zip",
  9904. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9905. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9906. "shasum": ""
  9907. },
  9908. "require": {
  9909. "facade/ignition-contracts": "~1.0",
  9910. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  9911. "php": "^7.1|^8.0",
  9912. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  9913. "symfony/mime": "^3.4|^4.0|^5.1",
  9914. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  9915. },
  9916. "require-dev": {
  9917. "friendsofphp/php-cs-fixer": "^2.14",
  9918. "phpunit/phpunit": "^7.5",
  9919. "spatie/phpunit-snapshot-assertions": "^2.0"
  9920. },
  9921. "type": "library",
  9922. "extra": {
  9923. "branch-alias": {
  9924. "dev-master": "1.0-dev"
  9925. }
  9926. },
  9927. "autoload": {
  9928. "files": [
  9929. "src/helpers.php"
  9930. ],
  9931. "psr-4": {
  9932. "Facade\\FlareClient\\": "src"
  9933. }
  9934. },
  9935. "notification-url": "https://packagist.org/downloads/",
  9936. "license": [
  9937. "MIT"
  9938. ],
  9939. "description": "Send PHP errors to Flare",
  9940. "homepage": "https://github.com/facade/flare-client-php",
  9941. "keywords": [
  9942. "exception",
  9943. "facade",
  9944. "flare",
  9945. "reporting"
  9946. ],
  9947. "support": {
  9948. "issues": "https://github.com/facade/flare-client-php/issues",
  9949. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  9950. },
  9951. "funding": [
  9952. {
  9953. "url": "https://github.com/spatie",
  9954. "type": "github"
  9955. }
  9956. ],
  9957. "time": "2022-08-09T11:23:57+00:00"
  9958. },
  9959. {
  9960. "name": "facade/ignition",
  9961. "version": "2.17.7",
  9962. "source": {
  9963. "type": "git",
  9964. "url": "https://github.com/facade/ignition.git",
  9965. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  9966. },
  9967. "dist": {
  9968. "type": "zip",
  9969. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  9970. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  9971. "shasum": ""
  9972. },
  9973. "require": {
  9974. "ext-curl": "*",
  9975. "ext-json": "*",
  9976. "ext-mbstring": "*",
  9977. "facade/flare-client-php": "^1.9.1",
  9978. "facade/ignition-contracts": "^1.0.2",
  9979. "illuminate/support": "^7.0|^8.0",
  9980. "monolog/monolog": "^2.0",
  9981. "php": "^7.2.5|^8.0",
  9982. "symfony/console": "^5.0",
  9983. "symfony/var-dumper": "^5.0"
  9984. },
  9985. "require-dev": {
  9986. "friendsofphp/php-cs-fixer": "^2.14",
  9987. "livewire/livewire": "^2.4",
  9988. "mockery/mockery": "^1.3",
  9989. "orchestra/testbench": "^5.0|^6.0",
  9990. "psalm/plugin-laravel": "^1.2"
  9991. },
  9992. "suggest": {
  9993. "laravel/telescope": "^3.1"
  9994. },
  9995. "type": "library",
  9996. "extra": {
  9997. "branch-alias": {
  9998. "dev-master": "2.x-dev"
  9999. },
  10000. "laravel": {
  10001. "providers": [
  10002. "Facade\\Ignition\\IgnitionServiceProvider"
  10003. ],
  10004. "aliases": {
  10005. "Flare": "Facade\\Ignition\\Facades\\Flare"
  10006. }
  10007. }
  10008. },
  10009. "autoload": {
  10010. "files": [
  10011. "src/helpers.php"
  10012. ],
  10013. "psr-4": {
  10014. "Facade\\Ignition\\": "src"
  10015. }
  10016. },
  10017. "notification-url": "https://packagist.org/downloads/",
  10018. "license": [
  10019. "MIT"
  10020. ],
  10021. "description": "A beautiful error page for Laravel applications.",
  10022. "homepage": "https://github.com/facade/ignition",
  10023. "keywords": [
  10024. "error",
  10025. "flare",
  10026. "laravel",
  10027. "page"
  10028. ],
  10029. "support": {
  10030. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10031. "forum": "https://twitter.com/flareappio",
  10032. "issues": "https://github.com/facade/ignition/issues",
  10033. "source": "https://github.com/facade/ignition"
  10034. },
  10035. "time": "2023-01-26T12:34:59+00:00"
  10036. },
  10037. {
  10038. "name": "facade/ignition-contracts",
  10039. "version": "1.0.2",
  10040. "source": {
  10041. "type": "git",
  10042. "url": "https://github.com/facade/ignition-contracts.git",
  10043. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  10044. },
  10045. "dist": {
  10046. "type": "zip",
  10047. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10048. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10049. "shasum": ""
  10050. },
  10051. "require": {
  10052. "php": "^7.3|^8.0"
  10053. },
  10054. "require-dev": {
  10055. "friendsofphp/php-cs-fixer": "^v2.15.8",
  10056. "phpunit/phpunit": "^9.3.11",
  10057. "vimeo/psalm": "^3.17.1"
  10058. },
  10059. "type": "library",
  10060. "autoload": {
  10061. "psr-4": {
  10062. "Facade\\IgnitionContracts\\": "src"
  10063. }
  10064. },
  10065. "notification-url": "https://packagist.org/downloads/",
  10066. "license": [
  10067. "MIT"
  10068. ],
  10069. "authors": [
  10070. {
  10071. "name": "Freek Van der Herten",
  10072. "email": "freek@spatie.be",
  10073. "homepage": "https://flareapp.io",
  10074. "role": "Developer"
  10075. }
  10076. ],
  10077. "description": "Solution contracts for Ignition",
  10078. "homepage": "https://github.com/facade/ignition-contracts",
  10079. "keywords": [
  10080. "contracts",
  10081. "flare",
  10082. "ignition"
  10083. ],
  10084. "support": {
  10085. "issues": "https://github.com/facade/ignition-contracts/issues",
  10086. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  10087. },
  10088. "time": "2020-10-16T08:27:54+00:00"
  10089. },
  10090. {
  10091. "name": "fakerphp/faker",
  10092. "version": "v1.23.0",
  10093. "source": {
  10094. "type": "git",
  10095. "url": "https://github.com/FakerPHP/Faker.git",
  10096. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  10097. },
  10098. "dist": {
  10099. "type": "zip",
  10100. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  10101. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  10102. "shasum": ""
  10103. },
  10104. "require": {
  10105. "php": "^7.4 || ^8.0",
  10106. "psr/container": "^1.0 || ^2.0",
  10107. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  10108. },
  10109. "conflict": {
  10110. "fzaninotto/faker": "*"
  10111. },
  10112. "require-dev": {
  10113. "bamarni/composer-bin-plugin": "^1.4.1",
  10114. "doctrine/persistence": "^1.3 || ^2.0",
  10115. "ext-intl": "*",
  10116. "phpunit/phpunit": "^9.5.26",
  10117. "symfony/phpunit-bridge": "^5.4.16"
  10118. },
  10119. "suggest": {
  10120. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  10121. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  10122. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  10123. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  10124. "ext-mbstring": "Required for multibyte Unicode string functionality."
  10125. },
  10126. "type": "library",
  10127. "extra": {
  10128. "branch-alias": {
  10129. "dev-main": "v1.21-dev"
  10130. }
  10131. },
  10132. "autoload": {
  10133. "psr-4": {
  10134. "Faker\\": "src/Faker/"
  10135. }
  10136. },
  10137. "notification-url": "https://packagist.org/downloads/",
  10138. "license": [
  10139. "MIT"
  10140. ],
  10141. "authors": [
  10142. {
  10143. "name": "François Zaninotto"
  10144. }
  10145. ],
  10146. "description": "Faker is a PHP library that generates fake data for you.",
  10147. "keywords": [
  10148. "data",
  10149. "faker",
  10150. "fixtures"
  10151. ],
  10152. "support": {
  10153. "issues": "https://github.com/FakerPHP/Faker/issues",
  10154. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  10155. },
  10156. "time": "2023-06-12T08:44:38+00:00"
  10157. },
  10158. {
  10159. "name": "filp/whoops",
  10160. "version": "2.15.4",
  10161. "source": {
  10162. "type": "git",
  10163. "url": "https://github.com/filp/whoops.git",
  10164. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  10165. },
  10166. "dist": {
  10167. "type": "zip",
  10168. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  10169. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  10170. "shasum": ""
  10171. },
  10172. "require": {
  10173. "php": "^5.5.9 || ^7.0 || ^8.0",
  10174. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  10175. },
  10176. "require-dev": {
  10177. "mockery/mockery": "^0.9 || ^1.0",
  10178. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  10179. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  10180. },
  10181. "suggest": {
  10182. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  10183. "whoops/soap": "Formats errors as SOAP responses"
  10184. },
  10185. "type": "library",
  10186. "extra": {
  10187. "branch-alias": {
  10188. "dev-master": "2.7-dev"
  10189. }
  10190. },
  10191. "autoload": {
  10192. "psr-4": {
  10193. "Whoops\\": "src/Whoops/"
  10194. }
  10195. },
  10196. "notification-url": "https://packagist.org/downloads/",
  10197. "license": [
  10198. "MIT"
  10199. ],
  10200. "authors": [
  10201. {
  10202. "name": "Filipe Dobreira",
  10203. "homepage": "https://github.com/filp",
  10204. "role": "Developer"
  10205. }
  10206. ],
  10207. "description": "php error handling for cool kids",
  10208. "homepage": "https://filp.github.io/whoops/",
  10209. "keywords": [
  10210. "error",
  10211. "exception",
  10212. "handling",
  10213. "library",
  10214. "throwable",
  10215. "whoops"
  10216. ],
  10217. "support": {
  10218. "issues": "https://github.com/filp/whoops/issues",
  10219. "source": "https://github.com/filp/whoops/tree/2.15.4"
  10220. },
  10221. "funding": [
  10222. {
  10223. "url": "https://github.com/denis-sokolov",
  10224. "type": "github"
  10225. }
  10226. ],
  10227. "time": "2023-11-03T12:00:00+00:00"
  10228. },
  10229. {
  10230. "name": "hamcrest/hamcrest-php",
  10231. "version": "v2.0.1",
  10232. "source": {
  10233. "type": "git",
  10234. "url": "https://github.com/hamcrest/hamcrest-php.git",
  10235. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  10236. },
  10237. "dist": {
  10238. "type": "zip",
  10239. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10240. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10241. "shasum": ""
  10242. },
  10243. "require": {
  10244. "php": "^5.3|^7.0|^8.0"
  10245. },
  10246. "replace": {
  10247. "cordoval/hamcrest-php": "*",
  10248. "davedevelopment/hamcrest-php": "*",
  10249. "kodova/hamcrest-php": "*"
  10250. },
  10251. "require-dev": {
  10252. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  10253. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  10254. },
  10255. "type": "library",
  10256. "extra": {
  10257. "branch-alias": {
  10258. "dev-master": "2.1-dev"
  10259. }
  10260. },
  10261. "autoload": {
  10262. "classmap": [
  10263. "hamcrest"
  10264. ]
  10265. },
  10266. "notification-url": "https://packagist.org/downloads/",
  10267. "license": [
  10268. "BSD-3-Clause"
  10269. ],
  10270. "description": "This is the PHP port of Hamcrest Matchers",
  10271. "keywords": [
  10272. "test"
  10273. ],
  10274. "support": {
  10275. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  10276. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  10277. },
  10278. "time": "2020-07-09T08:09:16+00:00"
  10279. },
  10280. {
  10281. "name": "mockery/mockery",
  10282. "version": "1.6.7",
  10283. "source": {
  10284. "type": "git",
  10285. "url": "https://github.com/mockery/mockery.git",
  10286. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06"
  10287. },
  10288. "dist": {
  10289. "type": "zip",
  10290. "url": "https://api.github.com/repos/mockery/mockery/zipball/0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  10291. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  10292. "shasum": ""
  10293. },
  10294. "require": {
  10295. "hamcrest/hamcrest-php": "^2.0.1",
  10296. "lib-pcre": ">=7.0",
  10297. "php": ">=7.3"
  10298. },
  10299. "conflict": {
  10300. "phpunit/phpunit": "<8.0"
  10301. },
  10302. "require-dev": {
  10303. "phpunit/phpunit": "^8.5 || ^9.6.10",
  10304. "symplify/easy-coding-standard": "^12.0.8"
  10305. },
  10306. "type": "library",
  10307. "autoload": {
  10308. "files": [
  10309. "library/helpers.php",
  10310. "library/Mockery.php"
  10311. ],
  10312. "psr-4": {
  10313. "Mockery\\": "library/Mockery"
  10314. }
  10315. },
  10316. "notification-url": "https://packagist.org/downloads/",
  10317. "license": [
  10318. "BSD-3-Clause"
  10319. ],
  10320. "authors": [
  10321. {
  10322. "name": "Pádraic Brady",
  10323. "email": "padraic.brady@gmail.com",
  10324. "homepage": "https://github.com/padraic",
  10325. "role": "Author"
  10326. },
  10327. {
  10328. "name": "Dave Marshall",
  10329. "email": "dave.marshall@atstsolutions.co.uk",
  10330. "homepage": "https://davedevelopment.co.uk",
  10331. "role": "Developer"
  10332. },
  10333. {
  10334. "name": "Nathanael Esayeas",
  10335. "email": "nathanael.esayeas@protonmail.com",
  10336. "homepage": "https://github.com/ghostwriter",
  10337. "role": "Lead Developer"
  10338. }
  10339. ],
  10340. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10341. "homepage": "https://github.com/mockery/mockery",
  10342. "keywords": [
  10343. "BDD",
  10344. "TDD",
  10345. "library",
  10346. "mock",
  10347. "mock objects",
  10348. "mockery",
  10349. "stub",
  10350. "test",
  10351. "test double",
  10352. "testing"
  10353. ],
  10354. "support": {
  10355. "docs": "https://docs.mockery.io/",
  10356. "issues": "https://github.com/mockery/mockery/issues",
  10357. "rss": "https://github.com/mockery/mockery/releases.atom",
  10358. "security": "https://github.com/mockery/mockery/security/advisories",
  10359. "source": "https://github.com/mockery/mockery"
  10360. },
  10361. "time": "2023-12-10T02:24:34+00:00"
  10362. },
  10363. {
  10364. "name": "myclabs/deep-copy",
  10365. "version": "1.11.1",
  10366. "source": {
  10367. "type": "git",
  10368. "url": "https://github.com/myclabs/DeepCopy.git",
  10369. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  10370. },
  10371. "dist": {
  10372. "type": "zip",
  10373. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  10374. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  10375. "shasum": ""
  10376. },
  10377. "require": {
  10378. "php": "^7.1 || ^8.0"
  10379. },
  10380. "conflict": {
  10381. "doctrine/collections": "<1.6.8",
  10382. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  10383. },
  10384. "require-dev": {
  10385. "doctrine/collections": "^1.6.8",
  10386. "doctrine/common": "^2.13.3 || ^3.2.2",
  10387. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10388. },
  10389. "type": "library",
  10390. "autoload": {
  10391. "files": [
  10392. "src/DeepCopy/deep_copy.php"
  10393. ],
  10394. "psr-4": {
  10395. "DeepCopy\\": "src/DeepCopy/"
  10396. }
  10397. },
  10398. "notification-url": "https://packagist.org/downloads/",
  10399. "license": [
  10400. "MIT"
  10401. ],
  10402. "description": "Create deep copies (clones) of your objects",
  10403. "keywords": [
  10404. "clone",
  10405. "copy",
  10406. "duplicate",
  10407. "object",
  10408. "object graph"
  10409. ],
  10410. "support": {
  10411. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10412. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  10413. },
  10414. "funding": [
  10415. {
  10416. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10417. "type": "tidelift"
  10418. }
  10419. ],
  10420. "time": "2023-03-08T13:26:56+00:00"
  10421. },
  10422. {
  10423. "name": "nunomaduro/collision",
  10424. "version": "v5.11.0",
  10425. "source": {
  10426. "type": "git",
  10427. "url": "https://github.com/nunomaduro/collision.git",
  10428. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  10429. },
  10430. "dist": {
  10431. "type": "zip",
  10432. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  10433. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  10434. "shasum": ""
  10435. },
  10436. "require": {
  10437. "facade/ignition-contracts": "^1.0",
  10438. "filp/whoops": "^2.14.3",
  10439. "php": "^7.3 || ^8.0",
  10440. "symfony/console": "^5.0"
  10441. },
  10442. "require-dev": {
  10443. "brianium/paratest": "^6.1",
  10444. "fideloper/proxy": "^4.4.1",
  10445. "fruitcake/laravel-cors": "^2.0.3",
  10446. "laravel/framework": "8.x-dev",
  10447. "nunomaduro/larastan": "^0.6.2",
  10448. "nunomaduro/mock-final-classes": "^1.0",
  10449. "orchestra/testbench": "^6.0",
  10450. "phpstan/phpstan": "^0.12.64",
  10451. "phpunit/phpunit": "^9.5.0"
  10452. },
  10453. "type": "library",
  10454. "extra": {
  10455. "laravel": {
  10456. "providers": [
  10457. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10458. ]
  10459. }
  10460. },
  10461. "autoload": {
  10462. "psr-4": {
  10463. "NunoMaduro\\Collision\\": "src/"
  10464. }
  10465. },
  10466. "notification-url": "https://packagist.org/downloads/",
  10467. "license": [
  10468. "MIT"
  10469. ],
  10470. "authors": [
  10471. {
  10472. "name": "Nuno Maduro",
  10473. "email": "enunomaduro@gmail.com"
  10474. }
  10475. ],
  10476. "description": "Cli error handling for console/command-line PHP applications.",
  10477. "keywords": [
  10478. "artisan",
  10479. "cli",
  10480. "command-line",
  10481. "console",
  10482. "error",
  10483. "handling",
  10484. "laravel",
  10485. "laravel-zero",
  10486. "php",
  10487. "symfony"
  10488. ],
  10489. "support": {
  10490. "issues": "https://github.com/nunomaduro/collision/issues",
  10491. "source": "https://github.com/nunomaduro/collision"
  10492. },
  10493. "funding": [
  10494. {
  10495. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10496. "type": "custom"
  10497. },
  10498. {
  10499. "url": "https://github.com/nunomaduro",
  10500. "type": "github"
  10501. },
  10502. {
  10503. "url": "https://www.patreon.com/nunomaduro",
  10504. "type": "patreon"
  10505. }
  10506. ],
  10507. "time": "2022-01-10T16:22:52+00:00"
  10508. },
  10509. {
  10510. "name": "phar-io/manifest",
  10511. "version": "2.0.3",
  10512. "source": {
  10513. "type": "git",
  10514. "url": "https://github.com/phar-io/manifest.git",
  10515. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  10516. },
  10517. "dist": {
  10518. "type": "zip",
  10519. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  10520. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  10521. "shasum": ""
  10522. },
  10523. "require": {
  10524. "ext-dom": "*",
  10525. "ext-phar": "*",
  10526. "ext-xmlwriter": "*",
  10527. "phar-io/version": "^3.0.1",
  10528. "php": "^7.2 || ^8.0"
  10529. },
  10530. "type": "library",
  10531. "extra": {
  10532. "branch-alias": {
  10533. "dev-master": "2.0.x-dev"
  10534. }
  10535. },
  10536. "autoload": {
  10537. "classmap": [
  10538. "src/"
  10539. ]
  10540. },
  10541. "notification-url": "https://packagist.org/downloads/",
  10542. "license": [
  10543. "BSD-3-Clause"
  10544. ],
  10545. "authors": [
  10546. {
  10547. "name": "Arne Blankerts",
  10548. "email": "arne@blankerts.de",
  10549. "role": "Developer"
  10550. },
  10551. {
  10552. "name": "Sebastian Heuer",
  10553. "email": "sebastian@phpeople.de",
  10554. "role": "Developer"
  10555. },
  10556. {
  10557. "name": "Sebastian Bergmann",
  10558. "email": "sebastian@phpunit.de",
  10559. "role": "Developer"
  10560. }
  10561. ],
  10562. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10563. "support": {
  10564. "issues": "https://github.com/phar-io/manifest/issues",
  10565. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  10566. },
  10567. "time": "2021-07-20T11:28:43+00:00"
  10568. },
  10569. {
  10570. "name": "phar-io/version",
  10571. "version": "3.2.1",
  10572. "source": {
  10573. "type": "git",
  10574. "url": "https://github.com/phar-io/version.git",
  10575. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10576. },
  10577. "dist": {
  10578. "type": "zip",
  10579. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10580. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10581. "shasum": ""
  10582. },
  10583. "require": {
  10584. "php": "^7.2 || ^8.0"
  10585. },
  10586. "type": "library",
  10587. "autoload": {
  10588. "classmap": [
  10589. "src/"
  10590. ]
  10591. },
  10592. "notification-url": "https://packagist.org/downloads/",
  10593. "license": [
  10594. "BSD-3-Clause"
  10595. ],
  10596. "authors": [
  10597. {
  10598. "name": "Arne Blankerts",
  10599. "email": "arne@blankerts.de",
  10600. "role": "Developer"
  10601. },
  10602. {
  10603. "name": "Sebastian Heuer",
  10604. "email": "sebastian@phpeople.de",
  10605. "role": "Developer"
  10606. },
  10607. {
  10608. "name": "Sebastian Bergmann",
  10609. "email": "sebastian@phpunit.de",
  10610. "role": "Developer"
  10611. }
  10612. ],
  10613. "description": "Library for handling version information and constraints",
  10614. "support": {
  10615. "issues": "https://github.com/phar-io/version/issues",
  10616. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10617. },
  10618. "time": "2022-02-21T01:04:05+00:00"
  10619. },
  10620. {
  10621. "name": "phpunit/php-code-coverage",
  10622. "version": "9.2.30",
  10623. "source": {
  10624. "type": "git",
  10625. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10626. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  10627. },
  10628. "dist": {
  10629. "type": "zip",
  10630. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  10631. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  10632. "shasum": ""
  10633. },
  10634. "require": {
  10635. "ext-dom": "*",
  10636. "ext-libxml": "*",
  10637. "ext-xmlwriter": "*",
  10638. "nikic/php-parser": "^4.18 || ^5.0",
  10639. "php": ">=7.3",
  10640. "phpunit/php-file-iterator": "^3.0.3",
  10641. "phpunit/php-text-template": "^2.0.2",
  10642. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  10643. "sebastian/complexity": "^2.0",
  10644. "sebastian/environment": "^5.1.2",
  10645. "sebastian/lines-of-code": "^1.0.3",
  10646. "sebastian/version": "^3.0.1",
  10647. "theseer/tokenizer": "^1.2.0"
  10648. },
  10649. "require-dev": {
  10650. "phpunit/phpunit": "^9.3"
  10651. },
  10652. "suggest": {
  10653. "ext-pcov": "PHP extension that provides line coverage",
  10654. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10655. },
  10656. "type": "library",
  10657. "extra": {
  10658. "branch-alias": {
  10659. "dev-master": "9.2-dev"
  10660. }
  10661. },
  10662. "autoload": {
  10663. "classmap": [
  10664. "src/"
  10665. ]
  10666. },
  10667. "notification-url": "https://packagist.org/downloads/",
  10668. "license": [
  10669. "BSD-3-Clause"
  10670. ],
  10671. "authors": [
  10672. {
  10673. "name": "Sebastian Bergmann",
  10674. "email": "sebastian@phpunit.de",
  10675. "role": "lead"
  10676. }
  10677. ],
  10678. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10679. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10680. "keywords": [
  10681. "coverage",
  10682. "testing",
  10683. "xunit"
  10684. ],
  10685. "support": {
  10686. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10687. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10688. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  10689. },
  10690. "funding": [
  10691. {
  10692. "url": "https://github.com/sebastianbergmann",
  10693. "type": "github"
  10694. }
  10695. ],
  10696. "time": "2023-12-22T06:47:57+00:00"
  10697. },
  10698. {
  10699. "name": "phpunit/php-file-iterator",
  10700. "version": "3.0.6",
  10701. "source": {
  10702. "type": "git",
  10703. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10704. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  10705. },
  10706. "dist": {
  10707. "type": "zip",
  10708. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  10709. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  10710. "shasum": ""
  10711. },
  10712. "require": {
  10713. "php": ">=7.3"
  10714. },
  10715. "require-dev": {
  10716. "phpunit/phpunit": "^9.3"
  10717. },
  10718. "type": "library",
  10719. "extra": {
  10720. "branch-alias": {
  10721. "dev-master": "3.0-dev"
  10722. }
  10723. },
  10724. "autoload": {
  10725. "classmap": [
  10726. "src/"
  10727. ]
  10728. },
  10729. "notification-url": "https://packagist.org/downloads/",
  10730. "license": [
  10731. "BSD-3-Clause"
  10732. ],
  10733. "authors": [
  10734. {
  10735. "name": "Sebastian Bergmann",
  10736. "email": "sebastian@phpunit.de",
  10737. "role": "lead"
  10738. }
  10739. ],
  10740. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10741. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10742. "keywords": [
  10743. "filesystem",
  10744. "iterator"
  10745. ],
  10746. "support": {
  10747. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10748. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  10749. },
  10750. "funding": [
  10751. {
  10752. "url": "https://github.com/sebastianbergmann",
  10753. "type": "github"
  10754. }
  10755. ],
  10756. "time": "2021-12-02T12:48:52+00:00"
  10757. },
  10758. {
  10759. "name": "phpunit/php-invoker",
  10760. "version": "3.1.1",
  10761. "source": {
  10762. "type": "git",
  10763. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10764. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10765. },
  10766. "dist": {
  10767. "type": "zip",
  10768. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10769. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10770. "shasum": ""
  10771. },
  10772. "require": {
  10773. "php": ">=7.3"
  10774. },
  10775. "require-dev": {
  10776. "ext-pcntl": "*",
  10777. "phpunit/phpunit": "^9.3"
  10778. },
  10779. "suggest": {
  10780. "ext-pcntl": "*"
  10781. },
  10782. "type": "library",
  10783. "extra": {
  10784. "branch-alias": {
  10785. "dev-master": "3.1-dev"
  10786. }
  10787. },
  10788. "autoload": {
  10789. "classmap": [
  10790. "src/"
  10791. ]
  10792. },
  10793. "notification-url": "https://packagist.org/downloads/",
  10794. "license": [
  10795. "BSD-3-Clause"
  10796. ],
  10797. "authors": [
  10798. {
  10799. "name": "Sebastian Bergmann",
  10800. "email": "sebastian@phpunit.de",
  10801. "role": "lead"
  10802. }
  10803. ],
  10804. "description": "Invoke callables with a timeout",
  10805. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10806. "keywords": [
  10807. "process"
  10808. ],
  10809. "support": {
  10810. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10811. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10812. },
  10813. "funding": [
  10814. {
  10815. "url": "https://github.com/sebastianbergmann",
  10816. "type": "github"
  10817. }
  10818. ],
  10819. "time": "2020-09-28T05:58:55+00:00"
  10820. },
  10821. {
  10822. "name": "phpunit/php-text-template",
  10823. "version": "2.0.4",
  10824. "source": {
  10825. "type": "git",
  10826. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10827. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10828. },
  10829. "dist": {
  10830. "type": "zip",
  10831. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10832. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10833. "shasum": ""
  10834. },
  10835. "require": {
  10836. "php": ">=7.3"
  10837. },
  10838. "require-dev": {
  10839. "phpunit/phpunit": "^9.3"
  10840. },
  10841. "type": "library",
  10842. "extra": {
  10843. "branch-alias": {
  10844. "dev-master": "2.0-dev"
  10845. }
  10846. },
  10847. "autoload": {
  10848. "classmap": [
  10849. "src/"
  10850. ]
  10851. },
  10852. "notification-url": "https://packagist.org/downloads/",
  10853. "license": [
  10854. "BSD-3-Clause"
  10855. ],
  10856. "authors": [
  10857. {
  10858. "name": "Sebastian Bergmann",
  10859. "email": "sebastian@phpunit.de",
  10860. "role": "lead"
  10861. }
  10862. ],
  10863. "description": "Simple template engine.",
  10864. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10865. "keywords": [
  10866. "template"
  10867. ],
  10868. "support": {
  10869. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10870. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10871. },
  10872. "funding": [
  10873. {
  10874. "url": "https://github.com/sebastianbergmann",
  10875. "type": "github"
  10876. }
  10877. ],
  10878. "time": "2020-10-26T05:33:50+00:00"
  10879. },
  10880. {
  10881. "name": "phpunit/php-timer",
  10882. "version": "5.0.3",
  10883. "source": {
  10884. "type": "git",
  10885. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10886. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10887. },
  10888. "dist": {
  10889. "type": "zip",
  10890. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10891. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10892. "shasum": ""
  10893. },
  10894. "require": {
  10895. "php": ">=7.3"
  10896. },
  10897. "require-dev": {
  10898. "phpunit/phpunit": "^9.3"
  10899. },
  10900. "type": "library",
  10901. "extra": {
  10902. "branch-alias": {
  10903. "dev-master": "5.0-dev"
  10904. }
  10905. },
  10906. "autoload": {
  10907. "classmap": [
  10908. "src/"
  10909. ]
  10910. },
  10911. "notification-url": "https://packagist.org/downloads/",
  10912. "license": [
  10913. "BSD-3-Clause"
  10914. ],
  10915. "authors": [
  10916. {
  10917. "name": "Sebastian Bergmann",
  10918. "email": "sebastian@phpunit.de",
  10919. "role": "lead"
  10920. }
  10921. ],
  10922. "description": "Utility class for timing",
  10923. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10924. "keywords": [
  10925. "timer"
  10926. ],
  10927. "support": {
  10928. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10929. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10930. },
  10931. "funding": [
  10932. {
  10933. "url": "https://github.com/sebastianbergmann",
  10934. "type": "github"
  10935. }
  10936. ],
  10937. "time": "2020-10-26T13:16:10+00:00"
  10938. },
  10939. {
  10940. "name": "phpunit/phpunit",
  10941. "version": "9.6.15",
  10942. "source": {
  10943. "type": "git",
  10944. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10945. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  10946. },
  10947. "dist": {
  10948. "type": "zip",
  10949. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  10950. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  10951. "shasum": ""
  10952. },
  10953. "require": {
  10954. "doctrine/instantiator": "^1.3.1 || ^2",
  10955. "ext-dom": "*",
  10956. "ext-json": "*",
  10957. "ext-libxml": "*",
  10958. "ext-mbstring": "*",
  10959. "ext-xml": "*",
  10960. "ext-xmlwriter": "*",
  10961. "myclabs/deep-copy": "^1.10.1",
  10962. "phar-io/manifest": "^2.0.3",
  10963. "phar-io/version": "^3.0.2",
  10964. "php": ">=7.3",
  10965. "phpunit/php-code-coverage": "^9.2.28",
  10966. "phpunit/php-file-iterator": "^3.0.5",
  10967. "phpunit/php-invoker": "^3.1.1",
  10968. "phpunit/php-text-template": "^2.0.3",
  10969. "phpunit/php-timer": "^5.0.2",
  10970. "sebastian/cli-parser": "^1.0.1",
  10971. "sebastian/code-unit": "^1.0.6",
  10972. "sebastian/comparator": "^4.0.8",
  10973. "sebastian/diff": "^4.0.3",
  10974. "sebastian/environment": "^5.1.3",
  10975. "sebastian/exporter": "^4.0.5",
  10976. "sebastian/global-state": "^5.0.1",
  10977. "sebastian/object-enumerator": "^4.0.3",
  10978. "sebastian/resource-operations": "^3.0.3",
  10979. "sebastian/type": "^3.2",
  10980. "sebastian/version": "^3.0.2"
  10981. },
  10982. "suggest": {
  10983. "ext-soap": "To be able to generate mocks based on WSDL files",
  10984. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10985. },
  10986. "bin": [
  10987. "phpunit"
  10988. ],
  10989. "type": "library",
  10990. "extra": {
  10991. "branch-alias": {
  10992. "dev-master": "9.6-dev"
  10993. }
  10994. },
  10995. "autoload": {
  10996. "files": [
  10997. "src/Framework/Assert/Functions.php"
  10998. ],
  10999. "classmap": [
  11000. "src/"
  11001. ]
  11002. },
  11003. "notification-url": "https://packagist.org/downloads/",
  11004. "license": [
  11005. "BSD-3-Clause"
  11006. ],
  11007. "authors": [
  11008. {
  11009. "name": "Sebastian Bergmann",
  11010. "email": "sebastian@phpunit.de",
  11011. "role": "lead"
  11012. }
  11013. ],
  11014. "description": "The PHP Unit Testing framework.",
  11015. "homepage": "https://phpunit.de/",
  11016. "keywords": [
  11017. "phpunit",
  11018. "testing",
  11019. "xunit"
  11020. ],
  11021. "support": {
  11022. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11023. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11024. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  11025. },
  11026. "funding": [
  11027. {
  11028. "url": "https://phpunit.de/sponsors.html",
  11029. "type": "custom"
  11030. },
  11031. {
  11032. "url": "https://github.com/sebastianbergmann",
  11033. "type": "github"
  11034. },
  11035. {
  11036. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11037. "type": "tidelift"
  11038. }
  11039. ],
  11040. "time": "2023-12-01T16:55:19+00:00"
  11041. },
  11042. {
  11043. "name": "sebastian/cli-parser",
  11044. "version": "1.0.1",
  11045. "source": {
  11046. "type": "git",
  11047. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11048. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  11049. },
  11050. "dist": {
  11051. "type": "zip",
  11052. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11053. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11054. "shasum": ""
  11055. },
  11056. "require": {
  11057. "php": ">=7.3"
  11058. },
  11059. "require-dev": {
  11060. "phpunit/phpunit": "^9.3"
  11061. },
  11062. "type": "library",
  11063. "extra": {
  11064. "branch-alias": {
  11065. "dev-master": "1.0-dev"
  11066. }
  11067. },
  11068. "autoload": {
  11069. "classmap": [
  11070. "src/"
  11071. ]
  11072. },
  11073. "notification-url": "https://packagist.org/downloads/",
  11074. "license": [
  11075. "BSD-3-Clause"
  11076. ],
  11077. "authors": [
  11078. {
  11079. "name": "Sebastian Bergmann",
  11080. "email": "sebastian@phpunit.de",
  11081. "role": "lead"
  11082. }
  11083. ],
  11084. "description": "Library for parsing CLI options",
  11085. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11086. "support": {
  11087. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11088. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  11089. },
  11090. "funding": [
  11091. {
  11092. "url": "https://github.com/sebastianbergmann",
  11093. "type": "github"
  11094. }
  11095. ],
  11096. "time": "2020-09-28T06:08:49+00:00"
  11097. },
  11098. {
  11099. "name": "sebastian/code-unit",
  11100. "version": "1.0.8",
  11101. "source": {
  11102. "type": "git",
  11103. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11104. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  11105. },
  11106. "dist": {
  11107. "type": "zip",
  11108. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11109. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11110. "shasum": ""
  11111. },
  11112. "require": {
  11113. "php": ">=7.3"
  11114. },
  11115. "require-dev": {
  11116. "phpunit/phpunit": "^9.3"
  11117. },
  11118. "type": "library",
  11119. "extra": {
  11120. "branch-alias": {
  11121. "dev-master": "1.0-dev"
  11122. }
  11123. },
  11124. "autoload": {
  11125. "classmap": [
  11126. "src/"
  11127. ]
  11128. },
  11129. "notification-url": "https://packagist.org/downloads/",
  11130. "license": [
  11131. "BSD-3-Clause"
  11132. ],
  11133. "authors": [
  11134. {
  11135. "name": "Sebastian Bergmann",
  11136. "email": "sebastian@phpunit.de",
  11137. "role": "lead"
  11138. }
  11139. ],
  11140. "description": "Collection of value objects that represent the PHP code units",
  11141. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11142. "support": {
  11143. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11144. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  11145. },
  11146. "funding": [
  11147. {
  11148. "url": "https://github.com/sebastianbergmann",
  11149. "type": "github"
  11150. }
  11151. ],
  11152. "time": "2020-10-26T13:08:54+00:00"
  11153. },
  11154. {
  11155. "name": "sebastian/code-unit-reverse-lookup",
  11156. "version": "2.0.3",
  11157. "source": {
  11158. "type": "git",
  11159. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11160. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  11161. },
  11162. "dist": {
  11163. "type": "zip",
  11164. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  11165. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  11166. "shasum": ""
  11167. },
  11168. "require": {
  11169. "php": ">=7.3"
  11170. },
  11171. "require-dev": {
  11172. "phpunit/phpunit": "^9.3"
  11173. },
  11174. "type": "library",
  11175. "extra": {
  11176. "branch-alias": {
  11177. "dev-master": "2.0-dev"
  11178. }
  11179. },
  11180. "autoload": {
  11181. "classmap": [
  11182. "src/"
  11183. ]
  11184. },
  11185. "notification-url": "https://packagist.org/downloads/",
  11186. "license": [
  11187. "BSD-3-Clause"
  11188. ],
  11189. "authors": [
  11190. {
  11191. "name": "Sebastian Bergmann",
  11192. "email": "sebastian@phpunit.de"
  11193. }
  11194. ],
  11195. "description": "Looks up which function or method a line of code belongs to",
  11196. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11197. "support": {
  11198. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11199. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  11200. },
  11201. "funding": [
  11202. {
  11203. "url": "https://github.com/sebastianbergmann",
  11204. "type": "github"
  11205. }
  11206. ],
  11207. "time": "2020-09-28T05:30:19+00:00"
  11208. },
  11209. {
  11210. "name": "sebastian/comparator",
  11211. "version": "4.0.8",
  11212. "source": {
  11213. "type": "git",
  11214. "url": "https://github.com/sebastianbergmann/comparator.git",
  11215. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  11216. },
  11217. "dist": {
  11218. "type": "zip",
  11219. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  11220. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  11221. "shasum": ""
  11222. },
  11223. "require": {
  11224. "php": ">=7.3",
  11225. "sebastian/diff": "^4.0",
  11226. "sebastian/exporter": "^4.0"
  11227. },
  11228. "require-dev": {
  11229. "phpunit/phpunit": "^9.3"
  11230. },
  11231. "type": "library",
  11232. "extra": {
  11233. "branch-alias": {
  11234. "dev-master": "4.0-dev"
  11235. }
  11236. },
  11237. "autoload": {
  11238. "classmap": [
  11239. "src/"
  11240. ]
  11241. },
  11242. "notification-url": "https://packagist.org/downloads/",
  11243. "license": [
  11244. "BSD-3-Clause"
  11245. ],
  11246. "authors": [
  11247. {
  11248. "name": "Sebastian Bergmann",
  11249. "email": "sebastian@phpunit.de"
  11250. },
  11251. {
  11252. "name": "Jeff Welch",
  11253. "email": "whatthejeff@gmail.com"
  11254. },
  11255. {
  11256. "name": "Volker Dusch",
  11257. "email": "github@wallbash.com"
  11258. },
  11259. {
  11260. "name": "Bernhard Schussek",
  11261. "email": "bschussek@2bepublished.at"
  11262. }
  11263. ],
  11264. "description": "Provides the functionality to compare PHP values for equality",
  11265. "homepage": "https://github.com/sebastianbergmann/comparator",
  11266. "keywords": [
  11267. "comparator",
  11268. "compare",
  11269. "equality"
  11270. ],
  11271. "support": {
  11272. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11273. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  11274. },
  11275. "funding": [
  11276. {
  11277. "url": "https://github.com/sebastianbergmann",
  11278. "type": "github"
  11279. }
  11280. ],
  11281. "time": "2022-09-14T12:41:17+00:00"
  11282. },
  11283. {
  11284. "name": "sebastian/complexity",
  11285. "version": "2.0.3",
  11286. "source": {
  11287. "type": "git",
  11288. "url": "https://github.com/sebastianbergmann/complexity.git",
  11289. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  11290. },
  11291. "dist": {
  11292. "type": "zip",
  11293. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  11294. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  11295. "shasum": ""
  11296. },
  11297. "require": {
  11298. "nikic/php-parser": "^4.18 || ^5.0",
  11299. "php": ">=7.3"
  11300. },
  11301. "require-dev": {
  11302. "phpunit/phpunit": "^9.3"
  11303. },
  11304. "type": "library",
  11305. "extra": {
  11306. "branch-alias": {
  11307. "dev-master": "2.0-dev"
  11308. }
  11309. },
  11310. "autoload": {
  11311. "classmap": [
  11312. "src/"
  11313. ]
  11314. },
  11315. "notification-url": "https://packagist.org/downloads/",
  11316. "license": [
  11317. "BSD-3-Clause"
  11318. ],
  11319. "authors": [
  11320. {
  11321. "name": "Sebastian Bergmann",
  11322. "email": "sebastian@phpunit.de",
  11323. "role": "lead"
  11324. }
  11325. ],
  11326. "description": "Library for calculating the complexity of PHP code units",
  11327. "homepage": "https://github.com/sebastianbergmann/complexity",
  11328. "support": {
  11329. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11330. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  11331. },
  11332. "funding": [
  11333. {
  11334. "url": "https://github.com/sebastianbergmann",
  11335. "type": "github"
  11336. }
  11337. ],
  11338. "time": "2023-12-22T06:19:30+00:00"
  11339. },
  11340. {
  11341. "name": "sebastian/diff",
  11342. "version": "4.0.5",
  11343. "source": {
  11344. "type": "git",
  11345. "url": "https://github.com/sebastianbergmann/diff.git",
  11346. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  11347. },
  11348. "dist": {
  11349. "type": "zip",
  11350. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  11351. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  11352. "shasum": ""
  11353. },
  11354. "require": {
  11355. "php": ">=7.3"
  11356. },
  11357. "require-dev": {
  11358. "phpunit/phpunit": "^9.3",
  11359. "symfony/process": "^4.2 || ^5"
  11360. },
  11361. "type": "library",
  11362. "extra": {
  11363. "branch-alias": {
  11364. "dev-master": "4.0-dev"
  11365. }
  11366. },
  11367. "autoload": {
  11368. "classmap": [
  11369. "src/"
  11370. ]
  11371. },
  11372. "notification-url": "https://packagist.org/downloads/",
  11373. "license": [
  11374. "BSD-3-Clause"
  11375. ],
  11376. "authors": [
  11377. {
  11378. "name": "Sebastian Bergmann",
  11379. "email": "sebastian@phpunit.de"
  11380. },
  11381. {
  11382. "name": "Kore Nordmann",
  11383. "email": "mail@kore-nordmann.de"
  11384. }
  11385. ],
  11386. "description": "Diff implementation",
  11387. "homepage": "https://github.com/sebastianbergmann/diff",
  11388. "keywords": [
  11389. "diff",
  11390. "udiff",
  11391. "unidiff",
  11392. "unified diff"
  11393. ],
  11394. "support": {
  11395. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11396. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  11397. },
  11398. "funding": [
  11399. {
  11400. "url": "https://github.com/sebastianbergmann",
  11401. "type": "github"
  11402. }
  11403. ],
  11404. "time": "2023-05-07T05:35:17+00:00"
  11405. },
  11406. {
  11407. "name": "sebastian/environment",
  11408. "version": "5.1.5",
  11409. "source": {
  11410. "type": "git",
  11411. "url": "https://github.com/sebastianbergmann/environment.git",
  11412. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  11413. },
  11414. "dist": {
  11415. "type": "zip",
  11416. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  11417. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  11418. "shasum": ""
  11419. },
  11420. "require": {
  11421. "php": ">=7.3"
  11422. },
  11423. "require-dev": {
  11424. "phpunit/phpunit": "^9.3"
  11425. },
  11426. "suggest": {
  11427. "ext-posix": "*"
  11428. },
  11429. "type": "library",
  11430. "extra": {
  11431. "branch-alias": {
  11432. "dev-master": "5.1-dev"
  11433. }
  11434. },
  11435. "autoload": {
  11436. "classmap": [
  11437. "src/"
  11438. ]
  11439. },
  11440. "notification-url": "https://packagist.org/downloads/",
  11441. "license": [
  11442. "BSD-3-Clause"
  11443. ],
  11444. "authors": [
  11445. {
  11446. "name": "Sebastian Bergmann",
  11447. "email": "sebastian@phpunit.de"
  11448. }
  11449. ],
  11450. "description": "Provides functionality to handle HHVM/PHP environments",
  11451. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11452. "keywords": [
  11453. "Xdebug",
  11454. "environment",
  11455. "hhvm"
  11456. ],
  11457. "support": {
  11458. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11459. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  11460. },
  11461. "funding": [
  11462. {
  11463. "url": "https://github.com/sebastianbergmann",
  11464. "type": "github"
  11465. }
  11466. ],
  11467. "time": "2023-02-03T06:03:51+00:00"
  11468. },
  11469. {
  11470. "name": "sebastian/exporter",
  11471. "version": "4.0.5",
  11472. "source": {
  11473. "type": "git",
  11474. "url": "https://github.com/sebastianbergmann/exporter.git",
  11475. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  11476. },
  11477. "dist": {
  11478. "type": "zip",
  11479. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  11480. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  11481. "shasum": ""
  11482. },
  11483. "require": {
  11484. "php": ">=7.3",
  11485. "sebastian/recursion-context": "^4.0"
  11486. },
  11487. "require-dev": {
  11488. "ext-mbstring": "*",
  11489. "phpunit/phpunit": "^9.3"
  11490. },
  11491. "type": "library",
  11492. "extra": {
  11493. "branch-alias": {
  11494. "dev-master": "4.0-dev"
  11495. }
  11496. },
  11497. "autoload": {
  11498. "classmap": [
  11499. "src/"
  11500. ]
  11501. },
  11502. "notification-url": "https://packagist.org/downloads/",
  11503. "license": [
  11504. "BSD-3-Clause"
  11505. ],
  11506. "authors": [
  11507. {
  11508. "name": "Sebastian Bergmann",
  11509. "email": "sebastian@phpunit.de"
  11510. },
  11511. {
  11512. "name": "Jeff Welch",
  11513. "email": "whatthejeff@gmail.com"
  11514. },
  11515. {
  11516. "name": "Volker Dusch",
  11517. "email": "github@wallbash.com"
  11518. },
  11519. {
  11520. "name": "Adam Harvey",
  11521. "email": "aharvey@php.net"
  11522. },
  11523. {
  11524. "name": "Bernhard Schussek",
  11525. "email": "bschussek@gmail.com"
  11526. }
  11527. ],
  11528. "description": "Provides the functionality to export PHP variables for visualization",
  11529. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11530. "keywords": [
  11531. "export",
  11532. "exporter"
  11533. ],
  11534. "support": {
  11535. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11536. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  11537. },
  11538. "funding": [
  11539. {
  11540. "url": "https://github.com/sebastianbergmann",
  11541. "type": "github"
  11542. }
  11543. ],
  11544. "time": "2022-09-14T06:03:37+00:00"
  11545. },
  11546. {
  11547. "name": "sebastian/global-state",
  11548. "version": "5.0.6",
  11549. "source": {
  11550. "type": "git",
  11551. "url": "https://github.com/sebastianbergmann/global-state.git",
  11552. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  11553. },
  11554. "dist": {
  11555. "type": "zip",
  11556. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  11557. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  11558. "shasum": ""
  11559. },
  11560. "require": {
  11561. "php": ">=7.3",
  11562. "sebastian/object-reflector": "^2.0",
  11563. "sebastian/recursion-context": "^4.0"
  11564. },
  11565. "require-dev": {
  11566. "ext-dom": "*",
  11567. "phpunit/phpunit": "^9.3"
  11568. },
  11569. "suggest": {
  11570. "ext-uopz": "*"
  11571. },
  11572. "type": "library",
  11573. "extra": {
  11574. "branch-alias": {
  11575. "dev-master": "5.0-dev"
  11576. }
  11577. },
  11578. "autoload": {
  11579. "classmap": [
  11580. "src/"
  11581. ]
  11582. },
  11583. "notification-url": "https://packagist.org/downloads/",
  11584. "license": [
  11585. "BSD-3-Clause"
  11586. ],
  11587. "authors": [
  11588. {
  11589. "name": "Sebastian Bergmann",
  11590. "email": "sebastian@phpunit.de"
  11591. }
  11592. ],
  11593. "description": "Snapshotting of global state",
  11594. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11595. "keywords": [
  11596. "global state"
  11597. ],
  11598. "support": {
  11599. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11600. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  11601. },
  11602. "funding": [
  11603. {
  11604. "url": "https://github.com/sebastianbergmann",
  11605. "type": "github"
  11606. }
  11607. ],
  11608. "time": "2023-08-02T09:26:13+00:00"
  11609. },
  11610. {
  11611. "name": "sebastian/lines-of-code",
  11612. "version": "1.0.4",
  11613. "source": {
  11614. "type": "git",
  11615. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11616. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  11617. },
  11618. "dist": {
  11619. "type": "zip",
  11620. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  11621. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  11622. "shasum": ""
  11623. },
  11624. "require": {
  11625. "nikic/php-parser": "^4.18 || ^5.0",
  11626. "php": ">=7.3"
  11627. },
  11628. "require-dev": {
  11629. "phpunit/phpunit": "^9.3"
  11630. },
  11631. "type": "library",
  11632. "extra": {
  11633. "branch-alias": {
  11634. "dev-master": "1.0-dev"
  11635. }
  11636. },
  11637. "autoload": {
  11638. "classmap": [
  11639. "src/"
  11640. ]
  11641. },
  11642. "notification-url": "https://packagist.org/downloads/",
  11643. "license": [
  11644. "BSD-3-Clause"
  11645. ],
  11646. "authors": [
  11647. {
  11648. "name": "Sebastian Bergmann",
  11649. "email": "sebastian@phpunit.de",
  11650. "role": "lead"
  11651. }
  11652. ],
  11653. "description": "Library for counting the lines of code in PHP source code",
  11654. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11655. "support": {
  11656. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11657. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  11658. },
  11659. "funding": [
  11660. {
  11661. "url": "https://github.com/sebastianbergmann",
  11662. "type": "github"
  11663. }
  11664. ],
  11665. "time": "2023-12-22T06:20:34+00:00"
  11666. },
  11667. {
  11668. "name": "sebastian/object-enumerator",
  11669. "version": "4.0.4",
  11670. "source": {
  11671. "type": "git",
  11672. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11673. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  11674. },
  11675. "dist": {
  11676. "type": "zip",
  11677. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  11678. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  11679. "shasum": ""
  11680. },
  11681. "require": {
  11682. "php": ">=7.3",
  11683. "sebastian/object-reflector": "^2.0",
  11684. "sebastian/recursion-context": "^4.0"
  11685. },
  11686. "require-dev": {
  11687. "phpunit/phpunit": "^9.3"
  11688. },
  11689. "type": "library",
  11690. "extra": {
  11691. "branch-alias": {
  11692. "dev-master": "4.0-dev"
  11693. }
  11694. },
  11695. "autoload": {
  11696. "classmap": [
  11697. "src/"
  11698. ]
  11699. },
  11700. "notification-url": "https://packagist.org/downloads/",
  11701. "license": [
  11702. "BSD-3-Clause"
  11703. ],
  11704. "authors": [
  11705. {
  11706. "name": "Sebastian Bergmann",
  11707. "email": "sebastian@phpunit.de"
  11708. }
  11709. ],
  11710. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11711. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11712. "support": {
  11713. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11714. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  11715. },
  11716. "funding": [
  11717. {
  11718. "url": "https://github.com/sebastianbergmann",
  11719. "type": "github"
  11720. }
  11721. ],
  11722. "time": "2020-10-26T13:12:34+00:00"
  11723. },
  11724. {
  11725. "name": "sebastian/object-reflector",
  11726. "version": "2.0.4",
  11727. "source": {
  11728. "type": "git",
  11729. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11730. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  11731. },
  11732. "dist": {
  11733. "type": "zip",
  11734. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11735. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11736. "shasum": ""
  11737. },
  11738. "require": {
  11739. "php": ">=7.3"
  11740. },
  11741. "require-dev": {
  11742. "phpunit/phpunit": "^9.3"
  11743. },
  11744. "type": "library",
  11745. "extra": {
  11746. "branch-alias": {
  11747. "dev-master": "2.0-dev"
  11748. }
  11749. },
  11750. "autoload": {
  11751. "classmap": [
  11752. "src/"
  11753. ]
  11754. },
  11755. "notification-url": "https://packagist.org/downloads/",
  11756. "license": [
  11757. "BSD-3-Clause"
  11758. ],
  11759. "authors": [
  11760. {
  11761. "name": "Sebastian Bergmann",
  11762. "email": "sebastian@phpunit.de"
  11763. }
  11764. ],
  11765. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11766. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11767. "support": {
  11768. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11769. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11770. },
  11771. "funding": [
  11772. {
  11773. "url": "https://github.com/sebastianbergmann",
  11774. "type": "github"
  11775. }
  11776. ],
  11777. "time": "2020-10-26T13:14:26+00:00"
  11778. },
  11779. {
  11780. "name": "sebastian/recursion-context",
  11781. "version": "4.0.5",
  11782. "source": {
  11783. "type": "git",
  11784. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11785. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  11786. },
  11787. "dist": {
  11788. "type": "zip",
  11789. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  11790. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  11791. "shasum": ""
  11792. },
  11793. "require": {
  11794. "php": ">=7.3"
  11795. },
  11796. "require-dev": {
  11797. "phpunit/phpunit": "^9.3"
  11798. },
  11799. "type": "library",
  11800. "extra": {
  11801. "branch-alias": {
  11802. "dev-master": "4.0-dev"
  11803. }
  11804. },
  11805. "autoload": {
  11806. "classmap": [
  11807. "src/"
  11808. ]
  11809. },
  11810. "notification-url": "https://packagist.org/downloads/",
  11811. "license": [
  11812. "BSD-3-Clause"
  11813. ],
  11814. "authors": [
  11815. {
  11816. "name": "Sebastian Bergmann",
  11817. "email": "sebastian@phpunit.de"
  11818. },
  11819. {
  11820. "name": "Jeff Welch",
  11821. "email": "whatthejeff@gmail.com"
  11822. },
  11823. {
  11824. "name": "Adam Harvey",
  11825. "email": "aharvey@php.net"
  11826. }
  11827. ],
  11828. "description": "Provides functionality to recursively process PHP variables",
  11829. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11830. "support": {
  11831. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11832. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  11833. },
  11834. "funding": [
  11835. {
  11836. "url": "https://github.com/sebastianbergmann",
  11837. "type": "github"
  11838. }
  11839. ],
  11840. "time": "2023-02-03T06:07:39+00:00"
  11841. },
  11842. {
  11843. "name": "sebastian/resource-operations",
  11844. "version": "3.0.3",
  11845. "source": {
  11846. "type": "git",
  11847. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11848. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11849. },
  11850. "dist": {
  11851. "type": "zip",
  11852. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11853. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11854. "shasum": ""
  11855. },
  11856. "require": {
  11857. "php": ">=7.3"
  11858. },
  11859. "require-dev": {
  11860. "phpunit/phpunit": "^9.0"
  11861. },
  11862. "type": "library",
  11863. "extra": {
  11864. "branch-alias": {
  11865. "dev-master": "3.0-dev"
  11866. }
  11867. },
  11868. "autoload": {
  11869. "classmap": [
  11870. "src/"
  11871. ]
  11872. },
  11873. "notification-url": "https://packagist.org/downloads/",
  11874. "license": [
  11875. "BSD-3-Clause"
  11876. ],
  11877. "authors": [
  11878. {
  11879. "name": "Sebastian Bergmann",
  11880. "email": "sebastian@phpunit.de"
  11881. }
  11882. ],
  11883. "description": "Provides a list of PHP built-in functions that operate on resources",
  11884. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11885. "support": {
  11886. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11887. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11888. },
  11889. "funding": [
  11890. {
  11891. "url": "https://github.com/sebastianbergmann",
  11892. "type": "github"
  11893. }
  11894. ],
  11895. "time": "2020-09-28T06:45:17+00:00"
  11896. },
  11897. {
  11898. "name": "sebastian/type",
  11899. "version": "3.2.1",
  11900. "source": {
  11901. "type": "git",
  11902. "url": "https://github.com/sebastianbergmann/type.git",
  11903. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  11904. },
  11905. "dist": {
  11906. "type": "zip",
  11907. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11908. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11909. "shasum": ""
  11910. },
  11911. "require": {
  11912. "php": ">=7.3"
  11913. },
  11914. "require-dev": {
  11915. "phpunit/phpunit": "^9.5"
  11916. },
  11917. "type": "library",
  11918. "extra": {
  11919. "branch-alias": {
  11920. "dev-master": "3.2-dev"
  11921. }
  11922. },
  11923. "autoload": {
  11924. "classmap": [
  11925. "src/"
  11926. ]
  11927. },
  11928. "notification-url": "https://packagist.org/downloads/",
  11929. "license": [
  11930. "BSD-3-Clause"
  11931. ],
  11932. "authors": [
  11933. {
  11934. "name": "Sebastian Bergmann",
  11935. "email": "sebastian@phpunit.de",
  11936. "role": "lead"
  11937. }
  11938. ],
  11939. "description": "Collection of value objects that represent the types of the PHP type system",
  11940. "homepage": "https://github.com/sebastianbergmann/type",
  11941. "support": {
  11942. "issues": "https://github.com/sebastianbergmann/type/issues",
  11943. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  11944. },
  11945. "funding": [
  11946. {
  11947. "url": "https://github.com/sebastianbergmann",
  11948. "type": "github"
  11949. }
  11950. ],
  11951. "time": "2023-02-03T06:13:03+00:00"
  11952. },
  11953. {
  11954. "name": "sebastian/version",
  11955. "version": "3.0.2",
  11956. "source": {
  11957. "type": "git",
  11958. "url": "https://github.com/sebastianbergmann/version.git",
  11959. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11960. },
  11961. "dist": {
  11962. "type": "zip",
  11963. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11964. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11965. "shasum": ""
  11966. },
  11967. "require": {
  11968. "php": ">=7.3"
  11969. },
  11970. "type": "library",
  11971. "extra": {
  11972. "branch-alias": {
  11973. "dev-master": "3.0-dev"
  11974. }
  11975. },
  11976. "autoload": {
  11977. "classmap": [
  11978. "src/"
  11979. ]
  11980. },
  11981. "notification-url": "https://packagist.org/downloads/",
  11982. "license": [
  11983. "BSD-3-Clause"
  11984. ],
  11985. "authors": [
  11986. {
  11987. "name": "Sebastian Bergmann",
  11988. "email": "sebastian@phpunit.de",
  11989. "role": "lead"
  11990. }
  11991. ],
  11992. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11993. "homepage": "https://github.com/sebastianbergmann/version",
  11994. "support": {
  11995. "issues": "https://github.com/sebastianbergmann/version/issues",
  11996. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11997. },
  11998. "funding": [
  11999. {
  12000. "url": "https://github.com/sebastianbergmann",
  12001. "type": "github"
  12002. }
  12003. ],
  12004. "time": "2020-09-28T06:39:44+00:00"
  12005. },
  12006. {
  12007. "name": "theseer/tokenizer",
  12008. "version": "1.2.2",
  12009. "source": {
  12010. "type": "git",
  12011. "url": "https://github.com/theseer/tokenizer.git",
  12012. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  12013. },
  12014. "dist": {
  12015. "type": "zip",
  12016. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  12017. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  12018. "shasum": ""
  12019. },
  12020. "require": {
  12021. "ext-dom": "*",
  12022. "ext-tokenizer": "*",
  12023. "ext-xmlwriter": "*",
  12024. "php": "^7.2 || ^8.0"
  12025. },
  12026. "type": "library",
  12027. "autoload": {
  12028. "classmap": [
  12029. "src/"
  12030. ]
  12031. },
  12032. "notification-url": "https://packagist.org/downloads/",
  12033. "license": [
  12034. "BSD-3-Clause"
  12035. ],
  12036. "authors": [
  12037. {
  12038. "name": "Arne Blankerts",
  12039. "email": "arne@blankerts.de",
  12040. "role": "Developer"
  12041. }
  12042. ],
  12043. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12044. "support": {
  12045. "issues": "https://github.com/theseer/tokenizer/issues",
  12046. "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
  12047. },
  12048. "funding": [
  12049. {
  12050. "url": "https://github.com/theseer",
  12051. "type": "github"
  12052. }
  12053. ],
  12054. "time": "2023-11-20T00:12:19+00:00"
  12055. }
  12056. ],
  12057. "aliases": [],
  12058. "minimum-stability": "dev",
  12059. "stability-flags": {
  12060. "getuilaboratory/getui-pushapi-php-client-v2": 20
  12061. },
  12062. "prefer-stable": true,
  12063. "prefer-lowest": false,
  12064. "platform": {
  12065. "php": "^8.0",
  12066. "ext-json": "*"
  12067. },
  12068. "platform-dev": [],
  12069. "plugin-api-version": "2.6.0"
  12070. }