composer.lock 383 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612
  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": "cd6c2af2f41ad9a38dc163d855ad8944",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  20. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.3|^8.0",
  31. "symfony/http-foundation": "^5.3|^6|^7",
  32. "symfony/http-kernel": "^5.3|^6|^7"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.2-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/asm89/stack-cors/issues",
  67. "source": "https://github.com/asm89/stack-cors/tree/v2.2.0"
  68. },
  69. "time": "2023-11-14T13:51:46+00:00"
  70. },
  71. {
  72. "name": "brick/math",
  73. "version": "0.11.0",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/brick/math.git",
  77. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  82. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "php": "^8.0"
  93. },
  94. "require-dev": {
  95. "php-coveralls/php-coveralls": "^2.2",
  96. "phpunit/phpunit": "^9.0",
  97. "vimeo/psalm": "5.0.0"
  98. },
  99. "type": "library",
  100. "autoload": {
  101. "psr-4": {
  102. "Brick\\Math\\": "src/"
  103. }
  104. },
  105. "notification-url": "https://packagist.org/downloads/",
  106. "license": [
  107. "MIT"
  108. ],
  109. "description": "Arbitrary-precision arithmetic library",
  110. "keywords": [
  111. "Arbitrary-precision",
  112. "BigInteger",
  113. "BigRational",
  114. "arithmetic",
  115. "bigdecimal",
  116. "bignum",
  117. "brick",
  118. "math"
  119. ],
  120. "support": {
  121. "issues": "https://github.com/brick/math/issues",
  122. "source": "https://github.com/brick/math/tree/0.11.0"
  123. },
  124. "funding": [
  125. {
  126. "url": "https://github.com/BenMorel",
  127. "type": "github"
  128. }
  129. ],
  130. "time": "2023-01-15T23:15:59+00:00"
  131. },
  132. {
  133. "name": "cache/adapter-common",
  134. "version": "1.3.0",
  135. "source": {
  136. "type": "git",
  137. "url": "https://github.com/php-cache/adapter-common.git",
  138. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479"
  139. },
  140. "dist": {
  141. "type": "zip",
  142. "url": "https://api.github.com/repos/php-cache/adapter-common/zipball/8788309be72aa7be69b88cdc0687549c74a7d479",
  143. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479",
  144. "shasum": "",
  145. "mirrors": [
  146. {
  147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  148. "preferred": true
  149. }
  150. ]
  151. },
  152. "require": {
  153. "cache/tag-interop": "^1.0",
  154. "php": ">=7.4",
  155. "psr/cache": "^1.0 || ^2.0",
  156. "psr/log": "^1.0 || ^2.0 || ^3.0",
  157. "psr/simple-cache": "^1.0"
  158. },
  159. "require-dev": {
  160. "cache/integration-tests": "^0.17",
  161. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  162. },
  163. "type": "library",
  164. "extra": {
  165. "branch-alias": {
  166. "dev-master": "1.1-dev"
  167. }
  168. },
  169. "autoload": {
  170. "psr-4": {
  171. "Cache\\Adapter\\Common\\": ""
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Aaron Scherer",
  181. "email": "aequasi@gmail.com",
  182. "homepage": "https://github.com/aequasi"
  183. },
  184. {
  185. "name": "Tobias Nyholm",
  186. "email": "tobias.nyholm@gmail.com",
  187. "homepage": "https://github.com/nyholm"
  188. }
  189. ],
  190. "description": "Common classes for PSR-6 adapters",
  191. "homepage": "http://www.php-cache.com/en/latest/",
  192. "keywords": [
  193. "cache",
  194. "psr-6",
  195. "tag"
  196. ],
  197. "support": {
  198. "source": "https://github.com/php-cache/adapter-common/tree/1.3.0"
  199. },
  200. "time": "2022-01-15T15:47:19+00:00"
  201. },
  202. {
  203. "name": "cache/filesystem-adapter",
  204. "version": "1.2.0",
  205. "source": {
  206. "type": "git",
  207. "url": "https://github.com/php-cache/filesystem-adapter.git",
  208. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b"
  209. },
  210. "dist": {
  211. "type": "zip",
  212. "url": "https://api.github.com/repos/php-cache/filesystem-adapter/zipball/f1faaae40aaa696ef899cef6f6888aedb90b419b",
  213. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b",
  214. "shasum": "",
  215. "mirrors": [
  216. {
  217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  218. "preferred": true
  219. }
  220. ]
  221. },
  222. "require": {
  223. "cache/adapter-common": "^1.0",
  224. "league/flysystem": "^1.0",
  225. "php": ">=7.4",
  226. "psr/cache": "^1.0 || ^2.0",
  227. "psr/simple-cache": "^1.0"
  228. },
  229. "provide": {
  230. "psr/cache-implementation": "^1.0",
  231. "psr/simple-cache-implementation": "^1.0"
  232. },
  233. "require-dev": {
  234. "cache/integration-tests": "^0.17",
  235. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  236. },
  237. "type": "library",
  238. "extra": {
  239. "branch-alias": {
  240. "dev-master": "1.1-dev"
  241. }
  242. },
  243. "autoload": {
  244. "psr-4": {
  245. "Cache\\Adapter\\Filesystem\\": ""
  246. },
  247. "exclude-from-classmap": [
  248. "/Tests/"
  249. ]
  250. },
  251. "notification-url": "https://packagist.org/downloads/",
  252. "license": [
  253. "MIT"
  254. ],
  255. "authors": [
  256. {
  257. "name": "Aaron Scherer",
  258. "email": "aequasi@gmail.com",
  259. "homepage": "https://github.com/aequasi"
  260. },
  261. {
  262. "name": "Tobias Nyholm",
  263. "email": "tobias.nyholm@gmail.com",
  264. "homepage": "https://github.com/nyholm"
  265. }
  266. ],
  267. "description": "A PSR-6 cache implementation using filesystem. This implementation supports tags",
  268. "homepage": "http://www.php-cache.com/en/latest/",
  269. "keywords": [
  270. "cache",
  271. "filesystem",
  272. "psr-6",
  273. "tag"
  274. ],
  275. "support": {
  276. "source": "https://github.com/php-cache/filesystem-adapter/tree/1.2.0"
  277. },
  278. "time": "2022-01-15T15:47:19+00:00"
  279. },
  280. {
  281. "name": "cache/tag-interop",
  282. "version": "1.1.0",
  283. "source": {
  284. "type": "git",
  285. "url": "https://github.com/php-cache/tag-interop.git",
  286. "reference": "b062b1d735357da50edf8387f7a8696f3027d328"
  287. },
  288. "dist": {
  289. "type": "zip",
  290. "url": "https://api.github.com/repos/php-cache/tag-interop/zipball/b062b1d735357da50edf8387f7a8696f3027d328",
  291. "reference": "b062b1d735357da50edf8387f7a8696f3027d328",
  292. "shasum": "",
  293. "mirrors": [
  294. {
  295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  296. "preferred": true
  297. }
  298. ]
  299. },
  300. "require": {
  301. "php": "^5.5 || ^7.0 || ^8.0",
  302. "psr/cache": "^1.0 || ^2.0"
  303. },
  304. "type": "library",
  305. "extra": {
  306. "branch-alias": {
  307. "dev-master": "1.1-dev"
  308. }
  309. },
  310. "autoload": {
  311. "psr-4": {
  312. "Cache\\TagInterop\\": ""
  313. }
  314. },
  315. "notification-url": "https://packagist.org/downloads/",
  316. "license": [
  317. "MIT"
  318. ],
  319. "authors": [
  320. {
  321. "name": "Tobias Nyholm",
  322. "email": "tobias.nyholm@gmail.com",
  323. "homepage": "https://github.com/nyholm"
  324. },
  325. {
  326. "name": "Nicolas Grekas",
  327. "email": "p@tchwork.com",
  328. "homepage": "https://github.com/nicolas-grekas"
  329. }
  330. ],
  331. "description": "Framework interoperable interfaces for tags",
  332. "homepage": "https://www.php-cache.com/en/latest/",
  333. "keywords": [
  334. "cache",
  335. "psr",
  336. "psr6",
  337. "tag"
  338. ],
  339. "support": {
  340. "issues": "https://github.com/php-cache/tag-interop/issues",
  341. "source": "https://github.com/php-cache/tag-interop/tree/1.1.0"
  342. },
  343. "time": "2021-12-31T10:03:23+00:00"
  344. },
  345. {
  346. "name": "carbonphp/carbon-doctrine-types",
  347. "version": "2.1.0",
  348. "source": {
  349. "type": "git",
  350. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  351. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  352. },
  353. "dist": {
  354. "type": "zip",
  355. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  356. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  357. "shasum": "",
  358. "mirrors": [
  359. {
  360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  361. "preferred": true
  362. }
  363. ]
  364. },
  365. "require": {
  366. "php": "^7.4 || ^8.0"
  367. },
  368. "conflict": {
  369. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  370. },
  371. "require-dev": {
  372. "doctrine/dbal": "^3.7.0",
  373. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  374. "phpunit/phpunit": "^10.3"
  375. },
  376. "type": "library",
  377. "autoload": {
  378. "psr-4": {
  379. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  380. }
  381. },
  382. "notification-url": "https://packagist.org/downloads/",
  383. "license": [
  384. "MIT"
  385. ],
  386. "authors": [
  387. {
  388. "name": "KyleKatarn",
  389. "email": "kylekatarnls@gmail.com"
  390. }
  391. ],
  392. "description": "Types to use Carbon in Doctrine",
  393. "keywords": [
  394. "carbon",
  395. "date",
  396. "datetime",
  397. "doctrine",
  398. "time"
  399. ],
  400. "support": {
  401. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  402. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  403. },
  404. "funding": [
  405. {
  406. "url": "https://github.com/kylekatarnls",
  407. "type": "github"
  408. },
  409. {
  410. "url": "https://opencollective.com/Carbon",
  411. "type": "open_collective"
  412. },
  413. {
  414. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  415. "type": "tidelift"
  416. }
  417. ],
  418. "time": "2023-12-11T17:09:12+00:00"
  419. },
  420. {
  421. "name": "cboden/ratchet",
  422. "version": "v0.4.4",
  423. "source": {
  424. "type": "git",
  425. "url": "https://github.com/ratchetphp/Ratchet.git",
  426. "reference": "5012dc954541b40c5599d286fd40653f5716a38f"
  427. },
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/5012dc954541b40c5599d286fd40653f5716a38f",
  431. "reference": "5012dc954541b40c5599d286fd40653f5716a38f",
  432. "shasum": "",
  433. "mirrors": [
  434. {
  435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  436. "preferred": true
  437. }
  438. ]
  439. },
  440. "require": {
  441. "guzzlehttp/psr7": "^1.7|^2.0",
  442. "php": ">=5.4.2",
  443. "ratchet/rfc6455": "^0.3.1",
  444. "react/event-loop": ">=0.4",
  445. "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5",
  446. "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0",
  447. "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0"
  448. },
  449. "require-dev": {
  450. "phpunit/phpunit": "~4.8"
  451. },
  452. "type": "library",
  453. "autoload": {
  454. "psr-4": {
  455. "Ratchet\\": "src/Ratchet"
  456. }
  457. },
  458. "notification-url": "https://packagist.org/downloads/",
  459. "license": [
  460. "MIT"
  461. ],
  462. "authors": [
  463. {
  464. "name": "Chris Boden",
  465. "email": "cboden@gmail.com",
  466. "role": "Developer"
  467. },
  468. {
  469. "name": "Matt Bonneau",
  470. "role": "Developer"
  471. }
  472. ],
  473. "description": "PHP WebSocket library",
  474. "homepage": "http://socketo.me",
  475. "keywords": [
  476. "Ratchet",
  477. "WebSockets",
  478. "server",
  479. "sockets",
  480. "websocket"
  481. ],
  482. "support": {
  483. "chat": "https://gitter.im/reactphp/reactphp",
  484. "issues": "https://github.com/ratchetphp/Ratchet/issues",
  485. "source": "https://github.com/ratchetphp/Ratchet/tree/v0.4.4"
  486. },
  487. "time": "2021-12-14T00:20:41+00:00"
  488. },
  489. {
  490. "name": "composer/semver",
  491. "version": "3.4.2",
  492. "source": {
  493. "type": "git",
  494. "url": "https://github.com/composer/semver.git",
  495. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6"
  496. },
  497. "dist": {
  498. "type": "zip",
  499. "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  500. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  501. "shasum": "",
  502. "mirrors": [
  503. {
  504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  505. "preferred": true
  506. }
  507. ]
  508. },
  509. "require": {
  510. "php": "^5.3.2 || ^7.0 || ^8.0"
  511. },
  512. "require-dev": {
  513. "phpstan/phpstan": "^1.4",
  514. "symfony/phpunit-bridge": "^4.2 || ^5"
  515. },
  516. "type": "library",
  517. "extra": {
  518. "branch-alias": {
  519. "dev-main": "3.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Composer\\Semver\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Nils Adermann",
  534. "email": "naderman@naderman.de",
  535. "homepage": "http://www.naderman.de"
  536. },
  537. {
  538. "name": "Jordi Boggiano",
  539. "email": "j.boggiano@seld.be",
  540. "homepage": "http://seld.be"
  541. },
  542. {
  543. "name": "Rob Bast",
  544. "email": "rob.bast@gmail.com",
  545. "homepage": "http://robbast.nl"
  546. }
  547. ],
  548. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  549. "keywords": [
  550. "semantic",
  551. "semver",
  552. "validation",
  553. "versioning"
  554. ],
  555. "support": {
  556. "irc": "ircs://irc.libera.chat:6697/composer",
  557. "issues": "https://github.com/composer/semver/issues",
  558. "source": "https://github.com/composer/semver/tree/3.4.2"
  559. },
  560. "funding": [
  561. {
  562. "url": "https://packagist.com",
  563. "type": "custom"
  564. },
  565. {
  566. "url": "https://github.com/composer",
  567. "type": "github"
  568. },
  569. {
  570. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  571. "type": "tidelift"
  572. }
  573. ],
  574. "time": "2024-07-12T11:35:52+00:00"
  575. },
  576. {
  577. "name": "cregis/cregis-sdk-php",
  578. "version": "1.0",
  579. "source": {
  580. "type": "git",
  581. "url": "https://github.com/0xcregis/cregis-sdk-php.git",
  582. "reference": "5746027091941fbd9060530dcc440e9de4e1eda7"
  583. },
  584. "dist": {
  585. "type": "zip",
  586. "url": "https://api.github.com/repos/0xcregis/cregis-sdk-php/zipball/5746027091941fbd9060530dcc440e9de4e1eda7",
  587. "reference": "5746027091941fbd9060530dcc440e9de4e1eda7",
  588. "shasum": "",
  589. "mirrors": [
  590. {
  591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  592. "preferred": true
  593. }
  594. ]
  595. },
  596. "require": {
  597. "hanson/foundation-sdk": "^5.0",
  598. "php": ">=7.0"
  599. },
  600. "require-dev": {
  601. "phpunit/phpunit": "^9.5"
  602. },
  603. "type": "project",
  604. "autoload": {
  605. "psr-4": {
  606. "Cregis\\Dispatch\\": "src/"
  607. }
  608. },
  609. "notification-url": "https://packagist.org/downloads/",
  610. "authors": [
  611. {
  612. "name": "cregis"
  613. }
  614. ],
  615. "description": "cregis-sdk-php",
  616. "support": {
  617. "issues": "https://github.com/0xcregis/cregis-sdk-php/issues",
  618. "source": "https://github.com/0xcregis/cregis-sdk-php/tree/1.0"
  619. },
  620. "time": "2023-11-22T09:26:47+00:00"
  621. },
  622. {
  623. "name": "dflydev/dot-access-data",
  624. "version": "v3.0.3",
  625. "source": {
  626. "type": "git",
  627. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  628. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  629. },
  630. "dist": {
  631. "type": "zip",
  632. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  633. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  634. "shasum": "",
  635. "mirrors": [
  636. {
  637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  638. "preferred": true
  639. }
  640. ]
  641. },
  642. "require": {
  643. "php": "^7.1 || ^8.0"
  644. },
  645. "require-dev": {
  646. "phpstan/phpstan": "^0.12.42",
  647. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  648. "scrutinizer/ocular": "1.6.0",
  649. "squizlabs/php_codesniffer": "^3.5",
  650. "vimeo/psalm": "^4.0.0"
  651. },
  652. "type": "library",
  653. "extra": {
  654. "branch-alias": {
  655. "dev-main": "3.x-dev"
  656. }
  657. },
  658. "autoload": {
  659. "psr-4": {
  660. "Dflydev\\DotAccessData\\": "src/"
  661. }
  662. },
  663. "notification-url": "https://packagist.org/downloads/",
  664. "license": [
  665. "MIT"
  666. ],
  667. "authors": [
  668. {
  669. "name": "Dragonfly Development Inc.",
  670. "email": "info@dflydev.com",
  671. "homepage": "http://dflydev.com"
  672. },
  673. {
  674. "name": "Beau Simensen",
  675. "email": "beau@dflydev.com",
  676. "homepage": "http://beausimensen.com"
  677. },
  678. {
  679. "name": "Carlos Frutos",
  680. "email": "carlos@kiwing.it",
  681. "homepage": "https://github.com/cfrutos"
  682. },
  683. {
  684. "name": "Colin O'Dell",
  685. "email": "colinodell@gmail.com",
  686. "homepage": "https://www.colinodell.com"
  687. }
  688. ],
  689. "description": "Given a deep data structure, access data by dot notation.",
  690. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  691. "keywords": [
  692. "access",
  693. "data",
  694. "dot",
  695. "notation"
  696. ],
  697. "support": {
  698. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  699. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  700. },
  701. "time": "2024-07-08T12:26:09+00:00"
  702. },
  703. {
  704. "name": "doctrine/cache",
  705. "version": "1.13.0",
  706. "source": {
  707. "type": "git",
  708. "url": "https://github.com/doctrine/cache.git",
  709. "reference": "56cd022adb5514472cb144c087393c1821911d09"
  710. },
  711. "dist": {
  712. "type": "zip",
  713. "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09",
  714. "reference": "56cd022adb5514472cb144c087393c1821911d09",
  715. "shasum": "",
  716. "mirrors": [
  717. {
  718. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  719. "preferred": true
  720. }
  721. ]
  722. },
  723. "require": {
  724. "php": "~7.1 || ^8.0"
  725. },
  726. "conflict": {
  727. "doctrine/common": ">2.2,<2.4"
  728. },
  729. "require-dev": {
  730. "alcaeus/mongo-php-adapter": "^1.1",
  731. "cache/integration-tests": "dev-master",
  732. "doctrine/coding-standard": "^9",
  733. "mongodb/mongodb": "^1.1",
  734. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  735. "predis/predis": "~1.0",
  736. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  737. "symfony/cache": "^4.4 || ^5.4 || ^6",
  738. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  739. },
  740. "suggest": {
  741. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  742. },
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Guilherme Blanco",
  756. "email": "guilhermeblanco@gmail.com"
  757. },
  758. {
  759. "name": "Roman Borschel",
  760. "email": "roman@code-factory.org"
  761. },
  762. {
  763. "name": "Benjamin Eberlei",
  764. "email": "kontakt@beberlei.de"
  765. },
  766. {
  767. "name": "Jonathan Wage",
  768. "email": "jonwage@gmail.com"
  769. },
  770. {
  771. "name": "Johannes Schmitt",
  772. "email": "schmittjoh@gmail.com"
  773. }
  774. ],
  775. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  776. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  777. "keywords": [
  778. "abstraction",
  779. "apcu",
  780. "cache",
  781. "caching",
  782. "couchdb",
  783. "memcached",
  784. "php",
  785. "redis",
  786. "xcache"
  787. ],
  788. "support": {
  789. "issues": "https://github.com/doctrine/cache/issues",
  790. "source": "https://github.com/doctrine/cache/tree/1.13.0"
  791. },
  792. "funding": [
  793. {
  794. "url": "https://www.doctrine-project.org/sponsorship.html",
  795. "type": "custom"
  796. },
  797. {
  798. "url": "https://www.patreon.com/phpdoctrine",
  799. "type": "patreon"
  800. },
  801. {
  802. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  803. "type": "tidelift"
  804. }
  805. ],
  806. "time": "2022-05-20T20:06:54+00:00"
  807. },
  808. {
  809. "name": "doctrine/inflector",
  810. "version": "2.0.10",
  811. "source": {
  812. "type": "git",
  813. "url": "https://github.com/doctrine/inflector.git",
  814. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  815. },
  816. "dist": {
  817. "type": "zip",
  818. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  819. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  820. "shasum": "",
  821. "mirrors": [
  822. {
  823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  824. "preferred": true
  825. }
  826. ]
  827. },
  828. "require": {
  829. "php": "^7.2 || ^8.0"
  830. },
  831. "require-dev": {
  832. "doctrine/coding-standard": "^11.0",
  833. "phpstan/phpstan": "^1.8",
  834. "phpstan/phpstan-phpunit": "^1.1",
  835. "phpstan/phpstan-strict-rules": "^1.3",
  836. "phpunit/phpunit": "^8.5 || ^9.5",
  837. "vimeo/psalm": "^4.25 || ^5.4"
  838. },
  839. "type": "library",
  840. "autoload": {
  841. "psr-4": {
  842. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  843. }
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "MIT"
  848. ],
  849. "authors": [
  850. {
  851. "name": "Guilherme Blanco",
  852. "email": "guilhermeblanco@gmail.com"
  853. },
  854. {
  855. "name": "Roman Borschel",
  856. "email": "roman@code-factory.org"
  857. },
  858. {
  859. "name": "Benjamin Eberlei",
  860. "email": "kontakt@beberlei.de"
  861. },
  862. {
  863. "name": "Jonathan Wage",
  864. "email": "jonwage@gmail.com"
  865. },
  866. {
  867. "name": "Johannes Schmitt",
  868. "email": "schmittjoh@gmail.com"
  869. }
  870. ],
  871. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  872. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  873. "keywords": [
  874. "inflection",
  875. "inflector",
  876. "lowercase",
  877. "manipulation",
  878. "php",
  879. "plural",
  880. "singular",
  881. "strings",
  882. "uppercase",
  883. "words"
  884. ],
  885. "support": {
  886. "issues": "https://github.com/doctrine/inflector/issues",
  887. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  888. },
  889. "funding": [
  890. {
  891. "url": "https://www.doctrine-project.org/sponsorship.html",
  892. "type": "custom"
  893. },
  894. {
  895. "url": "https://www.patreon.com/phpdoctrine",
  896. "type": "patreon"
  897. },
  898. {
  899. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  900. "type": "tidelift"
  901. }
  902. ],
  903. "time": "2024-02-18T20:23:39+00:00"
  904. },
  905. {
  906. "name": "doctrine/lexer",
  907. "version": "1.2.3",
  908. "source": {
  909. "type": "git",
  910. "url": "https://github.com/doctrine/lexer.git",
  911. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  912. },
  913. "dist": {
  914. "type": "zip",
  915. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  916. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  917. "shasum": "",
  918. "mirrors": [
  919. {
  920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  921. "preferred": true
  922. }
  923. ]
  924. },
  925. "require": {
  926. "php": "^7.1 || ^8.0"
  927. },
  928. "require-dev": {
  929. "doctrine/coding-standard": "^9.0",
  930. "phpstan/phpstan": "^1.3",
  931. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  932. "vimeo/psalm": "^4.11"
  933. },
  934. "type": "library",
  935. "autoload": {
  936. "psr-4": {
  937. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  938. }
  939. },
  940. "notification-url": "https://packagist.org/downloads/",
  941. "license": [
  942. "MIT"
  943. ],
  944. "authors": [
  945. {
  946. "name": "Guilherme Blanco",
  947. "email": "guilhermeblanco@gmail.com"
  948. },
  949. {
  950. "name": "Roman Borschel",
  951. "email": "roman@code-factory.org"
  952. },
  953. {
  954. "name": "Johannes Schmitt",
  955. "email": "schmittjoh@gmail.com"
  956. }
  957. ],
  958. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  959. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  960. "keywords": [
  961. "annotations",
  962. "docblock",
  963. "lexer",
  964. "parser",
  965. "php"
  966. ],
  967. "support": {
  968. "issues": "https://github.com/doctrine/lexer/issues",
  969. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  970. },
  971. "funding": [
  972. {
  973. "url": "https://www.doctrine-project.org/sponsorship.html",
  974. "type": "custom"
  975. },
  976. {
  977. "url": "https://www.patreon.com/phpdoctrine",
  978. "type": "patreon"
  979. },
  980. {
  981. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  982. "type": "tidelift"
  983. }
  984. ],
  985. "time": "2022-02-28T11:07:21+00:00"
  986. },
  987. {
  988. "name": "dragonmantank/cron-expression",
  989. "version": "v3.3.3",
  990. "source": {
  991. "type": "git",
  992. "url": "https://github.com/dragonmantank/cron-expression.git",
  993. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  994. },
  995. "dist": {
  996. "type": "zip",
  997. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  998. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  999. "shasum": "",
  1000. "mirrors": [
  1001. {
  1002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1003. "preferred": true
  1004. }
  1005. ]
  1006. },
  1007. "require": {
  1008. "php": "^7.2|^8.0",
  1009. "webmozart/assert": "^1.0"
  1010. },
  1011. "replace": {
  1012. "mtdowling/cron-expression": "^1.0"
  1013. },
  1014. "require-dev": {
  1015. "phpstan/extension-installer": "^1.0",
  1016. "phpstan/phpstan": "^1.0",
  1017. "phpstan/phpstan-webmozart-assert": "^1.0",
  1018. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1019. },
  1020. "type": "library",
  1021. "autoload": {
  1022. "psr-4": {
  1023. "Cron\\": "src/Cron/"
  1024. }
  1025. },
  1026. "notification-url": "https://packagist.org/downloads/",
  1027. "license": [
  1028. "MIT"
  1029. ],
  1030. "authors": [
  1031. {
  1032. "name": "Chris Tankersley",
  1033. "email": "chris@ctankersley.com",
  1034. "homepage": "https://github.com/dragonmantank"
  1035. }
  1036. ],
  1037. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1038. "keywords": [
  1039. "cron",
  1040. "schedule"
  1041. ],
  1042. "support": {
  1043. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1044. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1045. },
  1046. "funding": [
  1047. {
  1048. "url": "https://github.com/dragonmantank",
  1049. "type": "github"
  1050. }
  1051. ],
  1052. "time": "2023-08-10T19:36:49+00:00"
  1053. },
  1054. {
  1055. "name": "earnp/laravel-google-authenticator",
  1056. "version": "dev-master",
  1057. "source": {
  1058. "type": "git",
  1059. "url": "https://github.com/lusongcn/laravel-google-authenticator.git",
  1060. "reference": "dfecec37b8c3961eb124888b93539d7b0e05b00d"
  1061. },
  1062. "dist": {
  1063. "type": "zip",
  1064. "url": "https://api.github.com/repos/lusongcn/laravel-google-authenticator/zipball/dfecec37b8c3961eb124888b93539d7b0e05b00d",
  1065. "reference": "dfecec37b8c3961eb124888b93539d7b0e05b00d",
  1066. "shasum": "",
  1067. "mirrors": [
  1068. {
  1069. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1070. "preferred": true
  1071. }
  1072. ]
  1073. },
  1074. "default-branch": true,
  1075. "type": "library",
  1076. "autoload": {
  1077. "psr-4": {
  1078. "Earnp\\GoogleAuthenticator\\": "src/"
  1079. }
  1080. },
  1081. "notification-url": "https://packagist.org/downloads/",
  1082. "license": [
  1083. "MIT"
  1084. ],
  1085. "authors": [
  1086. {
  1087. "name": "lusong",
  1088. "email": "714628712@qq.com",
  1089. "homepage": "https://phpartisan.cn"
  1090. }
  1091. ],
  1092. "description": "Laravel 5 GoogleAuthenticator Package",
  1093. "support": {
  1094. "issues": "https://github.com/lusongcn/laravel-google-authenticator/issues",
  1095. "source": "https://github.com/lusongcn/laravel-google-authenticator/tree/master"
  1096. },
  1097. "time": "2020-09-10T15:15:35+00:00"
  1098. },
  1099. {
  1100. "name": "egulias/email-validator",
  1101. "version": "2.1.25",
  1102. "source": {
  1103. "type": "git",
  1104. "url": "https://github.com/egulias/EmailValidator.git",
  1105. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1106. },
  1107. "dist": {
  1108. "type": "zip",
  1109. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1110. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1111. "shasum": "",
  1112. "mirrors": [
  1113. {
  1114. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1115. "preferred": true
  1116. }
  1117. ]
  1118. },
  1119. "require": {
  1120. "doctrine/lexer": "^1.0.1",
  1121. "php": ">=5.5",
  1122. "symfony/polyfill-intl-idn": "^1.10"
  1123. },
  1124. "require-dev": {
  1125. "dominicsayers/isemail": "^3.0.7",
  1126. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1127. "satooshi/php-coveralls": "^1.0.1"
  1128. },
  1129. "suggest": {
  1130. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1131. },
  1132. "type": "library",
  1133. "extra": {
  1134. "branch-alias": {
  1135. "dev-master": "2.1.x-dev"
  1136. }
  1137. },
  1138. "autoload": {
  1139. "psr-4": {
  1140. "Egulias\\EmailValidator\\": "src"
  1141. }
  1142. },
  1143. "notification-url": "https://packagist.org/downloads/",
  1144. "license": [
  1145. "MIT"
  1146. ],
  1147. "authors": [
  1148. {
  1149. "name": "Eduardo Gulias Davis"
  1150. }
  1151. ],
  1152. "description": "A library for validating emails against several RFCs",
  1153. "homepage": "https://github.com/egulias/EmailValidator",
  1154. "keywords": [
  1155. "email",
  1156. "emailvalidation",
  1157. "emailvalidator",
  1158. "validation",
  1159. "validator"
  1160. ],
  1161. "support": {
  1162. "issues": "https://github.com/egulias/EmailValidator/issues",
  1163. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1164. },
  1165. "funding": [
  1166. {
  1167. "url": "https://github.com/egulias",
  1168. "type": "github"
  1169. }
  1170. ],
  1171. "time": "2020-12-29T14:50:06+00:00"
  1172. },
  1173. {
  1174. "name": "evenement/evenement",
  1175. "version": "v3.0.2",
  1176. "source": {
  1177. "type": "git",
  1178. "url": "https://github.com/igorw/evenement.git",
  1179. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  1180. },
  1181. "dist": {
  1182. "type": "zip",
  1183. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1184. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1185. "shasum": "",
  1186. "mirrors": [
  1187. {
  1188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1189. "preferred": true
  1190. }
  1191. ]
  1192. },
  1193. "require": {
  1194. "php": ">=7.0"
  1195. },
  1196. "require-dev": {
  1197. "phpunit/phpunit": "^9 || ^6"
  1198. },
  1199. "type": "library",
  1200. "autoload": {
  1201. "psr-4": {
  1202. "Evenement\\": "src/"
  1203. }
  1204. },
  1205. "notification-url": "https://packagist.org/downloads/",
  1206. "license": [
  1207. "MIT"
  1208. ],
  1209. "authors": [
  1210. {
  1211. "name": "Igor Wiedler",
  1212. "email": "igor@wiedler.ch"
  1213. }
  1214. ],
  1215. "description": "Événement is a very simple event dispatching library for PHP",
  1216. "keywords": [
  1217. "event-dispatcher",
  1218. "event-emitter"
  1219. ],
  1220. "support": {
  1221. "issues": "https://github.com/igorw/evenement/issues",
  1222. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  1223. },
  1224. "time": "2023-08-08T05:53:35+00:00"
  1225. },
  1226. {
  1227. "name": "ezyang/htmlpurifier",
  1228. "version": "v4.16.0",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/ezyang/htmlpurifier.git",
  1232. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1237. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1238. "shasum": "",
  1239. "mirrors": [
  1240. {
  1241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1242. "preferred": true
  1243. }
  1244. ]
  1245. },
  1246. "require": {
  1247. "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"
  1248. },
  1249. "require-dev": {
  1250. "cerdic/css-tidy": "^1.7 || ^2.0",
  1251. "simpletest/simpletest": "dev-master"
  1252. },
  1253. "suggest": {
  1254. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1255. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1256. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1257. "ext-tidy": "Used for pretty-printing HTML"
  1258. },
  1259. "type": "library",
  1260. "autoload": {
  1261. "files": [
  1262. "library/HTMLPurifier.composer.php"
  1263. ],
  1264. "psr-0": {
  1265. "HTMLPurifier": "library/"
  1266. },
  1267. "exclude-from-classmap": [
  1268. "/library/HTMLPurifier/Language/"
  1269. ]
  1270. },
  1271. "notification-url": "https://packagist.org/downloads/",
  1272. "license": [
  1273. "LGPL-2.1-or-later"
  1274. ],
  1275. "authors": [
  1276. {
  1277. "name": "Edward Z. Yang",
  1278. "email": "admin@htmlpurifier.org",
  1279. "homepage": "http://ezyang.com"
  1280. }
  1281. ],
  1282. "description": "Standards compliant HTML filter written in PHP",
  1283. "homepage": "http://htmlpurifier.org/",
  1284. "keywords": [
  1285. "html"
  1286. ],
  1287. "support": {
  1288. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1289. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  1290. },
  1291. "time": "2022-09-18T07:06:19+00:00"
  1292. },
  1293. {
  1294. "name": "fideloper/proxy",
  1295. "version": "4.4.2",
  1296. "source": {
  1297. "type": "git",
  1298. "url": "https://github.com/fideloper/TrustedProxy.git",
  1299. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1300. },
  1301. "dist": {
  1302. "type": "zip",
  1303. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1304. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1305. "shasum": "",
  1306. "mirrors": [
  1307. {
  1308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1309. "preferred": true
  1310. }
  1311. ]
  1312. },
  1313. "require": {
  1314. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1315. "php": ">=5.4.0"
  1316. },
  1317. "require-dev": {
  1318. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1319. "mockery/mockery": "^1.0",
  1320. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1321. },
  1322. "type": "library",
  1323. "extra": {
  1324. "laravel": {
  1325. "providers": [
  1326. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1327. ]
  1328. }
  1329. },
  1330. "autoload": {
  1331. "psr-4": {
  1332. "Fideloper\\Proxy\\": "src/"
  1333. }
  1334. },
  1335. "notification-url": "https://packagist.org/downloads/",
  1336. "license": [
  1337. "MIT"
  1338. ],
  1339. "authors": [
  1340. {
  1341. "name": "Chris Fidao",
  1342. "email": "fideloper@gmail.com"
  1343. }
  1344. ],
  1345. "description": "Set trusted proxies for Laravel",
  1346. "keywords": [
  1347. "load balancing",
  1348. "proxy",
  1349. "trusted proxy"
  1350. ],
  1351. "support": {
  1352. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1353. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1354. },
  1355. "time": "2022-02-09T13:33:34+00:00"
  1356. },
  1357. {
  1358. "name": "fruitcake/laravel-cors",
  1359. "version": "v2.2.0",
  1360. "source": {
  1361. "type": "git",
  1362. "url": "https://github.com/fruitcake/laravel-cors.git",
  1363. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1364. },
  1365. "dist": {
  1366. "type": "zip",
  1367. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1368. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1369. "shasum": "",
  1370. "mirrors": [
  1371. {
  1372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1373. "preferred": true
  1374. }
  1375. ]
  1376. },
  1377. "require": {
  1378. "asm89/stack-cors": "^2.0.1",
  1379. "illuminate/contracts": "^6|^7|^8|^9",
  1380. "illuminate/support": "^6|^7|^8|^9",
  1381. "php": ">=7.2"
  1382. },
  1383. "require-dev": {
  1384. "laravel/framework": "^6|^7.24|^8",
  1385. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1386. "phpunit/phpunit": "^6|^7|^8|^9",
  1387. "squizlabs/php_codesniffer": "^3.5"
  1388. },
  1389. "type": "library",
  1390. "extra": {
  1391. "branch-alias": {
  1392. "dev-master": "2.1-dev"
  1393. },
  1394. "laravel": {
  1395. "providers": [
  1396. "Fruitcake\\Cors\\CorsServiceProvider"
  1397. ]
  1398. }
  1399. },
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Fruitcake\\Cors\\": "src/"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "Fruitcake",
  1412. "homepage": "https://fruitcake.nl"
  1413. },
  1414. {
  1415. "name": "Barry vd. Heuvel",
  1416. "email": "barryvdh@gmail.com"
  1417. }
  1418. ],
  1419. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1420. "keywords": [
  1421. "api",
  1422. "cors",
  1423. "crossdomain",
  1424. "laravel"
  1425. ],
  1426. "support": {
  1427. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1428. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1429. },
  1430. "funding": [
  1431. {
  1432. "url": "https://fruitcake.nl",
  1433. "type": "custom"
  1434. },
  1435. {
  1436. "url": "https://github.com/barryvdh",
  1437. "type": "github"
  1438. }
  1439. ],
  1440. "abandoned": true,
  1441. "time": "2022-02-23T14:25:13+00:00"
  1442. },
  1443. {
  1444. "name": "graham-campbell/result-type",
  1445. "version": "1.1.x-dev",
  1446. "source": {
  1447. "type": "git",
  1448. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1449. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1450. },
  1451. "dist": {
  1452. "type": "zip",
  1453. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1454. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1455. "shasum": "",
  1456. "mirrors": [
  1457. {
  1458. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1459. "preferred": true
  1460. }
  1461. ]
  1462. },
  1463. "require": {
  1464. "php": "^7.2.5 || ^8.0",
  1465. "phpoption/phpoption": "^1.9.3"
  1466. },
  1467. "require-dev": {
  1468. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1469. },
  1470. "default-branch": true,
  1471. "type": "library",
  1472. "autoload": {
  1473. "psr-4": {
  1474. "GrahamCampbell\\ResultType\\": "src/"
  1475. }
  1476. },
  1477. "notification-url": "https://packagist.org/downloads/",
  1478. "license": [
  1479. "MIT"
  1480. ],
  1481. "authors": [
  1482. {
  1483. "name": "Graham Campbell",
  1484. "email": "hello@gjcampbell.co.uk",
  1485. "homepage": "https://github.com/GrahamCampbell"
  1486. }
  1487. ],
  1488. "description": "An Implementation Of The Result Type",
  1489. "keywords": [
  1490. "Graham Campbell",
  1491. "GrahamCampbell",
  1492. "Result Type",
  1493. "Result-Type",
  1494. "result"
  1495. ],
  1496. "support": {
  1497. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1498. "source": "https://github.com/GrahamCampbell/Result-Type/tree/1.1"
  1499. },
  1500. "funding": [
  1501. {
  1502. "url": "https://github.com/GrahamCampbell",
  1503. "type": "github"
  1504. },
  1505. {
  1506. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1507. "type": "tidelift"
  1508. }
  1509. ],
  1510. "time": "2024-07-20T21:45:45+00:00"
  1511. },
  1512. {
  1513. "name": "gregwar/captcha",
  1514. "version": "v1.2.1",
  1515. "source": {
  1516. "type": "git",
  1517. "url": "https://github.com/Gregwar/Captcha.git",
  1518. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  1519. },
  1520. "dist": {
  1521. "type": "zip",
  1522. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1523. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1524. "shasum": "",
  1525. "mirrors": [
  1526. {
  1527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1528. "preferred": true
  1529. }
  1530. ]
  1531. },
  1532. "require": {
  1533. "ext-gd": "*",
  1534. "ext-mbstring": "*",
  1535. "php": ">=5.3.0",
  1536. "symfony/finder": "*"
  1537. },
  1538. "require-dev": {
  1539. "phpunit/phpunit": "^6.4"
  1540. },
  1541. "type": "library",
  1542. "autoload": {
  1543. "psr-4": {
  1544. "Gregwar\\": "src/Gregwar"
  1545. }
  1546. },
  1547. "notification-url": "https://packagist.org/downloads/",
  1548. "license": [
  1549. "MIT"
  1550. ],
  1551. "authors": [
  1552. {
  1553. "name": "Grégoire Passault",
  1554. "email": "g.passault@gmail.com",
  1555. "homepage": "http://www.gregwar.com/"
  1556. },
  1557. {
  1558. "name": "Jeremy Livingston",
  1559. "email": "jeremy.j.livingston@gmail.com"
  1560. }
  1561. ],
  1562. "description": "Captcha generator",
  1563. "homepage": "https://github.com/Gregwar/Captcha",
  1564. "keywords": [
  1565. "bot",
  1566. "captcha",
  1567. "spam"
  1568. ],
  1569. "support": {
  1570. "issues": "https://github.com/Gregwar/Captcha/issues",
  1571. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  1572. },
  1573. "time": "2023-09-26T13:45:37+00:00"
  1574. },
  1575. {
  1576. "name": "guzzlehttp/guzzle",
  1577. "version": "7.9.2",
  1578. "source": {
  1579. "type": "git",
  1580. "url": "https://github.com/guzzle/guzzle.git",
  1581. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1582. },
  1583. "dist": {
  1584. "type": "zip",
  1585. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1586. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1587. "shasum": "",
  1588. "mirrors": [
  1589. {
  1590. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1591. "preferred": true
  1592. }
  1593. ]
  1594. },
  1595. "require": {
  1596. "ext-json": "*",
  1597. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1598. "guzzlehttp/psr7": "^2.7.0",
  1599. "php": "^7.2.5 || ^8.0",
  1600. "psr/http-client": "^1.0",
  1601. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1602. },
  1603. "provide": {
  1604. "psr/http-client-implementation": "1.0"
  1605. },
  1606. "require-dev": {
  1607. "bamarni/composer-bin-plugin": "^1.8.2",
  1608. "ext-curl": "*",
  1609. "guzzle/client-integration-tests": "3.0.2",
  1610. "php-http/message-factory": "^1.1",
  1611. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1612. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1613. },
  1614. "suggest": {
  1615. "ext-curl": "Required for CURL handler support",
  1616. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1617. "psr/log": "Required for using the Log middleware"
  1618. },
  1619. "type": "library",
  1620. "extra": {
  1621. "bamarni-bin": {
  1622. "bin-links": true,
  1623. "forward-command": false
  1624. }
  1625. },
  1626. "autoload": {
  1627. "files": [
  1628. "src/functions_include.php"
  1629. ],
  1630. "psr-4": {
  1631. "GuzzleHttp\\": "src/"
  1632. }
  1633. },
  1634. "notification-url": "https://packagist.org/downloads/",
  1635. "license": [
  1636. "MIT"
  1637. ],
  1638. "authors": [
  1639. {
  1640. "name": "Graham Campbell",
  1641. "email": "hello@gjcampbell.co.uk",
  1642. "homepage": "https://github.com/GrahamCampbell"
  1643. },
  1644. {
  1645. "name": "Michael Dowling",
  1646. "email": "mtdowling@gmail.com",
  1647. "homepage": "https://github.com/mtdowling"
  1648. },
  1649. {
  1650. "name": "Jeremy Lindblom",
  1651. "email": "jeremeamia@gmail.com",
  1652. "homepage": "https://github.com/jeremeamia"
  1653. },
  1654. {
  1655. "name": "George Mponos",
  1656. "email": "gmponos@gmail.com",
  1657. "homepage": "https://github.com/gmponos"
  1658. },
  1659. {
  1660. "name": "Tobias Nyholm",
  1661. "email": "tobias.nyholm@gmail.com",
  1662. "homepage": "https://github.com/Nyholm"
  1663. },
  1664. {
  1665. "name": "Márk Sági-Kazár",
  1666. "email": "mark.sagikazar@gmail.com",
  1667. "homepage": "https://github.com/sagikazarmark"
  1668. },
  1669. {
  1670. "name": "Tobias Schultze",
  1671. "email": "webmaster@tubo-world.de",
  1672. "homepage": "https://github.com/Tobion"
  1673. }
  1674. ],
  1675. "description": "Guzzle is a PHP HTTP client library",
  1676. "keywords": [
  1677. "client",
  1678. "curl",
  1679. "framework",
  1680. "http",
  1681. "http client",
  1682. "psr-18",
  1683. "psr-7",
  1684. "rest",
  1685. "web service"
  1686. ],
  1687. "support": {
  1688. "issues": "https://github.com/guzzle/guzzle/issues",
  1689. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1690. },
  1691. "funding": [
  1692. {
  1693. "url": "https://github.com/GrahamCampbell",
  1694. "type": "github"
  1695. },
  1696. {
  1697. "url": "https://github.com/Nyholm",
  1698. "type": "github"
  1699. },
  1700. {
  1701. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1702. "type": "tidelift"
  1703. }
  1704. ],
  1705. "time": "2024-07-24T11:22:20+00:00"
  1706. },
  1707. {
  1708. "name": "guzzlehttp/promises",
  1709. "version": "1.5.3",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/guzzle/promises.git",
  1713. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1718. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1719. "shasum": "",
  1720. "mirrors": [
  1721. {
  1722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1723. "preferred": true
  1724. }
  1725. ]
  1726. },
  1727. "require": {
  1728. "php": ">=5.5"
  1729. },
  1730. "require-dev": {
  1731. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1732. },
  1733. "type": "library",
  1734. "autoload": {
  1735. "files": [
  1736. "src/functions_include.php"
  1737. ],
  1738. "psr-4": {
  1739. "GuzzleHttp\\Promise\\": "src/"
  1740. }
  1741. },
  1742. "notification-url": "https://packagist.org/downloads/",
  1743. "license": [
  1744. "MIT"
  1745. ],
  1746. "authors": [
  1747. {
  1748. "name": "Graham Campbell",
  1749. "email": "hello@gjcampbell.co.uk",
  1750. "homepage": "https://github.com/GrahamCampbell"
  1751. },
  1752. {
  1753. "name": "Michael Dowling",
  1754. "email": "mtdowling@gmail.com",
  1755. "homepage": "https://github.com/mtdowling"
  1756. },
  1757. {
  1758. "name": "Tobias Nyholm",
  1759. "email": "tobias.nyholm@gmail.com",
  1760. "homepage": "https://github.com/Nyholm"
  1761. },
  1762. {
  1763. "name": "Tobias Schultze",
  1764. "email": "webmaster@tubo-world.de",
  1765. "homepage": "https://github.com/Tobion"
  1766. }
  1767. ],
  1768. "description": "Guzzle promises library",
  1769. "keywords": [
  1770. "promise"
  1771. ],
  1772. "support": {
  1773. "issues": "https://github.com/guzzle/promises/issues",
  1774. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  1775. },
  1776. "funding": [
  1777. {
  1778. "url": "https://github.com/GrahamCampbell",
  1779. "type": "github"
  1780. },
  1781. {
  1782. "url": "https://github.com/Nyholm",
  1783. "type": "github"
  1784. },
  1785. {
  1786. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1787. "type": "tidelift"
  1788. }
  1789. ],
  1790. "time": "2023-05-21T12:31:43+00:00"
  1791. },
  1792. {
  1793. "name": "guzzlehttp/psr7",
  1794. "version": "2.7.0",
  1795. "source": {
  1796. "type": "git",
  1797. "url": "https://github.com/guzzle/psr7.git",
  1798. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1799. },
  1800. "dist": {
  1801. "type": "zip",
  1802. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1803. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1804. "shasum": "",
  1805. "mirrors": [
  1806. {
  1807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1808. "preferred": true
  1809. }
  1810. ]
  1811. },
  1812. "require": {
  1813. "php": "^7.2.5 || ^8.0",
  1814. "psr/http-factory": "^1.0",
  1815. "psr/http-message": "^1.1 || ^2.0",
  1816. "ralouphie/getallheaders": "^3.0"
  1817. },
  1818. "provide": {
  1819. "psr/http-factory-implementation": "1.0",
  1820. "psr/http-message-implementation": "1.0"
  1821. },
  1822. "require-dev": {
  1823. "bamarni/composer-bin-plugin": "^1.8.2",
  1824. "http-interop/http-factory-tests": "0.9.0",
  1825. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1826. },
  1827. "suggest": {
  1828. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1829. },
  1830. "type": "library",
  1831. "extra": {
  1832. "bamarni-bin": {
  1833. "bin-links": true,
  1834. "forward-command": false
  1835. }
  1836. },
  1837. "autoload": {
  1838. "psr-4": {
  1839. "GuzzleHttp\\Psr7\\": "src/"
  1840. }
  1841. },
  1842. "notification-url": "https://packagist.org/downloads/",
  1843. "license": [
  1844. "MIT"
  1845. ],
  1846. "authors": [
  1847. {
  1848. "name": "Graham Campbell",
  1849. "email": "hello@gjcampbell.co.uk",
  1850. "homepage": "https://github.com/GrahamCampbell"
  1851. },
  1852. {
  1853. "name": "Michael Dowling",
  1854. "email": "mtdowling@gmail.com",
  1855. "homepage": "https://github.com/mtdowling"
  1856. },
  1857. {
  1858. "name": "George Mponos",
  1859. "email": "gmponos@gmail.com",
  1860. "homepage": "https://github.com/gmponos"
  1861. },
  1862. {
  1863. "name": "Tobias Nyholm",
  1864. "email": "tobias.nyholm@gmail.com",
  1865. "homepage": "https://github.com/Nyholm"
  1866. },
  1867. {
  1868. "name": "Márk Sági-Kazár",
  1869. "email": "mark.sagikazar@gmail.com",
  1870. "homepage": "https://github.com/sagikazarmark"
  1871. },
  1872. {
  1873. "name": "Tobias Schultze",
  1874. "email": "webmaster@tubo-world.de",
  1875. "homepage": "https://github.com/Tobion"
  1876. },
  1877. {
  1878. "name": "Márk Sági-Kazár",
  1879. "email": "mark.sagikazar@gmail.com",
  1880. "homepage": "https://sagikazarmark.hu"
  1881. }
  1882. ],
  1883. "description": "PSR-7 message implementation that also provides common utility methods",
  1884. "keywords": [
  1885. "http",
  1886. "message",
  1887. "psr-7",
  1888. "request",
  1889. "response",
  1890. "stream",
  1891. "uri",
  1892. "url"
  1893. ],
  1894. "support": {
  1895. "issues": "https://github.com/guzzle/psr7/issues",
  1896. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1897. },
  1898. "funding": [
  1899. {
  1900. "url": "https://github.com/GrahamCampbell",
  1901. "type": "github"
  1902. },
  1903. {
  1904. "url": "https://github.com/Nyholm",
  1905. "type": "github"
  1906. },
  1907. {
  1908. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1909. "type": "tidelift"
  1910. }
  1911. ],
  1912. "time": "2024-07-18T11:15:46+00:00"
  1913. },
  1914. {
  1915. "name": "hanson/foundation-sdk",
  1916. "version": "5.0.2",
  1917. "source": {
  1918. "type": "git",
  1919. "url": "https://github.com/Hanson/foundation-sdk.git",
  1920. "reference": "cffcef228937105b8c87c1376548b56f3e0564a4"
  1921. },
  1922. "dist": {
  1923. "type": "zip",
  1924. "url": "https://api.github.com/repos/Hanson/foundation-sdk/zipball/cffcef228937105b8c87c1376548b56f3e0564a4",
  1925. "reference": "cffcef228937105b8c87c1376548b56f3e0564a4",
  1926. "shasum": "",
  1927. "mirrors": [
  1928. {
  1929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1930. "preferred": true
  1931. }
  1932. ]
  1933. },
  1934. "require": {
  1935. "doctrine/cache": "^1.6",
  1936. "ext-curl": "*",
  1937. "guzzlehttp/guzzle": "^6.2|^7.0",
  1938. "monolog/monolog": "^1.22|^2.0|^3.0",
  1939. "php": "^7.0|^8.0",
  1940. "pimple/pimple": "^3.0",
  1941. "symfony/http-foundation": "^3.3|^4.0|^5.0|^6.0"
  1942. },
  1943. "require-dev": {
  1944. "phpunit/phpunit": "^9.3"
  1945. },
  1946. "type": "library",
  1947. "autoload": {
  1948. "psr-4": {
  1949. "Hanson\\Foundation\\": "src/"
  1950. }
  1951. },
  1952. "notification-url": "https://packagist.org/downloads/",
  1953. "license": [
  1954. "MIT"
  1955. ],
  1956. "authors": [
  1957. {
  1958. "name": "HanSon",
  1959. "email": "h@hanc.cc"
  1960. }
  1961. ],
  1962. "support": {
  1963. "issues": "https://github.com/Hanson/foundation-sdk/issues",
  1964. "source": "https://github.com/Hanson/foundation-sdk/tree/5.0.2"
  1965. },
  1966. "time": "2023-05-31T05:51:32+00:00"
  1967. },
  1968. {
  1969. "name": "jaeger/g-http",
  1970. "version": "V1.7.3",
  1971. "source": {
  1972. "type": "git",
  1973. "url": "https://github.com/jae-jae/GHttp.git",
  1974. "reference": "035fe0ff6e3e0390769647ce14694875bf02cf22"
  1975. },
  1976. "dist": {
  1977. "type": "zip",
  1978. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/035fe0ff6e3e0390769647ce14694875bf02cf22",
  1979. "reference": "035fe0ff6e3e0390769647ce14694875bf02cf22",
  1980. "shasum": "",
  1981. "mirrors": [
  1982. {
  1983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1984. "preferred": true
  1985. }
  1986. ]
  1987. },
  1988. "require": {
  1989. "cache/filesystem-adapter": "^1",
  1990. "guzzlehttp/guzzle": "^6.0 || ^7.0"
  1991. },
  1992. "type": "library",
  1993. "autoload": {
  1994. "psr-4": {
  1995. "Jaeger\\": "src"
  1996. }
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Jaeger",
  2005. "email": "JaegerCode@gmail.com"
  2006. }
  2007. ],
  2008. "description": "Simple Http client base on GuzzleHttp",
  2009. "support": {
  2010. "issues": "https://github.com/jae-jae/GHttp/issues",
  2011. "source": "https://github.com/jae-jae/GHttp/tree/V1.7.3"
  2012. },
  2013. "time": "2024-03-24T14:55:49+00:00"
  2014. },
  2015. {
  2016. "name": "jaeger/phpquery-single",
  2017. "version": "1.1.1",
  2018. "source": {
  2019. "type": "git",
  2020. "url": "https://github.com/jae-jae/phpQuery-single.git",
  2021. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  2022. },
  2023. "dist": {
  2024. "type": "zip",
  2025. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  2026. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  2027. "shasum": "",
  2028. "mirrors": [
  2029. {
  2030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2031. "preferred": true
  2032. }
  2033. ]
  2034. },
  2035. "require": {
  2036. "php": ">=5.3.0"
  2037. },
  2038. "type": "library",
  2039. "autoload": {
  2040. "classmap": [
  2041. "phpQuery.php"
  2042. ]
  2043. },
  2044. "notification-url": "https://packagist.org/downloads/",
  2045. "license": [
  2046. "MIT"
  2047. ],
  2048. "authors": [
  2049. {
  2050. "name": "Tobiasz Cudnik",
  2051. "email": "tobiasz.cudnik@gmail.com",
  2052. "homepage": "https://github.com/TobiaszCudnik",
  2053. "role": "Developer"
  2054. },
  2055. {
  2056. "name": "Jaeger",
  2057. "role": "Packager"
  2058. }
  2059. ],
  2060. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  2061. "homepage": "http://code.google.com/p/phpquery/",
  2062. "support": {
  2063. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  2064. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  2065. },
  2066. "time": "2022-03-26T15:01:16+00:00"
  2067. },
  2068. {
  2069. "name": "jaeger/querylist",
  2070. "version": "V4.4.0",
  2071. "source": {
  2072. "type": "git",
  2073. "url": "https://github.com/jae-jae/QueryList.git",
  2074. "reference": "6492f1512a0206a2f144658d91aaae8957f1c1a3"
  2075. },
  2076. "dist": {
  2077. "type": "zip",
  2078. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/6492f1512a0206a2f144658d91aaae8957f1c1a3",
  2079. "reference": "6492f1512a0206a2f144658d91aaae8957f1c1a3",
  2080. "shasum": "",
  2081. "mirrors": [
  2082. {
  2083. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2084. "preferred": true
  2085. }
  2086. ]
  2087. },
  2088. "require": {
  2089. "ext-dom": "*",
  2090. "jaeger/g-http": "^1.1",
  2091. "jaeger/phpquery-single": "^1",
  2092. "php": ">=8.0",
  2093. "symfony/var-dumper": ">3.4"
  2094. },
  2095. "require-dev": {
  2096. "phpunit/phpunit": "^8.5"
  2097. },
  2098. "type": "library",
  2099. "autoload": {
  2100. "psr-4": {
  2101. "QL\\": "src"
  2102. }
  2103. },
  2104. "notification-url": "https://packagist.org/downloads/",
  2105. "license": [
  2106. "MIT"
  2107. ],
  2108. "authors": [
  2109. {
  2110. "name": "Jaeger",
  2111. "email": "JaegerCode@gmail.com"
  2112. }
  2113. ],
  2114. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  2115. "homepage": "http://querylist.cc",
  2116. "keywords": [
  2117. "QueryList",
  2118. "phpQuery",
  2119. "spider"
  2120. ],
  2121. "support": {
  2122. "issues": "https://github.com/jae-jae/QueryList/issues",
  2123. "source": "https://github.com/jae-jae/QueryList/tree/V4.4.0"
  2124. },
  2125. "funding": [
  2126. {
  2127. "url": "https://opencollective.com/querylist",
  2128. "type": "open_collective"
  2129. }
  2130. ],
  2131. "time": "2024-04-28T07:34:31+00:00"
  2132. },
  2133. {
  2134. "name": "laravel/framework",
  2135. "version": "v8.83.27",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/laravel/framework.git",
  2139. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2144. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2145. "shasum": "",
  2146. "mirrors": [
  2147. {
  2148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2149. "preferred": true
  2150. }
  2151. ]
  2152. },
  2153. "require": {
  2154. "doctrine/inflector": "^1.4|^2.0",
  2155. "dragonmantank/cron-expression": "^3.0.2",
  2156. "egulias/email-validator": "^2.1.10",
  2157. "ext-json": "*",
  2158. "ext-mbstring": "*",
  2159. "ext-openssl": "*",
  2160. "laravel/serializable-closure": "^1.0",
  2161. "league/commonmark": "^1.3|^2.0.2",
  2162. "league/flysystem": "^1.1",
  2163. "monolog/monolog": "^2.0",
  2164. "nesbot/carbon": "^2.53.1",
  2165. "opis/closure": "^3.6",
  2166. "php": "^7.3|^8.0",
  2167. "psr/container": "^1.0",
  2168. "psr/log": "^1.0|^2.0",
  2169. "psr/simple-cache": "^1.0",
  2170. "ramsey/uuid": "^4.2.2",
  2171. "swiftmailer/swiftmailer": "^6.3",
  2172. "symfony/console": "^5.4",
  2173. "symfony/error-handler": "^5.4",
  2174. "symfony/finder": "^5.4",
  2175. "symfony/http-foundation": "^5.4",
  2176. "symfony/http-kernel": "^5.4",
  2177. "symfony/mime": "^5.4",
  2178. "symfony/process": "^5.4",
  2179. "symfony/routing": "^5.4",
  2180. "symfony/var-dumper": "^5.4",
  2181. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2182. "vlucas/phpdotenv": "^5.4.1",
  2183. "voku/portable-ascii": "^1.6.1"
  2184. },
  2185. "conflict": {
  2186. "tightenco/collect": "<5.5.33"
  2187. },
  2188. "provide": {
  2189. "psr/container-implementation": "1.0",
  2190. "psr/simple-cache-implementation": "1.0"
  2191. },
  2192. "replace": {
  2193. "illuminate/auth": "self.version",
  2194. "illuminate/broadcasting": "self.version",
  2195. "illuminate/bus": "self.version",
  2196. "illuminate/cache": "self.version",
  2197. "illuminate/collections": "self.version",
  2198. "illuminate/config": "self.version",
  2199. "illuminate/console": "self.version",
  2200. "illuminate/container": "self.version",
  2201. "illuminate/contracts": "self.version",
  2202. "illuminate/cookie": "self.version",
  2203. "illuminate/database": "self.version",
  2204. "illuminate/encryption": "self.version",
  2205. "illuminate/events": "self.version",
  2206. "illuminate/filesystem": "self.version",
  2207. "illuminate/hashing": "self.version",
  2208. "illuminate/http": "self.version",
  2209. "illuminate/log": "self.version",
  2210. "illuminate/macroable": "self.version",
  2211. "illuminate/mail": "self.version",
  2212. "illuminate/notifications": "self.version",
  2213. "illuminate/pagination": "self.version",
  2214. "illuminate/pipeline": "self.version",
  2215. "illuminate/queue": "self.version",
  2216. "illuminate/redis": "self.version",
  2217. "illuminate/routing": "self.version",
  2218. "illuminate/session": "self.version",
  2219. "illuminate/support": "self.version",
  2220. "illuminate/testing": "self.version",
  2221. "illuminate/translation": "self.version",
  2222. "illuminate/validation": "self.version",
  2223. "illuminate/view": "self.version"
  2224. },
  2225. "require-dev": {
  2226. "aws/aws-sdk-php": "^3.198.1",
  2227. "doctrine/dbal": "^2.13.3|^3.1.4",
  2228. "filp/whoops": "^2.14.3",
  2229. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2230. "league/flysystem-cached-adapter": "^1.0",
  2231. "mockery/mockery": "^1.4.4",
  2232. "orchestra/testbench-core": "^6.27",
  2233. "pda/pheanstalk": "^4.0",
  2234. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2235. "predis/predis": "^1.1.9",
  2236. "symfony/cache": "^5.4"
  2237. },
  2238. "suggest": {
  2239. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2240. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2241. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2242. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2243. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2244. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2245. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2246. "ext-memcached": "Required to use the memcache cache driver.",
  2247. "ext-pcntl": "Required to use all features of the queue worker.",
  2248. "ext-posix": "Required to use all features of the queue worker.",
  2249. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2250. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2251. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2252. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2253. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2254. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2255. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2256. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2257. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2258. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2259. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2260. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2261. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2262. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2263. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2264. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2265. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2266. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2267. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2268. },
  2269. "type": "library",
  2270. "extra": {
  2271. "branch-alias": {
  2272. "dev-master": "8.x-dev"
  2273. }
  2274. },
  2275. "autoload": {
  2276. "files": [
  2277. "src/Illuminate/Collections/helpers.php",
  2278. "src/Illuminate/Events/functions.php",
  2279. "src/Illuminate/Foundation/helpers.php",
  2280. "src/Illuminate/Support/helpers.php"
  2281. ],
  2282. "psr-4": {
  2283. "Illuminate\\": "src/Illuminate/",
  2284. "Illuminate\\Support\\": [
  2285. "src/Illuminate/Macroable/",
  2286. "src/Illuminate/Collections/"
  2287. ]
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "MIT"
  2293. ],
  2294. "authors": [
  2295. {
  2296. "name": "Taylor Otwell",
  2297. "email": "taylor@laravel.com"
  2298. }
  2299. ],
  2300. "description": "The Laravel Framework.",
  2301. "homepage": "https://laravel.com",
  2302. "keywords": [
  2303. "framework",
  2304. "laravel"
  2305. ],
  2306. "support": {
  2307. "issues": "https://github.com/laravel/framework/issues",
  2308. "source": "https://github.com/laravel/framework"
  2309. },
  2310. "time": "2022-12-08T15:28:55+00:00"
  2311. },
  2312. {
  2313. "name": "laravel/serializable-closure",
  2314. "version": "v1.3.3",
  2315. "source": {
  2316. "type": "git",
  2317. "url": "https://github.com/laravel/serializable-closure.git",
  2318. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  2319. },
  2320. "dist": {
  2321. "type": "zip",
  2322. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  2323. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  2324. "shasum": "",
  2325. "mirrors": [
  2326. {
  2327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2328. "preferred": true
  2329. }
  2330. ]
  2331. },
  2332. "require": {
  2333. "php": "^7.3|^8.0"
  2334. },
  2335. "require-dev": {
  2336. "nesbot/carbon": "^2.61",
  2337. "pestphp/pest": "^1.21.3",
  2338. "phpstan/phpstan": "^1.8.2",
  2339. "symfony/var-dumper": "^5.4.11"
  2340. },
  2341. "type": "library",
  2342. "extra": {
  2343. "branch-alias": {
  2344. "dev-master": "1.x-dev"
  2345. }
  2346. },
  2347. "autoload": {
  2348. "psr-4": {
  2349. "Laravel\\SerializableClosure\\": "src/"
  2350. }
  2351. },
  2352. "notification-url": "https://packagist.org/downloads/",
  2353. "license": [
  2354. "MIT"
  2355. ],
  2356. "authors": [
  2357. {
  2358. "name": "Taylor Otwell",
  2359. "email": "taylor@laravel.com"
  2360. },
  2361. {
  2362. "name": "Nuno Maduro",
  2363. "email": "nuno@laravel.com"
  2364. }
  2365. ],
  2366. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2367. "keywords": [
  2368. "closure",
  2369. "laravel",
  2370. "serializable"
  2371. ],
  2372. "support": {
  2373. "issues": "https://github.com/laravel/serializable-closure/issues",
  2374. "source": "https://github.com/laravel/serializable-closure"
  2375. },
  2376. "time": "2023-11-08T14:08:06+00:00"
  2377. },
  2378. {
  2379. "name": "laravel/tinker",
  2380. "version": "v2.9.0",
  2381. "source": {
  2382. "type": "git",
  2383. "url": "https://github.com/laravel/tinker.git",
  2384. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  2385. },
  2386. "dist": {
  2387. "type": "zip",
  2388. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2389. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2390. "shasum": "",
  2391. "mirrors": [
  2392. {
  2393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2394. "preferred": true
  2395. }
  2396. ]
  2397. },
  2398. "require": {
  2399. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2400. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2401. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2402. "php": "^7.2.5|^8.0",
  2403. "psy/psysh": "^0.11.1|^0.12.0",
  2404. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2405. },
  2406. "require-dev": {
  2407. "mockery/mockery": "~1.3.3|^1.4.2",
  2408. "phpstan/phpstan": "^1.10",
  2409. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2410. },
  2411. "suggest": {
  2412. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2413. },
  2414. "type": "library",
  2415. "extra": {
  2416. "laravel": {
  2417. "providers": [
  2418. "Laravel\\Tinker\\TinkerServiceProvider"
  2419. ]
  2420. }
  2421. },
  2422. "autoload": {
  2423. "psr-4": {
  2424. "Laravel\\Tinker\\": "src/"
  2425. }
  2426. },
  2427. "notification-url": "https://packagist.org/downloads/",
  2428. "license": [
  2429. "MIT"
  2430. ],
  2431. "authors": [
  2432. {
  2433. "name": "Taylor Otwell",
  2434. "email": "taylor@laravel.com"
  2435. }
  2436. ],
  2437. "description": "Powerful REPL for the Laravel framework.",
  2438. "keywords": [
  2439. "REPL",
  2440. "Tinker",
  2441. "laravel",
  2442. "psysh"
  2443. ],
  2444. "support": {
  2445. "issues": "https://github.com/laravel/tinker/issues",
  2446. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  2447. },
  2448. "time": "2024-01-04T16:10:04+00:00"
  2449. },
  2450. {
  2451. "name": "league/commonmark",
  2452. "version": "2.4.2",
  2453. "source": {
  2454. "type": "git",
  2455. "url": "https://github.com/thephpleague/commonmark.git",
  2456. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf"
  2457. },
  2458. "dist": {
  2459. "type": "zip",
  2460. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  2461. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  2462. "shasum": "",
  2463. "mirrors": [
  2464. {
  2465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2466. "preferred": true
  2467. }
  2468. ]
  2469. },
  2470. "require": {
  2471. "ext-mbstring": "*",
  2472. "league/config": "^1.1.1",
  2473. "php": "^7.4 || ^8.0",
  2474. "psr/event-dispatcher": "^1.0",
  2475. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2476. "symfony/polyfill-php80": "^1.16"
  2477. },
  2478. "require-dev": {
  2479. "cebe/markdown": "^1.0",
  2480. "commonmark/cmark": "0.30.3",
  2481. "commonmark/commonmark.js": "0.30.0",
  2482. "composer/package-versions-deprecated": "^1.8",
  2483. "embed/embed": "^4.4",
  2484. "erusev/parsedown": "^1.0",
  2485. "ext-json": "*",
  2486. "github/gfm": "0.29.0",
  2487. "michelf/php-markdown": "^1.4 || ^2.0",
  2488. "nyholm/psr7": "^1.5",
  2489. "phpstan/phpstan": "^1.8.2",
  2490. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2491. "scrutinizer/ocular": "^1.8.1",
  2492. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  2493. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  2494. "unleashedtech/php-coding-standard": "^3.1.1",
  2495. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2496. },
  2497. "suggest": {
  2498. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2499. },
  2500. "type": "library",
  2501. "extra": {
  2502. "branch-alias": {
  2503. "dev-main": "2.5-dev"
  2504. }
  2505. },
  2506. "autoload": {
  2507. "psr-4": {
  2508. "League\\CommonMark\\": "src"
  2509. }
  2510. },
  2511. "notification-url": "https://packagist.org/downloads/",
  2512. "license": [
  2513. "BSD-3-Clause"
  2514. ],
  2515. "authors": [
  2516. {
  2517. "name": "Colin O'Dell",
  2518. "email": "colinodell@gmail.com",
  2519. "homepage": "https://www.colinodell.com",
  2520. "role": "Lead Developer"
  2521. }
  2522. ],
  2523. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2524. "homepage": "https://commonmark.thephpleague.com",
  2525. "keywords": [
  2526. "commonmark",
  2527. "flavored",
  2528. "gfm",
  2529. "github",
  2530. "github-flavored",
  2531. "markdown",
  2532. "md",
  2533. "parser"
  2534. ],
  2535. "support": {
  2536. "docs": "https://commonmark.thephpleague.com/",
  2537. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2538. "issues": "https://github.com/thephpleague/commonmark/issues",
  2539. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2540. "source": "https://github.com/thephpleague/commonmark"
  2541. },
  2542. "funding": [
  2543. {
  2544. "url": "https://www.colinodell.com/sponsor",
  2545. "type": "custom"
  2546. },
  2547. {
  2548. "url": "https://www.paypal.me/colinpodell/10.00",
  2549. "type": "custom"
  2550. },
  2551. {
  2552. "url": "https://github.com/colinodell",
  2553. "type": "github"
  2554. },
  2555. {
  2556. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2557. "type": "tidelift"
  2558. }
  2559. ],
  2560. "time": "2024-02-02T11:59:32+00:00"
  2561. },
  2562. {
  2563. "name": "league/config",
  2564. "version": "v1.2.0",
  2565. "source": {
  2566. "type": "git",
  2567. "url": "https://github.com/thephpleague/config.git",
  2568. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2569. },
  2570. "dist": {
  2571. "type": "zip",
  2572. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2573. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2574. "shasum": "",
  2575. "mirrors": [
  2576. {
  2577. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2578. "preferred": true
  2579. }
  2580. ]
  2581. },
  2582. "require": {
  2583. "dflydev/dot-access-data": "^3.0.1",
  2584. "nette/schema": "^1.2",
  2585. "php": "^7.4 || ^8.0"
  2586. },
  2587. "require-dev": {
  2588. "phpstan/phpstan": "^1.8.2",
  2589. "phpunit/phpunit": "^9.5.5",
  2590. "scrutinizer/ocular": "^1.8.1",
  2591. "unleashedtech/php-coding-standard": "^3.1",
  2592. "vimeo/psalm": "^4.7.3"
  2593. },
  2594. "type": "library",
  2595. "extra": {
  2596. "branch-alias": {
  2597. "dev-main": "1.2-dev"
  2598. }
  2599. },
  2600. "autoload": {
  2601. "psr-4": {
  2602. "League\\Config\\": "src"
  2603. }
  2604. },
  2605. "notification-url": "https://packagist.org/downloads/",
  2606. "license": [
  2607. "BSD-3-Clause"
  2608. ],
  2609. "authors": [
  2610. {
  2611. "name": "Colin O'Dell",
  2612. "email": "colinodell@gmail.com",
  2613. "homepage": "https://www.colinodell.com",
  2614. "role": "Lead Developer"
  2615. }
  2616. ],
  2617. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2618. "homepage": "https://config.thephpleague.com",
  2619. "keywords": [
  2620. "array",
  2621. "config",
  2622. "configuration",
  2623. "dot",
  2624. "dot-access",
  2625. "nested",
  2626. "schema"
  2627. ],
  2628. "support": {
  2629. "docs": "https://config.thephpleague.com/",
  2630. "issues": "https://github.com/thephpleague/config/issues",
  2631. "rss": "https://github.com/thephpleague/config/releases.atom",
  2632. "source": "https://github.com/thephpleague/config"
  2633. },
  2634. "funding": [
  2635. {
  2636. "url": "https://www.colinodell.com/sponsor",
  2637. "type": "custom"
  2638. },
  2639. {
  2640. "url": "https://www.paypal.me/colinpodell/10.00",
  2641. "type": "custom"
  2642. },
  2643. {
  2644. "url": "https://github.com/colinodell",
  2645. "type": "github"
  2646. }
  2647. ],
  2648. "time": "2022-12-11T20:36:23+00:00"
  2649. },
  2650. {
  2651. "name": "league/flysystem",
  2652. "version": "1.1.10",
  2653. "source": {
  2654. "type": "git",
  2655. "url": "https://github.com/thephpleague/flysystem.git",
  2656. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2657. },
  2658. "dist": {
  2659. "type": "zip",
  2660. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2661. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2662. "shasum": "",
  2663. "mirrors": [
  2664. {
  2665. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2666. "preferred": true
  2667. }
  2668. ]
  2669. },
  2670. "require": {
  2671. "ext-fileinfo": "*",
  2672. "league/mime-type-detection": "^1.3",
  2673. "php": "^7.2.5 || ^8.0"
  2674. },
  2675. "conflict": {
  2676. "league/flysystem-sftp": "<1.0.6"
  2677. },
  2678. "require-dev": {
  2679. "phpspec/prophecy": "^1.11.1",
  2680. "phpunit/phpunit": "^8.5.8"
  2681. },
  2682. "suggest": {
  2683. "ext-ftp": "Allows you to use FTP server storage",
  2684. "ext-openssl": "Allows you to use FTPS server storage",
  2685. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2686. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2687. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2688. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2689. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2690. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2691. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2692. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2693. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2694. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2695. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2696. },
  2697. "type": "library",
  2698. "extra": {
  2699. "branch-alias": {
  2700. "dev-master": "1.1-dev"
  2701. }
  2702. },
  2703. "autoload": {
  2704. "psr-4": {
  2705. "League\\Flysystem\\": "src/"
  2706. }
  2707. },
  2708. "notification-url": "https://packagist.org/downloads/",
  2709. "license": [
  2710. "MIT"
  2711. ],
  2712. "authors": [
  2713. {
  2714. "name": "Frank de Jonge",
  2715. "email": "info@frenky.net"
  2716. }
  2717. ],
  2718. "description": "Filesystem abstraction: Many filesystems, one API.",
  2719. "keywords": [
  2720. "Cloud Files",
  2721. "WebDAV",
  2722. "abstraction",
  2723. "aws",
  2724. "cloud",
  2725. "copy.com",
  2726. "dropbox",
  2727. "file systems",
  2728. "files",
  2729. "filesystem",
  2730. "filesystems",
  2731. "ftp",
  2732. "rackspace",
  2733. "remote",
  2734. "s3",
  2735. "sftp",
  2736. "storage"
  2737. ],
  2738. "support": {
  2739. "issues": "https://github.com/thephpleague/flysystem/issues",
  2740. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2741. },
  2742. "funding": [
  2743. {
  2744. "url": "https://offset.earth/frankdejonge",
  2745. "type": "other"
  2746. }
  2747. ],
  2748. "time": "2022-10-04T09:16:37+00:00"
  2749. },
  2750. {
  2751. "name": "league/mime-type-detection",
  2752. "version": "1.15.0",
  2753. "source": {
  2754. "type": "git",
  2755. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2756. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2757. },
  2758. "dist": {
  2759. "type": "zip",
  2760. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2761. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2762. "shasum": "",
  2763. "mirrors": [
  2764. {
  2765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2766. "preferred": true
  2767. }
  2768. ]
  2769. },
  2770. "require": {
  2771. "ext-fileinfo": "*",
  2772. "php": "^7.4 || ^8.0"
  2773. },
  2774. "require-dev": {
  2775. "friendsofphp/php-cs-fixer": "^3.2",
  2776. "phpstan/phpstan": "^0.12.68",
  2777. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2778. },
  2779. "type": "library",
  2780. "autoload": {
  2781. "psr-4": {
  2782. "League\\MimeTypeDetection\\": "src"
  2783. }
  2784. },
  2785. "notification-url": "https://packagist.org/downloads/",
  2786. "license": [
  2787. "MIT"
  2788. ],
  2789. "authors": [
  2790. {
  2791. "name": "Frank de Jonge",
  2792. "email": "info@frankdejonge.nl"
  2793. }
  2794. ],
  2795. "description": "Mime-type detection for Flysystem",
  2796. "support": {
  2797. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2798. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2799. },
  2800. "funding": [
  2801. {
  2802. "url": "https://github.com/frankdejonge",
  2803. "type": "github"
  2804. },
  2805. {
  2806. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2807. "type": "tidelift"
  2808. }
  2809. ],
  2810. "time": "2024-01-28T23:22:08+00:00"
  2811. },
  2812. {
  2813. "name": "maatwebsite/excel",
  2814. "version": "3.1.55",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  2818. "reference": "6d9d791dcdb01a9b6fd6f48d46f0d5fff86e6260"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d9d791dcdb01a9b6fd6f48d46f0d5fff86e6260",
  2823. "reference": "6d9d791dcdb01a9b6fd6f48d46f0d5fff86e6260",
  2824. "shasum": "",
  2825. "mirrors": [
  2826. {
  2827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2828. "preferred": true
  2829. }
  2830. ]
  2831. },
  2832. "require": {
  2833. "composer/semver": "^3.3",
  2834. "ext-json": "*",
  2835. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0",
  2836. "php": "^7.0||^8.0",
  2837. "phpoffice/phpspreadsheet": "^1.18",
  2838. "psr/simple-cache": "^1.0||^2.0||^3.0"
  2839. },
  2840. "require-dev": {
  2841. "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
  2842. "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0",
  2843. "predis/predis": "^1.1"
  2844. },
  2845. "type": "library",
  2846. "extra": {
  2847. "laravel": {
  2848. "providers": [
  2849. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2850. ],
  2851. "aliases": {
  2852. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2853. }
  2854. }
  2855. },
  2856. "autoload": {
  2857. "psr-4": {
  2858. "Maatwebsite\\Excel\\": "src/"
  2859. }
  2860. },
  2861. "notification-url": "https://packagist.org/downloads/",
  2862. "license": [
  2863. "MIT"
  2864. ],
  2865. "authors": [
  2866. {
  2867. "name": "Patrick Brouwers",
  2868. "email": "patrick@spartner.nl"
  2869. }
  2870. ],
  2871. "description": "Supercharged Excel exports and imports in Laravel",
  2872. "keywords": [
  2873. "PHPExcel",
  2874. "batch",
  2875. "csv",
  2876. "excel",
  2877. "export",
  2878. "import",
  2879. "laravel",
  2880. "php",
  2881. "phpspreadsheet"
  2882. ],
  2883. "support": {
  2884. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  2885. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.55"
  2886. },
  2887. "funding": [
  2888. {
  2889. "url": "https://laravel-excel.com/commercial-support",
  2890. "type": "custom"
  2891. },
  2892. {
  2893. "url": "https://github.com/patrickbrouwers",
  2894. "type": "github"
  2895. }
  2896. ],
  2897. "time": "2024-02-20T08:27:10+00:00"
  2898. },
  2899. {
  2900. "name": "maennchen/zipstream-php",
  2901. "version": "2.4.0",
  2902. "source": {
  2903. "type": "git",
  2904. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2905. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  2906. },
  2907. "dist": {
  2908. "type": "zip",
  2909. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2910. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2911. "shasum": "",
  2912. "mirrors": [
  2913. {
  2914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2915. "preferred": true
  2916. }
  2917. ]
  2918. },
  2919. "require": {
  2920. "ext-mbstring": "*",
  2921. "myclabs/php-enum": "^1.5",
  2922. "php": "^8.0",
  2923. "psr/http-message": "^1.0"
  2924. },
  2925. "require-dev": {
  2926. "ext-zip": "*",
  2927. "friendsofphp/php-cs-fixer": "^3.9",
  2928. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2929. "mikey179/vfsstream": "^1.6",
  2930. "php-coveralls/php-coveralls": "^2.4",
  2931. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2932. "vimeo/psalm": "^5.0"
  2933. },
  2934. "type": "library",
  2935. "autoload": {
  2936. "psr-4": {
  2937. "ZipStream\\": "src/"
  2938. }
  2939. },
  2940. "notification-url": "https://packagist.org/downloads/",
  2941. "license": [
  2942. "MIT"
  2943. ],
  2944. "authors": [
  2945. {
  2946. "name": "Paul Duncan",
  2947. "email": "pabs@pablotron.org"
  2948. },
  2949. {
  2950. "name": "Jonatan Männchen",
  2951. "email": "jonatan@maennchen.ch"
  2952. },
  2953. {
  2954. "name": "Jesse Donat",
  2955. "email": "donatj@gmail.com"
  2956. },
  2957. {
  2958. "name": "András Kolesár",
  2959. "email": "kolesar@kolesar.hu"
  2960. }
  2961. ],
  2962. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2963. "keywords": [
  2964. "stream",
  2965. "zip"
  2966. ],
  2967. "support": {
  2968. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2969. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  2970. },
  2971. "funding": [
  2972. {
  2973. "url": "https://github.com/maennchen",
  2974. "type": "github"
  2975. },
  2976. {
  2977. "url": "https://opencollective.com/zipstream",
  2978. "type": "open_collective"
  2979. }
  2980. ],
  2981. "time": "2022-12-08T12:29:14+00:00"
  2982. },
  2983. {
  2984. "name": "markbaker/complex",
  2985. "version": "3.0.2",
  2986. "source": {
  2987. "type": "git",
  2988. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2989. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2990. },
  2991. "dist": {
  2992. "type": "zip",
  2993. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2994. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2995. "shasum": "",
  2996. "mirrors": [
  2997. {
  2998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2999. "preferred": true
  3000. }
  3001. ]
  3002. },
  3003. "require": {
  3004. "php": "^7.2 || ^8.0"
  3005. },
  3006. "require-dev": {
  3007. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3008. "phpcompatibility/php-compatibility": "^9.3",
  3009. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3010. "squizlabs/php_codesniffer": "^3.7"
  3011. },
  3012. "type": "library",
  3013. "autoload": {
  3014. "psr-4": {
  3015. "Complex\\": "classes/src/"
  3016. }
  3017. },
  3018. "notification-url": "https://packagist.org/downloads/",
  3019. "license": [
  3020. "MIT"
  3021. ],
  3022. "authors": [
  3023. {
  3024. "name": "Mark Baker",
  3025. "email": "mark@lange.demon.co.uk"
  3026. }
  3027. ],
  3028. "description": "PHP Class for working with complex numbers",
  3029. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3030. "keywords": [
  3031. "complex",
  3032. "mathematics"
  3033. ],
  3034. "support": {
  3035. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3036. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3037. },
  3038. "time": "2022-12-06T16:21:08+00:00"
  3039. },
  3040. {
  3041. "name": "markbaker/matrix",
  3042. "version": "3.0.1",
  3043. "source": {
  3044. "type": "git",
  3045. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3046. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3047. },
  3048. "dist": {
  3049. "type": "zip",
  3050. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3051. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3052. "shasum": "",
  3053. "mirrors": [
  3054. {
  3055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3056. "preferred": true
  3057. }
  3058. ]
  3059. },
  3060. "require": {
  3061. "php": "^7.1 || ^8.0"
  3062. },
  3063. "require-dev": {
  3064. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3065. "phpcompatibility/php-compatibility": "^9.3",
  3066. "phpdocumentor/phpdocumentor": "2.*",
  3067. "phploc/phploc": "^4.0",
  3068. "phpmd/phpmd": "2.*",
  3069. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3070. "sebastian/phpcpd": "^4.0",
  3071. "squizlabs/php_codesniffer": "^3.7"
  3072. },
  3073. "type": "library",
  3074. "autoload": {
  3075. "psr-4": {
  3076. "Matrix\\": "classes/src/"
  3077. }
  3078. },
  3079. "notification-url": "https://packagist.org/downloads/",
  3080. "license": [
  3081. "MIT"
  3082. ],
  3083. "authors": [
  3084. {
  3085. "name": "Mark Baker",
  3086. "email": "mark@demon-angel.eu"
  3087. }
  3088. ],
  3089. "description": "PHP Class for working with matrices",
  3090. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3091. "keywords": [
  3092. "mathematics",
  3093. "matrix",
  3094. "vector"
  3095. ],
  3096. "support": {
  3097. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3098. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3099. },
  3100. "time": "2022-12-02T22:17:43+00:00"
  3101. },
  3102. {
  3103. "name": "monolog/monolog",
  3104. "version": "2.9.3",
  3105. "source": {
  3106. "type": "git",
  3107. "url": "https://github.com/Seldaek/monolog.git",
  3108. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215"
  3109. },
  3110. "dist": {
  3111. "type": "zip",
  3112. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/a30bfe2e142720dfa990d0a7e573997f5d884215",
  3113. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215",
  3114. "shasum": "",
  3115. "mirrors": [
  3116. {
  3117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3118. "preferred": true
  3119. }
  3120. ]
  3121. },
  3122. "require": {
  3123. "php": ">=7.2",
  3124. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3125. },
  3126. "provide": {
  3127. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3128. },
  3129. "require-dev": {
  3130. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3131. "doctrine/couchdb": "~1.0@dev",
  3132. "elasticsearch/elasticsearch": "^7 || ^8",
  3133. "ext-json": "*",
  3134. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3135. "guzzlehttp/guzzle": "^7.4",
  3136. "guzzlehttp/psr7": "^2.2",
  3137. "mongodb/mongodb": "^1.8",
  3138. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3139. "phpspec/prophecy": "^1.15",
  3140. "phpstan/phpstan": "^1.10",
  3141. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  3142. "predis/predis": "^1.1 || ^2.0",
  3143. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3144. "ruflin/elastica": "^7",
  3145. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3146. "symfony/mailer": "^5.4 || ^6",
  3147. "symfony/mime": "^5.4 || ^6"
  3148. },
  3149. "suggest": {
  3150. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3151. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3152. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3153. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3154. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3155. "ext-mbstring": "Allow to work properly with unicode symbols",
  3156. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3157. "ext-openssl": "Required to send log messages using SSL",
  3158. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3159. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3160. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3161. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3162. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3163. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3164. },
  3165. "type": "library",
  3166. "extra": {
  3167. "branch-alias": {
  3168. "dev-main": "2.x-dev"
  3169. }
  3170. },
  3171. "autoload": {
  3172. "psr-4": {
  3173. "Monolog\\": "src/Monolog"
  3174. }
  3175. },
  3176. "notification-url": "https://packagist.org/downloads/",
  3177. "license": [
  3178. "MIT"
  3179. ],
  3180. "authors": [
  3181. {
  3182. "name": "Jordi Boggiano",
  3183. "email": "j.boggiano@seld.be",
  3184. "homepage": "https://seld.be"
  3185. }
  3186. ],
  3187. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3188. "homepage": "https://github.com/Seldaek/monolog",
  3189. "keywords": [
  3190. "log",
  3191. "logging",
  3192. "psr-3"
  3193. ],
  3194. "support": {
  3195. "issues": "https://github.com/Seldaek/monolog/issues",
  3196. "source": "https://github.com/Seldaek/monolog/tree/2.9.3"
  3197. },
  3198. "funding": [
  3199. {
  3200. "url": "https://github.com/Seldaek",
  3201. "type": "github"
  3202. },
  3203. {
  3204. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3205. "type": "tidelift"
  3206. }
  3207. ],
  3208. "time": "2024-04-12T20:52:51+00:00"
  3209. },
  3210. {
  3211. "name": "myclabs/php-enum",
  3212. "version": "1.8.4",
  3213. "source": {
  3214. "type": "git",
  3215. "url": "https://github.com/myclabs/php-enum.git",
  3216. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3217. },
  3218. "dist": {
  3219. "type": "zip",
  3220. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3221. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3222. "shasum": "",
  3223. "mirrors": [
  3224. {
  3225. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3226. "preferred": true
  3227. }
  3228. ]
  3229. },
  3230. "require": {
  3231. "ext-json": "*",
  3232. "php": "^7.3 || ^8.0"
  3233. },
  3234. "require-dev": {
  3235. "phpunit/phpunit": "^9.5",
  3236. "squizlabs/php_codesniffer": "1.*",
  3237. "vimeo/psalm": "^4.6.2"
  3238. },
  3239. "type": "library",
  3240. "autoload": {
  3241. "psr-4": {
  3242. "MyCLabs\\Enum\\": "src/"
  3243. },
  3244. "classmap": [
  3245. "stubs/Stringable.php"
  3246. ]
  3247. },
  3248. "notification-url": "https://packagist.org/downloads/",
  3249. "license": [
  3250. "MIT"
  3251. ],
  3252. "authors": [
  3253. {
  3254. "name": "PHP Enum contributors",
  3255. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3256. }
  3257. ],
  3258. "description": "PHP Enum implementation",
  3259. "homepage": "http://github.com/myclabs/php-enum",
  3260. "keywords": [
  3261. "enum"
  3262. ],
  3263. "support": {
  3264. "issues": "https://github.com/myclabs/php-enum/issues",
  3265. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3266. },
  3267. "funding": [
  3268. {
  3269. "url": "https://github.com/mnapoli",
  3270. "type": "github"
  3271. },
  3272. {
  3273. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3274. "type": "tidelift"
  3275. }
  3276. ],
  3277. "time": "2022-08-04T09:53:51+00:00"
  3278. },
  3279. {
  3280. "name": "nesbot/carbon",
  3281. "version": "2.72.5",
  3282. "source": {
  3283. "type": "git",
  3284. "url": "https://github.com/briannesbitt/Carbon.git",
  3285. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  3286. },
  3287. "dist": {
  3288. "type": "zip",
  3289. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  3290. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  3291. "shasum": "",
  3292. "mirrors": [
  3293. {
  3294. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3295. "preferred": true
  3296. }
  3297. ]
  3298. },
  3299. "require": {
  3300. "carbonphp/carbon-doctrine-types": "*",
  3301. "ext-json": "*",
  3302. "php": "^7.1.8 || ^8.0",
  3303. "psr/clock": "^1.0",
  3304. "symfony/polyfill-mbstring": "^1.0",
  3305. "symfony/polyfill-php80": "^1.16",
  3306. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3307. },
  3308. "provide": {
  3309. "psr/clock-implementation": "1.0"
  3310. },
  3311. "require-dev": {
  3312. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3313. "doctrine/orm": "^2.7 || ^3.0",
  3314. "friendsofphp/php-cs-fixer": "^3.0",
  3315. "kylekatarnls/multi-tester": "^2.0",
  3316. "ondrejmirtes/better-reflection": "*",
  3317. "phpmd/phpmd": "^2.9",
  3318. "phpstan/extension-installer": "^1.0",
  3319. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3320. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3321. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3322. "squizlabs/php_codesniffer": "^3.4"
  3323. },
  3324. "bin": [
  3325. "bin/carbon"
  3326. ],
  3327. "type": "library",
  3328. "extra": {
  3329. "branch-alias": {
  3330. "dev-master": "3.x-dev",
  3331. "dev-2.x": "2.x-dev"
  3332. },
  3333. "laravel": {
  3334. "providers": [
  3335. "Carbon\\Laravel\\ServiceProvider"
  3336. ]
  3337. },
  3338. "phpstan": {
  3339. "includes": [
  3340. "extension.neon"
  3341. ]
  3342. }
  3343. },
  3344. "autoload": {
  3345. "psr-4": {
  3346. "Carbon\\": "src/Carbon/"
  3347. }
  3348. },
  3349. "notification-url": "https://packagist.org/downloads/",
  3350. "license": [
  3351. "MIT"
  3352. ],
  3353. "authors": [
  3354. {
  3355. "name": "Brian Nesbitt",
  3356. "email": "brian@nesbot.com",
  3357. "homepage": "https://markido.com"
  3358. },
  3359. {
  3360. "name": "kylekatarnls",
  3361. "homepage": "https://github.com/kylekatarnls"
  3362. }
  3363. ],
  3364. "description": "An API extension for DateTime that supports 281 different languages.",
  3365. "homepage": "https://carbon.nesbot.com",
  3366. "keywords": [
  3367. "date",
  3368. "datetime",
  3369. "time"
  3370. ],
  3371. "support": {
  3372. "docs": "https://carbon.nesbot.com/docs",
  3373. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3374. "source": "https://github.com/briannesbitt/Carbon"
  3375. },
  3376. "funding": [
  3377. {
  3378. "url": "https://github.com/sponsors/kylekatarnls",
  3379. "type": "github"
  3380. },
  3381. {
  3382. "url": "https://opencollective.com/Carbon#sponsor",
  3383. "type": "opencollective"
  3384. },
  3385. {
  3386. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3387. "type": "tidelift"
  3388. }
  3389. ],
  3390. "time": "2024-06-03T19:18:41+00:00"
  3391. },
  3392. {
  3393. "name": "nette/schema",
  3394. "version": "v1.2.5",
  3395. "source": {
  3396. "type": "git",
  3397. "url": "https://github.com/nette/schema.git",
  3398. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3399. },
  3400. "dist": {
  3401. "type": "zip",
  3402. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3403. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3404. "shasum": "",
  3405. "mirrors": [
  3406. {
  3407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3408. "preferred": true
  3409. }
  3410. ]
  3411. },
  3412. "require": {
  3413. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3414. "php": "7.1 - 8.3"
  3415. },
  3416. "require-dev": {
  3417. "nette/tester": "^2.3 || ^2.4",
  3418. "phpstan/phpstan-nette": "^1.0",
  3419. "tracy/tracy": "^2.7"
  3420. },
  3421. "type": "library",
  3422. "extra": {
  3423. "branch-alias": {
  3424. "dev-master": "1.2-dev"
  3425. }
  3426. },
  3427. "autoload": {
  3428. "classmap": [
  3429. "src/"
  3430. ]
  3431. },
  3432. "notification-url": "https://packagist.org/downloads/",
  3433. "license": [
  3434. "BSD-3-Clause",
  3435. "GPL-2.0-only",
  3436. "GPL-3.0-only"
  3437. ],
  3438. "authors": [
  3439. {
  3440. "name": "David Grudl",
  3441. "homepage": "https://davidgrudl.com"
  3442. },
  3443. {
  3444. "name": "Nette Community",
  3445. "homepage": "https://nette.org/contributors"
  3446. }
  3447. ],
  3448. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3449. "homepage": "https://nette.org",
  3450. "keywords": [
  3451. "config",
  3452. "nette"
  3453. ],
  3454. "support": {
  3455. "issues": "https://github.com/nette/schema/issues",
  3456. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3457. },
  3458. "time": "2023-10-05T20:37:59+00:00"
  3459. },
  3460. {
  3461. "name": "nette/utils",
  3462. "version": "v4.0.4",
  3463. "source": {
  3464. "type": "git",
  3465. "url": "https://github.com/nette/utils.git",
  3466. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  3467. },
  3468. "dist": {
  3469. "type": "zip",
  3470. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  3471. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  3472. "shasum": "",
  3473. "mirrors": [
  3474. {
  3475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3476. "preferred": true
  3477. }
  3478. ]
  3479. },
  3480. "require": {
  3481. "php": ">=8.0 <8.4"
  3482. },
  3483. "conflict": {
  3484. "nette/finder": "<3",
  3485. "nette/schema": "<1.2.2"
  3486. },
  3487. "require-dev": {
  3488. "jetbrains/phpstorm-attributes": "dev-master",
  3489. "nette/tester": "^2.5",
  3490. "phpstan/phpstan": "^1.0",
  3491. "tracy/tracy": "^2.9"
  3492. },
  3493. "suggest": {
  3494. "ext-gd": "to use Image",
  3495. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3496. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3497. "ext-json": "to use Nette\\Utils\\Json",
  3498. "ext-mbstring": "to use Strings::lower() etc...",
  3499. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3500. },
  3501. "type": "library",
  3502. "extra": {
  3503. "branch-alias": {
  3504. "dev-master": "4.0-dev"
  3505. }
  3506. },
  3507. "autoload": {
  3508. "classmap": [
  3509. "src/"
  3510. ]
  3511. },
  3512. "notification-url": "https://packagist.org/downloads/",
  3513. "license": [
  3514. "BSD-3-Clause",
  3515. "GPL-2.0-only",
  3516. "GPL-3.0-only"
  3517. ],
  3518. "authors": [
  3519. {
  3520. "name": "David Grudl",
  3521. "homepage": "https://davidgrudl.com"
  3522. },
  3523. {
  3524. "name": "Nette Community",
  3525. "homepage": "https://nette.org/contributors"
  3526. }
  3527. ],
  3528. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3529. "homepage": "https://nette.org",
  3530. "keywords": [
  3531. "array",
  3532. "core",
  3533. "datetime",
  3534. "images",
  3535. "json",
  3536. "nette",
  3537. "paginator",
  3538. "password",
  3539. "slugify",
  3540. "string",
  3541. "unicode",
  3542. "utf-8",
  3543. "utility",
  3544. "validation"
  3545. ],
  3546. "support": {
  3547. "issues": "https://github.com/nette/utils/issues",
  3548. "source": "https://github.com/nette/utils/tree/v4.0.4"
  3549. },
  3550. "time": "2024-01-17T16:50:36+00:00"
  3551. },
  3552. {
  3553. "name": "nikic/php-parser",
  3554. "version": "v5.1.0",
  3555. "source": {
  3556. "type": "git",
  3557. "url": "https://github.com/nikic/PHP-Parser.git",
  3558. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1"
  3559. },
  3560. "dist": {
  3561. "type": "zip",
  3562. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  3563. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  3564. "shasum": "",
  3565. "mirrors": [
  3566. {
  3567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3568. "preferred": true
  3569. }
  3570. ]
  3571. },
  3572. "require": {
  3573. "ext-ctype": "*",
  3574. "ext-json": "*",
  3575. "ext-tokenizer": "*",
  3576. "php": ">=7.4"
  3577. },
  3578. "require-dev": {
  3579. "ircmaxell/php-yacc": "^0.0.7",
  3580. "phpunit/phpunit": "^9.0"
  3581. },
  3582. "bin": [
  3583. "bin/php-parse"
  3584. ],
  3585. "type": "library",
  3586. "extra": {
  3587. "branch-alias": {
  3588. "dev-master": "5.0-dev"
  3589. }
  3590. },
  3591. "autoload": {
  3592. "psr-4": {
  3593. "PhpParser\\": "lib/PhpParser"
  3594. }
  3595. },
  3596. "notification-url": "https://packagist.org/downloads/",
  3597. "license": [
  3598. "BSD-3-Clause"
  3599. ],
  3600. "authors": [
  3601. {
  3602. "name": "Nikita Popov"
  3603. }
  3604. ],
  3605. "description": "A PHP parser written in PHP",
  3606. "keywords": [
  3607. "parser",
  3608. "php"
  3609. ],
  3610. "support": {
  3611. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3612. "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0"
  3613. },
  3614. "time": "2024-07-01T20:03:41+00:00"
  3615. },
  3616. {
  3617. "name": "opis/closure",
  3618. "version": "3.6.3",
  3619. "source": {
  3620. "type": "git",
  3621. "url": "https://github.com/opis/closure.git",
  3622. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3623. },
  3624. "dist": {
  3625. "type": "zip",
  3626. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3627. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3628. "shasum": "",
  3629. "mirrors": [
  3630. {
  3631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3632. "preferred": true
  3633. }
  3634. ]
  3635. },
  3636. "require": {
  3637. "php": "^5.4 || ^7.0 || ^8.0"
  3638. },
  3639. "require-dev": {
  3640. "jeremeamia/superclosure": "^2.0",
  3641. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3642. },
  3643. "type": "library",
  3644. "extra": {
  3645. "branch-alias": {
  3646. "dev-master": "3.6.x-dev"
  3647. }
  3648. },
  3649. "autoload": {
  3650. "files": [
  3651. "functions.php"
  3652. ],
  3653. "psr-4": {
  3654. "Opis\\Closure\\": "src/"
  3655. }
  3656. },
  3657. "notification-url": "https://packagist.org/downloads/",
  3658. "license": [
  3659. "MIT"
  3660. ],
  3661. "authors": [
  3662. {
  3663. "name": "Marius Sarca",
  3664. "email": "marius.sarca@gmail.com"
  3665. },
  3666. {
  3667. "name": "Sorin Sarca",
  3668. "email": "sarca_sorin@hotmail.com"
  3669. }
  3670. ],
  3671. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3672. "homepage": "https://opis.io/closure",
  3673. "keywords": [
  3674. "anonymous functions",
  3675. "closure",
  3676. "function",
  3677. "serializable",
  3678. "serialization",
  3679. "serialize"
  3680. ],
  3681. "support": {
  3682. "issues": "https://github.com/opis/closure/issues",
  3683. "source": "https://github.com/opis/closure/tree/3.6.3"
  3684. },
  3685. "time": "2022-01-27T09:35:39+00:00"
  3686. },
  3687. {
  3688. "name": "phpoffice/phpspreadsheet",
  3689. "version": "1.29.0",
  3690. "source": {
  3691. "type": "git",
  3692. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3693. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  3694. },
  3695. "dist": {
  3696. "type": "zip",
  3697. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3698. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3699. "shasum": "",
  3700. "mirrors": [
  3701. {
  3702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3703. "preferred": true
  3704. }
  3705. ]
  3706. },
  3707. "require": {
  3708. "ext-ctype": "*",
  3709. "ext-dom": "*",
  3710. "ext-fileinfo": "*",
  3711. "ext-gd": "*",
  3712. "ext-iconv": "*",
  3713. "ext-libxml": "*",
  3714. "ext-mbstring": "*",
  3715. "ext-simplexml": "*",
  3716. "ext-xml": "*",
  3717. "ext-xmlreader": "*",
  3718. "ext-xmlwriter": "*",
  3719. "ext-zip": "*",
  3720. "ext-zlib": "*",
  3721. "ezyang/htmlpurifier": "^4.15",
  3722. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3723. "markbaker/complex": "^3.0",
  3724. "markbaker/matrix": "^3.0",
  3725. "php": "^7.4 || ^8.0",
  3726. "psr/http-client": "^1.0",
  3727. "psr/http-factory": "^1.0",
  3728. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3729. },
  3730. "require-dev": {
  3731. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3732. "dompdf/dompdf": "^1.0 || ^2.0",
  3733. "friendsofphp/php-cs-fixer": "^3.2",
  3734. "mitoteam/jpgraph": "^10.3",
  3735. "mpdf/mpdf": "^8.1.1",
  3736. "phpcompatibility/php-compatibility": "^9.3",
  3737. "phpstan/phpstan": "^1.1",
  3738. "phpstan/phpstan-phpunit": "^1.0",
  3739. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  3740. "squizlabs/php_codesniffer": "^3.7",
  3741. "tecnickcom/tcpdf": "^6.5"
  3742. },
  3743. "suggest": {
  3744. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3745. "ext-intl": "PHP Internationalization Functions",
  3746. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3747. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3748. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3749. },
  3750. "type": "library",
  3751. "autoload": {
  3752. "psr-4": {
  3753. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3754. }
  3755. },
  3756. "notification-url": "https://packagist.org/downloads/",
  3757. "license": [
  3758. "MIT"
  3759. ],
  3760. "authors": [
  3761. {
  3762. "name": "Maarten Balliauw",
  3763. "homepage": "https://blog.maartenballiauw.be"
  3764. },
  3765. {
  3766. "name": "Mark Baker",
  3767. "homepage": "https://markbakeruk.net"
  3768. },
  3769. {
  3770. "name": "Franck Lefevre",
  3771. "homepage": "https://rootslabs.net"
  3772. },
  3773. {
  3774. "name": "Erik Tilt"
  3775. },
  3776. {
  3777. "name": "Adrien Crivelli"
  3778. }
  3779. ],
  3780. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3781. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3782. "keywords": [
  3783. "OpenXML",
  3784. "excel",
  3785. "gnumeric",
  3786. "ods",
  3787. "php",
  3788. "spreadsheet",
  3789. "xls",
  3790. "xlsx"
  3791. ],
  3792. "support": {
  3793. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3794. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  3795. },
  3796. "time": "2023-06-14T22:48:31+00:00"
  3797. },
  3798. {
  3799. "name": "phpoption/phpoption",
  3800. "version": "1.9.3",
  3801. "source": {
  3802. "type": "git",
  3803. "url": "https://github.com/schmittjoh/php-option.git",
  3804. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3805. },
  3806. "dist": {
  3807. "type": "zip",
  3808. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3809. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3810. "shasum": "",
  3811. "mirrors": [
  3812. {
  3813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3814. "preferred": true
  3815. }
  3816. ]
  3817. },
  3818. "require": {
  3819. "php": "^7.2.5 || ^8.0"
  3820. },
  3821. "require-dev": {
  3822. "bamarni/composer-bin-plugin": "^1.8.2",
  3823. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3824. },
  3825. "type": "library",
  3826. "extra": {
  3827. "bamarni-bin": {
  3828. "bin-links": true,
  3829. "forward-command": false
  3830. },
  3831. "branch-alias": {
  3832. "dev-master": "1.9-dev"
  3833. }
  3834. },
  3835. "autoload": {
  3836. "psr-4": {
  3837. "PhpOption\\": "src/PhpOption/"
  3838. }
  3839. },
  3840. "notification-url": "https://packagist.org/downloads/",
  3841. "license": [
  3842. "Apache-2.0"
  3843. ],
  3844. "authors": [
  3845. {
  3846. "name": "Johannes M. Schmitt",
  3847. "email": "schmittjoh@gmail.com",
  3848. "homepage": "https://github.com/schmittjoh"
  3849. },
  3850. {
  3851. "name": "Graham Campbell",
  3852. "email": "hello@gjcampbell.co.uk",
  3853. "homepage": "https://github.com/GrahamCampbell"
  3854. }
  3855. ],
  3856. "description": "Option Type for PHP",
  3857. "keywords": [
  3858. "language",
  3859. "option",
  3860. "php",
  3861. "type"
  3862. ],
  3863. "support": {
  3864. "issues": "https://github.com/schmittjoh/php-option/issues",
  3865. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3866. },
  3867. "funding": [
  3868. {
  3869. "url": "https://github.com/GrahamCampbell",
  3870. "type": "github"
  3871. },
  3872. {
  3873. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3874. "type": "tidelift"
  3875. }
  3876. ],
  3877. "time": "2024-07-20T21:41:07+00:00"
  3878. },
  3879. {
  3880. "name": "pimple/pimple",
  3881. "version": "v3.5.0",
  3882. "source": {
  3883. "type": "git",
  3884. "url": "https://github.com/silexphp/Pimple.git",
  3885. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  3886. },
  3887. "dist": {
  3888. "type": "zip",
  3889. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3890. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3891. "shasum": "",
  3892. "mirrors": [
  3893. {
  3894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3895. "preferred": true
  3896. }
  3897. ]
  3898. },
  3899. "require": {
  3900. "php": ">=7.2.5",
  3901. "psr/container": "^1.1 || ^2.0"
  3902. },
  3903. "require-dev": {
  3904. "symfony/phpunit-bridge": "^5.4@dev"
  3905. },
  3906. "type": "library",
  3907. "extra": {
  3908. "branch-alias": {
  3909. "dev-master": "3.4.x-dev"
  3910. }
  3911. },
  3912. "autoload": {
  3913. "psr-0": {
  3914. "Pimple": "src/"
  3915. }
  3916. },
  3917. "notification-url": "https://packagist.org/downloads/",
  3918. "license": [
  3919. "MIT"
  3920. ],
  3921. "authors": [
  3922. {
  3923. "name": "Fabien Potencier",
  3924. "email": "fabien@symfony.com"
  3925. }
  3926. ],
  3927. "description": "Pimple, a simple Dependency Injection Container",
  3928. "homepage": "https://pimple.symfony.com",
  3929. "keywords": [
  3930. "container",
  3931. "dependency injection"
  3932. ],
  3933. "support": {
  3934. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  3935. },
  3936. "time": "2021-10-28T11:13:42+00:00"
  3937. },
  3938. {
  3939. "name": "psr/cache",
  3940. "version": "2.0.0",
  3941. "source": {
  3942. "type": "git",
  3943. "url": "https://github.com/php-fig/cache.git",
  3944. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  3945. },
  3946. "dist": {
  3947. "type": "zip",
  3948. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  3949. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  3950. "shasum": "",
  3951. "mirrors": [
  3952. {
  3953. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3954. "preferred": true
  3955. }
  3956. ]
  3957. },
  3958. "require": {
  3959. "php": ">=8.0.0"
  3960. },
  3961. "type": "library",
  3962. "extra": {
  3963. "branch-alias": {
  3964. "dev-master": "1.0.x-dev"
  3965. }
  3966. },
  3967. "autoload": {
  3968. "psr-4": {
  3969. "Psr\\Cache\\": "src/"
  3970. }
  3971. },
  3972. "notification-url": "https://packagist.org/downloads/",
  3973. "license": [
  3974. "MIT"
  3975. ],
  3976. "authors": [
  3977. {
  3978. "name": "PHP-FIG",
  3979. "homepage": "https://www.php-fig.org/"
  3980. }
  3981. ],
  3982. "description": "Common interface for caching libraries",
  3983. "keywords": [
  3984. "cache",
  3985. "psr",
  3986. "psr-6"
  3987. ],
  3988. "support": {
  3989. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  3990. },
  3991. "time": "2021-02-03T23:23:37+00:00"
  3992. },
  3993. {
  3994. "name": "psr/clock",
  3995. "version": "1.0.0",
  3996. "source": {
  3997. "type": "git",
  3998. "url": "https://github.com/php-fig/clock.git",
  3999. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4000. },
  4001. "dist": {
  4002. "type": "zip",
  4003. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4004. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4005. "shasum": "",
  4006. "mirrors": [
  4007. {
  4008. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4009. "preferred": true
  4010. }
  4011. ]
  4012. },
  4013. "require": {
  4014. "php": "^7.0 || ^8.0"
  4015. },
  4016. "type": "library",
  4017. "autoload": {
  4018. "psr-4": {
  4019. "Psr\\Clock\\": "src/"
  4020. }
  4021. },
  4022. "notification-url": "https://packagist.org/downloads/",
  4023. "license": [
  4024. "MIT"
  4025. ],
  4026. "authors": [
  4027. {
  4028. "name": "PHP-FIG",
  4029. "homepage": "https://www.php-fig.org/"
  4030. }
  4031. ],
  4032. "description": "Common interface for reading the clock.",
  4033. "homepage": "https://github.com/php-fig/clock",
  4034. "keywords": [
  4035. "clock",
  4036. "now",
  4037. "psr",
  4038. "psr-20",
  4039. "time"
  4040. ],
  4041. "support": {
  4042. "issues": "https://github.com/php-fig/clock/issues",
  4043. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4044. },
  4045. "time": "2022-11-25T14:36:26+00:00"
  4046. },
  4047. {
  4048. "name": "psr/container",
  4049. "version": "1.1.2",
  4050. "source": {
  4051. "type": "git",
  4052. "url": "https://github.com/php-fig/container.git",
  4053. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4054. },
  4055. "dist": {
  4056. "type": "zip",
  4057. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4058. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4059. "shasum": "",
  4060. "mirrors": [
  4061. {
  4062. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4063. "preferred": true
  4064. }
  4065. ]
  4066. },
  4067. "require": {
  4068. "php": ">=7.4.0"
  4069. },
  4070. "type": "library",
  4071. "autoload": {
  4072. "psr-4": {
  4073. "Psr\\Container\\": "src/"
  4074. }
  4075. },
  4076. "notification-url": "https://packagist.org/downloads/",
  4077. "license": [
  4078. "MIT"
  4079. ],
  4080. "authors": [
  4081. {
  4082. "name": "PHP-FIG",
  4083. "homepage": "https://www.php-fig.org/"
  4084. }
  4085. ],
  4086. "description": "Common Container Interface (PHP FIG PSR-11)",
  4087. "homepage": "https://github.com/php-fig/container",
  4088. "keywords": [
  4089. "PSR-11",
  4090. "container",
  4091. "container-interface",
  4092. "container-interop",
  4093. "psr"
  4094. ],
  4095. "support": {
  4096. "issues": "https://github.com/php-fig/container/issues",
  4097. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4098. },
  4099. "time": "2021-11-05T16:50:12+00:00"
  4100. },
  4101. {
  4102. "name": "psr/event-dispatcher",
  4103. "version": "1.0.0",
  4104. "source": {
  4105. "type": "git",
  4106. "url": "https://github.com/php-fig/event-dispatcher.git",
  4107. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4108. },
  4109. "dist": {
  4110. "type": "zip",
  4111. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4112. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4113. "shasum": "",
  4114. "mirrors": [
  4115. {
  4116. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4117. "preferred": true
  4118. }
  4119. ]
  4120. },
  4121. "require": {
  4122. "php": ">=7.2.0"
  4123. },
  4124. "type": "library",
  4125. "extra": {
  4126. "branch-alias": {
  4127. "dev-master": "1.0.x-dev"
  4128. }
  4129. },
  4130. "autoload": {
  4131. "psr-4": {
  4132. "Psr\\EventDispatcher\\": "src/"
  4133. }
  4134. },
  4135. "notification-url": "https://packagist.org/downloads/",
  4136. "license": [
  4137. "MIT"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "PHP-FIG",
  4142. "homepage": "http://www.php-fig.org/"
  4143. }
  4144. ],
  4145. "description": "Standard interfaces for event handling.",
  4146. "keywords": [
  4147. "events",
  4148. "psr",
  4149. "psr-14"
  4150. ],
  4151. "support": {
  4152. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4153. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4154. },
  4155. "time": "2019-01-08T18:20:26+00:00"
  4156. },
  4157. {
  4158. "name": "psr/http-client",
  4159. "version": "1.0.3",
  4160. "source": {
  4161. "type": "git",
  4162. "url": "https://github.com/php-fig/http-client.git",
  4163. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4164. },
  4165. "dist": {
  4166. "type": "zip",
  4167. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4168. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4169. "shasum": "",
  4170. "mirrors": [
  4171. {
  4172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4173. "preferred": true
  4174. }
  4175. ]
  4176. },
  4177. "require": {
  4178. "php": "^7.0 || ^8.0",
  4179. "psr/http-message": "^1.0 || ^2.0"
  4180. },
  4181. "type": "library",
  4182. "extra": {
  4183. "branch-alias": {
  4184. "dev-master": "1.0.x-dev"
  4185. }
  4186. },
  4187. "autoload": {
  4188. "psr-4": {
  4189. "Psr\\Http\\Client\\": "src/"
  4190. }
  4191. },
  4192. "notification-url": "https://packagist.org/downloads/",
  4193. "license": [
  4194. "MIT"
  4195. ],
  4196. "authors": [
  4197. {
  4198. "name": "PHP-FIG",
  4199. "homepage": "https://www.php-fig.org/"
  4200. }
  4201. ],
  4202. "description": "Common interface for HTTP clients",
  4203. "homepage": "https://github.com/php-fig/http-client",
  4204. "keywords": [
  4205. "http",
  4206. "http-client",
  4207. "psr",
  4208. "psr-18"
  4209. ],
  4210. "support": {
  4211. "source": "https://github.com/php-fig/http-client"
  4212. },
  4213. "time": "2023-09-23T14:17:50+00:00"
  4214. },
  4215. {
  4216. "name": "psr/http-factory",
  4217. "version": "1.0.2",
  4218. "source": {
  4219. "type": "git",
  4220. "url": "https://github.com/php-fig/http-factory.git",
  4221. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4222. },
  4223. "dist": {
  4224. "type": "zip",
  4225. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4226. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4227. "shasum": "",
  4228. "mirrors": [
  4229. {
  4230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4231. "preferred": true
  4232. }
  4233. ]
  4234. },
  4235. "require": {
  4236. "php": ">=7.0.0",
  4237. "psr/http-message": "^1.0 || ^2.0"
  4238. },
  4239. "type": "library",
  4240. "extra": {
  4241. "branch-alias": {
  4242. "dev-master": "1.0.x-dev"
  4243. }
  4244. },
  4245. "autoload": {
  4246. "psr-4": {
  4247. "Psr\\Http\\Message\\": "src/"
  4248. }
  4249. },
  4250. "notification-url": "https://packagist.org/downloads/",
  4251. "license": [
  4252. "MIT"
  4253. ],
  4254. "authors": [
  4255. {
  4256. "name": "PHP-FIG",
  4257. "homepage": "https://www.php-fig.org/"
  4258. }
  4259. ],
  4260. "description": "Common interfaces for PSR-7 HTTP message factories",
  4261. "keywords": [
  4262. "factory",
  4263. "http",
  4264. "message",
  4265. "psr",
  4266. "psr-17",
  4267. "psr-7",
  4268. "request",
  4269. "response"
  4270. ],
  4271. "support": {
  4272. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4273. },
  4274. "time": "2023-04-10T20:10:41+00:00"
  4275. },
  4276. {
  4277. "name": "psr/http-message",
  4278. "version": "1.1",
  4279. "source": {
  4280. "type": "git",
  4281. "url": "https://github.com/php-fig/http-message.git",
  4282. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4283. },
  4284. "dist": {
  4285. "type": "zip",
  4286. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4287. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4288. "shasum": "",
  4289. "mirrors": [
  4290. {
  4291. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4292. "preferred": true
  4293. }
  4294. ]
  4295. },
  4296. "require": {
  4297. "php": "^7.2 || ^8.0"
  4298. },
  4299. "type": "library",
  4300. "extra": {
  4301. "branch-alias": {
  4302. "dev-master": "1.1.x-dev"
  4303. }
  4304. },
  4305. "autoload": {
  4306. "psr-4": {
  4307. "Psr\\Http\\Message\\": "src/"
  4308. }
  4309. },
  4310. "notification-url": "https://packagist.org/downloads/",
  4311. "license": [
  4312. "MIT"
  4313. ],
  4314. "authors": [
  4315. {
  4316. "name": "PHP-FIG",
  4317. "homepage": "http://www.php-fig.org/"
  4318. }
  4319. ],
  4320. "description": "Common interface for HTTP messages",
  4321. "homepage": "https://github.com/php-fig/http-message",
  4322. "keywords": [
  4323. "http",
  4324. "http-message",
  4325. "psr",
  4326. "psr-7",
  4327. "request",
  4328. "response"
  4329. ],
  4330. "support": {
  4331. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4332. },
  4333. "time": "2023-04-04T09:50:52+00:00"
  4334. },
  4335. {
  4336. "name": "psr/log",
  4337. "version": "2.0.0",
  4338. "source": {
  4339. "type": "git",
  4340. "url": "https://github.com/php-fig/log.git",
  4341. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4342. },
  4343. "dist": {
  4344. "type": "zip",
  4345. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4346. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4347. "shasum": "",
  4348. "mirrors": [
  4349. {
  4350. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4351. "preferred": true
  4352. }
  4353. ]
  4354. },
  4355. "require": {
  4356. "php": ">=8.0.0"
  4357. },
  4358. "type": "library",
  4359. "extra": {
  4360. "branch-alias": {
  4361. "dev-master": "2.0.x-dev"
  4362. }
  4363. },
  4364. "autoload": {
  4365. "psr-4": {
  4366. "Psr\\Log\\": "src"
  4367. }
  4368. },
  4369. "notification-url": "https://packagist.org/downloads/",
  4370. "license": [
  4371. "MIT"
  4372. ],
  4373. "authors": [
  4374. {
  4375. "name": "PHP-FIG",
  4376. "homepage": "https://www.php-fig.org/"
  4377. }
  4378. ],
  4379. "description": "Common interface for logging libraries",
  4380. "homepage": "https://github.com/php-fig/log",
  4381. "keywords": [
  4382. "log",
  4383. "psr",
  4384. "psr-3"
  4385. ],
  4386. "support": {
  4387. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4388. },
  4389. "time": "2021-07-14T16:41:46+00:00"
  4390. },
  4391. {
  4392. "name": "psr/simple-cache",
  4393. "version": "1.0.1",
  4394. "source": {
  4395. "type": "git",
  4396. "url": "https://github.com/php-fig/simple-cache.git",
  4397. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4398. },
  4399. "dist": {
  4400. "type": "zip",
  4401. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4402. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4403. "shasum": "",
  4404. "mirrors": [
  4405. {
  4406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4407. "preferred": true
  4408. }
  4409. ]
  4410. },
  4411. "require": {
  4412. "php": ">=5.3.0"
  4413. },
  4414. "type": "library",
  4415. "extra": {
  4416. "branch-alias": {
  4417. "dev-master": "1.0.x-dev"
  4418. }
  4419. },
  4420. "autoload": {
  4421. "psr-4": {
  4422. "Psr\\SimpleCache\\": "src/"
  4423. }
  4424. },
  4425. "notification-url": "https://packagist.org/downloads/",
  4426. "license": [
  4427. "MIT"
  4428. ],
  4429. "authors": [
  4430. {
  4431. "name": "PHP-FIG",
  4432. "homepage": "http://www.php-fig.org/"
  4433. }
  4434. ],
  4435. "description": "Common interfaces for simple caching",
  4436. "keywords": [
  4437. "cache",
  4438. "caching",
  4439. "psr",
  4440. "psr-16",
  4441. "simple-cache"
  4442. ],
  4443. "support": {
  4444. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4445. },
  4446. "time": "2017-10-23T01:57:42+00:00"
  4447. },
  4448. {
  4449. "name": "psy/psysh",
  4450. "version": "v0.12.4",
  4451. "source": {
  4452. "type": "git",
  4453. "url": "https://github.com/bobthecow/psysh.git",
  4454. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  4455. },
  4456. "dist": {
  4457. "type": "zip",
  4458. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  4459. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  4460. "shasum": "",
  4461. "mirrors": [
  4462. {
  4463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4464. "preferred": true
  4465. }
  4466. ]
  4467. },
  4468. "require": {
  4469. "ext-json": "*",
  4470. "ext-tokenizer": "*",
  4471. "nikic/php-parser": "^5.0 || ^4.0",
  4472. "php": "^8.0 || ^7.4",
  4473. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4474. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4475. },
  4476. "conflict": {
  4477. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4478. },
  4479. "require-dev": {
  4480. "bamarni/composer-bin-plugin": "^1.2"
  4481. },
  4482. "suggest": {
  4483. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4484. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4485. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4486. },
  4487. "bin": [
  4488. "bin/psysh"
  4489. ],
  4490. "type": "library",
  4491. "extra": {
  4492. "branch-alias": {
  4493. "dev-main": "0.12.x-dev"
  4494. },
  4495. "bamarni-bin": {
  4496. "bin-links": false,
  4497. "forward-command": false
  4498. }
  4499. },
  4500. "autoload": {
  4501. "files": [
  4502. "src/functions.php"
  4503. ],
  4504. "psr-4": {
  4505. "Psy\\": "src/"
  4506. }
  4507. },
  4508. "notification-url": "https://packagist.org/downloads/",
  4509. "license": [
  4510. "MIT"
  4511. ],
  4512. "authors": [
  4513. {
  4514. "name": "Justin Hileman",
  4515. "email": "justin@justinhileman.info",
  4516. "homepage": "http://justinhileman.com"
  4517. }
  4518. ],
  4519. "description": "An interactive shell for modern PHP.",
  4520. "homepage": "http://psysh.org",
  4521. "keywords": [
  4522. "REPL",
  4523. "console",
  4524. "interactive",
  4525. "shell"
  4526. ],
  4527. "support": {
  4528. "issues": "https://github.com/bobthecow/psysh/issues",
  4529. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  4530. },
  4531. "time": "2024-06-10T01:18:23+00:00"
  4532. },
  4533. {
  4534. "name": "ralouphie/getallheaders",
  4535. "version": "3.0.3",
  4536. "source": {
  4537. "type": "git",
  4538. "url": "https://github.com/ralouphie/getallheaders.git",
  4539. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4540. },
  4541. "dist": {
  4542. "type": "zip",
  4543. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4544. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4545. "shasum": "",
  4546. "mirrors": [
  4547. {
  4548. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4549. "preferred": true
  4550. }
  4551. ]
  4552. },
  4553. "require": {
  4554. "php": ">=5.6"
  4555. },
  4556. "require-dev": {
  4557. "php-coveralls/php-coveralls": "^2.1",
  4558. "phpunit/phpunit": "^5 || ^6.5"
  4559. },
  4560. "type": "library",
  4561. "autoload": {
  4562. "files": [
  4563. "src/getallheaders.php"
  4564. ]
  4565. },
  4566. "notification-url": "https://packagist.org/downloads/",
  4567. "license": [
  4568. "MIT"
  4569. ],
  4570. "authors": [
  4571. {
  4572. "name": "Ralph Khattar",
  4573. "email": "ralph.khattar@gmail.com"
  4574. }
  4575. ],
  4576. "description": "A polyfill for getallheaders.",
  4577. "support": {
  4578. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4579. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4580. },
  4581. "time": "2019-03-08T08:55:37+00:00"
  4582. },
  4583. {
  4584. "name": "ramsey/collection",
  4585. "version": "1.3.0",
  4586. "source": {
  4587. "type": "git",
  4588. "url": "https://github.com/ramsey/collection.git",
  4589. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4590. },
  4591. "dist": {
  4592. "type": "zip",
  4593. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4594. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4595. "shasum": "",
  4596. "mirrors": [
  4597. {
  4598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4599. "preferred": true
  4600. }
  4601. ]
  4602. },
  4603. "require": {
  4604. "php": "^7.4 || ^8.0",
  4605. "symfony/polyfill-php81": "^1.23"
  4606. },
  4607. "require-dev": {
  4608. "captainhook/plugin-composer": "^5.3",
  4609. "ergebnis/composer-normalize": "^2.28.3",
  4610. "fakerphp/faker": "^1.21",
  4611. "hamcrest/hamcrest-php": "^2.0",
  4612. "jangregor/phpstan-prophecy": "^1.0",
  4613. "mockery/mockery": "^1.5",
  4614. "php-parallel-lint/php-console-highlighter": "^1.0",
  4615. "php-parallel-lint/php-parallel-lint": "^1.3",
  4616. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4617. "phpspec/prophecy-phpunit": "^2.0",
  4618. "phpstan/extension-installer": "^1.2",
  4619. "phpstan/phpstan": "^1.9",
  4620. "phpstan/phpstan-mockery": "^1.1",
  4621. "phpstan/phpstan-phpunit": "^1.3",
  4622. "phpunit/phpunit": "^9.5",
  4623. "psalm/plugin-mockery": "^1.1",
  4624. "psalm/plugin-phpunit": "^0.18.4",
  4625. "ramsey/coding-standard": "^2.0.3",
  4626. "ramsey/conventional-commits": "^1.3",
  4627. "vimeo/psalm": "^5.4"
  4628. },
  4629. "type": "library",
  4630. "extra": {
  4631. "captainhook": {
  4632. "force-install": true
  4633. },
  4634. "ramsey/conventional-commits": {
  4635. "configFile": "conventional-commits.json"
  4636. }
  4637. },
  4638. "autoload": {
  4639. "psr-4": {
  4640. "Ramsey\\Collection\\": "src/"
  4641. }
  4642. },
  4643. "notification-url": "https://packagist.org/downloads/",
  4644. "license": [
  4645. "MIT"
  4646. ],
  4647. "authors": [
  4648. {
  4649. "name": "Ben Ramsey",
  4650. "email": "ben@benramsey.com",
  4651. "homepage": "https://benramsey.com"
  4652. }
  4653. ],
  4654. "description": "A PHP library for representing and manipulating collections.",
  4655. "keywords": [
  4656. "array",
  4657. "collection",
  4658. "hash",
  4659. "map",
  4660. "queue",
  4661. "set"
  4662. ],
  4663. "support": {
  4664. "issues": "https://github.com/ramsey/collection/issues",
  4665. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4666. },
  4667. "funding": [
  4668. {
  4669. "url": "https://github.com/ramsey",
  4670. "type": "github"
  4671. },
  4672. {
  4673. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4674. "type": "tidelift"
  4675. }
  4676. ],
  4677. "time": "2022-12-27T19:12:24+00:00"
  4678. },
  4679. {
  4680. "name": "ramsey/uuid",
  4681. "version": "4.7.5",
  4682. "source": {
  4683. "type": "git",
  4684. "url": "https://github.com/ramsey/uuid.git",
  4685. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  4686. },
  4687. "dist": {
  4688. "type": "zip",
  4689. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4690. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4691. "shasum": "",
  4692. "mirrors": [
  4693. {
  4694. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4695. "preferred": true
  4696. }
  4697. ]
  4698. },
  4699. "require": {
  4700. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4701. "ext-json": "*",
  4702. "php": "^8.0",
  4703. "ramsey/collection": "^1.2 || ^2.0"
  4704. },
  4705. "replace": {
  4706. "rhumsaa/uuid": "self.version"
  4707. },
  4708. "require-dev": {
  4709. "captainhook/captainhook": "^5.10",
  4710. "captainhook/plugin-composer": "^5.3",
  4711. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4712. "doctrine/annotations": "^1.8",
  4713. "ergebnis/composer-normalize": "^2.15",
  4714. "mockery/mockery": "^1.3",
  4715. "paragonie/random-lib": "^2",
  4716. "php-mock/php-mock": "^2.2",
  4717. "php-mock/php-mock-mockery": "^1.3",
  4718. "php-parallel-lint/php-parallel-lint": "^1.1",
  4719. "phpbench/phpbench": "^1.0",
  4720. "phpstan/extension-installer": "^1.1",
  4721. "phpstan/phpstan": "^1.8",
  4722. "phpstan/phpstan-mockery": "^1.1",
  4723. "phpstan/phpstan-phpunit": "^1.1",
  4724. "phpunit/phpunit": "^8.5 || ^9",
  4725. "ramsey/composer-repl": "^1.4",
  4726. "slevomat/coding-standard": "^8.4",
  4727. "squizlabs/php_codesniffer": "^3.5",
  4728. "vimeo/psalm": "^4.9"
  4729. },
  4730. "suggest": {
  4731. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4732. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4733. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4734. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4735. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4736. },
  4737. "type": "library",
  4738. "extra": {
  4739. "captainhook": {
  4740. "force-install": true
  4741. }
  4742. },
  4743. "autoload": {
  4744. "files": [
  4745. "src/functions.php"
  4746. ],
  4747. "psr-4": {
  4748. "Ramsey\\Uuid\\": "src/"
  4749. }
  4750. },
  4751. "notification-url": "https://packagist.org/downloads/",
  4752. "license": [
  4753. "MIT"
  4754. ],
  4755. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4756. "keywords": [
  4757. "guid",
  4758. "identifier",
  4759. "uuid"
  4760. ],
  4761. "support": {
  4762. "issues": "https://github.com/ramsey/uuid/issues",
  4763. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  4764. },
  4765. "funding": [
  4766. {
  4767. "url": "https://github.com/ramsey",
  4768. "type": "github"
  4769. },
  4770. {
  4771. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4772. "type": "tidelift"
  4773. }
  4774. ],
  4775. "time": "2023-11-08T05:53:05+00:00"
  4776. },
  4777. {
  4778. "name": "ratchet/rfc6455",
  4779. "version": "v0.3.1",
  4780. "source": {
  4781. "type": "git",
  4782. "url": "https://github.com/ratchetphp/RFC6455.git",
  4783. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  4784. },
  4785. "dist": {
  4786. "type": "zip",
  4787. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4788. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4789. "shasum": "",
  4790. "mirrors": [
  4791. {
  4792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4793. "preferred": true
  4794. }
  4795. ]
  4796. },
  4797. "require": {
  4798. "guzzlehttp/psr7": "^2 || ^1.7",
  4799. "php": ">=5.4.2"
  4800. },
  4801. "require-dev": {
  4802. "phpunit/phpunit": "^5.7",
  4803. "react/socket": "^1.3"
  4804. },
  4805. "type": "library",
  4806. "autoload": {
  4807. "psr-4": {
  4808. "Ratchet\\RFC6455\\": "src"
  4809. }
  4810. },
  4811. "notification-url": "https://packagist.org/downloads/",
  4812. "license": [
  4813. "MIT"
  4814. ],
  4815. "authors": [
  4816. {
  4817. "name": "Chris Boden",
  4818. "email": "cboden@gmail.com",
  4819. "role": "Developer"
  4820. },
  4821. {
  4822. "name": "Matt Bonneau",
  4823. "role": "Developer"
  4824. }
  4825. ],
  4826. "description": "RFC6455 WebSocket protocol handler",
  4827. "homepage": "http://socketo.me",
  4828. "keywords": [
  4829. "WebSockets",
  4830. "rfc6455",
  4831. "websocket"
  4832. ],
  4833. "support": {
  4834. "chat": "https://gitter.im/reactphp/reactphp",
  4835. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  4836. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  4837. },
  4838. "time": "2021-12-09T23:20:49+00:00"
  4839. },
  4840. {
  4841. "name": "react/cache",
  4842. "version": "v1.2.0",
  4843. "source": {
  4844. "type": "git",
  4845. "url": "https://github.com/reactphp/cache.git",
  4846. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4847. },
  4848. "dist": {
  4849. "type": "zip",
  4850. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4851. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4852. "shasum": "",
  4853. "mirrors": [
  4854. {
  4855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4856. "preferred": true
  4857. }
  4858. ]
  4859. },
  4860. "require": {
  4861. "php": ">=5.3.0",
  4862. "react/promise": "^3.0 || ^2.0 || ^1.1"
  4863. },
  4864. "require-dev": {
  4865. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  4866. },
  4867. "type": "library",
  4868. "autoload": {
  4869. "psr-4": {
  4870. "React\\Cache\\": "src/"
  4871. }
  4872. },
  4873. "notification-url": "https://packagist.org/downloads/",
  4874. "license": [
  4875. "MIT"
  4876. ],
  4877. "authors": [
  4878. {
  4879. "name": "Christian Lück",
  4880. "email": "christian@clue.engineering",
  4881. "homepage": "https://clue.engineering/"
  4882. },
  4883. {
  4884. "name": "Cees-Jan Kiewiet",
  4885. "email": "reactphp@ceesjankiewiet.nl",
  4886. "homepage": "https://wyrihaximus.net/"
  4887. },
  4888. {
  4889. "name": "Jan Sorgalla",
  4890. "email": "jsorgalla@gmail.com",
  4891. "homepage": "https://sorgalla.com/"
  4892. },
  4893. {
  4894. "name": "Chris Boden",
  4895. "email": "cboden@gmail.com",
  4896. "homepage": "https://cboden.dev/"
  4897. }
  4898. ],
  4899. "description": "Async, Promise-based cache interface for ReactPHP",
  4900. "keywords": [
  4901. "cache",
  4902. "caching",
  4903. "promise",
  4904. "reactphp"
  4905. ],
  4906. "support": {
  4907. "issues": "https://github.com/reactphp/cache/issues",
  4908. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  4909. },
  4910. "funding": [
  4911. {
  4912. "url": "https://opencollective.com/reactphp",
  4913. "type": "open_collective"
  4914. }
  4915. ],
  4916. "time": "2022-11-30T15:59:55+00:00"
  4917. },
  4918. {
  4919. "name": "react/dns",
  4920. "version": "v1.13.0",
  4921. "source": {
  4922. "type": "git",
  4923. "url": "https://github.com/reactphp/dns.git",
  4924. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  4925. },
  4926. "dist": {
  4927. "type": "zip",
  4928. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  4929. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  4930. "shasum": "",
  4931. "mirrors": [
  4932. {
  4933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4934. "preferred": true
  4935. }
  4936. ]
  4937. },
  4938. "require": {
  4939. "php": ">=5.3.0",
  4940. "react/cache": "^1.0 || ^0.6 || ^0.5",
  4941. "react/event-loop": "^1.2",
  4942. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  4943. },
  4944. "require-dev": {
  4945. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4946. "react/async": "^4.3 || ^3 || ^2",
  4947. "react/promise-timer": "^1.11"
  4948. },
  4949. "type": "library",
  4950. "autoload": {
  4951. "psr-4": {
  4952. "React\\Dns\\": "src/"
  4953. }
  4954. },
  4955. "notification-url": "https://packagist.org/downloads/",
  4956. "license": [
  4957. "MIT"
  4958. ],
  4959. "authors": [
  4960. {
  4961. "name": "Christian Lück",
  4962. "email": "christian@clue.engineering",
  4963. "homepage": "https://clue.engineering/"
  4964. },
  4965. {
  4966. "name": "Cees-Jan Kiewiet",
  4967. "email": "reactphp@ceesjankiewiet.nl",
  4968. "homepage": "https://wyrihaximus.net/"
  4969. },
  4970. {
  4971. "name": "Jan Sorgalla",
  4972. "email": "jsorgalla@gmail.com",
  4973. "homepage": "https://sorgalla.com/"
  4974. },
  4975. {
  4976. "name": "Chris Boden",
  4977. "email": "cboden@gmail.com",
  4978. "homepage": "https://cboden.dev/"
  4979. }
  4980. ],
  4981. "description": "Async DNS resolver for ReactPHP",
  4982. "keywords": [
  4983. "async",
  4984. "dns",
  4985. "dns-resolver",
  4986. "reactphp"
  4987. ],
  4988. "support": {
  4989. "issues": "https://github.com/reactphp/dns/issues",
  4990. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  4991. },
  4992. "funding": [
  4993. {
  4994. "url": "https://opencollective.com/reactphp",
  4995. "type": "open_collective"
  4996. }
  4997. ],
  4998. "time": "2024-06-13T14:18:03+00:00"
  4999. },
  5000. {
  5001. "name": "react/event-loop",
  5002. "version": "v1.5.0",
  5003. "source": {
  5004. "type": "git",
  5005. "url": "https://github.com/reactphp/event-loop.git",
  5006. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  5007. },
  5008. "dist": {
  5009. "type": "zip",
  5010. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  5011. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  5012. "shasum": "",
  5013. "mirrors": [
  5014. {
  5015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5016. "preferred": true
  5017. }
  5018. ]
  5019. },
  5020. "require": {
  5021. "php": ">=5.3.0"
  5022. },
  5023. "require-dev": {
  5024. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5025. },
  5026. "suggest": {
  5027. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  5028. },
  5029. "type": "library",
  5030. "autoload": {
  5031. "psr-4": {
  5032. "React\\EventLoop\\": "src/"
  5033. }
  5034. },
  5035. "notification-url": "https://packagist.org/downloads/",
  5036. "license": [
  5037. "MIT"
  5038. ],
  5039. "authors": [
  5040. {
  5041. "name": "Christian Lück",
  5042. "email": "christian@clue.engineering",
  5043. "homepage": "https://clue.engineering/"
  5044. },
  5045. {
  5046. "name": "Cees-Jan Kiewiet",
  5047. "email": "reactphp@ceesjankiewiet.nl",
  5048. "homepage": "https://wyrihaximus.net/"
  5049. },
  5050. {
  5051. "name": "Jan Sorgalla",
  5052. "email": "jsorgalla@gmail.com",
  5053. "homepage": "https://sorgalla.com/"
  5054. },
  5055. {
  5056. "name": "Chris Boden",
  5057. "email": "cboden@gmail.com",
  5058. "homepage": "https://cboden.dev/"
  5059. }
  5060. ],
  5061. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  5062. "keywords": [
  5063. "asynchronous",
  5064. "event-loop"
  5065. ],
  5066. "support": {
  5067. "issues": "https://github.com/reactphp/event-loop/issues",
  5068. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  5069. },
  5070. "funding": [
  5071. {
  5072. "url": "https://opencollective.com/reactphp",
  5073. "type": "open_collective"
  5074. }
  5075. ],
  5076. "time": "2023-11-13T13:48:05+00:00"
  5077. },
  5078. {
  5079. "name": "react/promise",
  5080. "version": "v2.11.0",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/reactphp/promise.git",
  5084. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/reactphp/promise/zipball/1a8460931ea36dc5c76838fec5734d55c88c6831",
  5089. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831",
  5090. "shasum": "",
  5091. "mirrors": [
  5092. {
  5093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5094. "preferred": true
  5095. }
  5096. ]
  5097. },
  5098. "require": {
  5099. "php": ">=5.4.0"
  5100. },
  5101. "require-dev": {
  5102. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5103. },
  5104. "type": "library",
  5105. "autoload": {
  5106. "files": [
  5107. "src/functions_include.php"
  5108. ],
  5109. "psr-4": {
  5110. "React\\Promise\\": "src/"
  5111. }
  5112. },
  5113. "notification-url": "https://packagist.org/downloads/",
  5114. "license": [
  5115. "MIT"
  5116. ],
  5117. "authors": [
  5118. {
  5119. "name": "Jan Sorgalla",
  5120. "email": "jsorgalla@gmail.com",
  5121. "homepage": "https://sorgalla.com/"
  5122. },
  5123. {
  5124. "name": "Christian Lück",
  5125. "email": "christian@clue.engineering",
  5126. "homepage": "https://clue.engineering/"
  5127. },
  5128. {
  5129. "name": "Cees-Jan Kiewiet",
  5130. "email": "reactphp@ceesjankiewiet.nl",
  5131. "homepage": "https://wyrihaximus.net/"
  5132. },
  5133. {
  5134. "name": "Chris Boden",
  5135. "email": "cboden@gmail.com",
  5136. "homepage": "https://cboden.dev/"
  5137. }
  5138. ],
  5139. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5140. "keywords": [
  5141. "promise",
  5142. "promises"
  5143. ],
  5144. "support": {
  5145. "issues": "https://github.com/reactphp/promise/issues",
  5146. "source": "https://github.com/reactphp/promise/tree/v2.11.0"
  5147. },
  5148. "funding": [
  5149. {
  5150. "url": "https://opencollective.com/reactphp",
  5151. "type": "open_collective"
  5152. }
  5153. ],
  5154. "time": "2023-11-16T16:16:50+00:00"
  5155. },
  5156. {
  5157. "name": "react/socket",
  5158. "version": "v1.16.0",
  5159. "source": {
  5160. "type": "git",
  5161. "url": "https://github.com/reactphp/socket.git",
  5162. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  5163. },
  5164. "dist": {
  5165. "type": "zip",
  5166. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5167. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5168. "shasum": "",
  5169. "mirrors": [
  5170. {
  5171. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5172. "preferred": true
  5173. }
  5174. ]
  5175. },
  5176. "require": {
  5177. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5178. "php": ">=5.3.0",
  5179. "react/dns": "^1.13",
  5180. "react/event-loop": "^1.2",
  5181. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  5182. "react/stream": "^1.4"
  5183. },
  5184. "require-dev": {
  5185. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5186. "react/async": "^4.3 || ^3.3 || ^2",
  5187. "react/promise-stream": "^1.4",
  5188. "react/promise-timer": "^1.11"
  5189. },
  5190. "type": "library",
  5191. "autoload": {
  5192. "psr-4": {
  5193. "React\\Socket\\": "src/"
  5194. }
  5195. },
  5196. "notification-url": "https://packagist.org/downloads/",
  5197. "license": [
  5198. "MIT"
  5199. ],
  5200. "authors": [
  5201. {
  5202. "name": "Christian Lück",
  5203. "email": "christian@clue.engineering",
  5204. "homepage": "https://clue.engineering/"
  5205. },
  5206. {
  5207. "name": "Cees-Jan Kiewiet",
  5208. "email": "reactphp@ceesjankiewiet.nl",
  5209. "homepage": "https://wyrihaximus.net/"
  5210. },
  5211. {
  5212. "name": "Jan Sorgalla",
  5213. "email": "jsorgalla@gmail.com",
  5214. "homepage": "https://sorgalla.com/"
  5215. },
  5216. {
  5217. "name": "Chris Boden",
  5218. "email": "cboden@gmail.com",
  5219. "homepage": "https://cboden.dev/"
  5220. }
  5221. ],
  5222. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5223. "keywords": [
  5224. "Connection",
  5225. "Socket",
  5226. "async",
  5227. "reactphp",
  5228. "stream"
  5229. ],
  5230. "support": {
  5231. "issues": "https://github.com/reactphp/socket/issues",
  5232. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  5233. },
  5234. "funding": [
  5235. {
  5236. "url": "https://opencollective.com/reactphp",
  5237. "type": "open_collective"
  5238. }
  5239. ],
  5240. "time": "2024-07-26T10:38:09+00:00"
  5241. },
  5242. {
  5243. "name": "react/stream",
  5244. "version": "1.x-dev",
  5245. "source": {
  5246. "type": "git",
  5247. "url": "https://github.com/reactphp/stream.git",
  5248. "reference": "d258e4030dfaecdda9a24696720c0d50be49e5ce"
  5249. },
  5250. "dist": {
  5251. "type": "zip",
  5252. "url": "https://api.github.com/repos/reactphp/stream/zipball/d258e4030dfaecdda9a24696720c0d50be49e5ce",
  5253. "reference": "d258e4030dfaecdda9a24696720c0d50be49e5ce",
  5254. "shasum": "",
  5255. "mirrors": [
  5256. {
  5257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5258. "preferred": true
  5259. }
  5260. ]
  5261. },
  5262. "require": {
  5263. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5264. "php": ">=5.3.8",
  5265. "react/event-loop": "^1.2"
  5266. },
  5267. "require-dev": {
  5268. "clue/stream-filter": "~1.2",
  5269. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5270. },
  5271. "type": "library",
  5272. "autoload": {
  5273. "psr-4": {
  5274. "React\\Stream\\": "src/"
  5275. }
  5276. },
  5277. "notification-url": "https://packagist.org/downloads/",
  5278. "license": [
  5279. "MIT"
  5280. ],
  5281. "authors": [
  5282. {
  5283. "name": "Christian Lück",
  5284. "email": "christian@clue.engineering",
  5285. "homepage": "https://clue.engineering/"
  5286. },
  5287. {
  5288. "name": "Cees-Jan Kiewiet",
  5289. "email": "reactphp@ceesjankiewiet.nl",
  5290. "homepage": "https://wyrihaximus.net/"
  5291. },
  5292. {
  5293. "name": "Jan Sorgalla",
  5294. "email": "jsorgalla@gmail.com",
  5295. "homepage": "https://sorgalla.com/"
  5296. },
  5297. {
  5298. "name": "Chris Boden",
  5299. "email": "cboden@gmail.com",
  5300. "homepage": "https://cboden.dev/"
  5301. }
  5302. ],
  5303. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5304. "keywords": [
  5305. "event-driven",
  5306. "io",
  5307. "non-blocking",
  5308. "pipe",
  5309. "reactphp",
  5310. "readable",
  5311. "stream",
  5312. "writable"
  5313. ],
  5314. "support": {
  5315. "issues": "https://github.com/reactphp/stream/issues",
  5316. "source": "https://github.com/reactphp/stream/tree/1.x"
  5317. },
  5318. "funding": [
  5319. {
  5320. "url": "https://opencollective.com/reactphp",
  5321. "type": "open_collective"
  5322. }
  5323. ],
  5324. "time": "2024-05-19T19:29:40+00:00"
  5325. },
  5326. {
  5327. "name": "stephenhill/base58",
  5328. "version": "v1.1.5",
  5329. "source": {
  5330. "type": "git",
  5331. "url": "https://github.com/stephen-hill/base58php.git",
  5332. "reference": "bd9fc19c788160a2f85ba0a19cd800eaf5ba5e99"
  5333. },
  5334. "dist": {
  5335. "type": "zip",
  5336. "url": "https://api.github.com/repos/stephen-hill/base58php/zipball/bd9fc19c788160a2f85ba0a19cd800eaf5ba5e99",
  5337. "reference": "bd9fc19c788160a2f85ba0a19cd800eaf5ba5e99",
  5338. "shasum": "",
  5339. "mirrors": [
  5340. {
  5341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5342. "preferred": true
  5343. }
  5344. ]
  5345. },
  5346. "require-dev": {
  5347. "athletic/athletic": "~0.1",
  5348. "phpunit/phpunit": "4.*"
  5349. },
  5350. "type": "library",
  5351. "autoload": {
  5352. "psr-4": {
  5353. "StephenHill\\": "src/",
  5354. "StephenHill\\Benchmarks\\": "benchmarks/"
  5355. }
  5356. },
  5357. "notification-url": "https://packagist.org/downloads/",
  5358. "license": [
  5359. "MIT"
  5360. ],
  5361. "authors": [
  5362. {
  5363. "name": "Stephen Hill",
  5364. "email": "stephen@gatekiller.co.uk"
  5365. }
  5366. ],
  5367. "description": "Base58 Encoding and Decoding Library for PHP",
  5368. "support": {
  5369. "issues": "https://github.com/stephen-hill/base58php/issues",
  5370. "source": "https://github.com/stephen-hill/base58php/tree/v1.1.5"
  5371. },
  5372. "time": "2019-08-22T16:51:59+00:00"
  5373. },
  5374. {
  5375. "name": "swiftmailer/swiftmailer",
  5376. "version": "v6.3.0",
  5377. "source": {
  5378. "type": "git",
  5379. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5380. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5381. },
  5382. "dist": {
  5383. "type": "zip",
  5384. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5385. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5386. "shasum": "",
  5387. "mirrors": [
  5388. {
  5389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5390. "preferred": true
  5391. }
  5392. ]
  5393. },
  5394. "require": {
  5395. "egulias/email-validator": "^2.0|^3.1",
  5396. "php": ">=7.0.0",
  5397. "symfony/polyfill-iconv": "^1.0",
  5398. "symfony/polyfill-intl-idn": "^1.10",
  5399. "symfony/polyfill-mbstring": "^1.0"
  5400. },
  5401. "require-dev": {
  5402. "mockery/mockery": "^1.0",
  5403. "symfony/phpunit-bridge": "^4.4|^5.4"
  5404. },
  5405. "suggest": {
  5406. "ext-intl": "Needed to support internationalized email addresses"
  5407. },
  5408. "type": "library",
  5409. "extra": {
  5410. "branch-alias": {
  5411. "dev-master": "6.2-dev"
  5412. }
  5413. },
  5414. "autoload": {
  5415. "files": [
  5416. "lib/swift_required.php"
  5417. ]
  5418. },
  5419. "notification-url": "https://packagist.org/downloads/",
  5420. "license": [
  5421. "MIT"
  5422. ],
  5423. "authors": [
  5424. {
  5425. "name": "Chris Corbyn"
  5426. },
  5427. {
  5428. "name": "Fabien Potencier",
  5429. "email": "fabien@symfony.com"
  5430. }
  5431. ],
  5432. "description": "Swiftmailer, free feature-rich PHP mailer",
  5433. "homepage": "https://swiftmailer.symfony.com",
  5434. "keywords": [
  5435. "email",
  5436. "mail",
  5437. "mailer"
  5438. ],
  5439. "support": {
  5440. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5441. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5442. },
  5443. "funding": [
  5444. {
  5445. "url": "https://github.com/fabpot",
  5446. "type": "github"
  5447. },
  5448. {
  5449. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5450. "type": "tidelift"
  5451. }
  5452. ],
  5453. "abandoned": "symfony/mailer",
  5454. "time": "2021-10-18T15:26:12+00:00"
  5455. },
  5456. {
  5457. "name": "symfony/console",
  5458. "version": "v5.4.40",
  5459. "source": {
  5460. "type": "git",
  5461. "url": "https://github.com/symfony/console.git",
  5462. "reference": "aa73115c0c24220b523625bfcfa655d7d73662dd"
  5463. },
  5464. "dist": {
  5465. "type": "zip",
  5466. "url": "https://api.github.com/repos/symfony/console/zipball/aa73115c0c24220b523625bfcfa655d7d73662dd",
  5467. "reference": "aa73115c0c24220b523625bfcfa655d7d73662dd",
  5468. "shasum": "",
  5469. "mirrors": [
  5470. {
  5471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5472. "preferred": true
  5473. }
  5474. ]
  5475. },
  5476. "require": {
  5477. "php": ">=7.2.5",
  5478. "symfony/deprecation-contracts": "^2.1|^3",
  5479. "symfony/polyfill-mbstring": "~1.0",
  5480. "symfony/polyfill-php73": "^1.9",
  5481. "symfony/polyfill-php80": "^1.16",
  5482. "symfony/service-contracts": "^1.1|^2|^3",
  5483. "symfony/string": "^5.1|^6.0"
  5484. },
  5485. "conflict": {
  5486. "psr/log": ">=3",
  5487. "symfony/dependency-injection": "<4.4",
  5488. "symfony/dotenv": "<5.1",
  5489. "symfony/event-dispatcher": "<4.4",
  5490. "symfony/lock": "<4.4",
  5491. "symfony/process": "<4.4"
  5492. },
  5493. "provide": {
  5494. "psr/log-implementation": "1.0|2.0"
  5495. },
  5496. "require-dev": {
  5497. "psr/log": "^1|^2",
  5498. "symfony/config": "^4.4|^5.0|^6.0",
  5499. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5500. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5501. "symfony/lock": "^4.4|^5.0|^6.0",
  5502. "symfony/process": "^4.4|^5.0|^6.0",
  5503. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5504. },
  5505. "suggest": {
  5506. "psr/log": "For using the console logger",
  5507. "symfony/event-dispatcher": "",
  5508. "symfony/lock": "",
  5509. "symfony/process": ""
  5510. },
  5511. "type": "library",
  5512. "autoload": {
  5513. "psr-4": {
  5514. "Symfony\\Component\\Console\\": ""
  5515. },
  5516. "exclude-from-classmap": [
  5517. "/Tests/"
  5518. ]
  5519. },
  5520. "notification-url": "https://packagist.org/downloads/",
  5521. "license": [
  5522. "MIT"
  5523. ],
  5524. "authors": [
  5525. {
  5526. "name": "Fabien Potencier",
  5527. "email": "fabien@symfony.com"
  5528. },
  5529. {
  5530. "name": "Symfony Community",
  5531. "homepage": "https://symfony.com/contributors"
  5532. }
  5533. ],
  5534. "description": "Eases the creation of beautiful and testable command line interfaces",
  5535. "homepage": "https://symfony.com",
  5536. "keywords": [
  5537. "cli",
  5538. "command-line",
  5539. "console",
  5540. "terminal"
  5541. ],
  5542. "support": {
  5543. "source": "https://github.com/symfony/console/tree/v5.4.40"
  5544. },
  5545. "funding": [
  5546. {
  5547. "url": "https://symfony.com/sponsor",
  5548. "type": "custom"
  5549. },
  5550. {
  5551. "url": "https://github.com/fabpot",
  5552. "type": "github"
  5553. },
  5554. {
  5555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5556. "type": "tidelift"
  5557. }
  5558. ],
  5559. "time": "2024-05-31T14:33:22+00:00"
  5560. },
  5561. {
  5562. "name": "symfony/css-selector",
  5563. "version": "v6.0.19",
  5564. "source": {
  5565. "type": "git",
  5566. "url": "https://github.com/symfony/css-selector.git",
  5567. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5568. },
  5569. "dist": {
  5570. "type": "zip",
  5571. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5572. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5573. "shasum": "",
  5574. "mirrors": [
  5575. {
  5576. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5577. "preferred": true
  5578. }
  5579. ]
  5580. },
  5581. "require": {
  5582. "php": ">=8.0.2"
  5583. },
  5584. "type": "library",
  5585. "autoload": {
  5586. "psr-4": {
  5587. "Symfony\\Component\\CssSelector\\": ""
  5588. },
  5589. "exclude-from-classmap": [
  5590. "/Tests/"
  5591. ]
  5592. },
  5593. "notification-url": "https://packagist.org/downloads/",
  5594. "license": [
  5595. "MIT"
  5596. ],
  5597. "authors": [
  5598. {
  5599. "name": "Fabien Potencier",
  5600. "email": "fabien@symfony.com"
  5601. },
  5602. {
  5603. "name": "Jean-François Simon",
  5604. "email": "jeanfrancois.simon@sensiolabs.com"
  5605. },
  5606. {
  5607. "name": "Symfony Community",
  5608. "homepage": "https://symfony.com/contributors"
  5609. }
  5610. ],
  5611. "description": "Converts CSS selectors to XPath expressions",
  5612. "homepage": "https://symfony.com",
  5613. "support": {
  5614. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5615. },
  5616. "funding": [
  5617. {
  5618. "url": "https://symfony.com/sponsor",
  5619. "type": "custom"
  5620. },
  5621. {
  5622. "url": "https://github.com/fabpot",
  5623. "type": "github"
  5624. },
  5625. {
  5626. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5627. "type": "tidelift"
  5628. }
  5629. ],
  5630. "time": "2023-01-01T08:36:10+00:00"
  5631. },
  5632. {
  5633. "name": "symfony/deprecation-contracts",
  5634. "version": "v3.0.2",
  5635. "source": {
  5636. "type": "git",
  5637. "url": "https://github.com/symfony/deprecation-contracts.git",
  5638. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5639. },
  5640. "dist": {
  5641. "type": "zip",
  5642. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5643. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5644. "shasum": "",
  5645. "mirrors": [
  5646. {
  5647. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5648. "preferred": true
  5649. }
  5650. ]
  5651. },
  5652. "require": {
  5653. "php": ">=8.0.2"
  5654. },
  5655. "type": "library",
  5656. "extra": {
  5657. "branch-alias": {
  5658. "dev-main": "3.0-dev"
  5659. },
  5660. "thanks": {
  5661. "name": "symfony/contracts",
  5662. "url": "https://github.com/symfony/contracts"
  5663. }
  5664. },
  5665. "autoload": {
  5666. "files": [
  5667. "function.php"
  5668. ]
  5669. },
  5670. "notification-url": "https://packagist.org/downloads/",
  5671. "license": [
  5672. "MIT"
  5673. ],
  5674. "authors": [
  5675. {
  5676. "name": "Nicolas Grekas",
  5677. "email": "p@tchwork.com"
  5678. },
  5679. {
  5680. "name": "Symfony Community",
  5681. "homepage": "https://symfony.com/contributors"
  5682. }
  5683. ],
  5684. "description": "A generic function and convention to trigger deprecation notices",
  5685. "homepage": "https://symfony.com",
  5686. "support": {
  5687. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5688. },
  5689. "funding": [
  5690. {
  5691. "url": "https://symfony.com/sponsor",
  5692. "type": "custom"
  5693. },
  5694. {
  5695. "url": "https://github.com/fabpot",
  5696. "type": "github"
  5697. },
  5698. {
  5699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5700. "type": "tidelift"
  5701. }
  5702. ],
  5703. "time": "2022-01-02T09:55:41+00:00"
  5704. },
  5705. {
  5706. "name": "symfony/error-handler",
  5707. "version": "v5.4.42",
  5708. "source": {
  5709. "type": "git",
  5710. "url": "https://github.com/symfony/error-handler.git",
  5711. "reference": "db15ba0fd50890156ed40087ccedc7851a1f5b76"
  5712. },
  5713. "dist": {
  5714. "type": "zip",
  5715. "url": "https://api.github.com/repos/symfony/error-handler/zipball/db15ba0fd50890156ed40087ccedc7851a1f5b76",
  5716. "reference": "db15ba0fd50890156ed40087ccedc7851a1f5b76",
  5717. "shasum": "",
  5718. "mirrors": [
  5719. {
  5720. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5721. "preferred": true
  5722. }
  5723. ]
  5724. },
  5725. "require": {
  5726. "php": ">=7.2.5",
  5727. "psr/log": "^1|^2|^3",
  5728. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5729. },
  5730. "require-dev": {
  5731. "symfony/deprecation-contracts": "^2.1|^3",
  5732. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5733. "symfony/serializer": "^4.4|^5.0|^6.0"
  5734. },
  5735. "bin": [
  5736. "Resources/bin/patch-type-declarations"
  5737. ],
  5738. "type": "library",
  5739. "autoload": {
  5740. "psr-4": {
  5741. "Symfony\\Component\\ErrorHandler\\": ""
  5742. },
  5743. "exclude-from-classmap": [
  5744. "/Tests/"
  5745. ]
  5746. },
  5747. "notification-url": "https://packagist.org/downloads/",
  5748. "license": [
  5749. "MIT"
  5750. ],
  5751. "authors": [
  5752. {
  5753. "name": "Fabien Potencier",
  5754. "email": "fabien@symfony.com"
  5755. },
  5756. {
  5757. "name": "Symfony Community",
  5758. "homepage": "https://symfony.com/contributors"
  5759. }
  5760. ],
  5761. "description": "Provides tools to manage errors and ease debugging PHP code",
  5762. "homepage": "https://symfony.com",
  5763. "support": {
  5764. "source": "https://github.com/symfony/error-handler/tree/v5.4.42"
  5765. },
  5766. "funding": [
  5767. {
  5768. "url": "https://symfony.com/sponsor",
  5769. "type": "custom"
  5770. },
  5771. {
  5772. "url": "https://github.com/fabpot",
  5773. "type": "github"
  5774. },
  5775. {
  5776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5777. "type": "tidelift"
  5778. }
  5779. ],
  5780. "time": "2024-07-23T12:34:05+00:00"
  5781. },
  5782. {
  5783. "name": "symfony/event-dispatcher",
  5784. "version": "v6.0.19",
  5785. "source": {
  5786. "type": "git",
  5787. "url": "https://github.com/symfony/event-dispatcher.git",
  5788. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5789. },
  5790. "dist": {
  5791. "type": "zip",
  5792. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5793. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5794. "shasum": "",
  5795. "mirrors": [
  5796. {
  5797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5798. "preferred": true
  5799. }
  5800. ]
  5801. },
  5802. "require": {
  5803. "php": ">=8.0.2",
  5804. "symfony/event-dispatcher-contracts": "^2|^3"
  5805. },
  5806. "conflict": {
  5807. "symfony/dependency-injection": "<5.4"
  5808. },
  5809. "provide": {
  5810. "psr/event-dispatcher-implementation": "1.0",
  5811. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5812. },
  5813. "require-dev": {
  5814. "psr/log": "^1|^2|^3",
  5815. "symfony/config": "^5.4|^6.0",
  5816. "symfony/dependency-injection": "^5.4|^6.0",
  5817. "symfony/error-handler": "^5.4|^6.0",
  5818. "symfony/expression-language": "^5.4|^6.0",
  5819. "symfony/http-foundation": "^5.4|^6.0",
  5820. "symfony/service-contracts": "^1.1|^2|^3",
  5821. "symfony/stopwatch": "^5.4|^6.0"
  5822. },
  5823. "suggest": {
  5824. "symfony/dependency-injection": "",
  5825. "symfony/http-kernel": ""
  5826. },
  5827. "type": "library",
  5828. "autoload": {
  5829. "psr-4": {
  5830. "Symfony\\Component\\EventDispatcher\\": ""
  5831. },
  5832. "exclude-from-classmap": [
  5833. "/Tests/"
  5834. ]
  5835. },
  5836. "notification-url": "https://packagist.org/downloads/",
  5837. "license": [
  5838. "MIT"
  5839. ],
  5840. "authors": [
  5841. {
  5842. "name": "Fabien Potencier",
  5843. "email": "fabien@symfony.com"
  5844. },
  5845. {
  5846. "name": "Symfony Community",
  5847. "homepage": "https://symfony.com/contributors"
  5848. }
  5849. ],
  5850. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5851. "homepage": "https://symfony.com",
  5852. "support": {
  5853. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5854. },
  5855. "funding": [
  5856. {
  5857. "url": "https://symfony.com/sponsor",
  5858. "type": "custom"
  5859. },
  5860. {
  5861. "url": "https://github.com/fabpot",
  5862. "type": "github"
  5863. },
  5864. {
  5865. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5866. "type": "tidelift"
  5867. }
  5868. ],
  5869. "time": "2023-01-01T08:36:10+00:00"
  5870. },
  5871. {
  5872. "name": "symfony/event-dispatcher-contracts",
  5873. "version": "v3.0.2",
  5874. "source": {
  5875. "type": "git",
  5876. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5877. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5878. },
  5879. "dist": {
  5880. "type": "zip",
  5881. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5882. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5883. "shasum": "",
  5884. "mirrors": [
  5885. {
  5886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5887. "preferred": true
  5888. }
  5889. ]
  5890. },
  5891. "require": {
  5892. "php": ">=8.0.2",
  5893. "psr/event-dispatcher": "^1"
  5894. },
  5895. "suggest": {
  5896. "symfony/event-dispatcher-implementation": ""
  5897. },
  5898. "type": "library",
  5899. "extra": {
  5900. "branch-alias": {
  5901. "dev-main": "3.0-dev"
  5902. },
  5903. "thanks": {
  5904. "name": "symfony/contracts",
  5905. "url": "https://github.com/symfony/contracts"
  5906. }
  5907. },
  5908. "autoload": {
  5909. "psr-4": {
  5910. "Symfony\\Contracts\\EventDispatcher\\": ""
  5911. }
  5912. },
  5913. "notification-url": "https://packagist.org/downloads/",
  5914. "license": [
  5915. "MIT"
  5916. ],
  5917. "authors": [
  5918. {
  5919. "name": "Nicolas Grekas",
  5920. "email": "p@tchwork.com"
  5921. },
  5922. {
  5923. "name": "Symfony Community",
  5924. "homepage": "https://symfony.com/contributors"
  5925. }
  5926. ],
  5927. "description": "Generic abstractions related to dispatching event",
  5928. "homepage": "https://symfony.com",
  5929. "keywords": [
  5930. "abstractions",
  5931. "contracts",
  5932. "decoupling",
  5933. "interfaces",
  5934. "interoperability",
  5935. "standards"
  5936. ],
  5937. "support": {
  5938. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  5939. },
  5940. "funding": [
  5941. {
  5942. "url": "https://symfony.com/sponsor",
  5943. "type": "custom"
  5944. },
  5945. {
  5946. "url": "https://github.com/fabpot",
  5947. "type": "github"
  5948. },
  5949. {
  5950. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5951. "type": "tidelift"
  5952. }
  5953. ],
  5954. "time": "2022-01-02T09:55:41+00:00"
  5955. },
  5956. {
  5957. "name": "symfony/finder",
  5958. "version": "v5.4.42",
  5959. "source": {
  5960. "type": "git",
  5961. "url": "https://github.com/symfony/finder.git",
  5962. "reference": "0724c51fa067b198e36506d2864e09a52180998a"
  5963. },
  5964. "dist": {
  5965. "type": "zip",
  5966. "url": "https://api.github.com/repos/symfony/finder/zipball/0724c51fa067b198e36506d2864e09a52180998a",
  5967. "reference": "0724c51fa067b198e36506d2864e09a52180998a",
  5968. "shasum": "",
  5969. "mirrors": [
  5970. {
  5971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5972. "preferred": true
  5973. }
  5974. ]
  5975. },
  5976. "require": {
  5977. "php": ">=7.2.5",
  5978. "symfony/deprecation-contracts": "^2.1|^3",
  5979. "symfony/polyfill-php80": "^1.16"
  5980. },
  5981. "type": "library",
  5982. "autoload": {
  5983. "psr-4": {
  5984. "Symfony\\Component\\Finder\\": ""
  5985. },
  5986. "exclude-from-classmap": [
  5987. "/Tests/"
  5988. ]
  5989. },
  5990. "notification-url": "https://packagist.org/downloads/",
  5991. "license": [
  5992. "MIT"
  5993. ],
  5994. "authors": [
  5995. {
  5996. "name": "Fabien Potencier",
  5997. "email": "fabien@symfony.com"
  5998. },
  5999. {
  6000. "name": "Symfony Community",
  6001. "homepage": "https://symfony.com/contributors"
  6002. }
  6003. ],
  6004. "description": "Finds files and directories via an intuitive fluent interface",
  6005. "homepage": "https://symfony.com",
  6006. "support": {
  6007. "source": "https://github.com/symfony/finder/tree/v5.4.42"
  6008. },
  6009. "funding": [
  6010. {
  6011. "url": "https://symfony.com/sponsor",
  6012. "type": "custom"
  6013. },
  6014. {
  6015. "url": "https://github.com/fabpot",
  6016. "type": "github"
  6017. },
  6018. {
  6019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6020. "type": "tidelift"
  6021. }
  6022. ],
  6023. "time": "2024-07-22T08:53:29+00:00"
  6024. },
  6025. {
  6026. "name": "symfony/http-foundation",
  6027. "version": "v5.4.40",
  6028. "source": {
  6029. "type": "git",
  6030. "url": "https://github.com/symfony/http-foundation.git",
  6031. "reference": "cf4893ca4eca3fac4ae06da1590afdbbb4217847"
  6032. },
  6033. "dist": {
  6034. "type": "zip",
  6035. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cf4893ca4eca3fac4ae06da1590afdbbb4217847",
  6036. "reference": "cf4893ca4eca3fac4ae06da1590afdbbb4217847",
  6037. "shasum": "",
  6038. "mirrors": [
  6039. {
  6040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6041. "preferred": true
  6042. }
  6043. ]
  6044. },
  6045. "require": {
  6046. "php": ">=7.2.5",
  6047. "symfony/deprecation-contracts": "^2.1|^3",
  6048. "symfony/polyfill-mbstring": "~1.1",
  6049. "symfony/polyfill-php80": "^1.16"
  6050. },
  6051. "require-dev": {
  6052. "predis/predis": "^1.0|^2.0",
  6053. "symfony/cache": "^4.4|^5.0|^6.0",
  6054. "symfony/dependency-injection": "^5.4|^6.0",
  6055. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6056. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6057. "symfony/mime": "^4.4|^5.0|^6.0",
  6058. "symfony/rate-limiter": "^5.2|^6.0"
  6059. },
  6060. "suggest": {
  6061. "symfony/mime": "To use the file extension guesser"
  6062. },
  6063. "type": "library",
  6064. "autoload": {
  6065. "psr-4": {
  6066. "Symfony\\Component\\HttpFoundation\\": ""
  6067. },
  6068. "exclude-from-classmap": [
  6069. "/Tests/"
  6070. ]
  6071. },
  6072. "notification-url": "https://packagist.org/downloads/",
  6073. "license": [
  6074. "MIT"
  6075. ],
  6076. "authors": [
  6077. {
  6078. "name": "Fabien Potencier",
  6079. "email": "fabien@symfony.com"
  6080. },
  6081. {
  6082. "name": "Symfony Community",
  6083. "homepage": "https://symfony.com/contributors"
  6084. }
  6085. ],
  6086. "description": "Defines an object-oriented layer for the HTTP specification",
  6087. "homepage": "https://symfony.com",
  6088. "support": {
  6089. "source": "https://github.com/symfony/http-foundation/tree/v5.4.40"
  6090. },
  6091. "funding": [
  6092. {
  6093. "url": "https://symfony.com/sponsor",
  6094. "type": "custom"
  6095. },
  6096. {
  6097. "url": "https://github.com/fabpot",
  6098. "type": "github"
  6099. },
  6100. {
  6101. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6102. "type": "tidelift"
  6103. }
  6104. ],
  6105. "time": "2024-05-31T14:33:22+00:00"
  6106. },
  6107. {
  6108. "name": "symfony/http-kernel",
  6109. "version": "v5.4.40",
  6110. "source": {
  6111. "type": "git",
  6112. "url": "https://github.com/symfony/http-kernel.git",
  6113. "reference": "3ad03183c6985adc2eece16f239f8cfe1c4ccbe3"
  6114. },
  6115. "dist": {
  6116. "type": "zip",
  6117. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3ad03183c6985adc2eece16f239f8cfe1c4ccbe3",
  6118. "reference": "3ad03183c6985adc2eece16f239f8cfe1c4ccbe3",
  6119. "shasum": "",
  6120. "mirrors": [
  6121. {
  6122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6123. "preferred": true
  6124. }
  6125. ]
  6126. },
  6127. "require": {
  6128. "php": ">=7.2.5",
  6129. "psr/log": "^1|^2",
  6130. "symfony/deprecation-contracts": "^2.1|^3",
  6131. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6132. "symfony/event-dispatcher": "^5.0|^6.0",
  6133. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6134. "symfony/polyfill-ctype": "^1.8",
  6135. "symfony/polyfill-php73": "^1.9",
  6136. "symfony/polyfill-php80": "^1.16"
  6137. },
  6138. "conflict": {
  6139. "symfony/browser-kit": "<5.4",
  6140. "symfony/cache": "<5.0",
  6141. "symfony/config": "<5.0",
  6142. "symfony/console": "<4.4",
  6143. "symfony/dependency-injection": "<5.3",
  6144. "symfony/doctrine-bridge": "<5.0",
  6145. "symfony/form": "<5.0",
  6146. "symfony/http-client": "<5.0",
  6147. "symfony/mailer": "<5.0",
  6148. "symfony/messenger": "<5.0",
  6149. "symfony/translation": "<5.0",
  6150. "symfony/twig-bridge": "<5.0",
  6151. "symfony/validator": "<5.0",
  6152. "twig/twig": "<2.13"
  6153. },
  6154. "provide": {
  6155. "psr/log-implementation": "1.0|2.0"
  6156. },
  6157. "require-dev": {
  6158. "psr/cache": "^1.0|^2.0|^3.0",
  6159. "symfony/browser-kit": "^5.4|^6.0",
  6160. "symfony/config": "^5.0|^6.0",
  6161. "symfony/console": "^4.4|^5.0|^6.0",
  6162. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6163. "symfony/dependency-injection": "^5.3|^6.0",
  6164. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6165. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6166. "symfony/finder": "^4.4|^5.0|^6.0",
  6167. "symfony/http-client-contracts": "^1.1|^2|^3",
  6168. "symfony/process": "^4.4|^5.0|^6.0",
  6169. "symfony/routing": "^4.4|^5.0|^6.0",
  6170. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6171. "symfony/translation": "^4.4|^5.0|^6.0",
  6172. "symfony/translation-contracts": "^1.1|^2|^3",
  6173. "symfony/var-dumper": "^4.4.31|^5.4",
  6174. "twig/twig": "^2.13|^3.0.4"
  6175. },
  6176. "suggest": {
  6177. "symfony/browser-kit": "",
  6178. "symfony/config": "",
  6179. "symfony/console": "",
  6180. "symfony/dependency-injection": ""
  6181. },
  6182. "type": "library",
  6183. "autoload": {
  6184. "psr-4": {
  6185. "Symfony\\Component\\HttpKernel\\": ""
  6186. },
  6187. "exclude-from-classmap": [
  6188. "/Tests/"
  6189. ]
  6190. },
  6191. "notification-url": "https://packagist.org/downloads/",
  6192. "license": [
  6193. "MIT"
  6194. ],
  6195. "authors": [
  6196. {
  6197. "name": "Fabien Potencier",
  6198. "email": "fabien@symfony.com"
  6199. },
  6200. {
  6201. "name": "Symfony Community",
  6202. "homepage": "https://symfony.com/contributors"
  6203. }
  6204. ],
  6205. "description": "Provides a structured process for converting a Request into a Response",
  6206. "homepage": "https://symfony.com",
  6207. "support": {
  6208. "source": "https://github.com/symfony/http-kernel/tree/v5.4.40"
  6209. },
  6210. "funding": [
  6211. {
  6212. "url": "https://symfony.com/sponsor",
  6213. "type": "custom"
  6214. },
  6215. {
  6216. "url": "https://github.com/fabpot",
  6217. "type": "github"
  6218. },
  6219. {
  6220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6221. "type": "tidelift"
  6222. }
  6223. ],
  6224. "time": "2024-06-02T15:53:08+00:00"
  6225. },
  6226. {
  6227. "name": "symfony/mime",
  6228. "version": "v5.4.40",
  6229. "source": {
  6230. "type": "git",
  6231. "url": "https://github.com/symfony/mime.git",
  6232. "reference": "8c6dc1fb0b1f990aa15086abcde66dbde3a9bdad"
  6233. },
  6234. "dist": {
  6235. "type": "zip",
  6236. "url": "https://api.github.com/repos/symfony/mime/zipball/8c6dc1fb0b1f990aa15086abcde66dbde3a9bdad",
  6237. "reference": "8c6dc1fb0b1f990aa15086abcde66dbde3a9bdad",
  6238. "shasum": "",
  6239. "mirrors": [
  6240. {
  6241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6242. "preferred": true
  6243. }
  6244. ]
  6245. },
  6246. "require": {
  6247. "php": ">=7.2.5",
  6248. "symfony/deprecation-contracts": "^2.1|^3",
  6249. "symfony/polyfill-intl-idn": "^1.10",
  6250. "symfony/polyfill-mbstring": "^1.0",
  6251. "symfony/polyfill-php80": "^1.16"
  6252. },
  6253. "conflict": {
  6254. "egulias/email-validator": "~3.0.0",
  6255. "phpdocumentor/reflection-docblock": "<3.2.2",
  6256. "phpdocumentor/type-resolver": "<1.4.0",
  6257. "symfony/mailer": "<4.4",
  6258. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  6259. },
  6260. "require-dev": {
  6261. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6262. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6263. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6264. "symfony/process": "^5.4|^6.4",
  6265. "symfony/property-access": "^4.4|^5.1|^6.0",
  6266. "symfony/property-info": "^4.4|^5.1|^6.0",
  6267. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  6268. },
  6269. "type": "library",
  6270. "autoload": {
  6271. "psr-4": {
  6272. "Symfony\\Component\\Mime\\": ""
  6273. },
  6274. "exclude-from-classmap": [
  6275. "/Tests/"
  6276. ]
  6277. },
  6278. "notification-url": "https://packagist.org/downloads/",
  6279. "license": [
  6280. "MIT"
  6281. ],
  6282. "authors": [
  6283. {
  6284. "name": "Fabien Potencier",
  6285. "email": "fabien@symfony.com"
  6286. },
  6287. {
  6288. "name": "Symfony Community",
  6289. "homepage": "https://symfony.com/contributors"
  6290. }
  6291. ],
  6292. "description": "Allows manipulating MIME messages",
  6293. "homepage": "https://symfony.com",
  6294. "keywords": [
  6295. "mime",
  6296. "mime-type"
  6297. ],
  6298. "support": {
  6299. "source": "https://github.com/symfony/mime/tree/v5.4.40"
  6300. },
  6301. "funding": [
  6302. {
  6303. "url": "https://symfony.com/sponsor",
  6304. "type": "custom"
  6305. },
  6306. {
  6307. "url": "https://github.com/fabpot",
  6308. "type": "github"
  6309. },
  6310. {
  6311. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6312. "type": "tidelift"
  6313. }
  6314. ],
  6315. "time": "2024-05-31T14:33:22+00:00"
  6316. },
  6317. {
  6318. "name": "symfony/polyfill-ctype",
  6319. "version": "v1.29.0",
  6320. "source": {
  6321. "type": "git",
  6322. "url": "https://github.com/symfony/polyfill-ctype.git",
  6323. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6324. },
  6325. "dist": {
  6326. "type": "zip",
  6327. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6328. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6329. "shasum": "",
  6330. "mirrors": [
  6331. {
  6332. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6333. "preferred": true
  6334. }
  6335. ]
  6336. },
  6337. "require": {
  6338. "php": ">=7.1"
  6339. },
  6340. "provide": {
  6341. "ext-ctype": "*"
  6342. },
  6343. "suggest": {
  6344. "ext-ctype": "For best performance"
  6345. },
  6346. "type": "library",
  6347. "extra": {
  6348. "thanks": {
  6349. "name": "symfony/polyfill",
  6350. "url": "https://github.com/symfony/polyfill"
  6351. }
  6352. },
  6353. "autoload": {
  6354. "files": [
  6355. "bootstrap.php"
  6356. ],
  6357. "psr-4": {
  6358. "Symfony\\Polyfill\\Ctype\\": ""
  6359. }
  6360. },
  6361. "notification-url": "https://packagist.org/downloads/",
  6362. "license": [
  6363. "MIT"
  6364. ],
  6365. "authors": [
  6366. {
  6367. "name": "Gert de Pagter",
  6368. "email": "BackEndTea@gmail.com"
  6369. },
  6370. {
  6371. "name": "Symfony Community",
  6372. "homepage": "https://symfony.com/contributors"
  6373. }
  6374. ],
  6375. "description": "Symfony polyfill for ctype functions",
  6376. "homepage": "https://symfony.com",
  6377. "keywords": [
  6378. "compatibility",
  6379. "ctype",
  6380. "polyfill",
  6381. "portable"
  6382. ],
  6383. "support": {
  6384. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6385. },
  6386. "funding": [
  6387. {
  6388. "url": "https://symfony.com/sponsor",
  6389. "type": "custom"
  6390. },
  6391. {
  6392. "url": "https://github.com/fabpot",
  6393. "type": "github"
  6394. },
  6395. {
  6396. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6397. "type": "tidelift"
  6398. }
  6399. ],
  6400. "time": "2024-01-29T20:11:03+00:00"
  6401. },
  6402. {
  6403. "name": "symfony/polyfill-iconv",
  6404. "version": "v1.29.0",
  6405. "source": {
  6406. "type": "git",
  6407. "url": "https://github.com/symfony/polyfill-iconv.git",
  6408. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f"
  6409. },
  6410. "dist": {
  6411. "type": "zip",
  6412. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  6413. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  6414. "shasum": "",
  6415. "mirrors": [
  6416. {
  6417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6418. "preferred": true
  6419. }
  6420. ]
  6421. },
  6422. "require": {
  6423. "php": ">=7.1"
  6424. },
  6425. "provide": {
  6426. "ext-iconv": "*"
  6427. },
  6428. "suggest": {
  6429. "ext-iconv": "For best performance"
  6430. },
  6431. "type": "library",
  6432. "extra": {
  6433. "thanks": {
  6434. "name": "symfony/polyfill",
  6435. "url": "https://github.com/symfony/polyfill"
  6436. }
  6437. },
  6438. "autoload": {
  6439. "files": [
  6440. "bootstrap.php"
  6441. ],
  6442. "psr-4": {
  6443. "Symfony\\Polyfill\\Iconv\\": ""
  6444. }
  6445. },
  6446. "notification-url": "https://packagist.org/downloads/",
  6447. "license": [
  6448. "MIT"
  6449. ],
  6450. "authors": [
  6451. {
  6452. "name": "Nicolas Grekas",
  6453. "email": "p@tchwork.com"
  6454. },
  6455. {
  6456. "name": "Symfony Community",
  6457. "homepage": "https://symfony.com/contributors"
  6458. }
  6459. ],
  6460. "description": "Symfony polyfill for the Iconv extension",
  6461. "homepage": "https://symfony.com",
  6462. "keywords": [
  6463. "compatibility",
  6464. "iconv",
  6465. "polyfill",
  6466. "portable",
  6467. "shim"
  6468. ],
  6469. "support": {
  6470. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0"
  6471. },
  6472. "funding": [
  6473. {
  6474. "url": "https://symfony.com/sponsor",
  6475. "type": "custom"
  6476. },
  6477. {
  6478. "url": "https://github.com/fabpot",
  6479. "type": "github"
  6480. },
  6481. {
  6482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6483. "type": "tidelift"
  6484. }
  6485. ],
  6486. "time": "2024-01-29T20:11:03+00:00"
  6487. },
  6488. {
  6489. "name": "symfony/polyfill-intl-grapheme",
  6490. "version": "v1.30.0",
  6491. "source": {
  6492. "type": "git",
  6493. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6494. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a"
  6495. },
  6496. "dist": {
  6497. "type": "zip",
  6498. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a",
  6499. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a",
  6500. "shasum": "",
  6501. "mirrors": [
  6502. {
  6503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6504. "preferred": true
  6505. }
  6506. ]
  6507. },
  6508. "require": {
  6509. "php": ">=7.1"
  6510. },
  6511. "suggest": {
  6512. "ext-intl": "For best performance"
  6513. },
  6514. "type": "library",
  6515. "extra": {
  6516. "thanks": {
  6517. "name": "symfony/polyfill",
  6518. "url": "https://github.com/symfony/polyfill"
  6519. }
  6520. },
  6521. "autoload": {
  6522. "files": [
  6523. "bootstrap.php"
  6524. ],
  6525. "psr-4": {
  6526. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6527. }
  6528. },
  6529. "notification-url": "https://packagist.org/downloads/",
  6530. "license": [
  6531. "MIT"
  6532. ],
  6533. "authors": [
  6534. {
  6535. "name": "Nicolas Grekas",
  6536. "email": "p@tchwork.com"
  6537. },
  6538. {
  6539. "name": "Symfony Community",
  6540. "homepage": "https://symfony.com/contributors"
  6541. }
  6542. ],
  6543. "description": "Symfony polyfill for intl's grapheme_* functions",
  6544. "homepage": "https://symfony.com",
  6545. "keywords": [
  6546. "compatibility",
  6547. "grapheme",
  6548. "intl",
  6549. "polyfill",
  6550. "portable",
  6551. "shim"
  6552. ],
  6553. "support": {
  6554. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0"
  6555. },
  6556. "funding": [
  6557. {
  6558. "url": "https://symfony.com/sponsor",
  6559. "type": "custom"
  6560. },
  6561. {
  6562. "url": "https://github.com/fabpot",
  6563. "type": "github"
  6564. },
  6565. {
  6566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6567. "type": "tidelift"
  6568. }
  6569. ],
  6570. "time": "2024-05-31T15:07:36+00:00"
  6571. },
  6572. {
  6573. "name": "symfony/polyfill-intl-idn",
  6574. "version": "v1.30.0",
  6575. "source": {
  6576. "type": "git",
  6577. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6578. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  6579. },
  6580. "dist": {
  6581. "type": "zip",
  6582. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  6583. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  6584. "shasum": "",
  6585. "mirrors": [
  6586. {
  6587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6588. "preferred": true
  6589. }
  6590. ]
  6591. },
  6592. "require": {
  6593. "php": ">=7.1",
  6594. "symfony/polyfill-intl-normalizer": "^1.10",
  6595. "symfony/polyfill-php72": "^1.10"
  6596. },
  6597. "suggest": {
  6598. "ext-intl": "For best performance"
  6599. },
  6600. "type": "library",
  6601. "extra": {
  6602. "thanks": {
  6603. "name": "symfony/polyfill",
  6604. "url": "https://github.com/symfony/polyfill"
  6605. }
  6606. },
  6607. "autoload": {
  6608. "files": [
  6609. "bootstrap.php"
  6610. ],
  6611. "psr-4": {
  6612. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6613. }
  6614. },
  6615. "notification-url": "https://packagist.org/downloads/",
  6616. "license": [
  6617. "MIT"
  6618. ],
  6619. "authors": [
  6620. {
  6621. "name": "Laurent Bassin",
  6622. "email": "laurent@bassin.info"
  6623. },
  6624. {
  6625. "name": "Trevor Rowbotham",
  6626. "email": "trevor.rowbotham@pm.me"
  6627. },
  6628. {
  6629. "name": "Symfony Community",
  6630. "homepage": "https://symfony.com/contributors"
  6631. }
  6632. ],
  6633. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6634. "homepage": "https://symfony.com",
  6635. "keywords": [
  6636. "compatibility",
  6637. "idn",
  6638. "intl",
  6639. "polyfill",
  6640. "portable",
  6641. "shim"
  6642. ],
  6643. "support": {
  6644. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  6645. },
  6646. "funding": [
  6647. {
  6648. "url": "https://symfony.com/sponsor",
  6649. "type": "custom"
  6650. },
  6651. {
  6652. "url": "https://github.com/fabpot",
  6653. "type": "github"
  6654. },
  6655. {
  6656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6657. "type": "tidelift"
  6658. }
  6659. ],
  6660. "time": "2024-05-31T15:07:36+00:00"
  6661. },
  6662. {
  6663. "name": "symfony/polyfill-intl-normalizer",
  6664. "version": "v1.29.0",
  6665. "source": {
  6666. "type": "git",
  6667. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6668. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6669. },
  6670. "dist": {
  6671. "type": "zip",
  6672. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6673. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6674. "shasum": "",
  6675. "mirrors": [
  6676. {
  6677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6678. "preferred": true
  6679. }
  6680. ]
  6681. },
  6682. "require": {
  6683. "php": ">=7.1"
  6684. },
  6685. "suggest": {
  6686. "ext-intl": "For best performance"
  6687. },
  6688. "type": "library",
  6689. "extra": {
  6690. "thanks": {
  6691. "name": "symfony/polyfill",
  6692. "url": "https://github.com/symfony/polyfill"
  6693. }
  6694. },
  6695. "autoload": {
  6696. "files": [
  6697. "bootstrap.php"
  6698. ],
  6699. "psr-4": {
  6700. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6701. },
  6702. "classmap": [
  6703. "Resources/stubs"
  6704. ]
  6705. },
  6706. "notification-url": "https://packagist.org/downloads/",
  6707. "license": [
  6708. "MIT"
  6709. ],
  6710. "authors": [
  6711. {
  6712. "name": "Nicolas Grekas",
  6713. "email": "p@tchwork.com"
  6714. },
  6715. {
  6716. "name": "Symfony Community",
  6717. "homepage": "https://symfony.com/contributors"
  6718. }
  6719. ],
  6720. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6721. "homepage": "https://symfony.com",
  6722. "keywords": [
  6723. "compatibility",
  6724. "intl",
  6725. "normalizer",
  6726. "polyfill",
  6727. "portable",
  6728. "shim"
  6729. ],
  6730. "support": {
  6731. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6732. },
  6733. "funding": [
  6734. {
  6735. "url": "https://symfony.com/sponsor",
  6736. "type": "custom"
  6737. },
  6738. {
  6739. "url": "https://github.com/fabpot",
  6740. "type": "github"
  6741. },
  6742. {
  6743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6744. "type": "tidelift"
  6745. }
  6746. ],
  6747. "time": "2024-01-29T20:11:03+00:00"
  6748. },
  6749. {
  6750. "name": "symfony/polyfill-mbstring",
  6751. "version": "v1.29.0",
  6752. "source": {
  6753. "type": "git",
  6754. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6755. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6756. },
  6757. "dist": {
  6758. "type": "zip",
  6759. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6760. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6761. "shasum": "",
  6762. "mirrors": [
  6763. {
  6764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6765. "preferred": true
  6766. }
  6767. ]
  6768. },
  6769. "require": {
  6770. "php": ">=7.1"
  6771. },
  6772. "provide": {
  6773. "ext-mbstring": "*"
  6774. },
  6775. "suggest": {
  6776. "ext-mbstring": "For best performance"
  6777. },
  6778. "type": "library",
  6779. "extra": {
  6780. "thanks": {
  6781. "name": "symfony/polyfill",
  6782. "url": "https://github.com/symfony/polyfill"
  6783. }
  6784. },
  6785. "autoload": {
  6786. "files": [
  6787. "bootstrap.php"
  6788. ],
  6789. "psr-4": {
  6790. "Symfony\\Polyfill\\Mbstring\\": ""
  6791. }
  6792. },
  6793. "notification-url": "https://packagist.org/downloads/",
  6794. "license": [
  6795. "MIT"
  6796. ],
  6797. "authors": [
  6798. {
  6799. "name": "Nicolas Grekas",
  6800. "email": "p@tchwork.com"
  6801. },
  6802. {
  6803. "name": "Symfony Community",
  6804. "homepage": "https://symfony.com/contributors"
  6805. }
  6806. ],
  6807. "description": "Symfony polyfill for the Mbstring extension",
  6808. "homepage": "https://symfony.com",
  6809. "keywords": [
  6810. "compatibility",
  6811. "mbstring",
  6812. "polyfill",
  6813. "portable",
  6814. "shim"
  6815. ],
  6816. "support": {
  6817. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6818. },
  6819. "funding": [
  6820. {
  6821. "url": "https://symfony.com/sponsor",
  6822. "type": "custom"
  6823. },
  6824. {
  6825. "url": "https://github.com/fabpot",
  6826. "type": "github"
  6827. },
  6828. {
  6829. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6830. "type": "tidelift"
  6831. }
  6832. ],
  6833. "time": "2024-01-29T20:11:03+00:00"
  6834. },
  6835. {
  6836. "name": "symfony/polyfill-php72",
  6837. "version": "v1.29.0",
  6838. "source": {
  6839. "type": "git",
  6840. "url": "https://github.com/symfony/polyfill-php72.git",
  6841. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  6842. },
  6843. "dist": {
  6844. "type": "zip",
  6845. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  6846. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  6847. "shasum": "",
  6848. "mirrors": [
  6849. {
  6850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6851. "preferred": true
  6852. }
  6853. ]
  6854. },
  6855. "require": {
  6856. "php": ">=7.1"
  6857. },
  6858. "type": "library",
  6859. "extra": {
  6860. "thanks": {
  6861. "name": "symfony/polyfill",
  6862. "url": "https://github.com/symfony/polyfill"
  6863. }
  6864. },
  6865. "autoload": {
  6866. "files": [
  6867. "bootstrap.php"
  6868. ],
  6869. "psr-4": {
  6870. "Symfony\\Polyfill\\Php72\\": ""
  6871. }
  6872. },
  6873. "notification-url": "https://packagist.org/downloads/",
  6874. "license": [
  6875. "MIT"
  6876. ],
  6877. "authors": [
  6878. {
  6879. "name": "Nicolas Grekas",
  6880. "email": "p@tchwork.com"
  6881. },
  6882. {
  6883. "name": "Symfony Community",
  6884. "homepage": "https://symfony.com/contributors"
  6885. }
  6886. ],
  6887. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6888. "homepage": "https://symfony.com",
  6889. "keywords": [
  6890. "compatibility",
  6891. "polyfill",
  6892. "portable",
  6893. "shim"
  6894. ],
  6895. "support": {
  6896. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  6897. },
  6898. "funding": [
  6899. {
  6900. "url": "https://symfony.com/sponsor",
  6901. "type": "custom"
  6902. },
  6903. {
  6904. "url": "https://github.com/fabpot",
  6905. "type": "github"
  6906. },
  6907. {
  6908. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6909. "type": "tidelift"
  6910. }
  6911. ],
  6912. "time": "2024-01-29T20:11:03+00:00"
  6913. },
  6914. {
  6915. "name": "symfony/polyfill-php73",
  6916. "version": "v1.30.0",
  6917. "source": {
  6918. "type": "git",
  6919. "url": "https://github.com/symfony/polyfill-php73.git",
  6920. "reference": "ec444d3f3f6505bb28d11afa41e75faadebc10a1"
  6921. },
  6922. "dist": {
  6923. "type": "zip",
  6924. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/ec444d3f3f6505bb28d11afa41e75faadebc10a1",
  6925. "reference": "ec444d3f3f6505bb28d11afa41e75faadebc10a1",
  6926. "shasum": "",
  6927. "mirrors": [
  6928. {
  6929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6930. "preferred": true
  6931. }
  6932. ]
  6933. },
  6934. "require": {
  6935. "php": ">=7.1"
  6936. },
  6937. "type": "library",
  6938. "extra": {
  6939. "thanks": {
  6940. "name": "symfony/polyfill",
  6941. "url": "https://github.com/symfony/polyfill"
  6942. }
  6943. },
  6944. "autoload": {
  6945. "files": [
  6946. "bootstrap.php"
  6947. ],
  6948. "psr-4": {
  6949. "Symfony\\Polyfill\\Php73\\": ""
  6950. },
  6951. "classmap": [
  6952. "Resources/stubs"
  6953. ]
  6954. },
  6955. "notification-url": "https://packagist.org/downloads/",
  6956. "license": [
  6957. "MIT"
  6958. ],
  6959. "authors": [
  6960. {
  6961. "name": "Nicolas Grekas",
  6962. "email": "p@tchwork.com"
  6963. },
  6964. {
  6965. "name": "Symfony Community",
  6966. "homepage": "https://symfony.com/contributors"
  6967. }
  6968. ],
  6969. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6970. "homepage": "https://symfony.com",
  6971. "keywords": [
  6972. "compatibility",
  6973. "polyfill",
  6974. "portable",
  6975. "shim"
  6976. ],
  6977. "support": {
  6978. "source": "https://github.com/symfony/polyfill-php73/tree/v1.30.0"
  6979. },
  6980. "funding": [
  6981. {
  6982. "url": "https://symfony.com/sponsor",
  6983. "type": "custom"
  6984. },
  6985. {
  6986. "url": "https://github.com/fabpot",
  6987. "type": "github"
  6988. },
  6989. {
  6990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6991. "type": "tidelift"
  6992. }
  6993. ],
  6994. "time": "2024-05-31T15:07:36+00:00"
  6995. },
  6996. {
  6997. "name": "symfony/polyfill-php80",
  6998. "version": "v1.29.0",
  6999. "source": {
  7000. "type": "git",
  7001. "url": "https://github.com/symfony/polyfill-php80.git",
  7002. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7003. },
  7004. "dist": {
  7005. "type": "zip",
  7006. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7007. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7008. "shasum": "",
  7009. "mirrors": [
  7010. {
  7011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7012. "preferred": true
  7013. }
  7014. ]
  7015. },
  7016. "require": {
  7017. "php": ">=7.1"
  7018. },
  7019. "type": "library",
  7020. "extra": {
  7021. "thanks": {
  7022. "name": "symfony/polyfill",
  7023. "url": "https://github.com/symfony/polyfill"
  7024. }
  7025. },
  7026. "autoload": {
  7027. "files": [
  7028. "bootstrap.php"
  7029. ],
  7030. "psr-4": {
  7031. "Symfony\\Polyfill\\Php80\\": ""
  7032. },
  7033. "classmap": [
  7034. "Resources/stubs"
  7035. ]
  7036. },
  7037. "notification-url": "https://packagist.org/downloads/",
  7038. "license": [
  7039. "MIT"
  7040. ],
  7041. "authors": [
  7042. {
  7043. "name": "Ion Bazan",
  7044. "email": "ion.bazan@gmail.com"
  7045. },
  7046. {
  7047. "name": "Nicolas Grekas",
  7048. "email": "p@tchwork.com"
  7049. },
  7050. {
  7051. "name": "Symfony Community",
  7052. "homepage": "https://symfony.com/contributors"
  7053. }
  7054. ],
  7055. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7056. "homepage": "https://symfony.com",
  7057. "keywords": [
  7058. "compatibility",
  7059. "polyfill",
  7060. "portable",
  7061. "shim"
  7062. ],
  7063. "support": {
  7064. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  7065. },
  7066. "funding": [
  7067. {
  7068. "url": "https://symfony.com/sponsor",
  7069. "type": "custom"
  7070. },
  7071. {
  7072. "url": "https://github.com/fabpot",
  7073. "type": "github"
  7074. },
  7075. {
  7076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7077. "type": "tidelift"
  7078. }
  7079. ],
  7080. "time": "2024-01-29T20:11:03+00:00"
  7081. },
  7082. {
  7083. "name": "symfony/polyfill-php81",
  7084. "version": "v1.30.0",
  7085. "source": {
  7086. "type": "git",
  7087. "url": "https://github.com/symfony/polyfill-php81.git",
  7088. "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af"
  7089. },
  7090. "dist": {
  7091. "type": "zip",
  7092. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af",
  7093. "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af",
  7094. "shasum": "",
  7095. "mirrors": [
  7096. {
  7097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7098. "preferred": true
  7099. }
  7100. ]
  7101. },
  7102. "require": {
  7103. "php": ">=7.1"
  7104. },
  7105. "type": "library",
  7106. "extra": {
  7107. "thanks": {
  7108. "name": "symfony/polyfill",
  7109. "url": "https://github.com/symfony/polyfill"
  7110. }
  7111. },
  7112. "autoload": {
  7113. "files": [
  7114. "bootstrap.php"
  7115. ],
  7116. "psr-4": {
  7117. "Symfony\\Polyfill\\Php81\\": ""
  7118. },
  7119. "classmap": [
  7120. "Resources/stubs"
  7121. ]
  7122. },
  7123. "notification-url": "https://packagist.org/downloads/",
  7124. "license": [
  7125. "MIT"
  7126. ],
  7127. "authors": [
  7128. {
  7129. "name": "Nicolas Grekas",
  7130. "email": "p@tchwork.com"
  7131. },
  7132. {
  7133. "name": "Symfony Community",
  7134. "homepage": "https://symfony.com/contributors"
  7135. }
  7136. ],
  7137. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7138. "homepage": "https://symfony.com",
  7139. "keywords": [
  7140. "compatibility",
  7141. "polyfill",
  7142. "portable",
  7143. "shim"
  7144. ],
  7145. "support": {
  7146. "source": "https://github.com/symfony/polyfill-php81/tree/v1.30.0"
  7147. },
  7148. "funding": [
  7149. {
  7150. "url": "https://symfony.com/sponsor",
  7151. "type": "custom"
  7152. },
  7153. {
  7154. "url": "https://github.com/fabpot",
  7155. "type": "github"
  7156. },
  7157. {
  7158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7159. "type": "tidelift"
  7160. }
  7161. ],
  7162. "time": "2024-06-19T12:30:46+00:00"
  7163. },
  7164. {
  7165. "name": "symfony/process",
  7166. "version": "v5.4.40",
  7167. "source": {
  7168. "type": "git",
  7169. "url": "https://github.com/symfony/process.git",
  7170. "reference": "deedcb3bb4669cae2148bc920eafd2b16dc7c046"
  7171. },
  7172. "dist": {
  7173. "type": "zip",
  7174. "url": "https://api.github.com/repos/symfony/process/zipball/deedcb3bb4669cae2148bc920eafd2b16dc7c046",
  7175. "reference": "deedcb3bb4669cae2148bc920eafd2b16dc7c046",
  7176. "shasum": "",
  7177. "mirrors": [
  7178. {
  7179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7180. "preferred": true
  7181. }
  7182. ]
  7183. },
  7184. "require": {
  7185. "php": ">=7.2.5",
  7186. "symfony/polyfill-php80": "^1.16"
  7187. },
  7188. "type": "library",
  7189. "autoload": {
  7190. "psr-4": {
  7191. "Symfony\\Component\\Process\\": ""
  7192. },
  7193. "exclude-from-classmap": [
  7194. "/Tests/"
  7195. ]
  7196. },
  7197. "notification-url": "https://packagist.org/downloads/",
  7198. "license": [
  7199. "MIT"
  7200. ],
  7201. "authors": [
  7202. {
  7203. "name": "Fabien Potencier",
  7204. "email": "fabien@symfony.com"
  7205. },
  7206. {
  7207. "name": "Symfony Community",
  7208. "homepage": "https://symfony.com/contributors"
  7209. }
  7210. ],
  7211. "description": "Executes commands in sub-processes",
  7212. "homepage": "https://symfony.com",
  7213. "support": {
  7214. "source": "https://github.com/symfony/process/tree/v5.4.40"
  7215. },
  7216. "funding": [
  7217. {
  7218. "url": "https://symfony.com/sponsor",
  7219. "type": "custom"
  7220. },
  7221. {
  7222. "url": "https://github.com/fabpot",
  7223. "type": "github"
  7224. },
  7225. {
  7226. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7227. "type": "tidelift"
  7228. }
  7229. ],
  7230. "time": "2024-05-31T14:33:22+00:00"
  7231. },
  7232. {
  7233. "name": "symfony/routing",
  7234. "version": "v5.4.40",
  7235. "source": {
  7236. "type": "git",
  7237. "url": "https://github.com/symfony/routing.git",
  7238. "reference": "6df1dd8b306649303267a760699cf04cf39b1f7b"
  7239. },
  7240. "dist": {
  7241. "type": "zip",
  7242. "url": "https://api.github.com/repos/symfony/routing/zipball/6df1dd8b306649303267a760699cf04cf39b1f7b",
  7243. "reference": "6df1dd8b306649303267a760699cf04cf39b1f7b",
  7244. "shasum": "",
  7245. "mirrors": [
  7246. {
  7247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7248. "preferred": true
  7249. }
  7250. ]
  7251. },
  7252. "require": {
  7253. "php": ">=7.2.5",
  7254. "symfony/deprecation-contracts": "^2.1|^3",
  7255. "symfony/polyfill-php80": "^1.16"
  7256. },
  7257. "conflict": {
  7258. "doctrine/annotations": "<1.12",
  7259. "symfony/config": "<5.3",
  7260. "symfony/dependency-injection": "<4.4",
  7261. "symfony/yaml": "<4.4"
  7262. },
  7263. "require-dev": {
  7264. "doctrine/annotations": "^1.12|^2",
  7265. "psr/log": "^1|^2|^3",
  7266. "symfony/config": "^5.3|^6.0",
  7267. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7268. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7269. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7270. "symfony/yaml": "^4.4|^5.0|^6.0"
  7271. },
  7272. "suggest": {
  7273. "symfony/config": "For using the all-in-one router or any loader",
  7274. "symfony/expression-language": "For using expression matching",
  7275. "symfony/http-foundation": "For using a Symfony Request object",
  7276. "symfony/yaml": "For using the YAML loader"
  7277. },
  7278. "type": "library",
  7279. "autoload": {
  7280. "psr-4": {
  7281. "Symfony\\Component\\Routing\\": ""
  7282. },
  7283. "exclude-from-classmap": [
  7284. "/Tests/"
  7285. ]
  7286. },
  7287. "notification-url": "https://packagist.org/downloads/",
  7288. "license": [
  7289. "MIT"
  7290. ],
  7291. "authors": [
  7292. {
  7293. "name": "Fabien Potencier",
  7294. "email": "fabien@symfony.com"
  7295. },
  7296. {
  7297. "name": "Symfony Community",
  7298. "homepage": "https://symfony.com/contributors"
  7299. }
  7300. ],
  7301. "description": "Maps an HTTP request to a set of configuration variables",
  7302. "homepage": "https://symfony.com",
  7303. "keywords": [
  7304. "router",
  7305. "routing",
  7306. "uri",
  7307. "url"
  7308. ],
  7309. "support": {
  7310. "source": "https://github.com/symfony/routing/tree/v5.4.40"
  7311. },
  7312. "funding": [
  7313. {
  7314. "url": "https://symfony.com/sponsor",
  7315. "type": "custom"
  7316. },
  7317. {
  7318. "url": "https://github.com/fabpot",
  7319. "type": "github"
  7320. },
  7321. {
  7322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7323. "type": "tidelift"
  7324. }
  7325. ],
  7326. "time": "2024-05-31T14:33:22+00:00"
  7327. },
  7328. {
  7329. "name": "symfony/service-contracts",
  7330. "version": "v2.5.2",
  7331. "source": {
  7332. "type": "git",
  7333. "url": "https://github.com/symfony/service-contracts.git",
  7334. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7335. },
  7336. "dist": {
  7337. "type": "zip",
  7338. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7339. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7340. "shasum": "",
  7341. "mirrors": [
  7342. {
  7343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7344. "preferred": true
  7345. }
  7346. ]
  7347. },
  7348. "require": {
  7349. "php": ">=7.2.5",
  7350. "psr/container": "^1.1",
  7351. "symfony/deprecation-contracts": "^2.1|^3"
  7352. },
  7353. "conflict": {
  7354. "ext-psr": "<1.1|>=2"
  7355. },
  7356. "suggest": {
  7357. "symfony/service-implementation": ""
  7358. },
  7359. "type": "library",
  7360. "extra": {
  7361. "branch-alias": {
  7362. "dev-main": "2.5-dev"
  7363. },
  7364. "thanks": {
  7365. "name": "symfony/contracts",
  7366. "url": "https://github.com/symfony/contracts"
  7367. }
  7368. },
  7369. "autoload": {
  7370. "psr-4": {
  7371. "Symfony\\Contracts\\Service\\": ""
  7372. }
  7373. },
  7374. "notification-url": "https://packagist.org/downloads/",
  7375. "license": [
  7376. "MIT"
  7377. ],
  7378. "authors": [
  7379. {
  7380. "name": "Nicolas Grekas",
  7381. "email": "p@tchwork.com"
  7382. },
  7383. {
  7384. "name": "Symfony Community",
  7385. "homepage": "https://symfony.com/contributors"
  7386. }
  7387. ],
  7388. "description": "Generic abstractions related to writing services",
  7389. "homepage": "https://symfony.com",
  7390. "keywords": [
  7391. "abstractions",
  7392. "contracts",
  7393. "decoupling",
  7394. "interfaces",
  7395. "interoperability",
  7396. "standards"
  7397. ],
  7398. "support": {
  7399. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  7400. },
  7401. "funding": [
  7402. {
  7403. "url": "https://symfony.com/sponsor",
  7404. "type": "custom"
  7405. },
  7406. {
  7407. "url": "https://github.com/fabpot",
  7408. "type": "github"
  7409. },
  7410. {
  7411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7412. "type": "tidelift"
  7413. }
  7414. ],
  7415. "time": "2022-05-30T19:17:29+00:00"
  7416. },
  7417. {
  7418. "name": "symfony/string",
  7419. "version": "v6.0.19",
  7420. "source": {
  7421. "type": "git",
  7422. "url": "https://github.com/symfony/string.git",
  7423. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7424. },
  7425. "dist": {
  7426. "type": "zip",
  7427. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7428. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7429. "shasum": "",
  7430. "mirrors": [
  7431. {
  7432. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7433. "preferred": true
  7434. }
  7435. ]
  7436. },
  7437. "require": {
  7438. "php": ">=8.0.2",
  7439. "symfony/polyfill-ctype": "~1.8",
  7440. "symfony/polyfill-intl-grapheme": "~1.0",
  7441. "symfony/polyfill-intl-normalizer": "~1.0",
  7442. "symfony/polyfill-mbstring": "~1.0"
  7443. },
  7444. "conflict": {
  7445. "symfony/translation-contracts": "<2.0"
  7446. },
  7447. "require-dev": {
  7448. "symfony/error-handler": "^5.4|^6.0",
  7449. "symfony/http-client": "^5.4|^6.0",
  7450. "symfony/translation-contracts": "^2.0|^3.0",
  7451. "symfony/var-exporter": "^5.4|^6.0"
  7452. },
  7453. "type": "library",
  7454. "autoload": {
  7455. "files": [
  7456. "Resources/functions.php"
  7457. ],
  7458. "psr-4": {
  7459. "Symfony\\Component\\String\\": ""
  7460. },
  7461. "exclude-from-classmap": [
  7462. "/Tests/"
  7463. ]
  7464. },
  7465. "notification-url": "https://packagist.org/downloads/",
  7466. "license": [
  7467. "MIT"
  7468. ],
  7469. "authors": [
  7470. {
  7471. "name": "Nicolas Grekas",
  7472. "email": "p@tchwork.com"
  7473. },
  7474. {
  7475. "name": "Symfony Community",
  7476. "homepage": "https://symfony.com/contributors"
  7477. }
  7478. ],
  7479. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7480. "homepage": "https://symfony.com",
  7481. "keywords": [
  7482. "grapheme",
  7483. "i18n",
  7484. "string",
  7485. "unicode",
  7486. "utf-8",
  7487. "utf8"
  7488. ],
  7489. "support": {
  7490. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7491. },
  7492. "funding": [
  7493. {
  7494. "url": "https://symfony.com/sponsor",
  7495. "type": "custom"
  7496. },
  7497. {
  7498. "url": "https://github.com/fabpot",
  7499. "type": "github"
  7500. },
  7501. {
  7502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7503. "type": "tidelift"
  7504. }
  7505. ],
  7506. "time": "2023-01-01T08:36:10+00:00"
  7507. },
  7508. {
  7509. "name": "symfony/translation",
  7510. "version": "v6.0.19",
  7511. "source": {
  7512. "type": "git",
  7513. "url": "https://github.com/symfony/translation.git",
  7514. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7515. },
  7516. "dist": {
  7517. "type": "zip",
  7518. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7519. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7520. "shasum": "",
  7521. "mirrors": [
  7522. {
  7523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7524. "preferred": true
  7525. }
  7526. ]
  7527. },
  7528. "require": {
  7529. "php": ">=8.0.2",
  7530. "symfony/polyfill-mbstring": "~1.0",
  7531. "symfony/translation-contracts": "^2.3|^3.0"
  7532. },
  7533. "conflict": {
  7534. "symfony/config": "<5.4",
  7535. "symfony/console": "<5.4",
  7536. "symfony/dependency-injection": "<5.4",
  7537. "symfony/http-kernel": "<5.4",
  7538. "symfony/twig-bundle": "<5.4",
  7539. "symfony/yaml": "<5.4"
  7540. },
  7541. "provide": {
  7542. "symfony/translation-implementation": "2.3|3.0"
  7543. },
  7544. "require-dev": {
  7545. "psr/log": "^1|^2|^3",
  7546. "symfony/config": "^5.4|^6.0",
  7547. "symfony/console": "^5.4|^6.0",
  7548. "symfony/dependency-injection": "^5.4|^6.0",
  7549. "symfony/finder": "^5.4|^6.0",
  7550. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7551. "symfony/http-kernel": "^5.4|^6.0",
  7552. "symfony/intl": "^5.4|^6.0",
  7553. "symfony/polyfill-intl-icu": "^1.21",
  7554. "symfony/service-contracts": "^1.1.2|^2|^3",
  7555. "symfony/yaml": "^5.4|^6.0"
  7556. },
  7557. "suggest": {
  7558. "psr/log-implementation": "To use logging capability in translator",
  7559. "symfony/config": "",
  7560. "symfony/yaml": ""
  7561. },
  7562. "type": "library",
  7563. "autoload": {
  7564. "files": [
  7565. "Resources/functions.php"
  7566. ],
  7567. "psr-4": {
  7568. "Symfony\\Component\\Translation\\": ""
  7569. },
  7570. "exclude-from-classmap": [
  7571. "/Tests/"
  7572. ]
  7573. },
  7574. "notification-url": "https://packagist.org/downloads/",
  7575. "license": [
  7576. "MIT"
  7577. ],
  7578. "authors": [
  7579. {
  7580. "name": "Fabien Potencier",
  7581. "email": "fabien@symfony.com"
  7582. },
  7583. {
  7584. "name": "Symfony Community",
  7585. "homepage": "https://symfony.com/contributors"
  7586. }
  7587. ],
  7588. "description": "Provides tools to internationalize your application",
  7589. "homepage": "https://symfony.com",
  7590. "support": {
  7591. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7592. },
  7593. "funding": [
  7594. {
  7595. "url": "https://symfony.com/sponsor",
  7596. "type": "custom"
  7597. },
  7598. {
  7599. "url": "https://github.com/fabpot",
  7600. "type": "github"
  7601. },
  7602. {
  7603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7604. "type": "tidelift"
  7605. }
  7606. ],
  7607. "time": "2023-01-01T08:36:10+00:00"
  7608. },
  7609. {
  7610. "name": "symfony/translation-contracts",
  7611. "version": "v3.0.2",
  7612. "source": {
  7613. "type": "git",
  7614. "url": "https://github.com/symfony/translation-contracts.git",
  7615. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7616. },
  7617. "dist": {
  7618. "type": "zip",
  7619. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7620. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7621. "shasum": "",
  7622. "mirrors": [
  7623. {
  7624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7625. "preferred": true
  7626. }
  7627. ]
  7628. },
  7629. "require": {
  7630. "php": ">=8.0.2"
  7631. },
  7632. "suggest": {
  7633. "symfony/translation-implementation": ""
  7634. },
  7635. "type": "library",
  7636. "extra": {
  7637. "branch-alias": {
  7638. "dev-main": "3.0-dev"
  7639. },
  7640. "thanks": {
  7641. "name": "symfony/contracts",
  7642. "url": "https://github.com/symfony/contracts"
  7643. }
  7644. },
  7645. "autoload": {
  7646. "psr-4": {
  7647. "Symfony\\Contracts\\Translation\\": ""
  7648. }
  7649. },
  7650. "notification-url": "https://packagist.org/downloads/",
  7651. "license": [
  7652. "MIT"
  7653. ],
  7654. "authors": [
  7655. {
  7656. "name": "Nicolas Grekas",
  7657. "email": "p@tchwork.com"
  7658. },
  7659. {
  7660. "name": "Symfony Community",
  7661. "homepage": "https://symfony.com/contributors"
  7662. }
  7663. ],
  7664. "description": "Generic abstractions related to translation",
  7665. "homepage": "https://symfony.com",
  7666. "keywords": [
  7667. "abstractions",
  7668. "contracts",
  7669. "decoupling",
  7670. "interfaces",
  7671. "interoperability",
  7672. "standards"
  7673. ],
  7674. "support": {
  7675. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7676. },
  7677. "funding": [
  7678. {
  7679. "url": "https://symfony.com/sponsor",
  7680. "type": "custom"
  7681. },
  7682. {
  7683. "url": "https://github.com/fabpot",
  7684. "type": "github"
  7685. },
  7686. {
  7687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7688. "type": "tidelift"
  7689. }
  7690. ],
  7691. "time": "2022-06-27T17:10:44+00:00"
  7692. },
  7693. {
  7694. "name": "symfony/var-dumper",
  7695. "version": "v5.4.40",
  7696. "source": {
  7697. "type": "git",
  7698. "url": "https://github.com/symfony/var-dumper.git",
  7699. "reference": "af8868a6e9d6082dfca11f1a1f205ae93a8b6d93"
  7700. },
  7701. "dist": {
  7702. "type": "zip",
  7703. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af8868a6e9d6082dfca11f1a1f205ae93a8b6d93",
  7704. "reference": "af8868a6e9d6082dfca11f1a1f205ae93a8b6d93",
  7705. "shasum": "",
  7706. "mirrors": [
  7707. {
  7708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7709. "preferred": true
  7710. }
  7711. ]
  7712. },
  7713. "require": {
  7714. "php": ">=7.2.5",
  7715. "symfony/polyfill-mbstring": "~1.0",
  7716. "symfony/polyfill-php80": "^1.16"
  7717. },
  7718. "conflict": {
  7719. "symfony/console": "<4.4"
  7720. },
  7721. "require-dev": {
  7722. "ext-iconv": "*",
  7723. "symfony/console": "^4.4|^5.0|^6.0",
  7724. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7725. "symfony/process": "^4.4|^5.0|^6.0",
  7726. "symfony/uid": "^5.1|^6.0",
  7727. "twig/twig": "^2.13|^3.0.4"
  7728. },
  7729. "suggest": {
  7730. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7731. "ext-intl": "To show region name in time zone dump",
  7732. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7733. },
  7734. "bin": [
  7735. "Resources/bin/var-dump-server"
  7736. ],
  7737. "type": "library",
  7738. "autoload": {
  7739. "files": [
  7740. "Resources/functions/dump.php"
  7741. ],
  7742. "psr-4": {
  7743. "Symfony\\Component\\VarDumper\\": ""
  7744. },
  7745. "exclude-from-classmap": [
  7746. "/Tests/"
  7747. ]
  7748. },
  7749. "notification-url": "https://packagist.org/downloads/",
  7750. "license": [
  7751. "MIT"
  7752. ],
  7753. "authors": [
  7754. {
  7755. "name": "Nicolas Grekas",
  7756. "email": "p@tchwork.com"
  7757. },
  7758. {
  7759. "name": "Symfony Community",
  7760. "homepage": "https://symfony.com/contributors"
  7761. }
  7762. ],
  7763. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7764. "homepage": "https://symfony.com",
  7765. "keywords": [
  7766. "debug",
  7767. "dump"
  7768. ],
  7769. "support": {
  7770. "source": "https://github.com/symfony/var-dumper/tree/v5.4.40"
  7771. },
  7772. "funding": [
  7773. {
  7774. "url": "https://symfony.com/sponsor",
  7775. "type": "custom"
  7776. },
  7777. {
  7778. "url": "https://github.com/fabpot",
  7779. "type": "github"
  7780. },
  7781. {
  7782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7783. "type": "tidelift"
  7784. }
  7785. ],
  7786. "time": "2024-05-31T14:33:22+00:00"
  7787. },
  7788. {
  7789. "name": "tightenco/solana-php-sdk",
  7790. "version": "v0.3.2",
  7791. "source": {
  7792. "type": "git",
  7793. "url": "https://github.com/tighten/solana-php-sdk.git",
  7794. "reference": "2f284ef6e9e3ac440ac65e4e75cfa11e4a188513"
  7795. },
  7796. "dist": {
  7797. "type": "zip",
  7798. "url": "https://api.github.com/repos/tighten/solana-php-sdk/zipball/2f284ef6e9e3ac440ac65e4e75cfa11e4a188513",
  7799. "reference": "2f284ef6e9e3ac440ac65e4e75cfa11e4a188513",
  7800. "shasum": "",
  7801. "mirrors": [
  7802. {
  7803. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7804. "preferred": true
  7805. }
  7806. ]
  7807. },
  7808. "require": {
  7809. "ext-sodium": "*",
  7810. "guzzlehttp/guzzle": "^7.3",
  7811. "illuminate/http": "~8.0 || ~9.0",
  7812. "illuminate/support": "^8.0 || ~9.0",
  7813. "php": "^7.4 || ~8.0",
  7814. "stephenhill/base58": "^1.1"
  7815. },
  7816. "require-dev": {
  7817. "mockery/mockery": "^1.4",
  7818. "orchestra/testbench": "^6.0",
  7819. "phpunit/phpunit": "^9.0",
  7820. "squizlabs/php_codesniffer": "^3.5",
  7821. "tightenco/tlint": "^5.0"
  7822. },
  7823. "type": "library",
  7824. "autoload": {
  7825. "psr-4": {
  7826. "Tighten\\SolanaPhpSdk\\": "src"
  7827. }
  7828. },
  7829. "notification-url": "https://packagist.org/downloads/",
  7830. "license": [
  7831. "MIT"
  7832. ],
  7833. "authors": [
  7834. {
  7835. "name": "Matt Stauffer",
  7836. "email": "matt@tighten.co",
  7837. "homepage": "https://tighten.co",
  7838. "role": "Developer"
  7839. },
  7840. {
  7841. "name": "Zach Vander Velden",
  7842. "email": "zachvv11@gmail.com",
  7843. "homepage": "https://zachvv.me",
  7844. "role": "Developer"
  7845. }
  7846. ],
  7847. "description": "Solana PHP SDK",
  7848. "homepage": "https://github.com/tighten/solana-php-sdk",
  7849. "keywords": [
  7850. "blockchain",
  7851. "php",
  7852. "sdk",
  7853. "sol",
  7854. "solana",
  7855. "solana-php-sdk",
  7856. "tightenco"
  7857. ],
  7858. "support": {
  7859. "issues": "https://github.com/tighten/solana-php-sdk/issues",
  7860. "source": "https://github.com/tighten/solana-php-sdk/tree/v0.3.2"
  7861. },
  7862. "abandoned": true,
  7863. "time": "2022-03-04T21:44:36+00:00"
  7864. },
  7865. {
  7866. "name": "tijsverkoyen/css-to-inline-styles",
  7867. "version": "v2.2.7",
  7868. "source": {
  7869. "type": "git",
  7870. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7871. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7872. },
  7873. "dist": {
  7874. "type": "zip",
  7875. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7876. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7877. "shasum": "",
  7878. "mirrors": [
  7879. {
  7880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7881. "preferred": true
  7882. }
  7883. ]
  7884. },
  7885. "require": {
  7886. "ext-dom": "*",
  7887. "ext-libxml": "*",
  7888. "php": "^5.5 || ^7.0 || ^8.0",
  7889. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7890. },
  7891. "require-dev": {
  7892. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7893. },
  7894. "type": "library",
  7895. "extra": {
  7896. "branch-alias": {
  7897. "dev-master": "2.2.x-dev"
  7898. }
  7899. },
  7900. "autoload": {
  7901. "psr-4": {
  7902. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7903. }
  7904. },
  7905. "notification-url": "https://packagist.org/downloads/",
  7906. "license": [
  7907. "BSD-3-Clause"
  7908. ],
  7909. "authors": [
  7910. {
  7911. "name": "Tijs Verkoyen",
  7912. "email": "css_to_inline_styles@verkoyen.eu",
  7913. "role": "Developer"
  7914. }
  7915. ],
  7916. "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.",
  7917. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7918. "support": {
  7919. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7920. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7921. },
  7922. "time": "2023-12-08T13:03:43+00:00"
  7923. },
  7924. {
  7925. "name": "vlucas/phpdotenv",
  7926. "version": "v5.6.1",
  7927. "source": {
  7928. "type": "git",
  7929. "url": "https://github.com/vlucas/phpdotenv.git",
  7930. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7931. },
  7932. "dist": {
  7933. "type": "zip",
  7934. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7935. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7936. "shasum": "",
  7937. "mirrors": [
  7938. {
  7939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7940. "preferred": true
  7941. }
  7942. ]
  7943. },
  7944. "require": {
  7945. "ext-pcre": "*",
  7946. "graham-campbell/result-type": "^1.1.3",
  7947. "php": "^7.2.5 || ^8.0",
  7948. "phpoption/phpoption": "^1.9.3",
  7949. "symfony/polyfill-ctype": "^1.24",
  7950. "symfony/polyfill-mbstring": "^1.24",
  7951. "symfony/polyfill-php80": "^1.24"
  7952. },
  7953. "require-dev": {
  7954. "bamarni/composer-bin-plugin": "^1.8.2",
  7955. "ext-filter": "*",
  7956. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7957. },
  7958. "suggest": {
  7959. "ext-filter": "Required to use the boolean validator."
  7960. },
  7961. "type": "library",
  7962. "extra": {
  7963. "bamarni-bin": {
  7964. "bin-links": true,
  7965. "forward-command": false
  7966. },
  7967. "branch-alias": {
  7968. "dev-master": "5.6-dev"
  7969. }
  7970. },
  7971. "autoload": {
  7972. "psr-4": {
  7973. "Dotenv\\": "src/"
  7974. }
  7975. },
  7976. "notification-url": "https://packagist.org/downloads/",
  7977. "license": [
  7978. "BSD-3-Clause"
  7979. ],
  7980. "authors": [
  7981. {
  7982. "name": "Graham Campbell",
  7983. "email": "hello@gjcampbell.co.uk",
  7984. "homepage": "https://github.com/GrahamCampbell"
  7985. },
  7986. {
  7987. "name": "Vance Lucas",
  7988. "email": "vance@vancelucas.com",
  7989. "homepage": "https://github.com/vlucas"
  7990. }
  7991. ],
  7992. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7993. "keywords": [
  7994. "dotenv",
  7995. "env",
  7996. "environment"
  7997. ],
  7998. "support": {
  7999. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8000. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8001. },
  8002. "funding": [
  8003. {
  8004. "url": "https://github.com/GrahamCampbell",
  8005. "type": "github"
  8006. },
  8007. {
  8008. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8009. "type": "tidelift"
  8010. }
  8011. ],
  8012. "time": "2024-07-20T21:52:34+00:00"
  8013. },
  8014. {
  8015. "name": "voku/portable-ascii",
  8016. "version": "1.6.1",
  8017. "source": {
  8018. "type": "git",
  8019. "url": "https://github.com/voku/portable-ascii.git",
  8020. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8021. },
  8022. "dist": {
  8023. "type": "zip",
  8024. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8025. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8026. "shasum": "",
  8027. "mirrors": [
  8028. {
  8029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8030. "preferred": true
  8031. }
  8032. ]
  8033. },
  8034. "require": {
  8035. "php": ">=7.0.0"
  8036. },
  8037. "require-dev": {
  8038. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8039. },
  8040. "suggest": {
  8041. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8042. },
  8043. "type": "library",
  8044. "autoload": {
  8045. "psr-4": {
  8046. "voku\\": "src/voku/"
  8047. }
  8048. },
  8049. "notification-url": "https://packagist.org/downloads/",
  8050. "license": [
  8051. "MIT"
  8052. ],
  8053. "authors": [
  8054. {
  8055. "name": "Lars Moelleken",
  8056. "homepage": "http://www.moelleken.org/"
  8057. }
  8058. ],
  8059. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8060. "homepage": "https://github.com/voku/portable-ascii",
  8061. "keywords": [
  8062. "ascii",
  8063. "clean",
  8064. "php"
  8065. ],
  8066. "support": {
  8067. "issues": "https://github.com/voku/portable-ascii/issues",
  8068. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8069. },
  8070. "funding": [
  8071. {
  8072. "url": "https://www.paypal.me/moelleken",
  8073. "type": "custom"
  8074. },
  8075. {
  8076. "url": "https://github.com/voku",
  8077. "type": "github"
  8078. },
  8079. {
  8080. "url": "https://opencollective.com/portable-ascii",
  8081. "type": "open_collective"
  8082. },
  8083. {
  8084. "url": "https://www.patreon.com/voku",
  8085. "type": "patreon"
  8086. },
  8087. {
  8088. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8089. "type": "tidelift"
  8090. }
  8091. ],
  8092. "time": "2022-01-24T18:55:24+00:00"
  8093. },
  8094. {
  8095. "name": "webmozart/assert",
  8096. "version": "1.11.0",
  8097. "source": {
  8098. "type": "git",
  8099. "url": "https://github.com/webmozarts/assert.git",
  8100. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8101. },
  8102. "dist": {
  8103. "type": "zip",
  8104. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8105. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8106. "shasum": "",
  8107. "mirrors": [
  8108. {
  8109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8110. "preferred": true
  8111. }
  8112. ]
  8113. },
  8114. "require": {
  8115. "ext-ctype": "*",
  8116. "php": "^7.2 || ^8.0"
  8117. },
  8118. "conflict": {
  8119. "phpstan/phpstan": "<0.12.20",
  8120. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8121. },
  8122. "require-dev": {
  8123. "phpunit/phpunit": "^8.5.13"
  8124. },
  8125. "type": "library",
  8126. "extra": {
  8127. "branch-alias": {
  8128. "dev-master": "1.10-dev"
  8129. }
  8130. },
  8131. "autoload": {
  8132. "psr-4": {
  8133. "Webmozart\\Assert\\": "src/"
  8134. }
  8135. },
  8136. "notification-url": "https://packagist.org/downloads/",
  8137. "license": [
  8138. "MIT"
  8139. ],
  8140. "authors": [
  8141. {
  8142. "name": "Bernhard Schussek",
  8143. "email": "bschussek@gmail.com"
  8144. }
  8145. ],
  8146. "description": "Assertions to validate method input/output with nice error messages.",
  8147. "keywords": [
  8148. "assert",
  8149. "check",
  8150. "validate"
  8151. ],
  8152. "support": {
  8153. "issues": "https://github.com/webmozarts/assert/issues",
  8154. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8155. },
  8156. "time": "2022-06-03T18:03:27+00:00"
  8157. }
  8158. ],
  8159. "packages-dev": [
  8160. {
  8161. "name": "doctrine/instantiator",
  8162. "version": "1.5.0",
  8163. "source": {
  8164. "type": "git",
  8165. "url": "https://github.com/doctrine/instantiator.git",
  8166. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8167. },
  8168. "dist": {
  8169. "type": "zip",
  8170. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8171. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8172. "shasum": "",
  8173. "mirrors": [
  8174. {
  8175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8176. "preferred": true
  8177. }
  8178. ]
  8179. },
  8180. "require": {
  8181. "php": "^7.1 || ^8.0"
  8182. },
  8183. "require-dev": {
  8184. "doctrine/coding-standard": "^9 || ^11",
  8185. "ext-pdo": "*",
  8186. "ext-phar": "*",
  8187. "phpbench/phpbench": "^0.16 || ^1",
  8188. "phpstan/phpstan": "^1.4",
  8189. "phpstan/phpstan-phpunit": "^1",
  8190. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8191. "vimeo/psalm": "^4.30 || ^5.4"
  8192. },
  8193. "type": "library",
  8194. "autoload": {
  8195. "psr-4": {
  8196. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8197. }
  8198. },
  8199. "notification-url": "https://packagist.org/downloads/",
  8200. "license": [
  8201. "MIT"
  8202. ],
  8203. "authors": [
  8204. {
  8205. "name": "Marco Pivetta",
  8206. "email": "ocramius@gmail.com",
  8207. "homepage": "https://ocramius.github.io/"
  8208. }
  8209. ],
  8210. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8211. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8212. "keywords": [
  8213. "constructor",
  8214. "instantiate"
  8215. ],
  8216. "support": {
  8217. "issues": "https://github.com/doctrine/instantiator/issues",
  8218. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8219. },
  8220. "funding": [
  8221. {
  8222. "url": "https://www.doctrine-project.org/sponsorship.html",
  8223. "type": "custom"
  8224. },
  8225. {
  8226. "url": "https://www.patreon.com/phpdoctrine",
  8227. "type": "patreon"
  8228. },
  8229. {
  8230. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8231. "type": "tidelift"
  8232. }
  8233. ],
  8234. "time": "2022-12-30T00:15:36+00:00"
  8235. },
  8236. {
  8237. "name": "facade/flare-client-php",
  8238. "version": "1.10.0",
  8239. "source": {
  8240. "type": "git",
  8241. "url": "https://github.com/facade/flare-client-php.git",
  8242. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8243. },
  8244. "dist": {
  8245. "type": "zip",
  8246. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8247. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8248. "shasum": "",
  8249. "mirrors": [
  8250. {
  8251. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8252. "preferred": true
  8253. }
  8254. ]
  8255. },
  8256. "require": {
  8257. "facade/ignition-contracts": "~1.0",
  8258. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8259. "php": "^7.1|^8.0",
  8260. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8261. "symfony/mime": "^3.4|^4.0|^5.1",
  8262. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8263. },
  8264. "require-dev": {
  8265. "friendsofphp/php-cs-fixer": "^2.14",
  8266. "phpunit/phpunit": "^7.5",
  8267. "spatie/phpunit-snapshot-assertions": "^2.0"
  8268. },
  8269. "type": "library",
  8270. "extra": {
  8271. "branch-alias": {
  8272. "dev-master": "1.0-dev"
  8273. }
  8274. },
  8275. "autoload": {
  8276. "files": [
  8277. "src/helpers.php"
  8278. ],
  8279. "psr-4": {
  8280. "Facade\\FlareClient\\": "src"
  8281. }
  8282. },
  8283. "notification-url": "https://packagist.org/downloads/",
  8284. "license": [
  8285. "MIT"
  8286. ],
  8287. "description": "Send PHP errors to Flare",
  8288. "homepage": "https://github.com/facade/flare-client-php",
  8289. "keywords": [
  8290. "exception",
  8291. "facade",
  8292. "flare",
  8293. "reporting"
  8294. ],
  8295. "support": {
  8296. "issues": "https://github.com/facade/flare-client-php/issues",
  8297. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8298. },
  8299. "funding": [
  8300. {
  8301. "url": "https://github.com/spatie",
  8302. "type": "github"
  8303. }
  8304. ],
  8305. "time": "2022-08-09T11:23:57+00:00"
  8306. },
  8307. {
  8308. "name": "facade/ignition",
  8309. "version": "2.17.7",
  8310. "source": {
  8311. "type": "git",
  8312. "url": "https://github.com/facade/ignition.git",
  8313. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8314. },
  8315. "dist": {
  8316. "type": "zip",
  8317. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8318. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8319. "shasum": "",
  8320. "mirrors": [
  8321. {
  8322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8323. "preferred": true
  8324. }
  8325. ]
  8326. },
  8327. "require": {
  8328. "ext-curl": "*",
  8329. "ext-json": "*",
  8330. "ext-mbstring": "*",
  8331. "facade/flare-client-php": "^1.9.1",
  8332. "facade/ignition-contracts": "^1.0.2",
  8333. "illuminate/support": "^7.0|^8.0",
  8334. "monolog/monolog": "^2.0",
  8335. "php": "^7.2.5|^8.0",
  8336. "symfony/console": "^5.0",
  8337. "symfony/var-dumper": "^5.0"
  8338. },
  8339. "require-dev": {
  8340. "friendsofphp/php-cs-fixer": "^2.14",
  8341. "livewire/livewire": "^2.4",
  8342. "mockery/mockery": "^1.3",
  8343. "orchestra/testbench": "^5.0|^6.0",
  8344. "psalm/plugin-laravel": "^1.2"
  8345. },
  8346. "suggest": {
  8347. "laravel/telescope": "^3.1"
  8348. },
  8349. "type": "library",
  8350. "extra": {
  8351. "branch-alias": {
  8352. "dev-master": "2.x-dev"
  8353. },
  8354. "laravel": {
  8355. "providers": [
  8356. "Facade\\Ignition\\IgnitionServiceProvider"
  8357. ],
  8358. "aliases": {
  8359. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8360. }
  8361. }
  8362. },
  8363. "autoload": {
  8364. "files": [
  8365. "src/helpers.php"
  8366. ],
  8367. "psr-4": {
  8368. "Facade\\Ignition\\": "src"
  8369. }
  8370. },
  8371. "notification-url": "https://packagist.org/downloads/",
  8372. "license": [
  8373. "MIT"
  8374. ],
  8375. "description": "A beautiful error page for Laravel applications.",
  8376. "homepage": "https://github.com/facade/ignition",
  8377. "keywords": [
  8378. "error",
  8379. "flare",
  8380. "laravel",
  8381. "page"
  8382. ],
  8383. "support": {
  8384. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8385. "forum": "https://twitter.com/flareappio",
  8386. "issues": "https://github.com/facade/ignition/issues",
  8387. "source": "https://github.com/facade/ignition"
  8388. },
  8389. "time": "2023-01-26T12:34:59+00:00"
  8390. },
  8391. {
  8392. "name": "facade/ignition-contracts",
  8393. "version": "1.0.2",
  8394. "source": {
  8395. "type": "git",
  8396. "url": "https://github.com/facade/ignition-contracts.git",
  8397. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8398. },
  8399. "dist": {
  8400. "type": "zip",
  8401. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8402. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8403. "shasum": "",
  8404. "mirrors": [
  8405. {
  8406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8407. "preferred": true
  8408. }
  8409. ]
  8410. },
  8411. "require": {
  8412. "php": "^7.3|^8.0"
  8413. },
  8414. "require-dev": {
  8415. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8416. "phpunit/phpunit": "^9.3.11",
  8417. "vimeo/psalm": "^3.17.1"
  8418. },
  8419. "type": "library",
  8420. "autoload": {
  8421. "psr-4": {
  8422. "Facade\\IgnitionContracts\\": "src"
  8423. }
  8424. },
  8425. "notification-url": "https://packagist.org/downloads/",
  8426. "license": [
  8427. "MIT"
  8428. ],
  8429. "authors": [
  8430. {
  8431. "name": "Freek Van der Herten",
  8432. "email": "freek@spatie.be",
  8433. "homepage": "https://flareapp.io",
  8434. "role": "Developer"
  8435. }
  8436. ],
  8437. "description": "Solution contracts for Ignition",
  8438. "homepage": "https://github.com/facade/ignition-contracts",
  8439. "keywords": [
  8440. "contracts",
  8441. "flare",
  8442. "ignition"
  8443. ],
  8444. "support": {
  8445. "issues": "https://github.com/facade/ignition-contracts/issues",
  8446. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8447. },
  8448. "time": "2020-10-16T08:27:54+00:00"
  8449. },
  8450. {
  8451. "name": "fakerphp/faker",
  8452. "version": "v1.23.1",
  8453. "source": {
  8454. "type": "git",
  8455. "url": "https://github.com/FakerPHP/Faker.git",
  8456. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8457. },
  8458. "dist": {
  8459. "type": "zip",
  8460. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8461. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8462. "shasum": "",
  8463. "mirrors": [
  8464. {
  8465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8466. "preferred": true
  8467. }
  8468. ]
  8469. },
  8470. "require": {
  8471. "php": "^7.4 || ^8.0",
  8472. "psr/container": "^1.0 || ^2.0",
  8473. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8474. },
  8475. "conflict": {
  8476. "fzaninotto/faker": "*"
  8477. },
  8478. "require-dev": {
  8479. "bamarni/composer-bin-plugin": "^1.4.1",
  8480. "doctrine/persistence": "^1.3 || ^2.0",
  8481. "ext-intl": "*",
  8482. "phpunit/phpunit": "^9.5.26",
  8483. "symfony/phpunit-bridge": "^5.4.16"
  8484. },
  8485. "suggest": {
  8486. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8487. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8488. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8489. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8490. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8491. },
  8492. "type": "library",
  8493. "autoload": {
  8494. "psr-4": {
  8495. "Faker\\": "src/Faker/"
  8496. }
  8497. },
  8498. "notification-url": "https://packagist.org/downloads/",
  8499. "license": [
  8500. "MIT"
  8501. ],
  8502. "authors": [
  8503. {
  8504. "name": "François Zaninotto"
  8505. }
  8506. ],
  8507. "description": "Faker is a PHP library that generates fake data for you.",
  8508. "keywords": [
  8509. "data",
  8510. "faker",
  8511. "fixtures"
  8512. ],
  8513. "support": {
  8514. "issues": "https://github.com/FakerPHP/Faker/issues",
  8515. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8516. },
  8517. "time": "2024-01-02T13:46:09+00:00"
  8518. },
  8519. {
  8520. "name": "filp/whoops",
  8521. "version": "2.15.4",
  8522. "source": {
  8523. "type": "git",
  8524. "url": "https://github.com/filp/whoops.git",
  8525. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  8526. },
  8527. "dist": {
  8528. "type": "zip",
  8529. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8530. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8531. "shasum": "",
  8532. "mirrors": [
  8533. {
  8534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8535. "preferred": true
  8536. }
  8537. ]
  8538. },
  8539. "require": {
  8540. "php": "^5.5.9 || ^7.0 || ^8.0",
  8541. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8542. },
  8543. "require-dev": {
  8544. "mockery/mockery": "^0.9 || ^1.0",
  8545. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8546. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8547. },
  8548. "suggest": {
  8549. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8550. "whoops/soap": "Formats errors as SOAP responses"
  8551. },
  8552. "type": "library",
  8553. "extra": {
  8554. "branch-alias": {
  8555. "dev-master": "2.7-dev"
  8556. }
  8557. },
  8558. "autoload": {
  8559. "psr-4": {
  8560. "Whoops\\": "src/Whoops/"
  8561. }
  8562. },
  8563. "notification-url": "https://packagist.org/downloads/",
  8564. "license": [
  8565. "MIT"
  8566. ],
  8567. "authors": [
  8568. {
  8569. "name": "Filipe Dobreira",
  8570. "homepage": "https://github.com/filp",
  8571. "role": "Developer"
  8572. }
  8573. ],
  8574. "description": "php error handling for cool kids",
  8575. "homepage": "https://filp.github.io/whoops/",
  8576. "keywords": [
  8577. "error",
  8578. "exception",
  8579. "handling",
  8580. "library",
  8581. "throwable",
  8582. "whoops"
  8583. ],
  8584. "support": {
  8585. "issues": "https://github.com/filp/whoops/issues",
  8586. "source": "https://github.com/filp/whoops/tree/2.15.4"
  8587. },
  8588. "funding": [
  8589. {
  8590. "url": "https://github.com/denis-sokolov",
  8591. "type": "github"
  8592. }
  8593. ],
  8594. "time": "2023-11-03T12:00:00+00:00"
  8595. },
  8596. {
  8597. "name": "hamcrest/hamcrest-php",
  8598. "version": "v2.0.1",
  8599. "source": {
  8600. "type": "git",
  8601. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8602. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8603. },
  8604. "dist": {
  8605. "type": "zip",
  8606. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8607. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8608. "shasum": "",
  8609. "mirrors": [
  8610. {
  8611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8612. "preferred": true
  8613. }
  8614. ]
  8615. },
  8616. "require": {
  8617. "php": "^5.3|^7.0|^8.0"
  8618. },
  8619. "replace": {
  8620. "cordoval/hamcrest-php": "*",
  8621. "davedevelopment/hamcrest-php": "*",
  8622. "kodova/hamcrest-php": "*"
  8623. },
  8624. "require-dev": {
  8625. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8626. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8627. },
  8628. "type": "library",
  8629. "extra": {
  8630. "branch-alias": {
  8631. "dev-master": "2.1-dev"
  8632. }
  8633. },
  8634. "autoload": {
  8635. "classmap": [
  8636. "hamcrest"
  8637. ]
  8638. },
  8639. "notification-url": "https://packagist.org/downloads/",
  8640. "license": [
  8641. "BSD-3-Clause"
  8642. ],
  8643. "description": "This is the PHP port of Hamcrest Matchers",
  8644. "keywords": [
  8645. "test"
  8646. ],
  8647. "support": {
  8648. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8649. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8650. },
  8651. "time": "2020-07-09T08:09:16+00:00"
  8652. },
  8653. {
  8654. "name": "mockery/mockery",
  8655. "version": "1.6.12",
  8656. "source": {
  8657. "type": "git",
  8658. "url": "https://github.com/mockery/mockery.git",
  8659. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8660. },
  8661. "dist": {
  8662. "type": "zip",
  8663. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8664. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8665. "shasum": "",
  8666. "mirrors": [
  8667. {
  8668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8669. "preferred": true
  8670. }
  8671. ]
  8672. },
  8673. "require": {
  8674. "hamcrest/hamcrest-php": "^2.0.1",
  8675. "lib-pcre": ">=7.0",
  8676. "php": ">=7.3"
  8677. },
  8678. "conflict": {
  8679. "phpunit/phpunit": "<8.0"
  8680. },
  8681. "require-dev": {
  8682. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8683. "symplify/easy-coding-standard": "^12.1.14"
  8684. },
  8685. "type": "library",
  8686. "autoload": {
  8687. "files": [
  8688. "library/helpers.php",
  8689. "library/Mockery.php"
  8690. ],
  8691. "psr-4": {
  8692. "Mockery\\": "library/Mockery"
  8693. }
  8694. },
  8695. "notification-url": "https://packagist.org/downloads/",
  8696. "license": [
  8697. "BSD-3-Clause"
  8698. ],
  8699. "authors": [
  8700. {
  8701. "name": "Pádraic Brady",
  8702. "email": "padraic.brady@gmail.com",
  8703. "homepage": "https://github.com/padraic",
  8704. "role": "Author"
  8705. },
  8706. {
  8707. "name": "Dave Marshall",
  8708. "email": "dave.marshall@atstsolutions.co.uk",
  8709. "homepage": "https://davedevelopment.co.uk",
  8710. "role": "Developer"
  8711. },
  8712. {
  8713. "name": "Nathanael Esayeas",
  8714. "email": "nathanael.esayeas@protonmail.com",
  8715. "homepage": "https://github.com/ghostwriter",
  8716. "role": "Lead Developer"
  8717. }
  8718. ],
  8719. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8720. "homepage": "https://github.com/mockery/mockery",
  8721. "keywords": [
  8722. "BDD",
  8723. "TDD",
  8724. "library",
  8725. "mock",
  8726. "mock objects",
  8727. "mockery",
  8728. "stub",
  8729. "test",
  8730. "test double",
  8731. "testing"
  8732. ],
  8733. "support": {
  8734. "docs": "https://docs.mockery.io/",
  8735. "issues": "https://github.com/mockery/mockery/issues",
  8736. "rss": "https://github.com/mockery/mockery/releases.atom",
  8737. "security": "https://github.com/mockery/mockery/security/advisories",
  8738. "source": "https://github.com/mockery/mockery"
  8739. },
  8740. "time": "2024-05-16T03:13:13+00:00"
  8741. },
  8742. {
  8743. "name": "myclabs/deep-copy",
  8744. "version": "1.11.1",
  8745. "source": {
  8746. "type": "git",
  8747. "url": "https://github.com/myclabs/DeepCopy.git",
  8748. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8749. },
  8750. "dist": {
  8751. "type": "zip",
  8752. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8753. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8754. "shasum": "",
  8755. "mirrors": [
  8756. {
  8757. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8758. "preferred": true
  8759. }
  8760. ]
  8761. },
  8762. "require": {
  8763. "php": "^7.1 || ^8.0"
  8764. },
  8765. "conflict": {
  8766. "doctrine/collections": "<1.6.8",
  8767. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8768. },
  8769. "require-dev": {
  8770. "doctrine/collections": "^1.6.8",
  8771. "doctrine/common": "^2.13.3 || ^3.2.2",
  8772. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8773. },
  8774. "type": "library",
  8775. "autoload": {
  8776. "files": [
  8777. "src/DeepCopy/deep_copy.php"
  8778. ],
  8779. "psr-4": {
  8780. "DeepCopy\\": "src/DeepCopy/"
  8781. }
  8782. },
  8783. "notification-url": "https://packagist.org/downloads/",
  8784. "license": [
  8785. "MIT"
  8786. ],
  8787. "description": "Create deep copies (clones) of your objects",
  8788. "keywords": [
  8789. "clone",
  8790. "copy",
  8791. "duplicate",
  8792. "object",
  8793. "object graph"
  8794. ],
  8795. "support": {
  8796. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8797. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8798. },
  8799. "funding": [
  8800. {
  8801. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8802. "type": "tidelift"
  8803. }
  8804. ],
  8805. "time": "2023-03-08T13:26:56+00:00"
  8806. },
  8807. {
  8808. "name": "nunomaduro/collision",
  8809. "version": "v5.11.0",
  8810. "source": {
  8811. "type": "git",
  8812. "url": "https://github.com/nunomaduro/collision.git",
  8813. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8814. },
  8815. "dist": {
  8816. "type": "zip",
  8817. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8818. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8819. "shasum": "",
  8820. "mirrors": [
  8821. {
  8822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8823. "preferred": true
  8824. }
  8825. ]
  8826. },
  8827. "require": {
  8828. "facade/ignition-contracts": "^1.0",
  8829. "filp/whoops": "^2.14.3",
  8830. "php": "^7.3 || ^8.0",
  8831. "symfony/console": "^5.0"
  8832. },
  8833. "require-dev": {
  8834. "brianium/paratest": "^6.1",
  8835. "fideloper/proxy": "^4.4.1",
  8836. "fruitcake/laravel-cors": "^2.0.3",
  8837. "laravel/framework": "8.x-dev",
  8838. "nunomaduro/larastan": "^0.6.2",
  8839. "nunomaduro/mock-final-classes": "^1.0",
  8840. "orchestra/testbench": "^6.0",
  8841. "phpstan/phpstan": "^0.12.64",
  8842. "phpunit/phpunit": "^9.5.0"
  8843. },
  8844. "type": "library",
  8845. "extra": {
  8846. "laravel": {
  8847. "providers": [
  8848. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8849. ]
  8850. }
  8851. },
  8852. "autoload": {
  8853. "psr-4": {
  8854. "NunoMaduro\\Collision\\": "src/"
  8855. }
  8856. },
  8857. "notification-url": "https://packagist.org/downloads/",
  8858. "license": [
  8859. "MIT"
  8860. ],
  8861. "authors": [
  8862. {
  8863. "name": "Nuno Maduro",
  8864. "email": "enunomaduro@gmail.com"
  8865. }
  8866. ],
  8867. "description": "Cli error handling for console/command-line PHP applications.",
  8868. "keywords": [
  8869. "artisan",
  8870. "cli",
  8871. "command-line",
  8872. "console",
  8873. "error",
  8874. "handling",
  8875. "laravel",
  8876. "laravel-zero",
  8877. "php",
  8878. "symfony"
  8879. ],
  8880. "support": {
  8881. "issues": "https://github.com/nunomaduro/collision/issues",
  8882. "source": "https://github.com/nunomaduro/collision"
  8883. },
  8884. "funding": [
  8885. {
  8886. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8887. "type": "custom"
  8888. },
  8889. {
  8890. "url": "https://github.com/nunomaduro",
  8891. "type": "github"
  8892. },
  8893. {
  8894. "url": "https://www.patreon.com/nunomaduro",
  8895. "type": "patreon"
  8896. }
  8897. ],
  8898. "time": "2022-01-10T16:22:52+00:00"
  8899. },
  8900. {
  8901. "name": "phar-io/manifest",
  8902. "version": "2.0.3",
  8903. "source": {
  8904. "type": "git",
  8905. "url": "https://github.com/phar-io/manifest.git",
  8906. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8907. },
  8908. "dist": {
  8909. "type": "zip",
  8910. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8911. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8912. "shasum": "",
  8913. "mirrors": [
  8914. {
  8915. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8916. "preferred": true
  8917. }
  8918. ]
  8919. },
  8920. "require": {
  8921. "ext-dom": "*",
  8922. "ext-phar": "*",
  8923. "ext-xmlwriter": "*",
  8924. "phar-io/version": "^3.0.1",
  8925. "php": "^7.2 || ^8.0"
  8926. },
  8927. "type": "library",
  8928. "extra": {
  8929. "branch-alias": {
  8930. "dev-master": "2.0.x-dev"
  8931. }
  8932. },
  8933. "autoload": {
  8934. "classmap": [
  8935. "src/"
  8936. ]
  8937. },
  8938. "notification-url": "https://packagist.org/downloads/",
  8939. "license": [
  8940. "BSD-3-Clause"
  8941. ],
  8942. "authors": [
  8943. {
  8944. "name": "Arne Blankerts",
  8945. "email": "arne@blankerts.de",
  8946. "role": "Developer"
  8947. },
  8948. {
  8949. "name": "Sebastian Heuer",
  8950. "email": "sebastian@phpeople.de",
  8951. "role": "Developer"
  8952. },
  8953. {
  8954. "name": "Sebastian Bergmann",
  8955. "email": "sebastian@phpunit.de",
  8956. "role": "Developer"
  8957. }
  8958. ],
  8959. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8960. "support": {
  8961. "issues": "https://github.com/phar-io/manifest/issues",
  8962. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8963. },
  8964. "time": "2021-07-20T11:28:43+00:00"
  8965. },
  8966. {
  8967. "name": "phar-io/version",
  8968. "version": "3.2.1",
  8969. "source": {
  8970. "type": "git",
  8971. "url": "https://github.com/phar-io/version.git",
  8972. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8973. },
  8974. "dist": {
  8975. "type": "zip",
  8976. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8977. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8978. "shasum": "",
  8979. "mirrors": [
  8980. {
  8981. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8982. "preferred": true
  8983. }
  8984. ]
  8985. },
  8986. "require": {
  8987. "php": "^7.2 || ^8.0"
  8988. },
  8989. "type": "library",
  8990. "autoload": {
  8991. "classmap": [
  8992. "src/"
  8993. ]
  8994. },
  8995. "notification-url": "https://packagist.org/downloads/",
  8996. "license": [
  8997. "BSD-3-Clause"
  8998. ],
  8999. "authors": [
  9000. {
  9001. "name": "Arne Blankerts",
  9002. "email": "arne@blankerts.de",
  9003. "role": "Developer"
  9004. },
  9005. {
  9006. "name": "Sebastian Heuer",
  9007. "email": "sebastian@phpeople.de",
  9008. "role": "Developer"
  9009. },
  9010. {
  9011. "name": "Sebastian Bergmann",
  9012. "email": "sebastian@phpunit.de",
  9013. "role": "Developer"
  9014. }
  9015. ],
  9016. "description": "Library for handling version information and constraints",
  9017. "support": {
  9018. "issues": "https://github.com/phar-io/version/issues",
  9019. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9020. },
  9021. "time": "2022-02-21T01:04:05+00:00"
  9022. },
  9023. {
  9024. "name": "phpunit/php-code-coverage",
  9025. "version": "9.2.31",
  9026. "source": {
  9027. "type": "git",
  9028. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9029. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965"
  9030. },
  9031. "dist": {
  9032. "type": "zip",
  9033. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965",
  9034. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965",
  9035. "shasum": "",
  9036. "mirrors": [
  9037. {
  9038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9039. "preferred": true
  9040. }
  9041. ]
  9042. },
  9043. "require": {
  9044. "ext-dom": "*",
  9045. "ext-libxml": "*",
  9046. "ext-xmlwriter": "*",
  9047. "nikic/php-parser": "^4.18 || ^5.0",
  9048. "php": ">=7.3",
  9049. "phpunit/php-file-iterator": "^3.0.3",
  9050. "phpunit/php-text-template": "^2.0.2",
  9051. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9052. "sebastian/complexity": "^2.0",
  9053. "sebastian/environment": "^5.1.2",
  9054. "sebastian/lines-of-code": "^1.0.3",
  9055. "sebastian/version": "^3.0.1",
  9056. "theseer/tokenizer": "^1.2.0"
  9057. },
  9058. "require-dev": {
  9059. "phpunit/phpunit": "^9.3"
  9060. },
  9061. "suggest": {
  9062. "ext-pcov": "PHP extension that provides line coverage",
  9063. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9064. },
  9065. "type": "library",
  9066. "extra": {
  9067. "branch-alias": {
  9068. "dev-master": "9.2-dev"
  9069. }
  9070. },
  9071. "autoload": {
  9072. "classmap": [
  9073. "src/"
  9074. ]
  9075. },
  9076. "notification-url": "https://packagist.org/downloads/",
  9077. "license": [
  9078. "BSD-3-Clause"
  9079. ],
  9080. "authors": [
  9081. {
  9082. "name": "Sebastian Bergmann",
  9083. "email": "sebastian@phpunit.de",
  9084. "role": "lead"
  9085. }
  9086. ],
  9087. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9088. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9089. "keywords": [
  9090. "coverage",
  9091. "testing",
  9092. "xunit"
  9093. ],
  9094. "support": {
  9095. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9096. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9097. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31"
  9098. },
  9099. "funding": [
  9100. {
  9101. "url": "https://github.com/sebastianbergmann",
  9102. "type": "github"
  9103. }
  9104. ],
  9105. "time": "2024-03-02T06:37:42+00:00"
  9106. },
  9107. {
  9108. "name": "phpunit/php-file-iterator",
  9109. "version": "3.0.6",
  9110. "source": {
  9111. "type": "git",
  9112. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9113. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9114. },
  9115. "dist": {
  9116. "type": "zip",
  9117. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9118. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9119. "shasum": "",
  9120. "mirrors": [
  9121. {
  9122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9123. "preferred": true
  9124. }
  9125. ]
  9126. },
  9127. "require": {
  9128. "php": ">=7.3"
  9129. },
  9130. "require-dev": {
  9131. "phpunit/phpunit": "^9.3"
  9132. },
  9133. "type": "library",
  9134. "extra": {
  9135. "branch-alias": {
  9136. "dev-master": "3.0-dev"
  9137. }
  9138. },
  9139. "autoload": {
  9140. "classmap": [
  9141. "src/"
  9142. ]
  9143. },
  9144. "notification-url": "https://packagist.org/downloads/",
  9145. "license": [
  9146. "BSD-3-Clause"
  9147. ],
  9148. "authors": [
  9149. {
  9150. "name": "Sebastian Bergmann",
  9151. "email": "sebastian@phpunit.de",
  9152. "role": "lead"
  9153. }
  9154. ],
  9155. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9156. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9157. "keywords": [
  9158. "filesystem",
  9159. "iterator"
  9160. ],
  9161. "support": {
  9162. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9163. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9164. },
  9165. "funding": [
  9166. {
  9167. "url": "https://github.com/sebastianbergmann",
  9168. "type": "github"
  9169. }
  9170. ],
  9171. "time": "2021-12-02T12:48:52+00:00"
  9172. },
  9173. {
  9174. "name": "phpunit/php-invoker",
  9175. "version": "3.1.1",
  9176. "source": {
  9177. "type": "git",
  9178. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9179. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9180. },
  9181. "dist": {
  9182. "type": "zip",
  9183. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9184. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9185. "shasum": "",
  9186. "mirrors": [
  9187. {
  9188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9189. "preferred": true
  9190. }
  9191. ]
  9192. },
  9193. "require": {
  9194. "php": ">=7.3"
  9195. },
  9196. "require-dev": {
  9197. "ext-pcntl": "*",
  9198. "phpunit/phpunit": "^9.3"
  9199. },
  9200. "suggest": {
  9201. "ext-pcntl": "*"
  9202. },
  9203. "type": "library",
  9204. "extra": {
  9205. "branch-alias": {
  9206. "dev-master": "3.1-dev"
  9207. }
  9208. },
  9209. "autoload": {
  9210. "classmap": [
  9211. "src/"
  9212. ]
  9213. },
  9214. "notification-url": "https://packagist.org/downloads/",
  9215. "license": [
  9216. "BSD-3-Clause"
  9217. ],
  9218. "authors": [
  9219. {
  9220. "name": "Sebastian Bergmann",
  9221. "email": "sebastian@phpunit.de",
  9222. "role": "lead"
  9223. }
  9224. ],
  9225. "description": "Invoke callables with a timeout",
  9226. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9227. "keywords": [
  9228. "process"
  9229. ],
  9230. "support": {
  9231. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9232. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9233. },
  9234. "funding": [
  9235. {
  9236. "url": "https://github.com/sebastianbergmann",
  9237. "type": "github"
  9238. }
  9239. ],
  9240. "time": "2020-09-28T05:58:55+00:00"
  9241. },
  9242. {
  9243. "name": "phpunit/php-text-template",
  9244. "version": "2.0.4",
  9245. "source": {
  9246. "type": "git",
  9247. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9248. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9249. },
  9250. "dist": {
  9251. "type": "zip",
  9252. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9253. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9254. "shasum": "",
  9255. "mirrors": [
  9256. {
  9257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9258. "preferred": true
  9259. }
  9260. ]
  9261. },
  9262. "require": {
  9263. "php": ">=7.3"
  9264. },
  9265. "require-dev": {
  9266. "phpunit/phpunit": "^9.3"
  9267. },
  9268. "type": "library",
  9269. "extra": {
  9270. "branch-alias": {
  9271. "dev-master": "2.0-dev"
  9272. }
  9273. },
  9274. "autoload": {
  9275. "classmap": [
  9276. "src/"
  9277. ]
  9278. },
  9279. "notification-url": "https://packagist.org/downloads/",
  9280. "license": [
  9281. "BSD-3-Clause"
  9282. ],
  9283. "authors": [
  9284. {
  9285. "name": "Sebastian Bergmann",
  9286. "email": "sebastian@phpunit.de",
  9287. "role": "lead"
  9288. }
  9289. ],
  9290. "description": "Simple template engine.",
  9291. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9292. "keywords": [
  9293. "template"
  9294. ],
  9295. "support": {
  9296. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9297. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9298. },
  9299. "funding": [
  9300. {
  9301. "url": "https://github.com/sebastianbergmann",
  9302. "type": "github"
  9303. }
  9304. ],
  9305. "time": "2020-10-26T05:33:50+00:00"
  9306. },
  9307. {
  9308. "name": "phpunit/php-timer",
  9309. "version": "5.0.3",
  9310. "source": {
  9311. "type": "git",
  9312. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9313. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9314. },
  9315. "dist": {
  9316. "type": "zip",
  9317. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9318. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9319. "shasum": "",
  9320. "mirrors": [
  9321. {
  9322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9323. "preferred": true
  9324. }
  9325. ]
  9326. },
  9327. "require": {
  9328. "php": ">=7.3"
  9329. },
  9330. "require-dev": {
  9331. "phpunit/phpunit": "^9.3"
  9332. },
  9333. "type": "library",
  9334. "extra": {
  9335. "branch-alias": {
  9336. "dev-master": "5.0-dev"
  9337. }
  9338. },
  9339. "autoload": {
  9340. "classmap": [
  9341. "src/"
  9342. ]
  9343. },
  9344. "notification-url": "https://packagist.org/downloads/",
  9345. "license": [
  9346. "BSD-3-Clause"
  9347. ],
  9348. "authors": [
  9349. {
  9350. "name": "Sebastian Bergmann",
  9351. "email": "sebastian@phpunit.de",
  9352. "role": "lead"
  9353. }
  9354. ],
  9355. "description": "Utility class for timing",
  9356. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9357. "keywords": [
  9358. "timer"
  9359. ],
  9360. "support": {
  9361. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9362. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9363. },
  9364. "funding": [
  9365. {
  9366. "url": "https://github.com/sebastianbergmann",
  9367. "type": "github"
  9368. }
  9369. ],
  9370. "time": "2020-10-26T13:16:10+00:00"
  9371. },
  9372. {
  9373. "name": "phpunit/phpunit",
  9374. "version": "9.6.19",
  9375. "source": {
  9376. "type": "git",
  9377. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9378. "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8"
  9379. },
  9380. "dist": {
  9381. "type": "zip",
  9382. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a1a54a473501ef4cdeaae4e06891674114d79db8",
  9383. "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8",
  9384. "shasum": "",
  9385. "mirrors": [
  9386. {
  9387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9388. "preferred": true
  9389. }
  9390. ]
  9391. },
  9392. "require": {
  9393. "doctrine/instantiator": "^1.3.1 || ^2",
  9394. "ext-dom": "*",
  9395. "ext-json": "*",
  9396. "ext-libxml": "*",
  9397. "ext-mbstring": "*",
  9398. "ext-xml": "*",
  9399. "ext-xmlwriter": "*",
  9400. "myclabs/deep-copy": "^1.10.1",
  9401. "phar-io/manifest": "^2.0.3",
  9402. "phar-io/version": "^3.0.2",
  9403. "php": ">=7.3",
  9404. "phpunit/php-code-coverage": "^9.2.28",
  9405. "phpunit/php-file-iterator": "^3.0.5",
  9406. "phpunit/php-invoker": "^3.1.1",
  9407. "phpunit/php-text-template": "^2.0.3",
  9408. "phpunit/php-timer": "^5.0.2",
  9409. "sebastian/cli-parser": "^1.0.1",
  9410. "sebastian/code-unit": "^1.0.6",
  9411. "sebastian/comparator": "^4.0.8",
  9412. "sebastian/diff": "^4.0.3",
  9413. "sebastian/environment": "^5.1.3",
  9414. "sebastian/exporter": "^4.0.5",
  9415. "sebastian/global-state": "^5.0.1",
  9416. "sebastian/object-enumerator": "^4.0.3",
  9417. "sebastian/resource-operations": "^3.0.3",
  9418. "sebastian/type": "^3.2",
  9419. "sebastian/version": "^3.0.2"
  9420. },
  9421. "suggest": {
  9422. "ext-soap": "To be able to generate mocks based on WSDL files",
  9423. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9424. },
  9425. "bin": [
  9426. "phpunit"
  9427. ],
  9428. "type": "library",
  9429. "extra": {
  9430. "branch-alias": {
  9431. "dev-master": "9.6-dev"
  9432. }
  9433. },
  9434. "autoload": {
  9435. "files": [
  9436. "src/Framework/Assert/Functions.php"
  9437. ],
  9438. "classmap": [
  9439. "src/"
  9440. ]
  9441. },
  9442. "notification-url": "https://packagist.org/downloads/",
  9443. "license": [
  9444. "BSD-3-Clause"
  9445. ],
  9446. "authors": [
  9447. {
  9448. "name": "Sebastian Bergmann",
  9449. "email": "sebastian@phpunit.de",
  9450. "role": "lead"
  9451. }
  9452. ],
  9453. "description": "The PHP Unit Testing framework.",
  9454. "homepage": "https://phpunit.de/",
  9455. "keywords": [
  9456. "phpunit",
  9457. "testing",
  9458. "xunit"
  9459. ],
  9460. "support": {
  9461. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9462. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9463. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.19"
  9464. },
  9465. "funding": [
  9466. {
  9467. "url": "https://phpunit.de/sponsors.html",
  9468. "type": "custom"
  9469. },
  9470. {
  9471. "url": "https://github.com/sebastianbergmann",
  9472. "type": "github"
  9473. },
  9474. {
  9475. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9476. "type": "tidelift"
  9477. }
  9478. ],
  9479. "time": "2024-04-05T04:35:58+00:00"
  9480. },
  9481. {
  9482. "name": "sebastian/cli-parser",
  9483. "version": "1.0.2",
  9484. "source": {
  9485. "type": "git",
  9486. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9487. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9488. },
  9489. "dist": {
  9490. "type": "zip",
  9491. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9492. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9493. "shasum": "",
  9494. "mirrors": [
  9495. {
  9496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9497. "preferred": true
  9498. }
  9499. ]
  9500. },
  9501. "require": {
  9502. "php": ">=7.3"
  9503. },
  9504. "require-dev": {
  9505. "phpunit/phpunit": "^9.3"
  9506. },
  9507. "type": "library",
  9508. "extra": {
  9509. "branch-alias": {
  9510. "dev-master": "1.0-dev"
  9511. }
  9512. },
  9513. "autoload": {
  9514. "classmap": [
  9515. "src/"
  9516. ]
  9517. },
  9518. "notification-url": "https://packagist.org/downloads/",
  9519. "license": [
  9520. "BSD-3-Clause"
  9521. ],
  9522. "authors": [
  9523. {
  9524. "name": "Sebastian Bergmann",
  9525. "email": "sebastian@phpunit.de",
  9526. "role": "lead"
  9527. }
  9528. ],
  9529. "description": "Library for parsing CLI options",
  9530. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9531. "support": {
  9532. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9533. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9534. },
  9535. "funding": [
  9536. {
  9537. "url": "https://github.com/sebastianbergmann",
  9538. "type": "github"
  9539. }
  9540. ],
  9541. "time": "2024-03-02T06:27:43+00:00"
  9542. },
  9543. {
  9544. "name": "sebastian/code-unit",
  9545. "version": "1.0.8",
  9546. "source": {
  9547. "type": "git",
  9548. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9549. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9550. },
  9551. "dist": {
  9552. "type": "zip",
  9553. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9554. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9555. "shasum": "",
  9556. "mirrors": [
  9557. {
  9558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9559. "preferred": true
  9560. }
  9561. ]
  9562. },
  9563. "require": {
  9564. "php": ">=7.3"
  9565. },
  9566. "require-dev": {
  9567. "phpunit/phpunit": "^9.3"
  9568. },
  9569. "type": "library",
  9570. "extra": {
  9571. "branch-alias": {
  9572. "dev-master": "1.0-dev"
  9573. }
  9574. },
  9575. "autoload": {
  9576. "classmap": [
  9577. "src/"
  9578. ]
  9579. },
  9580. "notification-url": "https://packagist.org/downloads/",
  9581. "license": [
  9582. "BSD-3-Clause"
  9583. ],
  9584. "authors": [
  9585. {
  9586. "name": "Sebastian Bergmann",
  9587. "email": "sebastian@phpunit.de",
  9588. "role": "lead"
  9589. }
  9590. ],
  9591. "description": "Collection of value objects that represent the PHP code units",
  9592. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9593. "support": {
  9594. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9595. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9596. },
  9597. "funding": [
  9598. {
  9599. "url": "https://github.com/sebastianbergmann",
  9600. "type": "github"
  9601. }
  9602. ],
  9603. "time": "2020-10-26T13:08:54+00:00"
  9604. },
  9605. {
  9606. "name": "sebastian/code-unit-reverse-lookup",
  9607. "version": "2.0.3",
  9608. "source": {
  9609. "type": "git",
  9610. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9611. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9612. },
  9613. "dist": {
  9614. "type": "zip",
  9615. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9616. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9617. "shasum": "",
  9618. "mirrors": [
  9619. {
  9620. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9621. "preferred": true
  9622. }
  9623. ]
  9624. },
  9625. "require": {
  9626. "php": ">=7.3"
  9627. },
  9628. "require-dev": {
  9629. "phpunit/phpunit": "^9.3"
  9630. },
  9631. "type": "library",
  9632. "extra": {
  9633. "branch-alias": {
  9634. "dev-master": "2.0-dev"
  9635. }
  9636. },
  9637. "autoload": {
  9638. "classmap": [
  9639. "src/"
  9640. ]
  9641. },
  9642. "notification-url": "https://packagist.org/downloads/",
  9643. "license": [
  9644. "BSD-3-Clause"
  9645. ],
  9646. "authors": [
  9647. {
  9648. "name": "Sebastian Bergmann",
  9649. "email": "sebastian@phpunit.de"
  9650. }
  9651. ],
  9652. "description": "Looks up which function or method a line of code belongs to",
  9653. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9654. "support": {
  9655. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9656. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9657. },
  9658. "funding": [
  9659. {
  9660. "url": "https://github.com/sebastianbergmann",
  9661. "type": "github"
  9662. }
  9663. ],
  9664. "time": "2020-09-28T05:30:19+00:00"
  9665. },
  9666. {
  9667. "name": "sebastian/comparator",
  9668. "version": "4.0.8",
  9669. "source": {
  9670. "type": "git",
  9671. "url": "https://github.com/sebastianbergmann/comparator.git",
  9672. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9673. },
  9674. "dist": {
  9675. "type": "zip",
  9676. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9677. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9678. "shasum": "",
  9679. "mirrors": [
  9680. {
  9681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9682. "preferred": true
  9683. }
  9684. ]
  9685. },
  9686. "require": {
  9687. "php": ">=7.3",
  9688. "sebastian/diff": "^4.0",
  9689. "sebastian/exporter": "^4.0"
  9690. },
  9691. "require-dev": {
  9692. "phpunit/phpunit": "^9.3"
  9693. },
  9694. "type": "library",
  9695. "extra": {
  9696. "branch-alias": {
  9697. "dev-master": "4.0-dev"
  9698. }
  9699. },
  9700. "autoload": {
  9701. "classmap": [
  9702. "src/"
  9703. ]
  9704. },
  9705. "notification-url": "https://packagist.org/downloads/",
  9706. "license": [
  9707. "BSD-3-Clause"
  9708. ],
  9709. "authors": [
  9710. {
  9711. "name": "Sebastian Bergmann",
  9712. "email": "sebastian@phpunit.de"
  9713. },
  9714. {
  9715. "name": "Jeff Welch",
  9716. "email": "whatthejeff@gmail.com"
  9717. },
  9718. {
  9719. "name": "Volker Dusch",
  9720. "email": "github@wallbash.com"
  9721. },
  9722. {
  9723. "name": "Bernhard Schussek",
  9724. "email": "bschussek@2bepublished.at"
  9725. }
  9726. ],
  9727. "description": "Provides the functionality to compare PHP values for equality",
  9728. "homepage": "https://github.com/sebastianbergmann/comparator",
  9729. "keywords": [
  9730. "comparator",
  9731. "compare",
  9732. "equality"
  9733. ],
  9734. "support": {
  9735. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9736. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9737. },
  9738. "funding": [
  9739. {
  9740. "url": "https://github.com/sebastianbergmann",
  9741. "type": "github"
  9742. }
  9743. ],
  9744. "time": "2022-09-14T12:41:17+00:00"
  9745. },
  9746. {
  9747. "name": "sebastian/complexity",
  9748. "version": "2.0.3",
  9749. "source": {
  9750. "type": "git",
  9751. "url": "https://github.com/sebastianbergmann/complexity.git",
  9752. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9753. },
  9754. "dist": {
  9755. "type": "zip",
  9756. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9757. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9758. "shasum": "",
  9759. "mirrors": [
  9760. {
  9761. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9762. "preferred": true
  9763. }
  9764. ]
  9765. },
  9766. "require": {
  9767. "nikic/php-parser": "^4.18 || ^5.0",
  9768. "php": ">=7.3"
  9769. },
  9770. "require-dev": {
  9771. "phpunit/phpunit": "^9.3"
  9772. },
  9773. "type": "library",
  9774. "extra": {
  9775. "branch-alias": {
  9776. "dev-master": "2.0-dev"
  9777. }
  9778. },
  9779. "autoload": {
  9780. "classmap": [
  9781. "src/"
  9782. ]
  9783. },
  9784. "notification-url": "https://packagist.org/downloads/",
  9785. "license": [
  9786. "BSD-3-Clause"
  9787. ],
  9788. "authors": [
  9789. {
  9790. "name": "Sebastian Bergmann",
  9791. "email": "sebastian@phpunit.de",
  9792. "role": "lead"
  9793. }
  9794. ],
  9795. "description": "Library for calculating the complexity of PHP code units",
  9796. "homepage": "https://github.com/sebastianbergmann/complexity",
  9797. "support": {
  9798. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9799. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9800. },
  9801. "funding": [
  9802. {
  9803. "url": "https://github.com/sebastianbergmann",
  9804. "type": "github"
  9805. }
  9806. ],
  9807. "time": "2023-12-22T06:19:30+00:00"
  9808. },
  9809. {
  9810. "name": "sebastian/diff",
  9811. "version": "4.0.6",
  9812. "source": {
  9813. "type": "git",
  9814. "url": "https://github.com/sebastianbergmann/diff.git",
  9815. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9816. },
  9817. "dist": {
  9818. "type": "zip",
  9819. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9820. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9821. "shasum": "",
  9822. "mirrors": [
  9823. {
  9824. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9825. "preferred": true
  9826. }
  9827. ]
  9828. },
  9829. "require": {
  9830. "php": ">=7.3"
  9831. },
  9832. "require-dev": {
  9833. "phpunit/phpunit": "^9.3",
  9834. "symfony/process": "^4.2 || ^5"
  9835. },
  9836. "type": "library",
  9837. "extra": {
  9838. "branch-alias": {
  9839. "dev-master": "4.0-dev"
  9840. }
  9841. },
  9842. "autoload": {
  9843. "classmap": [
  9844. "src/"
  9845. ]
  9846. },
  9847. "notification-url": "https://packagist.org/downloads/",
  9848. "license": [
  9849. "BSD-3-Clause"
  9850. ],
  9851. "authors": [
  9852. {
  9853. "name": "Sebastian Bergmann",
  9854. "email": "sebastian@phpunit.de"
  9855. },
  9856. {
  9857. "name": "Kore Nordmann",
  9858. "email": "mail@kore-nordmann.de"
  9859. }
  9860. ],
  9861. "description": "Diff implementation",
  9862. "homepage": "https://github.com/sebastianbergmann/diff",
  9863. "keywords": [
  9864. "diff",
  9865. "udiff",
  9866. "unidiff",
  9867. "unified diff"
  9868. ],
  9869. "support": {
  9870. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9871. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9872. },
  9873. "funding": [
  9874. {
  9875. "url": "https://github.com/sebastianbergmann",
  9876. "type": "github"
  9877. }
  9878. ],
  9879. "time": "2024-03-02T06:30:58+00:00"
  9880. },
  9881. {
  9882. "name": "sebastian/environment",
  9883. "version": "5.1.5",
  9884. "source": {
  9885. "type": "git",
  9886. "url": "https://github.com/sebastianbergmann/environment.git",
  9887. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9888. },
  9889. "dist": {
  9890. "type": "zip",
  9891. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9892. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9893. "shasum": "",
  9894. "mirrors": [
  9895. {
  9896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9897. "preferred": true
  9898. }
  9899. ]
  9900. },
  9901. "require": {
  9902. "php": ">=7.3"
  9903. },
  9904. "require-dev": {
  9905. "phpunit/phpunit": "^9.3"
  9906. },
  9907. "suggest": {
  9908. "ext-posix": "*"
  9909. },
  9910. "type": "library",
  9911. "extra": {
  9912. "branch-alias": {
  9913. "dev-master": "5.1-dev"
  9914. }
  9915. },
  9916. "autoload": {
  9917. "classmap": [
  9918. "src/"
  9919. ]
  9920. },
  9921. "notification-url": "https://packagist.org/downloads/",
  9922. "license": [
  9923. "BSD-3-Clause"
  9924. ],
  9925. "authors": [
  9926. {
  9927. "name": "Sebastian Bergmann",
  9928. "email": "sebastian@phpunit.de"
  9929. }
  9930. ],
  9931. "description": "Provides functionality to handle HHVM/PHP environments",
  9932. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9933. "keywords": [
  9934. "Xdebug",
  9935. "environment",
  9936. "hhvm"
  9937. ],
  9938. "support": {
  9939. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9940. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9941. },
  9942. "funding": [
  9943. {
  9944. "url": "https://github.com/sebastianbergmann",
  9945. "type": "github"
  9946. }
  9947. ],
  9948. "time": "2023-02-03T06:03:51+00:00"
  9949. },
  9950. {
  9951. "name": "sebastian/exporter",
  9952. "version": "4.0.6",
  9953. "source": {
  9954. "type": "git",
  9955. "url": "https://github.com/sebastianbergmann/exporter.git",
  9956. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  9957. },
  9958. "dist": {
  9959. "type": "zip",
  9960. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  9961. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  9962. "shasum": "",
  9963. "mirrors": [
  9964. {
  9965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9966. "preferred": true
  9967. }
  9968. ]
  9969. },
  9970. "require": {
  9971. "php": ">=7.3",
  9972. "sebastian/recursion-context": "^4.0"
  9973. },
  9974. "require-dev": {
  9975. "ext-mbstring": "*",
  9976. "phpunit/phpunit": "^9.3"
  9977. },
  9978. "type": "library",
  9979. "extra": {
  9980. "branch-alias": {
  9981. "dev-master": "4.0-dev"
  9982. }
  9983. },
  9984. "autoload": {
  9985. "classmap": [
  9986. "src/"
  9987. ]
  9988. },
  9989. "notification-url": "https://packagist.org/downloads/",
  9990. "license": [
  9991. "BSD-3-Clause"
  9992. ],
  9993. "authors": [
  9994. {
  9995. "name": "Sebastian Bergmann",
  9996. "email": "sebastian@phpunit.de"
  9997. },
  9998. {
  9999. "name": "Jeff Welch",
  10000. "email": "whatthejeff@gmail.com"
  10001. },
  10002. {
  10003. "name": "Volker Dusch",
  10004. "email": "github@wallbash.com"
  10005. },
  10006. {
  10007. "name": "Adam Harvey",
  10008. "email": "aharvey@php.net"
  10009. },
  10010. {
  10011. "name": "Bernhard Schussek",
  10012. "email": "bschussek@gmail.com"
  10013. }
  10014. ],
  10015. "description": "Provides the functionality to export PHP variables for visualization",
  10016. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10017. "keywords": [
  10018. "export",
  10019. "exporter"
  10020. ],
  10021. "support": {
  10022. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10023. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  10024. },
  10025. "funding": [
  10026. {
  10027. "url": "https://github.com/sebastianbergmann",
  10028. "type": "github"
  10029. }
  10030. ],
  10031. "time": "2024-03-02T06:33:00+00:00"
  10032. },
  10033. {
  10034. "name": "sebastian/global-state",
  10035. "version": "5.0.7",
  10036. "source": {
  10037. "type": "git",
  10038. "url": "https://github.com/sebastianbergmann/global-state.git",
  10039. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  10040. },
  10041. "dist": {
  10042. "type": "zip",
  10043. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10044. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10045. "shasum": "",
  10046. "mirrors": [
  10047. {
  10048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10049. "preferred": true
  10050. }
  10051. ]
  10052. },
  10053. "require": {
  10054. "php": ">=7.3",
  10055. "sebastian/object-reflector": "^2.0",
  10056. "sebastian/recursion-context": "^4.0"
  10057. },
  10058. "require-dev": {
  10059. "ext-dom": "*",
  10060. "phpunit/phpunit": "^9.3"
  10061. },
  10062. "suggest": {
  10063. "ext-uopz": "*"
  10064. },
  10065. "type": "library",
  10066. "extra": {
  10067. "branch-alias": {
  10068. "dev-master": "5.0-dev"
  10069. }
  10070. },
  10071. "autoload": {
  10072. "classmap": [
  10073. "src/"
  10074. ]
  10075. },
  10076. "notification-url": "https://packagist.org/downloads/",
  10077. "license": [
  10078. "BSD-3-Clause"
  10079. ],
  10080. "authors": [
  10081. {
  10082. "name": "Sebastian Bergmann",
  10083. "email": "sebastian@phpunit.de"
  10084. }
  10085. ],
  10086. "description": "Snapshotting of global state",
  10087. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10088. "keywords": [
  10089. "global state"
  10090. ],
  10091. "support": {
  10092. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10093. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  10094. },
  10095. "funding": [
  10096. {
  10097. "url": "https://github.com/sebastianbergmann",
  10098. "type": "github"
  10099. }
  10100. ],
  10101. "time": "2024-03-02T06:35:11+00:00"
  10102. },
  10103. {
  10104. "name": "sebastian/lines-of-code",
  10105. "version": "1.0.4",
  10106. "source": {
  10107. "type": "git",
  10108. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10109. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10110. },
  10111. "dist": {
  10112. "type": "zip",
  10113. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10114. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10115. "shasum": "",
  10116. "mirrors": [
  10117. {
  10118. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10119. "preferred": true
  10120. }
  10121. ]
  10122. },
  10123. "require": {
  10124. "nikic/php-parser": "^4.18 || ^5.0",
  10125. "php": ">=7.3"
  10126. },
  10127. "require-dev": {
  10128. "phpunit/phpunit": "^9.3"
  10129. },
  10130. "type": "library",
  10131. "extra": {
  10132. "branch-alias": {
  10133. "dev-master": "1.0-dev"
  10134. }
  10135. },
  10136. "autoload": {
  10137. "classmap": [
  10138. "src/"
  10139. ]
  10140. },
  10141. "notification-url": "https://packagist.org/downloads/",
  10142. "license": [
  10143. "BSD-3-Clause"
  10144. ],
  10145. "authors": [
  10146. {
  10147. "name": "Sebastian Bergmann",
  10148. "email": "sebastian@phpunit.de",
  10149. "role": "lead"
  10150. }
  10151. ],
  10152. "description": "Library for counting the lines of code in PHP source code",
  10153. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10154. "support": {
  10155. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10156. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10157. },
  10158. "funding": [
  10159. {
  10160. "url": "https://github.com/sebastianbergmann",
  10161. "type": "github"
  10162. }
  10163. ],
  10164. "time": "2023-12-22T06:20:34+00:00"
  10165. },
  10166. {
  10167. "name": "sebastian/object-enumerator",
  10168. "version": "4.0.4",
  10169. "source": {
  10170. "type": "git",
  10171. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10172. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10173. },
  10174. "dist": {
  10175. "type": "zip",
  10176. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10177. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10178. "shasum": "",
  10179. "mirrors": [
  10180. {
  10181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10182. "preferred": true
  10183. }
  10184. ]
  10185. },
  10186. "require": {
  10187. "php": ">=7.3",
  10188. "sebastian/object-reflector": "^2.0",
  10189. "sebastian/recursion-context": "^4.0"
  10190. },
  10191. "require-dev": {
  10192. "phpunit/phpunit": "^9.3"
  10193. },
  10194. "type": "library",
  10195. "extra": {
  10196. "branch-alias": {
  10197. "dev-master": "4.0-dev"
  10198. }
  10199. },
  10200. "autoload": {
  10201. "classmap": [
  10202. "src/"
  10203. ]
  10204. },
  10205. "notification-url": "https://packagist.org/downloads/",
  10206. "license": [
  10207. "BSD-3-Clause"
  10208. ],
  10209. "authors": [
  10210. {
  10211. "name": "Sebastian Bergmann",
  10212. "email": "sebastian@phpunit.de"
  10213. }
  10214. ],
  10215. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10216. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10217. "support": {
  10218. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10219. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10220. },
  10221. "funding": [
  10222. {
  10223. "url": "https://github.com/sebastianbergmann",
  10224. "type": "github"
  10225. }
  10226. ],
  10227. "time": "2020-10-26T13:12:34+00:00"
  10228. },
  10229. {
  10230. "name": "sebastian/object-reflector",
  10231. "version": "2.0.4",
  10232. "source": {
  10233. "type": "git",
  10234. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10235. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10236. },
  10237. "dist": {
  10238. "type": "zip",
  10239. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10240. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10241. "shasum": "",
  10242. "mirrors": [
  10243. {
  10244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10245. "preferred": true
  10246. }
  10247. ]
  10248. },
  10249. "require": {
  10250. "php": ">=7.3"
  10251. },
  10252. "require-dev": {
  10253. "phpunit/phpunit": "^9.3"
  10254. },
  10255. "type": "library",
  10256. "extra": {
  10257. "branch-alias": {
  10258. "dev-master": "2.0-dev"
  10259. }
  10260. },
  10261. "autoload": {
  10262. "classmap": [
  10263. "src/"
  10264. ]
  10265. },
  10266. "notification-url": "https://packagist.org/downloads/",
  10267. "license": [
  10268. "BSD-3-Clause"
  10269. ],
  10270. "authors": [
  10271. {
  10272. "name": "Sebastian Bergmann",
  10273. "email": "sebastian@phpunit.de"
  10274. }
  10275. ],
  10276. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10277. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10278. "support": {
  10279. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10280. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10281. },
  10282. "funding": [
  10283. {
  10284. "url": "https://github.com/sebastianbergmann",
  10285. "type": "github"
  10286. }
  10287. ],
  10288. "time": "2020-10-26T13:14:26+00:00"
  10289. },
  10290. {
  10291. "name": "sebastian/recursion-context",
  10292. "version": "4.0.5",
  10293. "source": {
  10294. "type": "git",
  10295. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10296. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10297. },
  10298. "dist": {
  10299. "type": "zip",
  10300. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10301. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10302. "shasum": "",
  10303. "mirrors": [
  10304. {
  10305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10306. "preferred": true
  10307. }
  10308. ]
  10309. },
  10310. "require": {
  10311. "php": ">=7.3"
  10312. },
  10313. "require-dev": {
  10314. "phpunit/phpunit": "^9.3"
  10315. },
  10316. "type": "library",
  10317. "extra": {
  10318. "branch-alias": {
  10319. "dev-master": "4.0-dev"
  10320. }
  10321. },
  10322. "autoload": {
  10323. "classmap": [
  10324. "src/"
  10325. ]
  10326. },
  10327. "notification-url": "https://packagist.org/downloads/",
  10328. "license": [
  10329. "BSD-3-Clause"
  10330. ],
  10331. "authors": [
  10332. {
  10333. "name": "Sebastian Bergmann",
  10334. "email": "sebastian@phpunit.de"
  10335. },
  10336. {
  10337. "name": "Jeff Welch",
  10338. "email": "whatthejeff@gmail.com"
  10339. },
  10340. {
  10341. "name": "Adam Harvey",
  10342. "email": "aharvey@php.net"
  10343. }
  10344. ],
  10345. "description": "Provides functionality to recursively process PHP variables",
  10346. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10347. "support": {
  10348. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10349. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10350. },
  10351. "funding": [
  10352. {
  10353. "url": "https://github.com/sebastianbergmann",
  10354. "type": "github"
  10355. }
  10356. ],
  10357. "time": "2023-02-03T06:07:39+00:00"
  10358. },
  10359. {
  10360. "name": "sebastian/resource-operations",
  10361. "version": "3.0.4",
  10362. "source": {
  10363. "type": "git",
  10364. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10365. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10366. },
  10367. "dist": {
  10368. "type": "zip",
  10369. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10370. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10371. "shasum": "",
  10372. "mirrors": [
  10373. {
  10374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10375. "preferred": true
  10376. }
  10377. ]
  10378. },
  10379. "require": {
  10380. "php": ">=7.3"
  10381. },
  10382. "require-dev": {
  10383. "phpunit/phpunit": "^9.0"
  10384. },
  10385. "type": "library",
  10386. "extra": {
  10387. "branch-alias": {
  10388. "dev-main": "3.0-dev"
  10389. }
  10390. },
  10391. "autoload": {
  10392. "classmap": [
  10393. "src/"
  10394. ]
  10395. },
  10396. "notification-url": "https://packagist.org/downloads/",
  10397. "license": [
  10398. "BSD-3-Clause"
  10399. ],
  10400. "authors": [
  10401. {
  10402. "name": "Sebastian Bergmann",
  10403. "email": "sebastian@phpunit.de"
  10404. }
  10405. ],
  10406. "description": "Provides a list of PHP built-in functions that operate on resources",
  10407. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10408. "support": {
  10409. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10410. },
  10411. "funding": [
  10412. {
  10413. "url": "https://github.com/sebastianbergmann",
  10414. "type": "github"
  10415. }
  10416. ],
  10417. "abandoned": true,
  10418. "time": "2024-03-14T16:00:52+00:00"
  10419. },
  10420. {
  10421. "name": "sebastian/type",
  10422. "version": "3.2.1",
  10423. "source": {
  10424. "type": "git",
  10425. "url": "https://github.com/sebastianbergmann/type.git",
  10426. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10427. },
  10428. "dist": {
  10429. "type": "zip",
  10430. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10431. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10432. "shasum": "",
  10433. "mirrors": [
  10434. {
  10435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10436. "preferred": true
  10437. }
  10438. ]
  10439. },
  10440. "require": {
  10441. "php": ">=7.3"
  10442. },
  10443. "require-dev": {
  10444. "phpunit/phpunit": "^9.5"
  10445. },
  10446. "type": "library",
  10447. "extra": {
  10448. "branch-alias": {
  10449. "dev-master": "3.2-dev"
  10450. }
  10451. },
  10452. "autoload": {
  10453. "classmap": [
  10454. "src/"
  10455. ]
  10456. },
  10457. "notification-url": "https://packagist.org/downloads/",
  10458. "license": [
  10459. "BSD-3-Clause"
  10460. ],
  10461. "authors": [
  10462. {
  10463. "name": "Sebastian Bergmann",
  10464. "email": "sebastian@phpunit.de",
  10465. "role": "lead"
  10466. }
  10467. ],
  10468. "description": "Collection of value objects that represent the types of the PHP type system",
  10469. "homepage": "https://github.com/sebastianbergmann/type",
  10470. "support": {
  10471. "issues": "https://github.com/sebastianbergmann/type/issues",
  10472. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10473. },
  10474. "funding": [
  10475. {
  10476. "url": "https://github.com/sebastianbergmann",
  10477. "type": "github"
  10478. }
  10479. ],
  10480. "time": "2023-02-03T06:13:03+00:00"
  10481. },
  10482. {
  10483. "name": "sebastian/version",
  10484. "version": "3.0.2",
  10485. "source": {
  10486. "type": "git",
  10487. "url": "https://github.com/sebastianbergmann/version.git",
  10488. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10489. },
  10490. "dist": {
  10491. "type": "zip",
  10492. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10493. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10494. "shasum": "",
  10495. "mirrors": [
  10496. {
  10497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10498. "preferred": true
  10499. }
  10500. ]
  10501. },
  10502. "require": {
  10503. "php": ">=7.3"
  10504. },
  10505. "type": "library",
  10506. "extra": {
  10507. "branch-alias": {
  10508. "dev-master": "3.0-dev"
  10509. }
  10510. },
  10511. "autoload": {
  10512. "classmap": [
  10513. "src/"
  10514. ]
  10515. },
  10516. "notification-url": "https://packagist.org/downloads/",
  10517. "license": [
  10518. "BSD-3-Clause"
  10519. ],
  10520. "authors": [
  10521. {
  10522. "name": "Sebastian Bergmann",
  10523. "email": "sebastian@phpunit.de",
  10524. "role": "lead"
  10525. }
  10526. ],
  10527. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10528. "homepage": "https://github.com/sebastianbergmann/version",
  10529. "support": {
  10530. "issues": "https://github.com/sebastianbergmann/version/issues",
  10531. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10532. },
  10533. "funding": [
  10534. {
  10535. "url": "https://github.com/sebastianbergmann",
  10536. "type": "github"
  10537. }
  10538. ],
  10539. "time": "2020-09-28T06:39:44+00:00"
  10540. },
  10541. {
  10542. "name": "theseer/tokenizer",
  10543. "version": "1.2.3",
  10544. "source": {
  10545. "type": "git",
  10546. "url": "https://github.com/theseer/tokenizer.git",
  10547. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10548. },
  10549. "dist": {
  10550. "type": "zip",
  10551. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10552. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10553. "shasum": "",
  10554. "mirrors": [
  10555. {
  10556. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10557. "preferred": true
  10558. }
  10559. ]
  10560. },
  10561. "require": {
  10562. "ext-dom": "*",
  10563. "ext-tokenizer": "*",
  10564. "ext-xmlwriter": "*",
  10565. "php": "^7.2 || ^8.0"
  10566. },
  10567. "type": "library",
  10568. "autoload": {
  10569. "classmap": [
  10570. "src/"
  10571. ]
  10572. },
  10573. "notification-url": "https://packagist.org/downloads/",
  10574. "license": [
  10575. "BSD-3-Clause"
  10576. ],
  10577. "authors": [
  10578. {
  10579. "name": "Arne Blankerts",
  10580. "email": "arne@blankerts.de",
  10581. "role": "Developer"
  10582. }
  10583. ],
  10584. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10585. "support": {
  10586. "issues": "https://github.com/theseer/tokenizer/issues",
  10587. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10588. },
  10589. "funding": [
  10590. {
  10591. "url": "https://github.com/theseer",
  10592. "type": "github"
  10593. }
  10594. ],
  10595. "time": "2024-03-03T12:36:25+00:00"
  10596. }
  10597. ],
  10598. "aliases": [],
  10599. "minimum-stability": "dev",
  10600. "stability-flags": {
  10601. "earnp/laravel-google-authenticator": 20
  10602. },
  10603. "prefer-stable": true,
  10604. "prefer-lowest": false,
  10605. "platform": {
  10606. "php": "^8.0",
  10607. "ext-json": "*",
  10608. "ext-openssl": "*"
  10609. },
  10610. "platform-dev": [],
  10611. "plugin-api-version": "2.6.0"
  10612. }