composer.lock 389 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783
  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": "7935dd7a027081a40739602ca8ae0656",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  65. },
  66. "time": "2022-10-14T20:31:46+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/credentials",
  70. "version": "1.2.3",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/credentials-php.git",
  74. "reference": "f6d1986e7b7be8da781d0b99f24c92d9860ba0c1"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/f6d1986e7b7be8da781d0b99f24c92d9860ba0c1",
  79. "reference": "f6d1986e7b7be8da781d0b99f24c92d9860ba0c1",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.2",
  90. "alibabacloud/tea": "^3.0",
  91. "ext-curl": "*",
  92. "ext-json": "*",
  93. "ext-libxml": "*",
  94. "ext-mbstring": "*",
  95. "ext-openssl": "*",
  96. "ext-simplexml": "*",
  97. "ext-xmlwriter": "*",
  98. "guzzlehttp/guzzle": "^6.3|^7.0",
  99. "php": ">=5.6"
  100. },
  101. "require-dev": {
  102. "composer/composer": "^1.8",
  103. "drupal/coder": "^8.3",
  104. "ext-dom": "*",
  105. "ext-pcre": "*",
  106. "ext-sockets": "*",
  107. "ext-spl": "*",
  108. "mikey179/vfsstream": "^1.6",
  109. "monolog/monolog": "^1.24",
  110. "phpunit/phpunit": "^5.7|^6.6|^9.3",
  111. "psr/cache": "^1.0",
  112. "symfony/dotenv": "^3.4",
  113. "symfony/var-dumper": "^3.4"
  114. },
  115. "suggest": {
  116. "ext-sockets": "To use client-side monitoring"
  117. },
  118. "type": "library",
  119. "autoload": {
  120. "psr-4": {
  121. "AlibabaCloud\\Credentials\\": "src"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "Apache-2.0"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Alibaba Cloud SDK",
  131. "email": "sdk-team@alibabacloud.com",
  132. "homepage": "http://www.alibabacloud.com"
  133. }
  134. ],
  135. "description": "Alibaba Cloud Credentials for PHP",
  136. "homepage": "https://www.alibabacloud.com/",
  137. "keywords": [
  138. "alibaba",
  139. "alibabacloud",
  140. "aliyun",
  141. "client",
  142. "cloud",
  143. "credentials",
  144. "library",
  145. "sdk",
  146. "tool"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/aliyun/credentials-php/issues",
  150. "source": "https://github.com/aliyun/credentials-php"
  151. },
  152. "time": "2025-04-18T09:09:46+00:00"
  153. },
  154. {
  155. "name": "alibabacloud/darabonba",
  156. "version": "v1.0.4",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/alibabacloud-sdk-php/darabonba.git",
  160. "reference": "b1ccea693258ea68e455e330922406f3afe10e9c"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba/zipball/b1ccea693258ea68e455e330922406f3afe10e9c",
  165. "reference": "b1ccea693258ea68e455e330922406f3afe10e9c",
  166. "shasum": "",
  167. "mirrors": [
  168. {
  169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  170. "preferred": true
  171. }
  172. ]
  173. },
  174. "require": {
  175. "adbario/php-dot-notation": "^2.4",
  176. "alibabacloud/tea": "^3.2",
  177. "ext-curl": "*",
  178. "ext-json": "*",
  179. "ext-libxml": "*",
  180. "ext-mbstring": "*",
  181. "ext-openssl": "*",
  182. "ext-simplexml": "*",
  183. "ext-xmlwriter": "*",
  184. "guzzlehttp/guzzle": "^6.3|^7.0",
  185. "php": ">=5.5"
  186. },
  187. "require-dev": {
  188. "phpunit/phpunit": "^4.8.35|^5.4.3|^9.3",
  189. "symfony/dotenv": "^3.4",
  190. "symfony/var-dumper": "^3.4"
  191. },
  192. "suggest": {
  193. "ext-sockets": "To use client-side monitoring"
  194. },
  195. "type": "library",
  196. "autoload": {
  197. "psr-4": {
  198. "AlibabaCloud\\Dara\\": "src"
  199. }
  200. },
  201. "notification-url": "https://packagist.org/downloads/",
  202. "license": [
  203. "Apache-2.0"
  204. ],
  205. "authors": [
  206. {
  207. "name": "Alibaba Cloud SDK",
  208. "email": "sdk-team@alibabacloud.com",
  209. "homepage": "http://www.alibabacloud.com"
  210. }
  211. ],
  212. "description": "Client of Darabonba for PHP",
  213. "homepage": "https://www.alibabacloud.com/",
  214. "keywords": [
  215. "alibabacloud",
  216. "client",
  217. "cloud",
  218. "tea"
  219. ],
  220. "support": {
  221. "issues": "https://github.com/aliyun/tea-php/issues",
  222. "source": "https://github.com/aliyun/tea-php"
  223. },
  224. "time": "2025-12-15T10:15:24+00:00"
  225. },
  226. {
  227. "name": "alibabacloud/dysmsapi-20170525",
  228. "version": "3.1.3",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  232. "reference": "39bebd85974efc144615b9a11dfdb641d23f90f1"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/39bebd85974efc144615b9a11dfdb641d23f90f1",
  237. "reference": "39bebd85974efc144615b9a11dfdb641d23f90f1",
  238. "shasum": "",
  239. "mirrors": [
  240. {
  241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  242. "preferred": true
  243. }
  244. ]
  245. },
  246. "require": {
  247. "alibabacloud/darabonba": "^1.0.0",
  248. "alibabacloud/openapi-core": "^1.0.0",
  249. "php": ">5.5"
  250. },
  251. "type": "library",
  252. "autoload": {
  253. "psr-4": {
  254. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  255. }
  256. },
  257. "notification-url": "https://packagist.org/downloads/",
  258. "license": [
  259. "Apache-2.0"
  260. ],
  261. "authors": [
  262. {
  263. "name": "Alibaba Cloud SDK",
  264. "email": "sdk-team@alibabacloud.com"
  265. }
  266. ],
  267. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  268. "support": {
  269. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/3.1.3"
  270. },
  271. "time": "2025-04-16T17:20:20+00:00"
  272. },
  273. {
  274. "name": "alibabacloud/gateway-spi",
  275. "version": "1.0.0",
  276. "source": {
  277. "type": "git",
  278. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  279. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  280. },
  281. "dist": {
  282. "type": "zip",
  283. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  284. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  285. "shasum": "",
  286. "mirrors": [
  287. {
  288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  289. "preferred": true
  290. }
  291. ]
  292. },
  293. "require": {
  294. "alibabacloud/credentials": "^1.1",
  295. "php": ">5.5"
  296. },
  297. "type": "library",
  298. "autoload": {
  299. "psr-4": {
  300. "Darabonba\\GatewaySpi\\": "src"
  301. }
  302. },
  303. "notification-url": "https://packagist.org/downloads/",
  304. "license": [
  305. "Apache-2.0"
  306. ],
  307. "authors": [
  308. {
  309. "name": "Alibaba Cloud SDK",
  310. "email": "sdk-team@alibabacloud.com"
  311. }
  312. ],
  313. "description": "Alibaba Cloud Gateway SPI Client",
  314. "support": {
  315. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  316. },
  317. "time": "2022-07-14T05:31:35+00:00"
  318. },
  319. {
  320. "name": "alibabacloud/green-20220302",
  321. "version": "2.23.0",
  322. "source": {
  323. "type": "git",
  324. "url": "https://github.com/alibabacloud-sdk-php/green-20220302.git",
  325. "reference": "686cf53983b296802ab1cb70ee59b879b7ce9b27"
  326. },
  327. "dist": {
  328. "type": "zip",
  329. "url": "https://api.github.com/repos/alibabacloud-sdk-php/green-20220302/zipball/686cf53983b296802ab1cb70ee59b879b7ce9b27",
  330. "reference": "686cf53983b296802ab1cb70ee59b879b7ce9b27",
  331. "shasum": "",
  332. "mirrors": [
  333. {
  334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  335. "preferred": true
  336. }
  337. ]
  338. },
  339. "require": {
  340. "alibabacloud/darabonba": "^1.0.0",
  341. "alibabacloud/openapi-core": "^1.0.0",
  342. "php": ">5.5"
  343. },
  344. "type": "library",
  345. "autoload": {
  346. "psr-4": {
  347. "AlibabaCloud\\SDK\\Green\\V20220302\\": "src"
  348. }
  349. },
  350. "notification-url": "https://packagist.org/downloads/",
  351. "license": [
  352. "Apache-2.0"
  353. ],
  354. "authors": [
  355. {
  356. "name": "Alibaba Cloud SDK",
  357. "email": "sdk-team@alibabacloud.com"
  358. }
  359. ],
  360. "description": "Alibaba Cloud Green (20220302) SDK Library for PHP",
  361. "support": {
  362. "source": "https://github.com/alibabacloud-sdk-php/green-20220302/tree/2.23.0"
  363. },
  364. "time": "2025-09-22T10:18:31+00:00"
  365. },
  366. {
  367. "name": "alibabacloud/openapi-core",
  368. "version": "1.0.9",
  369. "source": {
  370. "type": "git",
  371. "url": "https://github.com/alibabacloud-sdk-php/openapi-core.git",
  372. "reference": "7b241b2a0e71f70629e2ecdc5cbe8c8b6b3a7567"
  373. },
  374. "dist": {
  375. "type": "zip",
  376. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-core/zipball/7b241b2a0e71f70629e2ecdc5cbe8c8b6b3a7567",
  377. "reference": "7b241b2a0e71f70629e2ecdc5cbe8c8b6b3a7567",
  378. "shasum": "",
  379. "mirrors": [
  380. {
  381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  382. "preferred": true
  383. }
  384. ]
  385. },
  386. "require": {
  387. "alibabacloud/credentials": "^1.2.2",
  388. "alibabacloud/darabonba": "^1",
  389. "alibabacloud/gateway-spi": "^1",
  390. "php": ">5.5"
  391. },
  392. "require-dev": {
  393. "phpunit/phpunit": "^4.8.35|^5.4.3|^9.3",
  394. "symfony/dotenv": "^3.4",
  395. "symfony/var-dumper": "^3.4"
  396. },
  397. "type": "library",
  398. "autoload": {
  399. "psr-4": {
  400. "Darabonba\\OpenApi\\": "src"
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "Apache-2.0"
  406. ],
  407. "authors": [
  408. {
  409. "name": "Alibaba Cloud SDK",
  410. "email": "sdk-team@alibabacloud.com"
  411. }
  412. ],
  413. "description": "Alibaba Cloud OpenApi Client Core",
  414. "support": {
  415. "issues": "https://github.com/alibabacloud-sdk-php/openapi-core/issues",
  416. "source": "https://github.com/alibabacloud-sdk-php/openapi-core/tree/1.0.9"
  417. },
  418. "time": "2026-01-15T06:47:29+00:00"
  419. },
  420. {
  421. "name": "alibabacloud/tea",
  422. "version": "3.2.1",
  423. "source": {
  424. "type": "git",
  425. "url": "https://github.com/aliyun/tea-php.git",
  426. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  427. },
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  431. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  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. "adbario/php-dot-notation": "^2.4",
  442. "ext-curl": "*",
  443. "ext-json": "*",
  444. "ext-libxml": "*",
  445. "ext-mbstring": "*",
  446. "ext-openssl": "*",
  447. "ext-simplexml": "*",
  448. "ext-xmlwriter": "*",
  449. "guzzlehttp/guzzle": "^6.3|^7.0",
  450. "php": ">=5.5"
  451. },
  452. "require-dev": {
  453. "phpunit/phpunit": "*",
  454. "symfony/dotenv": "^3.4",
  455. "symfony/var-dumper": "^3.4"
  456. },
  457. "suggest": {
  458. "ext-sockets": "To use client-side monitoring"
  459. },
  460. "type": "library",
  461. "autoload": {
  462. "psr-4": {
  463. "AlibabaCloud\\Tea\\": "src"
  464. }
  465. },
  466. "notification-url": "https://packagist.org/downloads/",
  467. "license": [
  468. "Apache-2.0"
  469. ],
  470. "authors": [
  471. {
  472. "name": "Alibaba Cloud SDK",
  473. "email": "sdk-team@alibabacloud.com",
  474. "homepage": "http://www.alibabacloud.com"
  475. }
  476. ],
  477. "description": "Client of Tea for PHP",
  478. "homepage": "https://www.alibabacloud.com/",
  479. "keywords": [
  480. "alibabacloud",
  481. "client",
  482. "cloud",
  483. "tea"
  484. ],
  485. "support": {
  486. "issues": "https://github.com/aliyun/tea-php/issues",
  487. "source": "https://github.com/aliyun/tea-php"
  488. },
  489. "time": "2023-05-16T06:43:41+00:00"
  490. },
  491. {
  492. "name": "alibabacloud/tea-utils",
  493. "version": "0.2.22",
  494. "source": {
  495. "type": "git",
  496. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  497. "reference": "d885eadc9d185661ff9bd1d037333f62ba5daa99"
  498. },
  499. "dist": {
  500. "type": "zip",
  501. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/d885eadc9d185661ff9bd1d037333f62ba5daa99",
  502. "reference": "d885eadc9d185661ff9bd1d037333f62ba5daa99",
  503. "shasum": "",
  504. "mirrors": [
  505. {
  506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  507. "preferred": true
  508. }
  509. ]
  510. },
  511. "require": {
  512. "alibabacloud/tea": "^3.1",
  513. "php": ">5.5"
  514. },
  515. "type": "library",
  516. "autoload": {
  517. "psr-4": {
  518. "AlibabaCloud\\Tea\\Utils\\": "src"
  519. }
  520. },
  521. "notification-url": "https://packagist.org/downloads/",
  522. "license": [
  523. "Apache-2.0"
  524. ],
  525. "authors": [
  526. {
  527. "name": "Alibaba Cloud SDK",
  528. "email": "sdk-team@alibabacloud.com"
  529. }
  530. ],
  531. "description": "Alibaba Cloud Tea Utils for PHP",
  532. "support": {
  533. "issues": "https://github.com/aliyun/tea-util/issues",
  534. "source": "https://github.com/aliyun/tea-util"
  535. },
  536. "time": "2025-11-19T04:38:07+00:00"
  537. },
  538. {
  539. "name": "aliyuncs/oss-sdk-php",
  540. "version": "v2.7.2",
  541. "source": {
  542. "type": "git",
  543. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  544. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5"
  545. },
  546. "dist": {
  547. "type": "zip",
  548. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  549. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  550. "shasum": "",
  551. "mirrors": [
  552. {
  553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  554. "preferred": true
  555. }
  556. ]
  557. },
  558. "require": {
  559. "php": ">=5.3"
  560. },
  561. "require-dev": {
  562. "php-coveralls/php-coveralls": "*",
  563. "phpunit/phpunit": "*"
  564. },
  565. "type": "library",
  566. "autoload": {
  567. "psr-4": {
  568. "OSS\\": "src/OSS"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Aliyuncs",
  578. "homepage": "http://www.aliyun.com"
  579. }
  580. ],
  581. "description": "Aliyun OSS SDK for PHP",
  582. "homepage": "http://www.aliyun.com/product/oss/",
  583. "support": {
  584. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  585. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.2"
  586. },
  587. "time": "2024-10-28T10:41:12+00:00"
  588. },
  589. {
  590. "name": "asm89/stack-cors",
  591. "version": "v2.3.0",
  592. "source": {
  593. "type": "git",
  594. "url": "https://github.com/asm89/stack-cors.git",
  595. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70"
  596. },
  597. "dist": {
  598. "type": "zip",
  599. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  600. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  601. "shasum": "",
  602. "mirrors": [
  603. {
  604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  605. "preferred": true
  606. }
  607. ]
  608. },
  609. "require": {
  610. "php": "^7.3|^8.0",
  611. "symfony/http-foundation": "^5.3|^6|^7",
  612. "symfony/http-kernel": "^5.3|^6|^7"
  613. },
  614. "require-dev": {
  615. "phpunit/phpunit": "^9",
  616. "squizlabs/php_codesniffer": "^3.5"
  617. },
  618. "type": "library",
  619. "extra": {
  620. "branch-alias": {
  621. "dev-master": "2.2-dev"
  622. }
  623. },
  624. "autoload": {
  625. "psr-4": {
  626. "Asm89\\Stack\\": "src/"
  627. }
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "MIT"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Alexander",
  636. "email": "iam.asm89@gmail.com"
  637. }
  638. ],
  639. "description": "Cross-origin resource sharing library and stack middleware",
  640. "homepage": "https://github.com/asm89/stack-cors",
  641. "keywords": [
  642. "cors",
  643. "stack"
  644. ],
  645. "support": {
  646. "issues": "https://github.com/asm89/stack-cors/issues",
  647. "source": "https://github.com/asm89/stack-cors/tree/v2.3.0"
  648. },
  649. "time": "2025-03-13T08:50:04+00:00"
  650. },
  651. {
  652. "name": "brick/math",
  653. "version": "0.11.0",
  654. "source": {
  655. "type": "git",
  656. "url": "https://github.com/brick/math.git",
  657. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  658. },
  659. "dist": {
  660. "type": "zip",
  661. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  662. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  663. "shasum": "",
  664. "mirrors": [
  665. {
  666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  667. "preferred": true
  668. }
  669. ]
  670. },
  671. "require": {
  672. "php": "^8.0"
  673. },
  674. "require-dev": {
  675. "php-coveralls/php-coveralls": "^2.2",
  676. "phpunit/phpunit": "^9.0",
  677. "vimeo/psalm": "5.0.0"
  678. },
  679. "type": "library",
  680. "autoload": {
  681. "psr-4": {
  682. "Brick\\Math\\": "src/"
  683. }
  684. },
  685. "notification-url": "https://packagist.org/downloads/",
  686. "license": [
  687. "MIT"
  688. ],
  689. "description": "Arbitrary-precision arithmetic library",
  690. "keywords": [
  691. "Arbitrary-precision",
  692. "BigInteger",
  693. "BigRational",
  694. "arithmetic",
  695. "bigdecimal",
  696. "bignum",
  697. "brick",
  698. "math"
  699. ],
  700. "support": {
  701. "issues": "https://github.com/brick/math/issues",
  702. "source": "https://github.com/brick/math/tree/0.11.0"
  703. },
  704. "funding": [
  705. {
  706. "url": "https://github.com/BenMorel",
  707. "type": "github"
  708. }
  709. ],
  710. "time": "2023-01-15T23:15:59+00:00"
  711. },
  712. {
  713. "name": "carbonphp/carbon-doctrine-types",
  714. "version": "2.1.0",
  715. "source": {
  716. "type": "git",
  717. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  718. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  719. },
  720. "dist": {
  721. "type": "zip",
  722. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  723. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  724. "shasum": "",
  725. "mirrors": [
  726. {
  727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  728. "preferred": true
  729. }
  730. ]
  731. },
  732. "require": {
  733. "php": "^7.4 || ^8.0"
  734. },
  735. "conflict": {
  736. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  737. },
  738. "require-dev": {
  739. "doctrine/dbal": "^3.7.0",
  740. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  741. "phpunit/phpunit": "^10.3"
  742. },
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "KyleKatarn",
  756. "email": "kylekatarnls@gmail.com"
  757. }
  758. ],
  759. "description": "Types to use Carbon in Doctrine",
  760. "keywords": [
  761. "carbon",
  762. "date",
  763. "datetime",
  764. "doctrine",
  765. "time"
  766. ],
  767. "support": {
  768. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  769. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  770. },
  771. "funding": [
  772. {
  773. "url": "https://github.com/kylekatarnls",
  774. "type": "github"
  775. },
  776. {
  777. "url": "https://opencollective.com/Carbon",
  778. "type": "open_collective"
  779. },
  780. {
  781. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  782. "type": "tidelift"
  783. }
  784. ],
  785. "time": "2023-12-11T17:09:12+00:00"
  786. },
  787. {
  788. "name": "composer/pcre",
  789. "version": "3.3.2",
  790. "source": {
  791. "type": "git",
  792. "url": "https://github.com/composer/pcre.git",
  793. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  794. },
  795. "dist": {
  796. "type": "zip",
  797. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  798. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  799. "shasum": "",
  800. "mirrors": [
  801. {
  802. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  803. "preferred": true
  804. }
  805. ]
  806. },
  807. "require": {
  808. "php": "^7.4 || ^8.0"
  809. },
  810. "conflict": {
  811. "phpstan/phpstan": "<1.11.10"
  812. },
  813. "require-dev": {
  814. "phpstan/phpstan": "^1.12 || ^2",
  815. "phpstan/phpstan-strict-rules": "^1 || ^2",
  816. "phpunit/phpunit": "^8 || ^9"
  817. },
  818. "type": "library",
  819. "extra": {
  820. "branch-alias": {
  821. "dev-main": "3.x-dev"
  822. },
  823. "phpstan": {
  824. "includes": [
  825. "extension.neon"
  826. ]
  827. }
  828. },
  829. "autoload": {
  830. "psr-4": {
  831. "Composer\\Pcre\\": "src"
  832. }
  833. },
  834. "notification-url": "https://packagist.org/downloads/",
  835. "license": [
  836. "MIT"
  837. ],
  838. "authors": [
  839. {
  840. "name": "Jordi Boggiano",
  841. "email": "j.boggiano@seld.be",
  842. "homepage": "http://seld.be"
  843. }
  844. ],
  845. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  846. "keywords": [
  847. "PCRE",
  848. "preg",
  849. "regex",
  850. "regular expression"
  851. ],
  852. "support": {
  853. "issues": "https://github.com/composer/pcre/issues",
  854. "source": "https://github.com/composer/pcre/tree/3.3.2"
  855. },
  856. "funding": [
  857. {
  858. "url": "https://packagist.com",
  859. "type": "custom"
  860. },
  861. {
  862. "url": "https://github.com/composer",
  863. "type": "github"
  864. },
  865. {
  866. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  867. "type": "tidelift"
  868. }
  869. ],
  870. "time": "2024-11-12T16:29:46+00:00"
  871. },
  872. {
  873. "name": "dflydev/dot-access-data",
  874. "version": "v3.0.3",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  878. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  883. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  884. "shasum": "",
  885. "mirrors": [
  886. {
  887. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  888. "preferred": true
  889. }
  890. ]
  891. },
  892. "require": {
  893. "php": "^7.1 || ^8.0"
  894. },
  895. "require-dev": {
  896. "phpstan/phpstan": "^0.12.42",
  897. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  898. "scrutinizer/ocular": "1.6.0",
  899. "squizlabs/php_codesniffer": "^3.5",
  900. "vimeo/psalm": "^4.0.0"
  901. },
  902. "type": "library",
  903. "extra": {
  904. "branch-alias": {
  905. "dev-main": "3.x-dev"
  906. }
  907. },
  908. "autoload": {
  909. "psr-4": {
  910. "Dflydev\\DotAccessData\\": "src/"
  911. }
  912. },
  913. "notification-url": "https://packagist.org/downloads/",
  914. "license": [
  915. "MIT"
  916. ],
  917. "authors": [
  918. {
  919. "name": "Dragonfly Development Inc.",
  920. "email": "info@dflydev.com",
  921. "homepage": "http://dflydev.com"
  922. },
  923. {
  924. "name": "Beau Simensen",
  925. "email": "beau@dflydev.com",
  926. "homepage": "http://beausimensen.com"
  927. },
  928. {
  929. "name": "Carlos Frutos",
  930. "email": "carlos@kiwing.it",
  931. "homepage": "https://github.com/cfrutos"
  932. },
  933. {
  934. "name": "Colin O'Dell",
  935. "email": "colinodell@gmail.com",
  936. "homepage": "https://www.colinodell.com"
  937. }
  938. ],
  939. "description": "Given a deep data structure, access data by dot notation.",
  940. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  941. "keywords": [
  942. "access",
  943. "data",
  944. "dot",
  945. "notation"
  946. ],
  947. "support": {
  948. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  949. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  950. },
  951. "time": "2024-07-08T12:26:09+00:00"
  952. },
  953. {
  954. "name": "doctrine/inflector",
  955. "version": "2.0.10",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/doctrine/inflector.git",
  959. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  964. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  965. "shasum": "",
  966. "mirrors": [
  967. {
  968. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  969. "preferred": true
  970. }
  971. ]
  972. },
  973. "require": {
  974. "php": "^7.2 || ^8.0"
  975. },
  976. "require-dev": {
  977. "doctrine/coding-standard": "^11.0",
  978. "phpstan/phpstan": "^1.8",
  979. "phpstan/phpstan-phpunit": "^1.1",
  980. "phpstan/phpstan-strict-rules": "^1.3",
  981. "phpunit/phpunit": "^8.5 || ^9.5",
  982. "vimeo/psalm": "^4.25 || ^5.4"
  983. },
  984. "type": "library",
  985. "autoload": {
  986. "psr-4": {
  987. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  988. }
  989. },
  990. "notification-url": "https://packagist.org/downloads/",
  991. "license": [
  992. "MIT"
  993. ],
  994. "authors": [
  995. {
  996. "name": "Guilherme Blanco",
  997. "email": "guilhermeblanco@gmail.com"
  998. },
  999. {
  1000. "name": "Roman Borschel",
  1001. "email": "roman@code-factory.org"
  1002. },
  1003. {
  1004. "name": "Benjamin Eberlei",
  1005. "email": "kontakt@beberlei.de"
  1006. },
  1007. {
  1008. "name": "Jonathan Wage",
  1009. "email": "jonwage@gmail.com"
  1010. },
  1011. {
  1012. "name": "Johannes Schmitt",
  1013. "email": "schmittjoh@gmail.com"
  1014. }
  1015. ],
  1016. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1017. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1018. "keywords": [
  1019. "inflection",
  1020. "inflector",
  1021. "lowercase",
  1022. "manipulation",
  1023. "php",
  1024. "plural",
  1025. "singular",
  1026. "strings",
  1027. "uppercase",
  1028. "words"
  1029. ],
  1030. "support": {
  1031. "issues": "https://github.com/doctrine/inflector/issues",
  1032. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1033. },
  1034. "funding": [
  1035. {
  1036. "url": "https://www.doctrine-project.org/sponsorship.html",
  1037. "type": "custom"
  1038. },
  1039. {
  1040. "url": "https://www.patreon.com/phpdoctrine",
  1041. "type": "patreon"
  1042. },
  1043. {
  1044. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1045. "type": "tidelift"
  1046. }
  1047. ],
  1048. "time": "2024-02-18T20:23:39+00:00"
  1049. },
  1050. {
  1051. "name": "doctrine/lexer",
  1052. "version": "1.2.3",
  1053. "source": {
  1054. "type": "git",
  1055. "url": "https://github.com/doctrine/lexer.git",
  1056. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1057. },
  1058. "dist": {
  1059. "type": "zip",
  1060. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1061. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1062. "shasum": "",
  1063. "mirrors": [
  1064. {
  1065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1066. "preferred": true
  1067. }
  1068. ]
  1069. },
  1070. "require": {
  1071. "php": "^7.1 || ^8.0"
  1072. },
  1073. "require-dev": {
  1074. "doctrine/coding-standard": "^9.0",
  1075. "phpstan/phpstan": "^1.3",
  1076. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1077. "vimeo/psalm": "^4.11"
  1078. },
  1079. "type": "library",
  1080. "autoload": {
  1081. "psr-4": {
  1082. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1083. }
  1084. },
  1085. "notification-url": "https://packagist.org/downloads/",
  1086. "license": [
  1087. "MIT"
  1088. ],
  1089. "authors": [
  1090. {
  1091. "name": "Guilherme Blanco",
  1092. "email": "guilhermeblanco@gmail.com"
  1093. },
  1094. {
  1095. "name": "Roman Borschel",
  1096. "email": "roman@code-factory.org"
  1097. },
  1098. {
  1099. "name": "Johannes Schmitt",
  1100. "email": "schmittjoh@gmail.com"
  1101. }
  1102. ],
  1103. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1104. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1105. "keywords": [
  1106. "annotations",
  1107. "docblock",
  1108. "lexer",
  1109. "parser",
  1110. "php"
  1111. ],
  1112. "support": {
  1113. "issues": "https://github.com/doctrine/lexer/issues",
  1114. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1115. },
  1116. "funding": [
  1117. {
  1118. "url": "https://www.doctrine-project.org/sponsorship.html",
  1119. "type": "custom"
  1120. },
  1121. {
  1122. "url": "https://www.patreon.com/phpdoctrine",
  1123. "type": "patreon"
  1124. },
  1125. {
  1126. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1127. "type": "tidelift"
  1128. }
  1129. ],
  1130. "time": "2022-02-28T11:07:21+00:00"
  1131. },
  1132. {
  1133. "name": "dragonmantank/cron-expression",
  1134. "version": "v3.5.0",
  1135. "source": {
  1136. "type": "git",
  1137. "url": "https://github.com/dragonmantank/cron-expression.git",
  1138. "reference": "1b2de7f4a468165dca07b142240733a1973e766d"
  1139. },
  1140. "dist": {
  1141. "type": "zip",
  1142. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/1b2de7f4a468165dca07b142240733a1973e766d",
  1143. "reference": "1b2de7f4a468165dca07b142240733a1973e766d",
  1144. "shasum": "",
  1145. "mirrors": [
  1146. {
  1147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1148. "preferred": true
  1149. }
  1150. ]
  1151. },
  1152. "require": {
  1153. "php": "^7.2|^8.0"
  1154. },
  1155. "replace": {
  1156. "mtdowling/cron-expression": "^1.0"
  1157. },
  1158. "require-dev": {
  1159. "phpstan/extension-installer": "^1.4.3",
  1160. "phpstan/phpstan": "^1.12.32|^2.1.31",
  1161. "phpunit/phpunit": "^8.5.48|^9.0"
  1162. },
  1163. "type": "library",
  1164. "extra": {
  1165. "branch-alias": {
  1166. "dev-master": "3.x-dev"
  1167. }
  1168. },
  1169. "autoload": {
  1170. "psr-4": {
  1171. "Cron\\": "src/Cron/"
  1172. }
  1173. },
  1174. "notification-url": "https://packagist.org/downloads/",
  1175. "license": [
  1176. "MIT"
  1177. ],
  1178. "authors": [
  1179. {
  1180. "name": "Chris Tankersley",
  1181. "email": "chris@ctankersley.com",
  1182. "homepage": "https://github.com/dragonmantank"
  1183. }
  1184. ],
  1185. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1186. "keywords": [
  1187. "cron",
  1188. "schedule"
  1189. ],
  1190. "support": {
  1191. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1192. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.5.0"
  1193. },
  1194. "funding": [
  1195. {
  1196. "url": "https://github.com/dragonmantank",
  1197. "type": "github"
  1198. }
  1199. ],
  1200. "time": "2025-10-31T18:36:32+00:00"
  1201. },
  1202. {
  1203. "name": "easywechat-composer/easywechat-composer",
  1204. "version": "1.4.1",
  1205. "source": {
  1206. "type": "git",
  1207. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1208. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1209. },
  1210. "dist": {
  1211. "type": "zip",
  1212. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1213. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1214. "shasum": "",
  1215. "mirrors": [
  1216. {
  1217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1218. "preferred": true
  1219. }
  1220. ]
  1221. },
  1222. "require": {
  1223. "composer-plugin-api": "^1.0 || ^2.0",
  1224. "php": ">=7.0"
  1225. },
  1226. "require-dev": {
  1227. "composer/composer": "^1.0 || ^2.0",
  1228. "phpunit/phpunit": "^6.5 || ^7.0"
  1229. },
  1230. "type": "composer-plugin",
  1231. "extra": {
  1232. "class": "EasyWeChatComposer\\Plugin"
  1233. },
  1234. "autoload": {
  1235. "psr-4": {
  1236. "EasyWeChatComposer\\": "src/"
  1237. }
  1238. },
  1239. "notification-url": "https://packagist.org/downloads/",
  1240. "license": [
  1241. "MIT"
  1242. ],
  1243. "authors": [
  1244. {
  1245. "name": "张铭阳",
  1246. "email": "mingyoungcheung@gmail.com"
  1247. }
  1248. ],
  1249. "description": "The composer plugin for EasyWeChat",
  1250. "support": {
  1251. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1252. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1253. },
  1254. "time": "2021-07-05T04:03:22+00:00"
  1255. },
  1256. {
  1257. "name": "egulias/email-validator",
  1258. "version": "2.1.25",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/egulias/EmailValidator.git",
  1262. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1267. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1268. "shasum": "",
  1269. "mirrors": [
  1270. {
  1271. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1272. "preferred": true
  1273. }
  1274. ]
  1275. },
  1276. "require": {
  1277. "doctrine/lexer": "^1.0.1",
  1278. "php": ">=5.5",
  1279. "symfony/polyfill-intl-idn": "^1.10"
  1280. },
  1281. "require-dev": {
  1282. "dominicsayers/isemail": "^3.0.7",
  1283. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1284. "satooshi/php-coveralls": "^1.0.1"
  1285. },
  1286. "suggest": {
  1287. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1288. },
  1289. "type": "library",
  1290. "extra": {
  1291. "branch-alias": {
  1292. "dev-master": "2.1.x-dev"
  1293. }
  1294. },
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Egulias\\EmailValidator\\": "src"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Eduardo Gulias Davis"
  1307. }
  1308. ],
  1309. "description": "A library for validating emails against several RFCs",
  1310. "homepage": "https://github.com/egulias/EmailValidator",
  1311. "keywords": [
  1312. "email",
  1313. "emailvalidation",
  1314. "emailvalidator",
  1315. "validation",
  1316. "validator"
  1317. ],
  1318. "support": {
  1319. "issues": "https://github.com/egulias/EmailValidator/issues",
  1320. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1321. },
  1322. "funding": [
  1323. {
  1324. "url": "https://github.com/egulias",
  1325. "type": "github"
  1326. }
  1327. ],
  1328. "time": "2020-12-29T14:50:06+00:00"
  1329. },
  1330. {
  1331. "name": "ezyang/htmlpurifier",
  1332. "version": "v4.19.0",
  1333. "source": {
  1334. "type": "git",
  1335. "url": "https://github.com/ezyang/htmlpurifier.git",
  1336. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf"
  1337. },
  1338. "dist": {
  1339. "type": "zip",
  1340. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/b287d2a16aceffbf6e0295559b39662612b77fcf",
  1341. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf",
  1342. "shasum": "",
  1343. "mirrors": [
  1344. {
  1345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1346. "preferred": true
  1347. }
  1348. ]
  1349. },
  1350. "require": {
  1351. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  1352. },
  1353. "require-dev": {
  1354. "cerdic/css-tidy": "^1.7 || ^2.0",
  1355. "simpletest/simpletest": "dev-master"
  1356. },
  1357. "suggest": {
  1358. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1359. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1360. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1361. "ext-tidy": "Used for pretty-printing HTML"
  1362. },
  1363. "type": "library",
  1364. "autoload": {
  1365. "files": [
  1366. "library/HTMLPurifier.composer.php"
  1367. ],
  1368. "psr-0": {
  1369. "HTMLPurifier": "library/"
  1370. },
  1371. "exclude-from-classmap": [
  1372. "/library/HTMLPurifier/Language/"
  1373. ]
  1374. },
  1375. "notification-url": "https://packagist.org/downloads/",
  1376. "license": [
  1377. "LGPL-2.1-or-later"
  1378. ],
  1379. "authors": [
  1380. {
  1381. "name": "Edward Z. Yang",
  1382. "email": "admin@htmlpurifier.org",
  1383. "homepage": "http://ezyang.com"
  1384. }
  1385. ],
  1386. "description": "Standards compliant HTML filter written in PHP",
  1387. "homepage": "http://htmlpurifier.org/",
  1388. "keywords": [
  1389. "html"
  1390. ],
  1391. "support": {
  1392. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1393. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.19.0"
  1394. },
  1395. "time": "2025-10-17T16:34:55+00:00"
  1396. },
  1397. {
  1398. "name": "firebase/php-jwt",
  1399. "version": "v6.11.0",
  1400. "source": {
  1401. "type": "git",
  1402. "url": "https://github.com/firebase/php-jwt.git",
  1403. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  1404. },
  1405. "dist": {
  1406. "type": "zip",
  1407. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1408. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1409. "shasum": "",
  1410. "mirrors": [
  1411. {
  1412. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1413. "preferred": true
  1414. }
  1415. ]
  1416. },
  1417. "require": {
  1418. "php": "^8.0"
  1419. },
  1420. "require-dev": {
  1421. "guzzlehttp/guzzle": "^7.4",
  1422. "phpspec/prophecy-phpunit": "^2.0",
  1423. "phpunit/phpunit": "^9.5",
  1424. "psr/cache": "^2.0||^3.0",
  1425. "psr/http-client": "^1.0",
  1426. "psr/http-factory": "^1.0"
  1427. },
  1428. "suggest": {
  1429. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1430. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1431. },
  1432. "type": "library",
  1433. "autoload": {
  1434. "psr-4": {
  1435. "Firebase\\JWT\\": "src"
  1436. }
  1437. },
  1438. "notification-url": "https://packagist.org/downloads/",
  1439. "license": [
  1440. "BSD-3-Clause"
  1441. ],
  1442. "authors": [
  1443. {
  1444. "name": "Neuman Vong",
  1445. "email": "neuman+pear@twilio.com",
  1446. "role": "Developer"
  1447. },
  1448. {
  1449. "name": "Anant Narayanan",
  1450. "email": "anant@php.net",
  1451. "role": "Developer"
  1452. }
  1453. ],
  1454. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1455. "homepage": "https://github.com/firebase/php-jwt",
  1456. "keywords": [
  1457. "jwt",
  1458. "php"
  1459. ],
  1460. "support": {
  1461. "issues": "https://github.com/firebase/php-jwt/issues",
  1462. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  1463. },
  1464. "time": "2025-01-23T05:11:06+00:00"
  1465. },
  1466. {
  1467. "name": "fruitcake/laravel-cors",
  1468. "version": "v2.2.0",
  1469. "source": {
  1470. "type": "git",
  1471. "url": "https://github.com/fruitcake/laravel-cors.git",
  1472. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1473. },
  1474. "dist": {
  1475. "type": "zip",
  1476. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1477. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1478. "shasum": "",
  1479. "mirrors": [
  1480. {
  1481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1482. "preferred": true
  1483. }
  1484. ]
  1485. },
  1486. "require": {
  1487. "asm89/stack-cors": "^2.0.1",
  1488. "illuminate/contracts": "^6|^7|^8|^9",
  1489. "illuminate/support": "^6|^7|^8|^9",
  1490. "php": ">=7.2"
  1491. },
  1492. "require-dev": {
  1493. "laravel/framework": "^6|^7.24|^8",
  1494. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1495. "phpunit/phpunit": "^6|^7|^8|^9",
  1496. "squizlabs/php_codesniffer": "^3.5"
  1497. },
  1498. "type": "library",
  1499. "extra": {
  1500. "branch-alias": {
  1501. "dev-master": "2.1-dev"
  1502. },
  1503. "laravel": {
  1504. "providers": [
  1505. "Fruitcake\\Cors\\CorsServiceProvider"
  1506. ]
  1507. }
  1508. },
  1509. "autoload": {
  1510. "psr-4": {
  1511. "Fruitcake\\Cors\\": "src/"
  1512. }
  1513. },
  1514. "notification-url": "https://packagist.org/downloads/",
  1515. "license": [
  1516. "MIT"
  1517. ],
  1518. "authors": [
  1519. {
  1520. "name": "Fruitcake",
  1521. "homepage": "https://fruitcake.nl"
  1522. },
  1523. {
  1524. "name": "Barry vd. Heuvel",
  1525. "email": "barryvdh@gmail.com"
  1526. }
  1527. ],
  1528. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1529. "keywords": [
  1530. "api",
  1531. "cors",
  1532. "crossdomain",
  1533. "laravel"
  1534. ],
  1535. "support": {
  1536. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1537. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1538. },
  1539. "funding": [
  1540. {
  1541. "url": "https://fruitcake.nl",
  1542. "type": "custom"
  1543. },
  1544. {
  1545. "url": "https://github.com/barryvdh",
  1546. "type": "github"
  1547. }
  1548. ],
  1549. "abandoned": true,
  1550. "time": "2022-02-23T14:25:13+00:00"
  1551. },
  1552. {
  1553. "name": "graham-campbell/manager",
  1554. "version": "v4.7.0",
  1555. "source": {
  1556. "type": "git",
  1557. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  1558. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308"
  1559. },
  1560. "dist": {
  1561. "type": "zip",
  1562. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1563. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1564. "shasum": "",
  1565. "mirrors": [
  1566. {
  1567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1568. "preferred": true
  1569. }
  1570. ]
  1571. },
  1572. "require": {
  1573. "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1574. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1575. "php": "^7.1.3 || ^8.0"
  1576. },
  1577. "require-dev": {
  1578. "graham-campbell/analyzer": "^2.4 || ^3.0",
  1579. "graham-campbell/testbench-core": "^3.4",
  1580. "mockery/mockery": "^1.3.1",
  1581. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7"
  1582. },
  1583. "type": "library",
  1584. "autoload": {
  1585. "psr-4": {
  1586. "GrahamCampbell\\Manager\\": "src/"
  1587. }
  1588. },
  1589. "notification-url": "https://packagist.org/downloads/",
  1590. "license": [
  1591. "MIT"
  1592. ],
  1593. "authors": [
  1594. {
  1595. "name": "Graham Campbell",
  1596. "email": "hello@gjcampbell.co.uk",
  1597. "homepage": "https://github.com/GrahamCampbell"
  1598. }
  1599. ],
  1600. "description": "Manager Provides Some Manager Functionality For Laravel",
  1601. "keywords": [
  1602. "Graham Campbell",
  1603. "GrahamCampbell",
  1604. "Laravel Manager",
  1605. "Laravel-Manager",
  1606. "connector",
  1607. "framework",
  1608. "interface",
  1609. "laravel",
  1610. "manager"
  1611. ],
  1612. "support": {
  1613. "issues": "https://github.com/GrahamCampbell/Laravel-Manager/issues",
  1614. "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/v4.7.0"
  1615. },
  1616. "funding": [
  1617. {
  1618. "url": "https://github.com/GrahamCampbell",
  1619. "type": "github"
  1620. },
  1621. {
  1622. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/manager",
  1623. "type": "tidelift"
  1624. }
  1625. ],
  1626. "time": "2022-01-24T01:59:19+00:00"
  1627. },
  1628. {
  1629. "name": "graham-campbell/result-type",
  1630. "version": "v1.1.4",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1634. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
  1639. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
  1640. "shasum": "",
  1641. "mirrors": [
  1642. {
  1643. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1644. "preferred": true
  1645. }
  1646. ]
  1647. },
  1648. "require": {
  1649. "php": "^7.2.5 || ^8.0",
  1650. "phpoption/phpoption": "^1.9.5"
  1651. },
  1652. "require-dev": {
  1653. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  1654. },
  1655. "type": "library",
  1656. "autoload": {
  1657. "psr-4": {
  1658. "GrahamCampbell\\ResultType\\": "src/"
  1659. }
  1660. },
  1661. "notification-url": "https://packagist.org/downloads/",
  1662. "license": [
  1663. "MIT"
  1664. ],
  1665. "authors": [
  1666. {
  1667. "name": "Graham Campbell",
  1668. "email": "hello@gjcampbell.co.uk",
  1669. "homepage": "https://github.com/GrahamCampbell"
  1670. }
  1671. ],
  1672. "description": "An Implementation Of The Result Type",
  1673. "keywords": [
  1674. "Graham Campbell",
  1675. "GrahamCampbell",
  1676. "Result Type",
  1677. "Result-Type",
  1678. "result"
  1679. ],
  1680. "support": {
  1681. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1682. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
  1683. },
  1684. "funding": [
  1685. {
  1686. "url": "https://github.com/GrahamCampbell",
  1687. "type": "github"
  1688. },
  1689. {
  1690. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1691. "type": "tidelift"
  1692. }
  1693. ],
  1694. "time": "2025-12-27T19:43:20+00:00"
  1695. },
  1696. {
  1697. "name": "guzzlehttp/guzzle",
  1698. "version": "7.10.0",
  1699. "source": {
  1700. "type": "git",
  1701. "url": "https://github.com/guzzle/guzzle.git",
  1702. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  1703. },
  1704. "dist": {
  1705. "type": "zip",
  1706. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1707. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1708. "shasum": "",
  1709. "mirrors": [
  1710. {
  1711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1712. "preferred": true
  1713. }
  1714. ]
  1715. },
  1716. "require": {
  1717. "ext-json": "*",
  1718. "guzzlehttp/promises": "^2.3",
  1719. "guzzlehttp/psr7": "^2.8",
  1720. "php": "^7.2.5 || ^8.0",
  1721. "psr/http-client": "^1.0",
  1722. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1723. },
  1724. "provide": {
  1725. "psr/http-client-implementation": "1.0"
  1726. },
  1727. "require-dev": {
  1728. "bamarni/composer-bin-plugin": "^1.8.2",
  1729. "ext-curl": "*",
  1730. "guzzle/client-integration-tests": "3.0.2",
  1731. "php-http/message-factory": "^1.1",
  1732. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1733. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1734. },
  1735. "suggest": {
  1736. "ext-curl": "Required for CURL handler support",
  1737. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1738. "psr/log": "Required for using the Log middleware"
  1739. },
  1740. "type": "library",
  1741. "extra": {
  1742. "bamarni-bin": {
  1743. "bin-links": true,
  1744. "forward-command": false
  1745. }
  1746. },
  1747. "autoload": {
  1748. "files": [
  1749. "src/functions_include.php"
  1750. ],
  1751. "psr-4": {
  1752. "GuzzleHttp\\": "src/"
  1753. }
  1754. },
  1755. "notification-url": "https://packagist.org/downloads/",
  1756. "license": [
  1757. "MIT"
  1758. ],
  1759. "authors": [
  1760. {
  1761. "name": "Graham Campbell",
  1762. "email": "hello@gjcampbell.co.uk",
  1763. "homepage": "https://github.com/GrahamCampbell"
  1764. },
  1765. {
  1766. "name": "Michael Dowling",
  1767. "email": "mtdowling@gmail.com",
  1768. "homepage": "https://github.com/mtdowling"
  1769. },
  1770. {
  1771. "name": "Jeremy Lindblom",
  1772. "email": "jeremeamia@gmail.com",
  1773. "homepage": "https://github.com/jeremeamia"
  1774. },
  1775. {
  1776. "name": "George Mponos",
  1777. "email": "gmponos@gmail.com",
  1778. "homepage": "https://github.com/gmponos"
  1779. },
  1780. {
  1781. "name": "Tobias Nyholm",
  1782. "email": "tobias.nyholm@gmail.com",
  1783. "homepage": "https://github.com/Nyholm"
  1784. },
  1785. {
  1786. "name": "Márk Sági-Kazár",
  1787. "email": "mark.sagikazar@gmail.com",
  1788. "homepage": "https://github.com/sagikazarmark"
  1789. },
  1790. {
  1791. "name": "Tobias Schultze",
  1792. "email": "webmaster@tubo-world.de",
  1793. "homepage": "https://github.com/Tobion"
  1794. }
  1795. ],
  1796. "description": "Guzzle is a PHP HTTP client library",
  1797. "keywords": [
  1798. "client",
  1799. "curl",
  1800. "framework",
  1801. "http",
  1802. "http client",
  1803. "psr-18",
  1804. "psr-7",
  1805. "rest",
  1806. "web service"
  1807. ],
  1808. "support": {
  1809. "issues": "https://github.com/guzzle/guzzle/issues",
  1810. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  1811. },
  1812. "funding": [
  1813. {
  1814. "url": "https://github.com/GrahamCampbell",
  1815. "type": "github"
  1816. },
  1817. {
  1818. "url": "https://github.com/Nyholm",
  1819. "type": "github"
  1820. },
  1821. {
  1822. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1823. "type": "tidelift"
  1824. }
  1825. ],
  1826. "time": "2025-08-23T22:36:01+00:00"
  1827. },
  1828. {
  1829. "name": "guzzlehttp/promises",
  1830. "version": "2.3.0",
  1831. "source": {
  1832. "type": "git",
  1833. "url": "https://github.com/guzzle/promises.git",
  1834. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1835. },
  1836. "dist": {
  1837. "type": "zip",
  1838. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1839. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1840. "shasum": "",
  1841. "mirrors": [
  1842. {
  1843. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1844. "preferred": true
  1845. }
  1846. ]
  1847. },
  1848. "require": {
  1849. "php": "^7.2.5 || ^8.0"
  1850. },
  1851. "require-dev": {
  1852. "bamarni/composer-bin-plugin": "^1.8.2",
  1853. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1854. },
  1855. "type": "library",
  1856. "extra": {
  1857. "bamarni-bin": {
  1858. "bin-links": true,
  1859. "forward-command": false
  1860. }
  1861. },
  1862. "autoload": {
  1863. "psr-4": {
  1864. "GuzzleHttp\\Promise\\": "src/"
  1865. }
  1866. },
  1867. "notification-url": "https://packagist.org/downloads/",
  1868. "license": [
  1869. "MIT"
  1870. ],
  1871. "authors": [
  1872. {
  1873. "name": "Graham Campbell",
  1874. "email": "hello@gjcampbell.co.uk",
  1875. "homepage": "https://github.com/GrahamCampbell"
  1876. },
  1877. {
  1878. "name": "Michael Dowling",
  1879. "email": "mtdowling@gmail.com",
  1880. "homepage": "https://github.com/mtdowling"
  1881. },
  1882. {
  1883. "name": "Tobias Nyholm",
  1884. "email": "tobias.nyholm@gmail.com",
  1885. "homepage": "https://github.com/Nyholm"
  1886. },
  1887. {
  1888. "name": "Tobias Schultze",
  1889. "email": "webmaster@tubo-world.de",
  1890. "homepage": "https://github.com/Tobion"
  1891. }
  1892. ],
  1893. "description": "Guzzle promises library",
  1894. "keywords": [
  1895. "promise"
  1896. ],
  1897. "support": {
  1898. "issues": "https://github.com/guzzle/promises/issues",
  1899. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1900. },
  1901. "funding": [
  1902. {
  1903. "url": "https://github.com/GrahamCampbell",
  1904. "type": "github"
  1905. },
  1906. {
  1907. "url": "https://github.com/Nyholm",
  1908. "type": "github"
  1909. },
  1910. {
  1911. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1912. "type": "tidelift"
  1913. }
  1914. ],
  1915. "time": "2025-08-22T14:34:08+00:00"
  1916. },
  1917. {
  1918. "name": "guzzlehttp/psr7",
  1919. "version": "2.8.0",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/guzzle/psr7.git",
  1923. "reference": "21dc724a0583619cd1652f673303492272778051"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  1928. "reference": "21dc724a0583619cd1652f673303492272778051",
  1929. "shasum": "",
  1930. "mirrors": [
  1931. {
  1932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1933. "preferred": true
  1934. }
  1935. ]
  1936. },
  1937. "require": {
  1938. "php": "^7.2.5 || ^8.0",
  1939. "psr/http-factory": "^1.0",
  1940. "psr/http-message": "^1.1 || ^2.0",
  1941. "ralouphie/getallheaders": "^3.0"
  1942. },
  1943. "provide": {
  1944. "psr/http-factory-implementation": "1.0",
  1945. "psr/http-message-implementation": "1.0"
  1946. },
  1947. "require-dev": {
  1948. "bamarni/composer-bin-plugin": "^1.8.2",
  1949. "http-interop/http-factory-tests": "0.9.0",
  1950. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1951. },
  1952. "suggest": {
  1953. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1954. },
  1955. "type": "library",
  1956. "extra": {
  1957. "bamarni-bin": {
  1958. "bin-links": true,
  1959. "forward-command": false
  1960. }
  1961. },
  1962. "autoload": {
  1963. "psr-4": {
  1964. "GuzzleHttp\\Psr7\\": "src/"
  1965. }
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "Graham Campbell",
  1974. "email": "hello@gjcampbell.co.uk",
  1975. "homepage": "https://github.com/GrahamCampbell"
  1976. },
  1977. {
  1978. "name": "Michael Dowling",
  1979. "email": "mtdowling@gmail.com",
  1980. "homepage": "https://github.com/mtdowling"
  1981. },
  1982. {
  1983. "name": "George Mponos",
  1984. "email": "gmponos@gmail.com",
  1985. "homepage": "https://github.com/gmponos"
  1986. },
  1987. {
  1988. "name": "Tobias Nyholm",
  1989. "email": "tobias.nyholm@gmail.com",
  1990. "homepage": "https://github.com/Nyholm"
  1991. },
  1992. {
  1993. "name": "Márk Sági-Kazár",
  1994. "email": "mark.sagikazar@gmail.com",
  1995. "homepage": "https://github.com/sagikazarmark"
  1996. },
  1997. {
  1998. "name": "Tobias Schultze",
  1999. "email": "webmaster@tubo-world.de",
  2000. "homepage": "https://github.com/Tobion"
  2001. },
  2002. {
  2003. "name": "Márk Sági-Kazár",
  2004. "email": "mark.sagikazar@gmail.com",
  2005. "homepage": "https://sagikazarmark.hu"
  2006. }
  2007. ],
  2008. "description": "PSR-7 message implementation that also provides common utility methods",
  2009. "keywords": [
  2010. "http",
  2011. "message",
  2012. "psr-7",
  2013. "request",
  2014. "response",
  2015. "stream",
  2016. "uri",
  2017. "url"
  2018. ],
  2019. "support": {
  2020. "issues": "https://github.com/guzzle/psr7/issues",
  2021. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  2022. },
  2023. "funding": [
  2024. {
  2025. "url": "https://github.com/GrahamCampbell",
  2026. "type": "github"
  2027. },
  2028. {
  2029. "url": "https://github.com/Nyholm",
  2030. "type": "github"
  2031. },
  2032. {
  2033. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2034. "type": "tidelift"
  2035. }
  2036. ],
  2037. "time": "2025-08-23T21:21:41+00:00"
  2038. },
  2039. {
  2040. "name": "hashids/hashids",
  2041. "version": "4.1.0",
  2042. "source": {
  2043. "type": "git",
  2044. "url": "https://github.com/vinkla/hashids.git",
  2045. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  2046. },
  2047. "dist": {
  2048. "type": "zip",
  2049. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  2050. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  2051. "shasum": "",
  2052. "mirrors": [
  2053. {
  2054. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2055. "preferred": true
  2056. }
  2057. ]
  2058. },
  2059. "require": {
  2060. "ext-mbstring": "*",
  2061. "php": "^7.2 || ^8.0"
  2062. },
  2063. "require-dev": {
  2064. "phpunit/phpunit": "^8.0 || ^9.4",
  2065. "squizlabs/php_codesniffer": "^3.5"
  2066. },
  2067. "suggest": {
  2068. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  2069. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  2070. },
  2071. "type": "library",
  2072. "extra": {
  2073. "branch-alias": {
  2074. "dev-master": "4.1-dev"
  2075. }
  2076. },
  2077. "autoload": {
  2078. "psr-4": {
  2079. "Hashids\\": "src/"
  2080. }
  2081. },
  2082. "notification-url": "https://packagist.org/downloads/",
  2083. "license": [
  2084. "MIT"
  2085. ],
  2086. "authors": [
  2087. {
  2088. "name": "Ivan Akimov",
  2089. "email": "ivan@barreleye.com"
  2090. },
  2091. {
  2092. "name": "Vincent Klaiber",
  2093. "email": "hello@doubledip.se"
  2094. }
  2095. ],
  2096. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  2097. "homepage": "https://hashids.org/php",
  2098. "keywords": [
  2099. "bitly",
  2100. "decode",
  2101. "encode",
  2102. "hash",
  2103. "hashid",
  2104. "hashids",
  2105. "ids",
  2106. "obfuscate",
  2107. "youtube"
  2108. ],
  2109. "support": {
  2110. "issues": "https://github.com/vinkla/hashids/issues",
  2111. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  2112. },
  2113. "time": "2020-11-26T19:24:33+00:00"
  2114. },
  2115. {
  2116. "name": "intervention/image",
  2117. "version": "2.7.2",
  2118. "source": {
  2119. "type": "git",
  2120. "url": "https://github.com/Intervention/image.git",
  2121. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2122. },
  2123. "dist": {
  2124. "type": "zip",
  2125. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2126. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2127. "shasum": "",
  2128. "mirrors": [
  2129. {
  2130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2131. "preferred": true
  2132. }
  2133. ]
  2134. },
  2135. "require": {
  2136. "ext-fileinfo": "*",
  2137. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2138. "php": ">=5.4.0"
  2139. },
  2140. "require-dev": {
  2141. "mockery/mockery": "~0.9.2",
  2142. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2143. },
  2144. "suggest": {
  2145. "ext-gd": "to use GD library based image processing.",
  2146. "ext-imagick": "to use Imagick based image processing.",
  2147. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2148. },
  2149. "type": "library",
  2150. "extra": {
  2151. "laravel": {
  2152. "aliases": {
  2153. "Image": "Intervention\\Image\\Facades\\Image"
  2154. },
  2155. "providers": [
  2156. "Intervention\\Image\\ImageServiceProvider"
  2157. ]
  2158. },
  2159. "branch-alias": {
  2160. "dev-master": "2.4-dev"
  2161. }
  2162. },
  2163. "autoload": {
  2164. "psr-4": {
  2165. "Intervention\\Image\\": "src/Intervention/Image"
  2166. }
  2167. },
  2168. "notification-url": "https://packagist.org/downloads/",
  2169. "license": [
  2170. "MIT"
  2171. ],
  2172. "authors": [
  2173. {
  2174. "name": "Oliver Vogel",
  2175. "email": "oliver@intervention.io",
  2176. "homepage": "https://intervention.io/"
  2177. }
  2178. ],
  2179. "description": "Image handling and manipulation library with support for Laravel integration",
  2180. "homepage": "http://image.intervention.io/",
  2181. "keywords": [
  2182. "gd",
  2183. "image",
  2184. "imagick",
  2185. "laravel",
  2186. "thumbnail",
  2187. "watermark"
  2188. ],
  2189. "support": {
  2190. "issues": "https://github.com/Intervention/image/issues",
  2191. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2192. },
  2193. "funding": [
  2194. {
  2195. "url": "https://paypal.me/interventionio",
  2196. "type": "custom"
  2197. },
  2198. {
  2199. "url": "https://github.com/Intervention",
  2200. "type": "github"
  2201. }
  2202. ],
  2203. "time": "2022-05-21T17:30:32+00:00"
  2204. },
  2205. {
  2206. "name": "ixudra/curl",
  2207. "version": "6.22.1",
  2208. "source": {
  2209. "type": "git",
  2210. "url": "https://github.com/ixudra/curl.git",
  2211. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180"
  2212. },
  2213. "dist": {
  2214. "type": "zip",
  2215. "url": "https://api.github.com/repos/ixudra/curl/zipball/0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2216. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2217. "shasum": "",
  2218. "mirrors": [
  2219. {
  2220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2221. "preferred": true
  2222. }
  2223. ]
  2224. },
  2225. "require": {
  2226. "ext-curl": "*",
  2227. "illuminate/support": ">=4.0",
  2228. "php": ">=5.4.0"
  2229. },
  2230. "type": "library",
  2231. "extra": {
  2232. "laravel": {
  2233. "providers": [
  2234. "Ixudra\\Curl\\CurlServiceProvider"
  2235. ],
  2236. "aliases": {
  2237. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  2238. }
  2239. }
  2240. },
  2241. "autoload": {
  2242. "psr-4": {
  2243. "Ixudra\\Curl\\": "src/"
  2244. }
  2245. },
  2246. "notification-url": "https://packagist.org/downloads/",
  2247. "license": [
  2248. "MIT"
  2249. ],
  2250. "authors": [
  2251. {
  2252. "name": "Jan Oris",
  2253. "email": "jan.oris@ixudra.be"
  2254. }
  2255. ],
  2256. "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra",
  2257. "homepage": "http://ixudra.be",
  2258. "keywords": [
  2259. "Ixudra",
  2260. "curl",
  2261. "laravel"
  2262. ],
  2263. "support": {
  2264. "issues": "https://github.com/ixudra/curl/issues",
  2265. "source": "https://github.com/ixudra/curl/tree/6.22.1"
  2266. },
  2267. "time": "2022-07-31T09:58:52+00:00"
  2268. },
  2269. {
  2270. "name": "laravel/framework",
  2271. "version": "v8.83.29",
  2272. "source": {
  2273. "type": "git",
  2274. "url": "https://github.com/laravel/framework.git",
  2275. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4"
  2276. },
  2277. "dist": {
  2278. "type": "zip",
  2279. "url": "https://api.github.com/repos/laravel/framework/zipball/d841a226a50c715431952a10260ba4fac9e91cc4",
  2280. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4",
  2281. "shasum": "",
  2282. "mirrors": [
  2283. {
  2284. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2285. "preferred": true
  2286. }
  2287. ]
  2288. },
  2289. "require": {
  2290. "doctrine/inflector": "^1.4|^2.0",
  2291. "dragonmantank/cron-expression": "^3.0.2",
  2292. "egulias/email-validator": "^2.1.10",
  2293. "ext-json": "*",
  2294. "ext-mbstring": "*",
  2295. "ext-openssl": "*",
  2296. "laravel/serializable-closure": "^1.0",
  2297. "league/commonmark": "^1.3|^2.0.2",
  2298. "league/flysystem": "^1.1",
  2299. "monolog/monolog": "^2.0",
  2300. "nesbot/carbon": "^2.53.1",
  2301. "opis/closure": "^3.6",
  2302. "php": "^7.3|^8.0",
  2303. "psr/container": "^1.0",
  2304. "psr/log": "^1.0|^2.0",
  2305. "psr/simple-cache": "^1.0",
  2306. "ramsey/uuid": "^4.2.2",
  2307. "swiftmailer/swiftmailer": "^6.3",
  2308. "symfony/console": "^5.4",
  2309. "symfony/error-handler": "^5.4",
  2310. "symfony/finder": "^5.4",
  2311. "symfony/http-foundation": "^5.4",
  2312. "symfony/http-kernel": "^5.4",
  2313. "symfony/mime": "^5.4",
  2314. "symfony/process": "^5.4",
  2315. "symfony/routing": "^5.4",
  2316. "symfony/var-dumper": "^5.4",
  2317. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2318. "vlucas/phpdotenv": "^5.4.1",
  2319. "voku/portable-ascii": "^1.6.1"
  2320. },
  2321. "conflict": {
  2322. "tightenco/collect": "<5.5.33"
  2323. },
  2324. "provide": {
  2325. "psr/container-implementation": "1.0",
  2326. "psr/simple-cache-implementation": "1.0"
  2327. },
  2328. "replace": {
  2329. "illuminate/auth": "self.version",
  2330. "illuminate/broadcasting": "self.version",
  2331. "illuminate/bus": "self.version",
  2332. "illuminate/cache": "self.version",
  2333. "illuminate/collections": "self.version",
  2334. "illuminate/config": "self.version",
  2335. "illuminate/console": "self.version",
  2336. "illuminate/container": "self.version",
  2337. "illuminate/contracts": "self.version",
  2338. "illuminate/cookie": "self.version",
  2339. "illuminate/database": "self.version",
  2340. "illuminate/encryption": "self.version",
  2341. "illuminate/events": "self.version",
  2342. "illuminate/filesystem": "self.version",
  2343. "illuminate/hashing": "self.version",
  2344. "illuminate/http": "self.version",
  2345. "illuminate/log": "self.version",
  2346. "illuminate/macroable": "self.version",
  2347. "illuminate/mail": "self.version",
  2348. "illuminate/notifications": "self.version",
  2349. "illuminate/pagination": "self.version",
  2350. "illuminate/pipeline": "self.version",
  2351. "illuminate/queue": "self.version",
  2352. "illuminate/redis": "self.version",
  2353. "illuminate/routing": "self.version",
  2354. "illuminate/session": "self.version",
  2355. "illuminate/support": "self.version",
  2356. "illuminate/testing": "self.version",
  2357. "illuminate/translation": "self.version",
  2358. "illuminate/validation": "self.version",
  2359. "illuminate/view": "self.version"
  2360. },
  2361. "require-dev": {
  2362. "aws/aws-sdk-php": "^3.198.1",
  2363. "doctrine/dbal": "^2.13.3|^3.1.4",
  2364. "filp/whoops": "^2.14.3",
  2365. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2366. "league/flysystem-cached-adapter": "^1.0",
  2367. "mockery/mockery": "^1.4.4",
  2368. "orchestra/testbench-core": "^6.27",
  2369. "pda/pheanstalk": "^4.0",
  2370. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2371. "predis/predis": "^1.1.9",
  2372. "symfony/cache": "^5.4"
  2373. },
  2374. "suggest": {
  2375. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2376. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2377. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2378. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2379. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2380. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2381. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2382. "ext-memcached": "Required to use the memcache cache driver.",
  2383. "ext-pcntl": "Required to use all features of the queue worker.",
  2384. "ext-posix": "Required to use all features of the queue worker.",
  2385. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2386. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2387. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2388. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2389. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2390. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2391. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2392. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2393. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2394. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2395. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2396. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2397. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2398. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2399. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2400. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2401. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2402. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2403. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2404. },
  2405. "type": "library",
  2406. "extra": {
  2407. "branch-alias": {
  2408. "dev-master": "8.x-dev"
  2409. }
  2410. },
  2411. "autoload": {
  2412. "files": [
  2413. "src/Illuminate/Collections/helpers.php",
  2414. "src/Illuminate/Events/functions.php",
  2415. "src/Illuminate/Foundation/helpers.php",
  2416. "src/Illuminate/Support/helpers.php"
  2417. ],
  2418. "psr-4": {
  2419. "Illuminate\\": "src/Illuminate/",
  2420. "Illuminate\\Support\\": [
  2421. "src/Illuminate/Macroable/",
  2422. "src/Illuminate/Collections/"
  2423. ]
  2424. }
  2425. },
  2426. "notification-url": "https://packagist.org/downloads/",
  2427. "license": [
  2428. "MIT"
  2429. ],
  2430. "authors": [
  2431. {
  2432. "name": "Taylor Otwell",
  2433. "email": "taylor@laravel.com"
  2434. }
  2435. ],
  2436. "description": "The Laravel Framework.",
  2437. "homepage": "https://laravel.com",
  2438. "keywords": [
  2439. "framework",
  2440. "laravel"
  2441. ],
  2442. "support": {
  2443. "issues": "https://github.com/laravel/framework/issues",
  2444. "source": "https://github.com/laravel/framework"
  2445. },
  2446. "time": "2024-11-20T15:55:41+00:00"
  2447. },
  2448. {
  2449. "name": "laravel/sanctum",
  2450. "version": "v2.15.1",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://github.com/laravel/sanctum.git",
  2454. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  2455. },
  2456. "dist": {
  2457. "type": "zip",
  2458. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  2459. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  2460. "shasum": "",
  2461. "mirrors": [
  2462. {
  2463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2464. "preferred": true
  2465. }
  2466. ]
  2467. },
  2468. "require": {
  2469. "ext-json": "*",
  2470. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  2471. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  2472. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  2473. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  2474. "php": "^7.2|^8.0"
  2475. },
  2476. "require-dev": {
  2477. "mockery/mockery": "^1.0",
  2478. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  2479. "phpunit/phpunit": "^8.0|^9.3"
  2480. },
  2481. "type": "library",
  2482. "extra": {
  2483. "laravel": {
  2484. "providers": [
  2485. "Laravel\\Sanctum\\SanctumServiceProvider"
  2486. ]
  2487. },
  2488. "branch-alias": {
  2489. "dev-master": "2.x-dev"
  2490. }
  2491. },
  2492. "autoload": {
  2493. "psr-4": {
  2494. "Laravel\\Sanctum\\": "src/"
  2495. }
  2496. },
  2497. "notification-url": "https://packagist.org/downloads/",
  2498. "license": [
  2499. "MIT"
  2500. ],
  2501. "authors": [
  2502. {
  2503. "name": "Taylor Otwell",
  2504. "email": "taylor@laravel.com"
  2505. }
  2506. ],
  2507. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2508. "keywords": [
  2509. "auth",
  2510. "laravel",
  2511. "sanctum"
  2512. ],
  2513. "support": {
  2514. "issues": "https://github.com/laravel/sanctum/issues",
  2515. "source": "https://github.com/laravel/sanctum"
  2516. },
  2517. "time": "2022-04-08T13:39:49+00:00"
  2518. },
  2519. {
  2520. "name": "laravel/serializable-closure",
  2521. "version": "v1.3.7",
  2522. "source": {
  2523. "type": "git",
  2524. "url": "https://github.com/laravel/serializable-closure.git",
  2525. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  2526. },
  2527. "dist": {
  2528. "type": "zip",
  2529. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  2530. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  2531. "shasum": "",
  2532. "mirrors": [
  2533. {
  2534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2535. "preferred": true
  2536. }
  2537. ]
  2538. },
  2539. "require": {
  2540. "php": "^7.3|^8.0"
  2541. },
  2542. "require-dev": {
  2543. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2544. "nesbot/carbon": "^2.61|^3.0",
  2545. "pestphp/pest": "^1.21.3",
  2546. "phpstan/phpstan": "^1.8.2",
  2547. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  2548. },
  2549. "type": "library",
  2550. "extra": {
  2551. "branch-alias": {
  2552. "dev-master": "1.x-dev"
  2553. }
  2554. },
  2555. "autoload": {
  2556. "psr-4": {
  2557. "Laravel\\SerializableClosure\\": "src/"
  2558. }
  2559. },
  2560. "notification-url": "https://packagist.org/downloads/",
  2561. "license": [
  2562. "MIT"
  2563. ],
  2564. "authors": [
  2565. {
  2566. "name": "Taylor Otwell",
  2567. "email": "taylor@laravel.com"
  2568. },
  2569. {
  2570. "name": "Nuno Maduro",
  2571. "email": "nuno@laravel.com"
  2572. }
  2573. ],
  2574. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2575. "keywords": [
  2576. "closure",
  2577. "laravel",
  2578. "serializable"
  2579. ],
  2580. "support": {
  2581. "issues": "https://github.com/laravel/serializable-closure/issues",
  2582. "source": "https://github.com/laravel/serializable-closure"
  2583. },
  2584. "time": "2024-11-14T18:34:49+00:00"
  2585. },
  2586. {
  2587. "name": "laravel/tinker",
  2588. "version": "v2.10.0",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/laravel/tinker.git",
  2592. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2597. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2598. "shasum": "",
  2599. "mirrors": [
  2600. {
  2601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2602. "preferred": true
  2603. }
  2604. ]
  2605. },
  2606. "require": {
  2607. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2608. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2609. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2610. "php": "^7.2.5|^8.0",
  2611. "psy/psysh": "^0.11.1|^0.12.0",
  2612. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2613. },
  2614. "require-dev": {
  2615. "mockery/mockery": "~1.3.3|^1.4.2",
  2616. "phpstan/phpstan": "^1.10",
  2617. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2618. },
  2619. "suggest": {
  2620. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2621. },
  2622. "type": "library",
  2623. "extra": {
  2624. "laravel": {
  2625. "providers": [
  2626. "Laravel\\Tinker\\TinkerServiceProvider"
  2627. ]
  2628. }
  2629. },
  2630. "autoload": {
  2631. "psr-4": {
  2632. "Laravel\\Tinker\\": "src/"
  2633. }
  2634. },
  2635. "notification-url": "https://packagist.org/downloads/",
  2636. "license": [
  2637. "MIT"
  2638. ],
  2639. "authors": [
  2640. {
  2641. "name": "Taylor Otwell",
  2642. "email": "taylor@laravel.com"
  2643. }
  2644. ],
  2645. "description": "Powerful REPL for the Laravel framework.",
  2646. "keywords": [
  2647. "REPL",
  2648. "Tinker",
  2649. "laravel",
  2650. "psysh"
  2651. ],
  2652. "support": {
  2653. "issues": "https://github.com/laravel/tinker/issues",
  2654. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2655. },
  2656. "time": "2024-09-23T13:32:56+00:00"
  2657. },
  2658. {
  2659. "name": "league/commonmark",
  2660. "version": "2.6.0",
  2661. "source": {
  2662. "type": "git",
  2663. "url": "https://github.com/thephpleague/commonmark.git",
  2664. "reference": "d150f911e0079e90ae3c106734c93137c184f932"
  2665. },
  2666. "dist": {
  2667. "type": "zip",
  2668. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d150f911e0079e90ae3c106734c93137c184f932",
  2669. "reference": "d150f911e0079e90ae3c106734c93137c184f932",
  2670. "shasum": "",
  2671. "mirrors": [
  2672. {
  2673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2674. "preferred": true
  2675. }
  2676. ]
  2677. },
  2678. "require": {
  2679. "ext-mbstring": "*",
  2680. "league/config": "^1.1.1",
  2681. "php": "^7.4 || ^8.0",
  2682. "psr/event-dispatcher": "^1.0",
  2683. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2684. "symfony/polyfill-php80": "^1.16"
  2685. },
  2686. "require-dev": {
  2687. "cebe/markdown": "^1.0",
  2688. "commonmark/cmark": "0.31.1",
  2689. "commonmark/commonmark.js": "0.31.1",
  2690. "composer/package-versions-deprecated": "^1.8",
  2691. "embed/embed": "^4.4",
  2692. "erusev/parsedown": "^1.0",
  2693. "ext-json": "*",
  2694. "github/gfm": "0.29.0",
  2695. "michelf/php-markdown": "^1.4 || ^2.0",
  2696. "nyholm/psr7": "^1.5",
  2697. "phpstan/phpstan": "^1.8.2",
  2698. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2699. "scrutinizer/ocular": "^1.8.1",
  2700. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2701. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2702. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2703. "unleashedtech/php-coding-standard": "^3.1.1",
  2704. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2705. },
  2706. "suggest": {
  2707. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2708. },
  2709. "type": "library",
  2710. "extra": {
  2711. "branch-alias": {
  2712. "dev-main": "2.7-dev"
  2713. }
  2714. },
  2715. "autoload": {
  2716. "psr-4": {
  2717. "League\\CommonMark\\": "src"
  2718. }
  2719. },
  2720. "notification-url": "https://packagist.org/downloads/",
  2721. "license": [
  2722. "BSD-3-Clause"
  2723. ],
  2724. "authors": [
  2725. {
  2726. "name": "Colin O'Dell",
  2727. "email": "colinodell@gmail.com",
  2728. "homepage": "https://www.colinodell.com",
  2729. "role": "Lead Developer"
  2730. }
  2731. ],
  2732. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2733. "homepage": "https://commonmark.thephpleague.com",
  2734. "keywords": [
  2735. "commonmark",
  2736. "flavored",
  2737. "gfm",
  2738. "github",
  2739. "github-flavored",
  2740. "markdown",
  2741. "md",
  2742. "parser"
  2743. ],
  2744. "support": {
  2745. "docs": "https://commonmark.thephpleague.com/",
  2746. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2747. "issues": "https://github.com/thephpleague/commonmark/issues",
  2748. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2749. "source": "https://github.com/thephpleague/commonmark"
  2750. },
  2751. "funding": [
  2752. {
  2753. "url": "https://www.colinodell.com/sponsor",
  2754. "type": "custom"
  2755. },
  2756. {
  2757. "url": "https://www.paypal.me/colinpodell/10.00",
  2758. "type": "custom"
  2759. },
  2760. {
  2761. "url": "https://github.com/colinodell",
  2762. "type": "github"
  2763. },
  2764. {
  2765. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2766. "type": "tidelift"
  2767. }
  2768. ],
  2769. "time": "2024-12-07T15:34:16+00:00"
  2770. },
  2771. {
  2772. "name": "league/config",
  2773. "version": "v1.2.0",
  2774. "source": {
  2775. "type": "git",
  2776. "url": "https://github.com/thephpleague/config.git",
  2777. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2778. },
  2779. "dist": {
  2780. "type": "zip",
  2781. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2782. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2783. "shasum": "",
  2784. "mirrors": [
  2785. {
  2786. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2787. "preferred": true
  2788. }
  2789. ]
  2790. },
  2791. "require": {
  2792. "dflydev/dot-access-data": "^3.0.1",
  2793. "nette/schema": "^1.2",
  2794. "php": "^7.4 || ^8.0"
  2795. },
  2796. "require-dev": {
  2797. "phpstan/phpstan": "^1.8.2",
  2798. "phpunit/phpunit": "^9.5.5",
  2799. "scrutinizer/ocular": "^1.8.1",
  2800. "unleashedtech/php-coding-standard": "^3.1",
  2801. "vimeo/psalm": "^4.7.3"
  2802. },
  2803. "type": "library",
  2804. "extra": {
  2805. "branch-alias": {
  2806. "dev-main": "1.2-dev"
  2807. }
  2808. },
  2809. "autoload": {
  2810. "psr-4": {
  2811. "League\\Config\\": "src"
  2812. }
  2813. },
  2814. "notification-url": "https://packagist.org/downloads/",
  2815. "license": [
  2816. "BSD-3-Clause"
  2817. ],
  2818. "authors": [
  2819. {
  2820. "name": "Colin O'Dell",
  2821. "email": "colinodell@gmail.com",
  2822. "homepage": "https://www.colinodell.com",
  2823. "role": "Lead Developer"
  2824. }
  2825. ],
  2826. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2827. "homepage": "https://config.thephpleague.com",
  2828. "keywords": [
  2829. "array",
  2830. "config",
  2831. "configuration",
  2832. "dot",
  2833. "dot-access",
  2834. "nested",
  2835. "schema"
  2836. ],
  2837. "support": {
  2838. "docs": "https://config.thephpleague.com/",
  2839. "issues": "https://github.com/thephpleague/config/issues",
  2840. "rss": "https://github.com/thephpleague/config/releases.atom",
  2841. "source": "https://github.com/thephpleague/config"
  2842. },
  2843. "funding": [
  2844. {
  2845. "url": "https://www.colinodell.com/sponsor",
  2846. "type": "custom"
  2847. },
  2848. {
  2849. "url": "https://www.paypal.me/colinpodell/10.00",
  2850. "type": "custom"
  2851. },
  2852. {
  2853. "url": "https://github.com/colinodell",
  2854. "type": "github"
  2855. }
  2856. ],
  2857. "time": "2022-12-11T20:36:23+00:00"
  2858. },
  2859. {
  2860. "name": "league/flysystem",
  2861. "version": "1.1.10",
  2862. "source": {
  2863. "type": "git",
  2864. "url": "https://github.com/thephpleague/flysystem.git",
  2865. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2866. },
  2867. "dist": {
  2868. "type": "zip",
  2869. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2870. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2871. "shasum": "",
  2872. "mirrors": [
  2873. {
  2874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2875. "preferred": true
  2876. }
  2877. ]
  2878. },
  2879. "require": {
  2880. "ext-fileinfo": "*",
  2881. "league/mime-type-detection": "^1.3",
  2882. "php": "^7.2.5 || ^8.0"
  2883. },
  2884. "conflict": {
  2885. "league/flysystem-sftp": "<1.0.6"
  2886. },
  2887. "require-dev": {
  2888. "phpspec/prophecy": "^1.11.1",
  2889. "phpunit/phpunit": "^8.5.8"
  2890. },
  2891. "suggest": {
  2892. "ext-ftp": "Allows you to use FTP server storage",
  2893. "ext-openssl": "Allows you to use FTPS server storage",
  2894. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2895. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2896. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2897. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2898. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2899. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2900. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2901. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2902. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2903. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2904. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2905. },
  2906. "type": "library",
  2907. "extra": {
  2908. "branch-alias": {
  2909. "dev-master": "1.1-dev"
  2910. }
  2911. },
  2912. "autoload": {
  2913. "psr-4": {
  2914. "League\\Flysystem\\": "src/"
  2915. }
  2916. },
  2917. "notification-url": "https://packagist.org/downloads/",
  2918. "license": [
  2919. "MIT"
  2920. ],
  2921. "authors": [
  2922. {
  2923. "name": "Frank de Jonge",
  2924. "email": "info@frenky.net"
  2925. }
  2926. ],
  2927. "description": "Filesystem abstraction: Many filesystems, one API.",
  2928. "keywords": [
  2929. "Cloud Files",
  2930. "WebDAV",
  2931. "abstraction",
  2932. "aws",
  2933. "cloud",
  2934. "copy.com",
  2935. "dropbox",
  2936. "file systems",
  2937. "files",
  2938. "filesystem",
  2939. "filesystems",
  2940. "ftp",
  2941. "rackspace",
  2942. "remote",
  2943. "s3",
  2944. "sftp",
  2945. "storage"
  2946. ],
  2947. "support": {
  2948. "issues": "https://github.com/thephpleague/flysystem/issues",
  2949. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2950. },
  2951. "funding": [
  2952. {
  2953. "url": "https://offset.earth/frankdejonge",
  2954. "type": "other"
  2955. }
  2956. ],
  2957. "time": "2022-10-04T09:16:37+00:00"
  2958. },
  2959. {
  2960. "name": "league/mime-type-detection",
  2961. "version": "1.15.0",
  2962. "source": {
  2963. "type": "git",
  2964. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2965. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2966. },
  2967. "dist": {
  2968. "type": "zip",
  2969. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2970. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2971. "shasum": "",
  2972. "mirrors": [
  2973. {
  2974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2975. "preferred": true
  2976. }
  2977. ]
  2978. },
  2979. "require": {
  2980. "ext-fileinfo": "*",
  2981. "php": "^7.4 || ^8.0"
  2982. },
  2983. "require-dev": {
  2984. "friendsofphp/php-cs-fixer": "^3.2",
  2985. "phpstan/phpstan": "^0.12.68",
  2986. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2987. },
  2988. "type": "library",
  2989. "autoload": {
  2990. "psr-4": {
  2991. "League\\MimeTypeDetection\\": "src"
  2992. }
  2993. },
  2994. "notification-url": "https://packagist.org/downloads/",
  2995. "license": [
  2996. "MIT"
  2997. ],
  2998. "authors": [
  2999. {
  3000. "name": "Frank de Jonge",
  3001. "email": "info@frankdejonge.nl"
  3002. }
  3003. ],
  3004. "description": "Mime-type detection for Flysystem",
  3005. "support": {
  3006. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3007. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  3008. },
  3009. "funding": [
  3010. {
  3011. "url": "https://github.com/frankdejonge",
  3012. "type": "github"
  3013. },
  3014. {
  3015. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3016. "type": "tidelift"
  3017. }
  3018. ],
  3019. "time": "2024-01-28T23:22:08+00:00"
  3020. },
  3021. {
  3022. "name": "maennchen/zipstream-php",
  3023. "version": "2.4.0",
  3024. "source": {
  3025. "type": "git",
  3026. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3027. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  3028. },
  3029. "dist": {
  3030. "type": "zip",
  3031. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  3032. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  3033. "shasum": "",
  3034. "mirrors": [
  3035. {
  3036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3037. "preferred": true
  3038. }
  3039. ]
  3040. },
  3041. "require": {
  3042. "ext-mbstring": "*",
  3043. "myclabs/php-enum": "^1.5",
  3044. "php": "^8.0",
  3045. "psr/http-message": "^1.0"
  3046. },
  3047. "require-dev": {
  3048. "ext-zip": "*",
  3049. "friendsofphp/php-cs-fixer": "^3.9",
  3050. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  3051. "mikey179/vfsstream": "^1.6",
  3052. "php-coveralls/php-coveralls": "^2.4",
  3053. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  3054. "vimeo/psalm": "^5.0"
  3055. },
  3056. "type": "library",
  3057. "autoload": {
  3058. "psr-4": {
  3059. "ZipStream\\": "src/"
  3060. }
  3061. },
  3062. "notification-url": "https://packagist.org/downloads/",
  3063. "license": [
  3064. "MIT"
  3065. ],
  3066. "authors": [
  3067. {
  3068. "name": "Paul Duncan",
  3069. "email": "pabs@pablotron.org"
  3070. },
  3071. {
  3072. "name": "Jonatan Männchen",
  3073. "email": "jonatan@maennchen.ch"
  3074. },
  3075. {
  3076. "name": "Jesse Donat",
  3077. "email": "donatj@gmail.com"
  3078. },
  3079. {
  3080. "name": "András Kolesár",
  3081. "email": "kolesar@kolesar.hu"
  3082. }
  3083. ],
  3084. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3085. "keywords": [
  3086. "stream",
  3087. "zip"
  3088. ],
  3089. "support": {
  3090. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3091. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  3092. },
  3093. "funding": [
  3094. {
  3095. "url": "https://github.com/maennchen",
  3096. "type": "github"
  3097. },
  3098. {
  3099. "url": "https://opencollective.com/zipstream",
  3100. "type": "open_collective"
  3101. }
  3102. ],
  3103. "time": "2022-12-08T12:29:14+00:00"
  3104. },
  3105. {
  3106. "name": "markbaker/complex",
  3107. "version": "3.0.2",
  3108. "source": {
  3109. "type": "git",
  3110. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3111. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3112. },
  3113. "dist": {
  3114. "type": "zip",
  3115. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3116. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3117. "shasum": "",
  3118. "mirrors": [
  3119. {
  3120. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3121. "preferred": true
  3122. }
  3123. ]
  3124. },
  3125. "require": {
  3126. "php": "^7.2 || ^8.0"
  3127. },
  3128. "require-dev": {
  3129. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3130. "phpcompatibility/php-compatibility": "^9.3",
  3131. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3132. "squizlabs/php_codesniffer": "^3.7"
  3133. },
  3134. "type": "library",
  3135. "autoload": {
  3136. "psr-4": {
  3137. "Complex\\": "classes/src/"
  3138. }
  3139. },
  3140. "notification-url": "https://packagist.org/downloads/",
  3141. "license": [
  3142. "MIT"
  3143. ],
  3144. "authors": [
  3145. {
  3146. "name": "Mark Baker",
  3147. "email": "mark@lange.demon.co.uk"
  3148. }
  3149. ],
  3150. "description": "PHP Class for working with complex numbers",
  3151. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3152. "keywords": [
  3153. "complex",
  3154. "mathematics"
  3155. ],
  3156. "support": {
  3157. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3158. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3159. },
  3160. "time": "2022-12-06T16:21:08+00:00"
  3161. },
  3162. {
  3163. "name": "markbaker/matrix",
  3164. "version": "3.0.1",
  3165. "source": {
  3166. "type": "git",
  3167. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3168. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3169. },
  3170. "dist": {
  3171. "type": "zip",
  3172. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3173. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3174. "shasum": "",
  3175. "mirrors": [
  3176. {
  3177. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3178. "preferred": true
  3179. }
  3180. ]
  3181. },
  3182. "require": {
  3183. "php": "^7.1 || ^8.0"
  3184. },
  3185. "require-dev": {
  3186. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3187. "phpcompatibility/php-compatibility": "^9.3",
  3188. "phpdocumentor/phpdocumentor": "2.*",
  3189. "phploc/phploc": "^4.0",
  3190. "phpmd/phpmd": "2.*",
  3191. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3192. "sebastian/phpcpd": "^4.0",
  3193. "squizlabs/php_codesniffer": "^3.7"
  3194. },
  3195. "type": "library",
  3196. "autoload": {
  3197. "psr-4": {
  3198. "Matrix\\": "classes/src/"
  3199. }
  3200. },
  3201. "notification-url": "https://packagist.org/downloads/",
  3202. "license": [
  3203. "MIT"
  3204. ],
  3205. "authors": [
  3206. {
  3207. "name": "Mark Baker",
  3208. "email": "mark@demon-angel.eu"
  3209. }
  3210. ],
  3211. "description": "PHP Class for working with matrices",
  3212. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3213. "keywords": [
  3214. "mathematics",
  3215. "matrix",
  3216. "vector"
  3217. ],
  3218. "support": {
  3219. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3220. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3221. },
  3222. "time": "2022-12-02T22:17:43+00:00"
  3223. },
  3224. {
  3225. "name": "monolog/monolog",
  3226. "version": "2.10.0",
  3227. "source": {
  3228. "type": "git",
  3229. "url": "https://github.com/Seldaek/monolog.git",
  3230. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  3231. },
  3232. "dist": {
  3233. "type": "zip",
  3234. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  3235. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  3236. "shasum": "",
  3237. "mirrors": [
  3238. {
  3239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3240. "preferred": true
  3241. }
  3242. ]
  3243. },
  3244. "require": {
  3245. "php": ">=7.2",
  3246. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3247. },
  3248. "provide": {
  3249. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3250. },
  3251. "require-dev": {
  3252. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3253. "doctrine/couchdb": "~1.0@dev",
  3254. "elasticsearch/elasticsearch": "^7 || ^8",
  3255. "ext-json": "*",
  3256. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3257. "guzzlehttp/guzzle": "^7.4",
  3258. "guzzlehttp/psr7": "^2.2",
  3259. "mongodb/mongodb": "^1.8",
  3260. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3261. "phpspec/prophecy": "^1.15",
  3262. "phpstan/phpstan": "^1.10",
  3263. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  3264. "predis/predis": "^1.1 || ^2.0",
  3265. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3266. "ruflin/elastica": "^7",
  3267. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3268. "symfony/mailer": "^5.4 || ^6",
  3269. "symfony/mime": "^5.4 || ^6"
  3270. },
  3271. "suggest": {
  3272. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3273. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3274. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3275. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3276. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3277. "ext-mbstring": "Allow to work properly with unicode symbols",
  3278. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3279. "ext-openssl": "Required to send log messages using SSL",
  3280. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3281. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3282. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3283. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3284. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3285. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3286. },
  3287. "type": "library",
  3288. "extra": {
  3289. "branch-alias": {
  3290. "dev-main": "2.x-dev"
  3291. }
  3292. },
  3293. "autoload": {
  3294. "psr-4": {
  3295. "Monolog\\": "src/Monolog"
  3296. }
  3297. },
  3298. "notification-url": "https://packagist.org/downloads/",
  3299. "license": [
  3300. "MIT"
  3301. ],
  3302. "authors": [
  3303. {
  3304. "name": "Jordi Boggiano",
  3305. "email": "j.boggiano@seld.be",
  3306. "homepage": "https://seld.be"
  3307. }
  3308. ],
  3309. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3310. "homepage": "https://github.com/Seldaek/monolog",
  3311. "keywords": [
  3312. "log",
  3313. "logging",
  3314. "psr-3"
  3315. ],
  3316. "support": {
  3317. "issues": "https://github.com/Seldaek/monolog/issues",
  3318. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  3319. },
  3320. "funding": [
  3321. {
  3322. "url": "https://github.com/Seldaek",
  3323. "type": "github"
  3324. },
  3325. {
  3326. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3327. "type": "tidelift"
  3328. }
  3329. ],
  3330. "time": "2024-11-12T12:43:37+00:00"
  3331. },
  3332. {
  3333. "name": "myclabs/php-enum",
  3334. "version": "1.8.4",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://github.com/myclabs/php-enum.git",
  3338. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3343. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3344. "shasum": "",
  3345. "mirrors": [
  3346. {
  3347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3348. "preferred": true
  3349. }
  3350. ]
  3351. },
  3352. "require": {
  3353. "ext-json": "*",
  3354. "php": "^7.3 || ^8.0"
  3355. },
  3356. "require-dev": {
  3357. "phpunit/phpunit": "^9.5",
  3358. "squizlabs/php_codesniffer": "1.*",
  3359. "vimeo/psalm": "^4.6.2"
  3360. },
  3361. "type": "library",
  3362. "autoload": {
  3363. "psr-4": {
  3364. "MyCLabs\\Enum\\": "src/"
  3365. },
  3366. "classmap": [
  3367. "stubs/Stringable.php"
  3368. ]
  3369. },
  3370. "notification-url": "https://packagist.org/downloads/",
  3371. "license": [
  3372. "MIT"
  3373. ],
  3374. "authors": [
  3375. {
  3376. "name": "PHP Enum contributors",
  3377. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3378. }
  3379. ],
  3380. "description": "PHP Enum implementation",
  3381. "homepage": "http://github.com/myclabs/php-enum",
  3382. "keywords": [
  3383. "enum"
  3384. ],
  3385. "support": {
  3386. "issues": "https://github.com/myclabs/php-enum/issues",
  3387. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3388. },
  3389. "funding": [
  3390. {
  3391. "url": "https://github.com/mnapoli",
  3392. "type": "github"
  3393. },
  3394. {
  3395. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3396. "type": "tidelift"
  3397. }
  3398. ],
  3399. "time": "2022-08-04T09:53:51+00:00"
  3400. },
  3401. {
  3402. "name": "nesbot/carbon",
  3403. "version": "2.73.0",
  3404. "source": {
  3405. "type": "git",
  3406. "url": "https://github.com/CarbonPHP/carbon.git",
  3407. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  3408. },
  3409. "dist": {
  3410. "type": "zip",
  3411. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3412. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3413. "shasum": "",
  3414. "mirrors": [
  3415. {
  3416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3417. "preferred": true
  3418. }
  3419. ]
  3420. },
  3421. "require": {
  3422. "carbonphp/carbon-doctrine-types": "*",
  3423. "ext-json": "*",
  3424. "php": "^7.1.8 || ^8.0",
  3425. "psr/clock": "^1.0",
  3426. "symfony/polyfill-mbstring": "^1.0",
  3427. "symfony/polyfill-php80": "^1.16",
  3428. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3429. },
  3430. "provide": {
  3431. "psr/clock-implementation": "1.0"
  3432. },
  3433. "require-dev": {
  3434. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3435. "doctrine/orm": "^2.7 || ^3.0",
  3436. "friendsofphp/php-cs-fixer": "^3.0",
  3437. "kylekatarnls/multi-tester": "^2.0",
  3438. "ondrejmirtes/better-reflection": "<6",
  3439. "phpmd/phpmd": "^2.9",
  3440. "phpstan/extension-installer": "^1.0",
  3441. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3442. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3443. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3444. "squizlabs/php_codesniffer": "^3.4"
  3445. },
  3446. "bin": [
  3447. "bin/carbon"
  3448. ],
  3449. "type": "library",
  3450. "extra": {
  3451. "laravel": {
  3452. "providers": [
  3453. "Carbon\\Laravel\\ServiceProvider"
  3454. ]
  3455. },
  3456. "phpstan": {
  3457. "includes": [
  3458. "extension.neon"
  3459. ]
  3460. },
  3461. "branch-alias": {
  3462. "dev-2.x": "2.x-dev",
  3463. "dev-master": "3.x-dev"
  3464. }
  3465. },
  3466. "autoload": {
  3467. "psr-4": {
  3468. "Carbon\\": "src/Carbon/"
  3469. }
  3470. },
  3471. "notification-url": "https://packagist.org/downloads/",
  3472. "license": [
  3473. "MIT"
  3474. ],
  3475. "authors": [
  3476. {
  3477. "name": "Brian Nesbitt",
  3478. "email": "brian@nesbot.com",
  3479. "homepage": "https://markido.com"
  3480. },
  3481. {
  3482. "name": "kylekatarnls",
  3483. "homepage": "https://github.com/kylekatarnls"
  3484. }
  3485. ],
  3486. "description": "An API extension for DateTime that supports 281 different languages.",
  3487. "homepage": "https://carbon.nesbot.com",
  3488. "keywords": [
  3489. "date",
  3490. "datetime",
  3491. "time"
  3492. ],
  3493. "support": {
  3494. "docs": "https://carbon.nesbot.com/docs",
  3495. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3496. "source": "https://github.com/briannesbitt/Carbon"
  3497. },
  3498. "funding": [
  3499. {
  3500. "url": "https://github.com/sponsors/kylekatarnls",
  3501. "type": "github"
  3502. },
  3503. {
  3504. "url": "https://opencollective.com/Carbon#sponsor",
  3505. "type": "opencollective"
  3506. },
  3507. {
  3508. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3509. "type": "tidelift"
  3510. }
  3511. ],
  3512. "time": "2025-01-08T20:10:23+00:00"
  3513. },
  3514. {
  3515. "name": "nette/schema",
  3516. "version": "v1.2.5",
  3517. "source": {
  3518. "type": "git",
  3519. "url": "https://github.com/nette/schema.git",
  3520. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3521. },
  3522. "dist": {
  3523. "type": "zip",
  3524. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3525. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3526. "shasum": "",
  3527. "mirrors": [
  3528. {
  3529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3530. "preferred": true
  3531. }
  3532. ]
  3533. },
  3534. "require": {
  3535. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3536. "php": "7.1 - 8.3"
  3537. },
  3538. "require-dev": {
  3539. "nette/tester": "^2.3 || ^2.4",
  3540. "phpstan/phpstan-nette": "^1.0",
  3541. "tracy/tracy": "^2.7"
  3542. },
  3543. "type": "library",
  3544. "extra": {
  3545. "branch-alias": {
  3546. "dev-master": "1.2-dev"
  3547. }
  3548. },
  3549. "autoload": {
  3550. "classmap": [
  3551. "src/"
  3552. ]
  3553. },
  3554. "notification-url": "https://packagist.org/downloads/",
  3555. "license": [
  3556. "BSD-3-Clause",
  3557. "GPL-2.0-only",
  3558. "GPL-3.0-only"
  3559. ],
  3560. "authors": [
  3561. {
  3562. "name": "David Grudl",
  3563. "homepage": "https://davidgrudl.com"
  3564. },
  3565. {
  3566. "name": "Nette Community",
  3567. "homepage": "https://nette.org/contributors"
  3568. }
  3569. ],
  3570. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3571. "homepage": "https://nette.org",
  3572. "keywords": [
  3573. "config",
  3574. "nette"
  3575. ],
  3576. "support": {
  3577. "issues": "https://github.com/nette/schema/issues",
  3578. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3579. },
  3580. "time": "2023-10-05T20:37:59+00:00"
  3581. },
  3582. {
  3583. "name": "nette/utils",
  3584. "version": "v4.0.10",
  3585. "source": {
  3586. "type": "git",
  3587. "url": "https://github.com/nette/utils.git",
  3588. "reference": "2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3"
  3589. },
  3590. "dist": {
  3591. "type": "zip",
  3592. "url": "https://api.github.com/repos/nette/utils/zipball/2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3",
  3593. "reference": "2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3",
  3594. "shasum": "",
  3595. "mirrors": [
  3596. {
  3597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3598. "preferred": true
  3599. }
  3600. ]
  3601. },
  3602. "require": {
  3603. "php": "8.0 - 8.5"
  3604. },
  3605. "conflict": {
  3606. "nette/finder": "<3",
  3607. "nette/schema": "<1.2.2"
  3608. },
  3609. "require-dev": {
  3610. "jetbrains/phpstorm-attributes": "^1.2",
  3611. "nette/tester": "^2.5",
  3612. "phpstan/phpstan-nette": "^2.0@stable",
  3613. "tracy/tracy": "^2.9"
  3614. },
  3615. "suggest": {
  3616. "ext-gd": "to use Image",
  3617. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3618. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3619. "ext-json": "to use Nette\\Utils\\Json",
  3620. "ext-mbstring": "to use Strings::lower() etc...",
  3621. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3622. },
  3623. "type": "library",
  3624. "extra": {
  3625. "branch-alias": {
  3626. "dev-master": "4.0-dev"
  3627. }
  3628. },
  3629. "autoload": {
  3630. "psr-4": {
  3631. "Nette\\": "src"
  3632. },
  3633. "classmap": [
  3634. "src/"
  3635. ]
  3636. },
  3637. "notification-url": "https://packagist.org/downloads/",
  3638. "license": [
  3639. "BSD-3-Clause",
  3640. "GPL-2.0-only",
  3641. "GPL-3.0-only"
  3642. ],
  3643. "authors": [
  3644. {
  3645. "name": "David Grudl",
  3646. "homepage": "https://davidgrudl.com"
  3647. },
  3648. {
  3649. "name": "Nette Community",
  3650. "homepage": "https://nette.org/contributors"
  3651. }
  3652. ],
  3653. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3654. "homepage": "https://nette.org",
  3655. "keywords": [
  3656. "array",
  3657. "core",
  3658. "datetime",
  3659. "images",
  3660. "json",
  3661. "nette",
  3662. "paginator",
  3663. "password",
  3664. "slugify",
  3665. "string",
  3666. "unicode",
  3667. "utf-8",
  3668. "utility",
  3669. "validation"
  3670. ],
  3671. "support": {
  3672. "issues": "https://github.com/nette/utils/issues",
  3673. "source": "https://github.com/nette/utils/tree/v4.0.10"
  3674. },
  3675. "time": "2025-12-01T17:30:42+00:00"
  3676. },
  3677. {
  3678. "name": "nikic/php-parser",
  3679. "version": "v5.7.0",
  3680. "source": {
  3681. "type": "git",
  3682. "url": "https://github.com/nikic/PHP-Parser.git",
  3683. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  3684. },
  3685. "dist": {
  3686. "type": "zip",
  3687. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3688. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3689. "shasum": "",
  3690. "mirrors": [
  3691. {
  3692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3693. "preferred": true
  3694. }
  3695. ]
  3696. },
  3697. "require": {
  3698. "ext-ctype": "*",
  3699. "ext-json": "*",
  3700. "ext-tokenizer": "*",
  3701. "php": ">=7.4"
  3702. },
  3703. "require-dev": {
  3704. "ircmaxell/php-yacc": "^0.0.7",
  3705. "phpunit/phpunit": "^9.0"
  3706. },
  3707. "bin": [
  3708. "bin/php-parse"
  3709. ],
  3710. "type": "library",
  3711. "extra": {
  3712. "branch-alias": {
  3713. "dev-master": "5.x-dev"
  3714. }
  3715. },
  3716. "autoload": {
  3717. "psr-4": {
  3718. "PhpParser\\": "lib/PhpParser"
  3719. }
  3720. },
  3721. "notification-url": "https://packagist.org/downloads/",
  3722. "license": [
  3723. "BSD-3-Clause"
  3724. ],
  3725. "authors": [
  3726. {
  3727. "name": "Nikita Popov"
  3728. }
  3729. ],
  3730. "description": "A PHP parser written in PHP",
  3731. "keywords": [
  3732. "parser",
  3733. "php"
  3734. ],
  3735. "support": {
  3736. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3737. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  3738. },
  3739. "time": "2025-12-06T11:56:16+00:00"
  3740. },
  3741. {
  3742. "name": "opis/closure",
  3743. "version": "3.6.3",
  3744. "source": {
  3745. "type": "git",
  3746. "url": "https://github.com/opis/closure.git",
  3747. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3748. },
  3749. "dist": {
  3750. "type": "zip",
  3751. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3752. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3753. "shasum": "",
  3754. "mirrors": [
  3755. {
  3756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3757. "preferred": true
  3758. }
  3759. ]
  3760. },
  3761. "require": {
  3762. "php": "^5.4 || ^7.0 || ^8.0"
  3763. },
  3764. "require-dev": {
  3765. "jeremeamia/superclosure": "^2.0",
  3766. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3767. },
  3768. "type": "library",
  3769. "extra": {
  3770. "branch-alias": {
  3771. "dev-master": "3.6.x-dev"
  3772. }
  3773. },
  3774. "autoload": {
  3775. "files": [
  3776. "functions.php"
  3777. ],
  3778. "psr-4": {
  3779. "Opis\\Closure\\": "src/"
  3780. }
  3781. },
  3782. "notification-url": "https://packagist.org/downloads/",
  3783. "license": [
  3784. "MIT"
  3785. ],
  3786. "authors": [
  3787. {
  3788. "name": "Marius Sarca",
  3789. "email": "marius.sarca@gmail.com"
  3790. },
  3791. {
  3792. "name": "Sorin Sarca",
  3793. "email": "sarca_sorin@hotmail.com"
  3794. }
  3795. ],
  3796. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3797. "homepage": "https://opis.io/closure",
  3798. "keywords": [
  3799. "anonymous functions",
  3800. "closure",
  3801. "function",
  3802. "serializable",
  3803. "serialization",
  3804. "serialize"
  3805. ],
  3806. "support": {
  3807. "issues": "https://github.com/opis/closure/issues",
  3808. "source": "https://github.com/opis/closure/tree/3.6.3"
  3809. },
  3810. "time": "2022-01-27T09:35:39+00:00"
  3811. },
  3812. {
  3813. "name": "overtrue/socialite",
  3814. "version": "4.11.0",
  3815. "source": {
  3816. "type": "git",
  3817. "url": "https://github.com/overtrue/socialite.git",
  3818. "reference": "4929bbb9241818783c5954151ebbbef36d4953f4"
  3819. },
  3820. "dist": {
  3821. "type": "zip",
  3822. "url": "https://api.github.com/repos/overtrue/socialite/zipball/4929bbb9241818783c5954151ebbbef36d4953f4",
  3823. "reference": "4929bbb9241818783c5954151ebbbef36d4953f4",
  3824. "shasum": "",
  3825. "mirrors": [
  3826. {
  3827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3828. "preferred": true
  3829. }
  3830. ]
  3831. },
  3832. "require": {
  3833. "ext-json": "*",
  3834. "ext-openssl": "*",
  3835. "guzzlehttp/guzzle": "^7.0",
  3836. "php": ">=8.0.2",
  3837. "symfony/psr-http-message-bridge": "^2.1|^6.0"
  3838. },
  3839. "require-dev": {
  3840. "jetbrains/phpstorm-attributes": "^1.0",
  3841. "laravel/pint": "^1.2",
  3842. "mockery/mockery": "^1.3",
  3843. "phpstan/phpstan": "^1.7",
  3844. "phpunit/phpunit": "^9.0"
  3845. },
  3846. "type": "library",
  3847. "autoload": {
  3848. "files": [
  3849. "src/Contracts/FactoryInterface.php",
  3850. "src/Contracts/UserInterface.php",
  3851. "src/Contracts/ProviderInterface.php"
  3852. ],
  3853. "psr-4": {
  3854. "Overtrue\\Socialite\\": "src/"
  3855. }
  3856. },
  3857. "notification-url": "https://packagist.org/downloads/",
  3858. "license": [
  3859. "MIT"
  3860. ],
  3861. "authors": [
  3862. {
  3863. "name": "overtrue",
  3864. "email": "anzhengchao@gmail.com"
  3865. }
  3866. ],
  3867. "description": "A collection of OAuth 2 packages.",
  3868. "keywords": [
  3869. "Feishu",
  3870. "login",
  3871. "oauth",
  3872. "qcloud",
  3873. "qq",
  3874. "social",
  3875. "wechat",
  3876. "weibo"
  3877. ],
  3878. "support": {
  3879. "issues": "https://github.com/overtrue/socialite/issues",
  3880. "source": "https://github.com/overtrue/socialite/tree/4.11.0"
  3881. },
  3882. "funding": [
  3883. {
  3884. "url": "https://github.com/overtrue",
  3885. "type": "github"
  3886. }
  3887. ],
  3888. "time": "2024-06-07T06:46:20+00:00"
  3889. },
  3890. {
  3891. "name": "phpoffice/phpspreadsheet",
  3892. "version": "1.30.1",
  3893. "source": {
  3894. "type": "git",
  3895. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3896. "reference": "fa8257a579ec623473eabfe49731de5967306c4c"
  3897. },
  3898. "dist": {
  3899. "type": "zip",
  3900. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fa8257a579ec623473eabfe49731de5967306c4c",
  3901. "reference": "fa8257a579ec623473eabfe49731de5967306c4c",
  3902. "shasum": "",
  3903. "mirrors": [
  3904. {
  3905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3906. "preferred": true
  3907. }
  3908. ]
  3909. },
  3910. "require": {
  3911. "composer/pcre": "^1||^2||^3",
  3912. "ext-ctype": "*",
  3913. "ext-dom": "*",
  3914. "ext-fileinfo": "*",
  3915. "ext-gd": "*",
  3916. "ext-iconv": "*",
  3917. "ext-libxml": "*",
  3918. "ext-mbstring": "*",
  3919. "ext-simplexml": "*",
  3920. "ext-xml": "*",
  3921. "ext-xmlreader": "*",
  3922. "ext-xmlwriter": "*",
  3923. "ext-zip": "*",
  3924. "ext-zlib": "*",
  3925. "ezyang/htmlpurifier": "^4.15",
  3926. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3927. "markbaker/complex": "^3.0",
  3928. "markbaker/matrix": "^3.0",
  3929. "php": ">=7.4.0 <8.5.0",
  3930. "psr/http-client": "^1.0",
  3931. "psr/http-factory": "^1.0",
  3932. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3933. },
  3934. "require-dev": {
  3935. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3936. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  3937. "friendsofphp/php-cs-fixer": "^3.2",
  3938. "mitoteam/jpgraph": "^10.3",
  3939. "mpdf/mpdf": "^8.1.1",
  3940. "phpcompatibility/php-compatibility": "^9.3",
  3941. "phpstan/phpstan": "^1.1",
  3942. "phpstan/phpstan-phpunit": "^1.0",
  3943. "phpunit/phpunit": "^8.5 || ^9.0",
  3944. "squizlabs/php_codesniffer": "^3.7",
  3945. "tecnickcom/tcpdf": "^6.5"
  3946. },
  3947. "suggest": {
  3948. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3949. "ext-intl": "PHP Internationalization Functions",
  3950. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3951. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3952. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3953. },
  3954. "type": "library",
  3955. "autoload": {
  3956. "psr-4": {
  3957. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3958. }
  3959. },
  3960. "notification-url": "https://packagist.org/downloads/",
  3961. "license": [
  3962. "MIT"
  3963. ],
  3964. "authors": [
  3965. {
  3966. "name": "Maarten Balliauw",
  3967. "homepage": "https://blog.maartenballiauw.be"
  3968. },
  3969. {
  3970. "name": "Mark Baker",
  3971. "homepage": "https://markbakeruk.net"
  3972. },
  3973. {
  3974. "name": "Franck Lefevre",
  3975. "homepage": "https://rootslabs.net"
  3976. },
  3977. {
  3978. "name": "Erik Tilt"
  3979. },
  3980. {
  3981. "name": "Adrien Crivelli"
  3982. }
  3983. ],
  3984. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3985. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3986. "keywords": [
  3987. "OpenXML",
  3988. "excel",
  3989. "gnumeric",
  3990. "ods",
  3991. "php",
  3992. "spreadsheet",
  3993. "xls",
  3994. "xlsx"
  3995. ],
  3996. "support": {
  3997. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3998. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.1"
  3999. },
  4000. "time": "2025-10-26T16:01:04+00:00"
  4001. },
  4002. {
  4003. "name": "phpoption/phpoption",
  4004. "version": "dev-master",
  4005. "source": {
  4006. "type": "git",
  4007. "url": "https://github.com/schmittjoh/php-option.git",
  4008. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  4009. },
  4010. "dist": {
  4011. "type": "zip",
  4012. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4013. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4014. "shasum": "",
  4015. "mirrors": [
  4016. {
  4017. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4018. "preferred": true
  4019. }
  4020. ]
  4021. },
  4022. "require": {
  4023. "php": "^7.2.5 || ^8.0"
  4024. },
  4025. "require-dev": {
  4026. "bamarni/composer-bin-plugin": "^1.8.2",
  4027. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  4028. },
  4029. "default-branch": true,
  4030. "type": "library",
  4031. "extra": {
  4032. "bamarni-bin": {
  4033. "bin-links": true,
  4034. "forward-command": false
  4035. },
  4036. "branch-alias": {
  4037. "dev-master": "1.9-dev"
  4038. }
  4039. },
  4040. "autoload": {
  4041. "psr-4": {
  4042. "PhpOption\\": "src/PhpOption/"
  4043. }
  4044. },
  4045. "notification-url": "https://packagist.org/downloads/",
  4046. "license": [
  4047. "Apache-2.0"
  4048. ],
  4049. "authors": [
  4050. {
  4051. "name": "Johannes M. Schmitt",
  4052. "email": "schmittjoh@gmail.com",
  4053. "homepage": "https://github.com/schmittjoh"
  4054. },
  4055. {
  4056. "name": "Graham Campbell",
  4057. "email": "hello@gjcampbell.co.uk",
  4058. "homepage": "https://github.com/GrahamCampbell"
  4059. }
  4060. ],
  4061. "description": "Option Type for PHP",
  4062. "keywords": [
  4063. "language",
  4064. "option",
  4065. "php",
  4066. "type"
  4067. ],
  4068. "support": {
  4069. "issues": "https://github.com/schmittjoh/php-option/issues",
  4070. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  4071. },
  4072. "funding": [
  4073. {
  4074. "url": "https://github.com/GrahamCampbell",
  4075. "type": "github"
  4076. },
  4077. {
  4078. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4079. "type": "tidelift"
  4080. }
  4081. ],
  4082. "time": "2024-07-20T21:41:07+00:00"
  4083. },
  4084. {
  4085. "name": "pimple/pimple",
  4086. "version": "v3.6.0",
  4087. "source": {
  4088. "type": "git",
  4089. "url": "https://github.com/silexphp/Pimple.git",
  4090. "reference": "a70f552d338f9266eec6606c1f0b324da5514c96"
  4091. },
  4092. "dist": {
  4093. "type": "zip",
  4094. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a70f552d338f9266eec6606c1f0b324da5514c96",
  4095. "reference": "a70f552d338f9266eec6606c1f0b324da5514c96",
  4096. "shasum": "",
  4097. "mirrors": [
  4098. {
  4099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4100. "preferred": true
  4101. }
  4102. ]
  4103. },
  4104. "require": {
  4105. "php": ">=7.2.5",
  4106. "psr/container": "^1.1 || ^2.0"
  4107. },
  4108. "require-dev": {
  4109. "phpunit/phpunit": "*"
  4110. },
  4111. "type": "library",
  4112. "extra": {
  4113. "branch-alias": {
  4114. "dev-master": "3.4.x-dev"
  4115. }
  4116. },
  4117. "autoload": {
  4118. "psr-0": {
  4119. "Pimple": "src/"
  4120. }
  4121. },
  4122. "notification-url": "https://packagist.org/downloads/",
  4123. "license": [
  4124. "MIT"
  4125. ],
  4126. "authors": [
  4127. {
  4128. "name": "Fabien Potencier",
  4129. "email": "fabien@symfony.com"
  4130. }
  4131. ],
  4132. "description": "Pimple, a simple Dependency Injection Container",
  4133. "homepage": "https://pimple.symfony.com",
  4134. "keywords": [
  4135. "container",
  4136. "dependency injection"
  4137. ],
  4138. "support": {
  4139. "source": "https://github.com/silexphp/Pimple/tree/v3.6.0"
  4140. },
  4141. "time": "2025-11-12T12:31:38+00:00"
  4142. },
  4143. {
  4144. "name": "psr/cache",
  4145. "version": "3.0.0",
  4146. "source": {
  4147. "type": "git",
  4148. "url": "https://github.com/php-fig/cache.git",
  4149. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4150. },
  4151. "dist": {
  4152. "type": "zip",
  4153. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4154. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4155. "shasum": "",
  4156. "mirrors": [
  4157. {
  4158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4159. "preferred": true
  4160. }
  4161. ]
  4162. },
  4163. "require": {
  4164. "php": ">=8.0.0"
  4165. },
  4166. "type": "library",
  4167. "extra": {
  4168. "branch-alias": {
  4169. "dev-master": "1.0.x-dev"
  4170. }
  4171. },
  4172. "autoload": {
  4173. "psr-4": {
  4174. "Psr\\Cache\\": "src/"
  4175. }
  4176. },
  4177. "notification-url": "https://packagist.org/downloads/",
  4178. "license": [
  4179. "MIT"
  4180. ],
  4181. "authors": [
  4182. {
  4183. "name": "PHP-FIG",
  4184. "homepage": "https://www.php-fig.org/"
  4185. }
  4186. ],
  4187. "description": "Common interface for caching libraries",
  4188. "keywords": [
  4189. "cache",
  4190. "psr",
  4191. "psr-6"
  4192. ],
  4193. "support": {
  4194. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4195. },
  4196. "time": "2021-02-03T23:26:27+00:00"
  4197. },
  4198. {
  4199. "name": "psr/clock",
  4200. "version": "1.0.0",
  4201. "source": {
  4202. "type": "git",
  4203. "url": "https://github.com/php-fig/clock.git",
  4204. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4205. },
  4206. "dist": {
  4207. "type": "zip",
  4208. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4209. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4210. "shasum": "",
  4211. "mirrors": [
  4212. {
  4213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4214. "preferred": true
  4215. }
  4216. ]
  4217. },
  4218. "require": {
  4219. "php": "^7.0 || ^8.0"
  4220. },
  4221. "type": "library",
  4222. "autoload": {
  4223. "psr-4": {
  4224. "Psr\\Clock\\": "src/"
  4225. }
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "authors": [
  4232. {
  4233. "name": "PHP-FIG",
  4234. "homepage": "https://www.php-fig.org/"
  4235. }
  4236. ],
  4237. "description": "Common interface for reading the clock.",
  4238. "homepage": "https://github.com/php-fig/clock",
  4239. "keywords": [
  4240. "clock",
  4241. "now",
  4242. "psr",
  4243. "psr-20",
  4244. "time"
  4245. ],
  4246. "support": {
  4247. "issues": "https://github.com/php-fig/clock/issues",
  4248. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4249. },
  4250. "time": "2022-11-25T14:36:26+00:00"
  4251. },
  4252. {
  4253. "name": "psr/container",
  4254. "version": "1.1.2",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://github.com/php-fig/container.git",
  4258. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4259. },
  4260. "dist": {
  4261. "type": "zip",
  4262. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4263. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4264. "shasum": "",
  4265. "mirrors": [
  4266. {
  4267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4268. "preferred": true
  4269. }
  4270. ]
  4271. },
  4272. "require": {
  4273. "php": ">=7.4.0"
  4274. },
  4275. "type": "library",
  4276. "autoload": {
  4277. "psr-4": {
  4278. "Psr\\Container\\": "src/"
  4279. }
  4280. },
  4281. "notification-url": "https://packagist.org/downloads/",
  4282. "license": [
  4283. "MIT"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "PHP-FIG",
  4288. "homepage": "https://www.php-fig.org/"
  4289. }
  4290. ],
  4291. "description": "Common Container Interface (PHP FIG PSR-11)",
  4292. "homepage": "https://github.com/php-fig/container",
  4293. "keywords": [
  4294. "PSR-11",
  4295. "container",
  4296. "container-interface",
  4297. "container-interop",
  4298. "psr"
  4299. ],
  4300. "support": {
  4301. "issues": "https://github.com/php-fig/container/issues",
  4302. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4303. },
  4304. "time": "2021-11-05T16:50:12+00:00"
  4305. },
  4306. {
  4307. "name": "psr/event-dispatcher",
  4308. "version": "1.0.0",
  4309. "source": {
  4310. "type": "git",
  4311. "url": "https://github.com/php-fig/event-dispatcher.git",
  4312. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4313. },
  4314. "dist": {
  4315. "type": "zip",
  4316. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4317. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4318. "shasum": "",
  4319. "mirrors": [
  4320. {
  4321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4322. "preferred": true
  4323. }
  4324. ]
  4325. },
  4326. "require": {
  4327. "php": ">=7.2.0"
  4328. },
  4329. "type": "library",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-master": "1.0.x-dev"
  4333. }
  4334. },
  4335. "autoload": {
  4336. "psr-4": {
  4337. "Psr\\EventDispatcher\\": "src/"
  4338. }
  4339. },
  4340. "notification-url": "https://packagist.org/downloads/",
  4341. "license": [
  4342. "MIT"
  4343. ],
  4344. "authors": [
  4345. {
  4346. "name": "PHP-FIG",
  4347. "homepage": "http://www.php-fig.org/"
  4348. }
  4349. ],
  4350. "description": "Standard interfaces for event handling.",
  4351. "keywords": [
  4352. "events",
  4353. "psr",
  4354. "psr-14"
  4355. ],
  4356. "support": {
  4357. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4358. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4359. },
  4360. "time": "2019-01-08T18:20:26+00:00"
  4361. },
  4362. {
  4363. "name": "psr/http-client",
  4364. "version": "1.0.3",
  4365. "source": {
  4366. "type": "git",
  4367. "url": "https://github.com/php-fig/http-client.git",
  4368. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4369. },
  4370. "dist": {
  4371. "type": "zip",
  4372. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4373. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4374. "shasum": "",
  4375. "mirrors": [
  4376. {
  4377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4378. "preferred": true
  4379. }
  4380. ]
  4381. },
  4382. "require": {
  4383. "php": "^7.0 || ^8.0",
  4384. "psr/http-message": "^1.0 || ^2.0"
  4385. },
  4386. "type": "library",
  4387. "extra": {
  4388. "branch-alias": {
  4389. "dev-master": "1.0.x-dev"
  4390. }
  4391. },
  4392. "autoload": {
  4393. "psr-4": {
  4394. "Psr\\Http\\Client\\": "src/"
  4395. }
  4396. },
  4397. "notification-url": "https://packagist.org/downloads/",
  4398. "license": [
  4399. "MIT"
  4400. ],
  4401. "authors": [
  4402. {
  4403. "name": "PHP-FIG",
  4404. "homepage": "https://www.php-fig.org/"
  4405. }
  4406. ],
  4407. "description": "Common interface for HTTP clients",
  4408. "homepage": "https://github.com/php-fig/http-client",
  4409. "keywords": [
  4410. "http",
  4411. "http-client",
  4412. "psr",
  4413. "psr-18"
  4414. ],
  4415. "support": {
  4416. "source": "https://github.com/php-fig/http-client"
  4417. },
  4418. "time": "2023-09-23T14:17:50+00:00"
  4419. },
  4420. {
  4421. "name": "psr/http-factory",
  4422. "version": "1.0.2",
  4423. "source": {
  4424. "type": "git",
  4425. "url": "https://github.com/php-fig/http-factory.git",
  4426. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4427. },
  4428. "dist": {
  4429. "type": "zip",
  4430. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4431. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4432. "shasum": "",
  4433. "mirrors": [
  4434. {
  4435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4436. "preferred": true
  4437. }
  4438. ]
  4439. },
  4440. "require": {
  4441. "php": ">=7.0.0",
  4442. "psr/http-message": "^1.0 || ^2.0"
  4443. },
  4444. "type": "library",
  4445. "extra": {
  4446. "branch-alias": {
  4447. "dev-master": "1.0.x-dev"
  4448. }
  4449. },
  4450. "autoload": {
  4451. "psr-4": {
  4452. "Psr\\Http\\Message\\": "src/"
  4453. }
  4454. },
  4455. "notification-url": "https://packagist.org/downloads/",
  4456. "license": [
  4457. "MIT"
  4458. ],
  4459. "authors": [
  4460. {
  4461. "name": "PHP-FIG",
  4462. "homepage": "https://www.php-fig.org/"
  4463. }
  4464. ],
  4465. "description": "Common interfaces for PSR-7 HTTP message factories",
  4466. "keywords": [
  4467. "factory",
  4468. "http",
  4469. "message",
  4470. "psr",
  4471. "psr-17",
  4472. "psr-7",
  4473. "request",
  4474. "response"
  4475. ],
  4476. "support": {
  4477. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4478. },
  4479. "time": "2023-04-10T20:10:41+00:00"
  4480. },
  4481. {
  4482. "name": "psr/http-message",
  4483. "version": "1.1",
  4484. "source": {
  4485. "type": "git",
  4486. "url": "https://github.com/php-fig/http-message.git",
  4487. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4488. },
  4489. "dist": {
  4490. "type": "zip",
  4491. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4492. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4493. "shasum": "",
  4494. "mirrors": [
  4495. {
  4496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4497. "preferred": true
  4498. }
  4499. ]
  4500. },
  4501. "require": {
  4502. "php": "^7.2 || ^8.0"
  4503. },
  4504. "type": "library",
  4505. "extra": {
  4506. "branch-alias": {
  4507. "dev-master": "1.1.x-dev"
  4508. }
  4509. },
  4510. "autoload": {
  4511. "psr-4": {
  4512. "Psr\\Http\\Message\\": "src/"
  4513. }
  4514. },
  4515. "notification-url": "https://packagist.org/downloads/",
  4516. "license": [
  4517. "MIT"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "PHP-FIG",
  4522. "homepage": "http://www.php-fig.org/"
  4523. }
  4524. ],
  4525. "description": "Common interface for HTTP messages",
  4526. "homepage": "https://github.com/php-fig/http-message",
  4527. "keywords": [
  4528. "http",
  4529. "http-message",
  4530. "psr",
  4531. "psr-7",
  4532. "request",
  4533. "response"
  4534. ],
  4535. "support": {
  4536. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4537. },
  4538. "time": "2023-04-04T09:50:52+00:00"
  4539. },
  4540. {
  4541. "name": "psr/log",
  4542. "version": "2.0.0",
  4543. "source": {
  4544. "type": "git",
  4545. "url": "https://github.com/php-fig/log.git",
  4546. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4547. },
  4548. "dist": {
  4549. "type": "zip",
  4550. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4551. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4552. "shasum": "",
  4553. "mirrors": [
  4554. {
  4555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4556. "preferred": true
  4557. }
  4558. ]
  4559. },
  4560. "require": {
  4561. "php": ">=8.0.0"
  4562. },
  4563. "type": "library",
  4564. "extra": {
  4565. "branch-alias": {
  4566. "dev-master": "2.0.x-dev"
  4567. }
  4568. },
  4569. "autoload": {
  4570. "psr-4": {
  4571. "Psr\\Log\\": "src"
  4572. }
  4573. },
  4574. "notification-url": "https://packagist.org/downloads/",
  4575. "license": [
  4576. "MIT"
  4577. ],
  4578. "authors": [
  4579. {
  4580. "name": "PHP-FIG",
  4581. "homepage": "https://www.php-fig.org/"
  4582. }
  4583. ],
  4584. "description": "Common interface for logging libraries",
  4585. "homepage": "https://github.com/php-fig/log",
  4586. "keywords": [
  4587. "log",
  4588. "psr",
  4589. "psr-3"
  4590. ],
  4591. "support": {
  4592. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4593. },
  4594. "time": "2021-07-14T16:41:46+00:00"
  4595. },
  4596. {
  4597. "name": "psr/simple-cache",
  4598. "version": "1.0.1",
  4599. "source": {
  4600. "type": "git",
  4601. "url": "https://github.com/php-fig/simple-cache.git",
  4602. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4603. },
  4604. "dist": {
  4605. "type": "zip",
  4606. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4607. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4608. "shasum": "",
  4609. "mirrors": [
  4610. {
  4611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4612. "preferred": true
  4613. }
  4614. ]
  4615. },
  4616. "require": {
  4617. "php": ">=5.3.0"
  4618. },
  4619. "type": "library",
  4620. "extra": {
  4621. "branch-alias": {
  4622. "dev-master": "1.0.x-dev"
  4623. }
  4624. },
  4625. "autoload": {
  4626. "psr-4": {
  4627. "Psr\\SimpleCache\\": "src/"
  4628. }
  4629. },
  4630. "notification-url": "https://packagist.org/downloads/",
  4631. "license": [
  4632. "MIT"
  4633. ],
  4634. "authors": [
  4635. {
  4636. "name": "PHP-FIG",
  4637. "homepage": "http://www.php-fig.org/"
  4638. }
  4639. ],
  4640. "description": "Common interfaces for simple caching",
  4641. "keywords": [
  4642. "cache",
  4643. "caching",
  4644. "psr",
  4645. "psr-16",
  4646. "simple-cache"
  4647. ],
  4648. "support": {
  4649. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4650. },
  4651. "time": "2017-10-23T01:57:42+00:00"
  4652. },
  4653. {
  4654. "name": "psy/psysh",
  4655. "version": "v0.12.15",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://github.com/bobthecow/psysh.git",
  4659. "reference": "38953bc71491c838fcb6ebcbdc41ab7483cd549c"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/38953bc71491c838fcb6ebcbdc41ab7483cd549c",
  4664. "reference": "38953bc71491c838fcb6ebcbdc41ab7483cd549c",
  4665. "shasum": "",
  4666. "mirrors": [
  4667. {
  4668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4669. "preferred": true
  4670. }
  4671. ]
  4672. },
  4673. "require": {
  4674. "ext-json": "*",
  4675. "ext-tokenizer": "*",
  4676. "nikic/php-parser": "^5.0 || ^4.0",
  4677. "php": "^8.0 || ^7.4",
  4678. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4679. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4680. },
  4681. "conflict": {
  4682. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4683. },
  4684. "require-dev": {
  4685. "bamarni/composer-bin-plugin": "^1.2",
  4686. "composer/class-map-generator": "^1.6"
  4687. },
  4688. "suggest": {
  4689. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  4690. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4691. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4692. },
  4693. "bin": [
  4694. "bin/psysh"
  4695. ],
  4696. "type": "library",
  4697. "extra": {
  4698. "bamarni-bin": {
  4699. "bin-links": false,
  4700. "forward-command": false
  4701. },
  4702. "branch-alias": {
  4703. "dev-main": "0.12.x-dev"
  4704. }
  4705. },
  4706. "autoload": {
  4707. "files": [
  4708. "src/functions.php"
  4709. ],
  4710. "psr-4": {
  4711. "Psy\\": "src/"
  4712. }
  4713. },
  4714. "notification-url": "https://packagist.org/downloads/",
  4715. "license": [
  4716. "MIT"
  4717. ],
  4718. "authors": [
  4719. {
  4720. "name": "Justin Hileman",
  4721. "email": "justin@justinhileman.info"
  4722. }
  4723. ],
  4724. "description": "An interactive shell for modern PHP.",
  4725. "homepage": "https://psysh.org",
  4726. "keywords": [
  4727. "REPL",
  4728. "console",
  4729. "interactive",
  4730. "shell"
  4731. ],
  4732. "support": {
  4733. "issues": "https://github.com/bobthecow/psysh/issues",
  4734. "source": "https://github.com/bobthecow/psysh/tree/v0.12.15"
  4735. },
  4736. "time": "2025-11-28T00:00:14+00:00"
  4737. },
  4738. {
  4739. "name": "ralouphie/getallheaders",
  4740. "version": "3.0.3",
  4741. "source": {
  4742. "type": "git",
  4743. "url": "https://github.com/ralouphie/getallheaders.git",
  4744. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4745. },
  4746. "dist": {
  4747. "type": "zip",
  4748. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4749. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4750. "shasum": "",
  4751. "mirrors": [
  4752. {
  4753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4754. "preferred": true
  4755. }
  4756. ]
  4757. },
  4758. "require": {
  4759. "php": ">=5.6"
  4760. },
  4761. "require-dev": {
  4762. "php-coveralls/php-coveralls": "^2.1",
  4763. "phpunit/phpunit": "^5 || ^6.5"
  4764. },
  4765. "type": "library",
  4766. "autoload": {
  4767. "files": [
  4768. "src/getallheaders.php"
  4769. ]
  4770. },
  4771. "notification-url": "https://packagist.org/downloads/",
  4772. "license": [
  4773. "MIT"
  4774. ],
  4775. "authors": [
  4776. {
  4777. "name": "Ralph Khattar",
  4778. "email": "ralph.khattar@gmail.com"
  4779. }
  4780. ],
  4781. "description": "A polyfill for getallheaders.",
  4782. "support": {
  4783. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4784. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4785. },
  4786. "time": "2019-03-08T08:55:37+00:00"
  4787. },
  4788. {
  4789. "name": "ramsey/collection",
  4790. "version": "1.3.0",
  4791. "source": {
  4792. "type": "git",
  4793. "url": "https://github.com/ramsey/collection.git",
  4794. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4795. },
  4796. "dist": {
  4797. "type": "zip",
  4798. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4799. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4800. "shasum": "",
  4801. "mirrors": [
  4802. {
  4803. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4804. "preferred": true
  4805. }
  4806. ]
  4807. },
  4808. "require": {
  4809. "php": "^7.4 || ^8.0",
  4810. "symfony/polyfill-php81": "^1.23"
  4811. },
  4812. "require-dev": {
  4813. "captainhook/plugin-composer": "^5.3",
  4814. "ergebnis/composer-normalize": "^2.28.3",
  4815. "fakerphp/faker": "^1.21",
  4816. "hamcrest/hamcrest-php": "^2.0",
  4817. "jangregor/phpstan-prophecy": "^1.0",
  4818. "mockery/mockery": "^1.5",
  4819. "php-parallel-lint/php-console-highlighter": "^1.0",
  4820. "php-parallel-lint/php-parallel-lint": "^1.3",
  4821. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4822. "phpspec/prophecy-phpunit": "^2.0",
  4823. "phpstan/extension-installer": "^1.2",
  4824. "phpstan/phpstan": "^1.9",
  4825. "phpstan/phpstan-mockery": "^1.1",
  4826. "phpstan/phpstan-phpunit": "^1.3",
  4827. "phpunit/phpunit": "^9.5",
  4828. "psalm/plugin-mockery": "^1.1",
  4829. "psalm/plugin-phpunit": "^0.18.4",
  4830. "ramsey/coding-standard": "^2.0.3",
  4831. "ramsey/conventional-commits": "^1.3",
  4832. "vimeo/psalm": "^5.4"
  4833. },
  4834. "type": "library",
  4835. "extra": {
  4836. "captainhook": {
  4837. "force-install": true
  4838. },
  4839. "ramsey/conventional-commits": {
  4840. "configFile": "conventional-commits.json"
  4841. }
  4842. },
  4843. "autoload": {
  4844. "psr-4": {
  4845. "Ramsey\\Collection\\": "src/"
  4846. }
  4847. },
  4848. "notification-url": "https://packagist.org/downloads/",
  4849. "license": [
  4850. "MIT"
  4851. ],
  4852. "authors": [
  4853. {
  4854. "name": "Ben Ramsey",
  4855. "email": "ben@benramsey.com",
  4856. "homepage": "https://benramsey.com"
  4857. }
  4858. ],
  4859. "description": "A PHP library for representing and manipulating collections.",
  4860. "keywords": [
  4861. "array",
  4862. "collection",
  4863. "hash",
  4864. "map",
  4865. "queue",
  4866. "set"
  4867. ],
  4868. "support": {
  4869. "issues": "https://github.com/ramsey/collection/issues",
  4870. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4871. },
  4872. "funding": [
  4873. {
  4874. "url": "https://github.com/ramsey",
  4875. "type": "github"
  4876. },
  4877. {
  4878. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4879. "type": "tidelift"
  4880. }
  4881. ],
  4882. "time": "2022-12-27T19:12:24+00:00"
  4883. },
  4884. {
  4885. "name": "ramsey/uuid",
  4886. "version": "4.9.0",
  4887. "source": {
  4888. "type": "git",
  4889. "url": "https://github.com/ramsey/uuid.git",
  4890. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4891. },
  4892. "dist": {
  4893. "type": "zip",
  4894. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4895. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4896. "shasum": "",
  4897. "mirrors": [
  4898. {
  4899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4900. "preferred": true
  4901. }
  4902. ]
  4903. },
  4904. "require": {
  4905. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4906. "php": "^8.0",
  4907. "ramsey/collection": "^1.2 || ^2.0"
  4908. },
  4909. "replace": {
  4910. "rhumsaa/uuid": "self.version"
  4911. },
  4912. "require-dev": {
  4913. "captainhook/captainhook": "^5.25",
  4914. "captainhook/plugin-composer": "^5.3",
  4915. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4916. "ergebnis/composer-normalize": "^2.47",
  4917. "mockery/mockery": "^1.6",
  4918. "paragonie/random-lib": "^2",
  4919. "php-mock/php-mock": "^2.6",
  4920. "php-mock/php-mock-mockery": "^1.5",
  4921. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4922. "phpbench/phpbench": "^1.2.14",
  4923. "phpstan/extension-installer": "^1.4",
  4924. "phpstan/phpstan": "^2.1",
  4925. "phpstan/phpstan-mockery": "^2.0",
  4926. "phpstan/phpstan-phpunit": "^2.0",
  4927. "phpunit/phpunit": "^9.6",
  4928. "slevomat/coding-standard": "^8.18",
  4929. "squizlabs/php_codesniffer": "^3.13"
  4930. },
  4931. "suggest": {
  4932. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4933. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4934. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4935. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4936. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4937. },
  4938. "type": "library",
  4939. "extra": {
  4940. "captainhook": {
  4941. "force-install": true
  4942. }
  4943. },
  4944. "autoload": {
  4945. "files": [
  4946. "src/functions.php"
  4947. ],
  4948. "psr-4": {
  4949. "Ramsey\\Uuid\\": "src/"
  4950. }
  4951. },
  4952. "notification-url": "https://packagist.org/downloads/",
  4953. "license": [
  4954. "MIT"
  4955. ],
  4956. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4957. "keywords": [
  4958. "guid",
  4959. "identifier",
  4960. "uuid"
  4961. ],
  4962. "support": {
  4963. "issues": "https://github.com/ramsey/uuid/issues",
  4964. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  4965. },
  4966. "time": "2025-06-25T14:20:11+00:00"
  4967. },
  4968. {
  4969. "name": "swiftmailer/swiftmailer",
  4970. "version": "v6.3.0",
  4971. "source": {
  4972. "type": "git",
  4973. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4974. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4975. },
  4976. "dist": {
  4977. "type": "zip",
  4978. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4979. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4980. "shasum": "",
  4981. "mirrors": [
  4982. {
  4983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4984. "preferred": true
  4985. }
  4986. ]
  4987. },
  4988. "require": {
  4989. "egulias/email-validator": "^2.0|^3.1",
  4990. "php": ">=7.0.0",
  4991. "symfony/polyfill-iconv": "^1.0",
  4992. "symfony/polyfill-intl-idn": "^1.10",
  4993. "symfony/polyfill-mbstring": "^1.0"
  4994. },
  4995. "require-dev": {
  4996. "mockery/mockery": "^1.0",
  4997. "symfony/phpunit-bridge": "^4.4|^5.4"
  4998. },
  4999. "suggest": {
  5000. "ext-intl": "Needed to support internationalized email addresses"
  5001. },
  5002. "type": "library",
  5003. "extra": {
  5004. "branch-alias": {
  5005. "dev-master": "6.2-dev"
  5006. }
  5007. },
  5008. "autoload": {
  5009. "files": [
  5010. "lib/swift_required.php"
  5011. ]
  5012. },
  5013. "notification-url": "https://packagist.org/downloads/",
  5014. "license": [
  5015. "MIT"
  5016. ],
  5017. "authors": [
  5018. {
  5019. "name": "Chris Corbyn"
  5020. },
  5021. {
  5022. "name": "Fabien Potencier",
  5023. "email": "fabien@symfony.com"
  5024. }
  5025. ],
  5026. "description": "Swiftmailer, free feature-rich PHP mailer",
  5027. "homepage": "https://swiftmailer.symfony.com",
  5028. "keywords": [
  5029. "email",
  5030. "mail",
  5031. "mailer"
  5032. ],
  5033. "support": {
  5034. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5035. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5036. },
  5037. "funding": [
  5038. {
  5039. "url": "https://github.com/fabpot",
  5040. "type": "github"
  5041. },
  5042. {
  5043. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5044. "type": "tidelift"
  5045. }
  5046. ],
  5047. "abandoned": "symfony/mailer",
  5048. "time": "2021-10-18T15:26:12+00:00"
  5049. },
  5050. {
  5051. "name": "symfony/cache",
  5052. "version": "v6.0.19",
  5053. "source": {
  5054. "type": "git",
  5055. "url": "https://github.com/symfony/cache.git",
  5056. "reference": "81ca309f056e836480928b20280ec52ce8369bb3"
  5057. },
  5058. "dist": {
  5059. "type": "zip",
  5060. "url": "https://api.github.com/repos/symfony/cache/zipball/81ca309f056e836480928b20280ec52ce8369bb3",
  5061. "reference": "81ca309f056e836480928b20280ec52ce8369bb3",
  5062. "shasum": "",
  5063. "mirrors": [
  5064. {
  5065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5066. "preferred": true
  5067. }
  5068. ]
  5069. },
  5070. "require": {
  5071. "php": ">=8.0.2",
  5072. "psr/cache": "^2.0|^3.0",
  5073. "psr/log": "^1.1|^2|^3",
  5074. "symfony/cache-contracts": "^1.1.7|^2|^3",
  5075. "symfony/service-contracts": "^1.1|^2|^3",
  5076. "symfony/var-exporter": "^5.4|^6.0"
  5077. },
  5078. "conflict": {
  5079. "doctrine/dbal": "<2.13.1",
  5080. "symfony/dependency-injection": "<5.4",
  5081. "symfony/http-kernel": "<5.4",
  5082. "symfony/var-dumper": "<5.4"
  5083. },
  5084. "provide": {
  5085. "psr/cache-implementation": "2.0|3.0",
  5086. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  5087. "symfony/cache-implementation": "1.1|2.0|3.0"
  5088. },
  5089. "require-dev": {
  5090. "cache/integration-tests": "dev-master",
  5091. "doctrine/dbal": "^2.13.1|^3.0",
  5092. "predis/predis": "^1.1",
  5093. "psr/simple-cache": "^1.0|^2.0|^3.0",
  5094. "symfony/config": "^5.4|^6.0",
  5095. "symfony/dependency-injection": "^5.4|^6.0",
  5096. "symfony/filesystem": "^5.4|^6.0",
  5097. "symfony/http-kernel": "^5.4|^6.0",
  5098. "symfony/messenger": "^5.4|^6.0",
  5099. "symfony/var-dumper": "^5.4|^6.0"
  5100. },
  5101. "type": "library",
  5102. "autoload": {
  5103. "psr-4": {
  5104. "Symfony\\Component\\Cache\\": ""
  5105. },
  5106. "exclude-from-classmap": [
  5107. "/Tests/"
  5108. ]
  5109. },
  5110. "notification-url": "https://packagist.org/downloads/",
  5111. "license": [
  5112. "MIT"
  5113. ],
  5114. "authors": [
  5115. {
  5116. "name": "Nicolas Grekas",
  5117. "email": "p@tchwork.com"
  5118. },
  5119. {
  5120. "name": "Symfony Community",
  5121. "homepage": "https://symfony.com/contributors"
  5122. }
  5123. ],
  5124. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5125. "homepage": "https://symfony.com",
  5126. "keywords": [
  5127. "caching",
  5128. "psr6"
  5129. ],
  5130. "support": {
  5131. "source": "https://github.com/symfony/cache/tree/v6.0.19"
  5132. },
  5133. "funding": [
  5134. {
  5135. "url": "https://symfony.com/sponsor",
  5136. "type": "custom"
  5137. },
  5138. {
  5139. "url": "https://github.com/fabpot",
  5140. "type": "github"
  5141. },
  5142. {
  5143. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5144. "type": "tidelift"
  5145. }
  5146. ],
  5147. "time": "2023-01-20T17:44:14+00:00"
  5148. },
  5149. {
  5150. "name": "symfony/cache-contracts",
  5151. "version": "v3.0.2",
  5152. "source": {
  5153. "type": "git",
  5154. "url": "https://github.com/symfony/cache-contracts.git",
  5155. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348"
  5156. },
  5157. "dist": {
  5158. "type": "zip",
  5159. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  5160. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  5161. "shasum": "",
  5162. "mirrors": [
  5163. {
  5164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5165. "preferred": true
  5166. }
  5167. ]
  5168. },
  5169. "require": {
  5170. "php": ">=8.0.2",
  5171. "psr/cache": "^3.0"
  5172. },
  5173. "suggest": {
  5174. "symfony/cache-implementation": ""
  5175. },
  5176. "type": "library",
  5177. "extra": {
  5178. "thanks": {
  5179. "url": "https://github.com/symfony/contracts",
  5180. "name": "symfony/contracts"
  5181. },
  5182. "branch-alias": {
  5183. "dev-main": "3.0-dev"
  5184. }
  5185. },
  5186. "autoload": {
  5187. "psr-4": {
  5188. "Symfony\\Contracts\\Cache\\": ""
  5189. }
  5190. },
  5191. "notification-url": "https://packagist.org/downloads/",
  5192. "license": [
  5193. "MIT"
  5194. ],
  5195. "authors": [
  5196. {
  5197. "name": "Nicolas Grekas",
  5198. "email": "p@tchwork.com"
  5199. },
  5200. {
  5201. "name": "Symfony Community",
  5202. "homepage": "https://symfony.com/contributors"
  5203. }
  5204. ],
  5205. "description": "Generic abstractions related to caching",
  5206. "homepage": "https://symfony.com",
  5207. "keywords": [
  5208. "abstractions",
  5209. "contracts",
  5210. "decoupling",
  5211. "interfaces",
  5212. "interoperability",
  5213. "standards"
  5214. ],
  5215. "support": {
  5216. "source": "https://github.com/symfony/cache-contracts/tree/v3.0.2"
  5217. },
  5218. "funding": [
  5219. {
  5220. "url": "https://symfony.com/sponsor",
  5221. "type": "custom"
  5222. },
  5223. {
  5224. "url": "https://github.com/fabpot",
  5225. "type": "github"
  5226. },
  5227. {
  5228. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5229. "type": "tidelift"
  5230. }
  5231. ],
  5232. "time": "2022-01-02T09:55:41+00:00"
  5233. },
  5234. {
  5235. "name": "symfony/console",
  5236. "version": "v5.4.47",
  5237. "source": {
  5238. "type": "git",
  5239. "url": "https://github.com/symfony/console.git",
  5240. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  5241. },
  5242. "dist": {
  5243. "type": "zip",
  5244. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5245. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5246. "shasum": "",
  5247. "mirrors": [
  5248. {
  5249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5250. "preferred": true
  5251. }
  5252. ]
  5253. },
  5254. "require": {
  5255. "php": ">=7.2.5",
  5256. "symfony/deprecation-contracts": "^2.1|^3",
  5257. "symfony/polyfill-mbstring": "~1.0",
  5258. "symfony/polyfill-php73": "^1.9",
  5259. "symfony/polyfill-php80": "^1.16",
  5260. "symfony/service-contracts": "^1.1|^2|^3",
  5261. "symfony/string": "^5.1|^6.0"
  5262. },
  5263. "conflict": {
  5264. "psr/log": ">=3",
  5265. "symfony/dependency-injection": "<4.4",
  5266. "symfony/dotenv": "<5.1",
  5267. "symfony/event-dispatcher": "<4.4",
  5268. "symfony/lock": "<4.4",
  5269. "symfony/process": "<4.4"
  5270. },
  5271. "provide": {
  5272. "psr/log-implementation": "1.0|2.0"
  5273. },
  5274. "require-dev": {
  5275. "psr/log": "^1|^2",
  5276. "symfony/config": "^4.4|^5.0|^6.0",
  5277. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5278. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5279. "symfony/lock": "^4.4|^5.0|^6.0",
  5280. "symfony/process": "^4.4|^5.0|^6.0",
  5281. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5282. },
  5283. "suggest": {
  5284. "psr/log": "For using the console logger",
  5285. "symfony/event-dispatcher": "",
  5286. "symfony/lock": "",
  5287. "symfony/process": ""
  5288. },
  5289. "type": "library",
  5290. "autoload": {
  5291. "psr-4": {
  5292. "Symfony\\Component\\Console\\": ""
  5293. },
  5294. "exclude-from-classmap": [
  5295. "/Tests/"
  5296. ]
  5297. },
  5298. "notification-url": "https://packagist.org/downloads/",
  5299. "license": [
  5300. "MIT"
  5301. ],
  5302. "authors": [
  5303. {
  5304. "name": "Fabien Potencier",
  5305. "email": "fabien@symfony.com"
  5306. },
  5307. {
  5308. "name": "Symfony Community",
  5309. "homepage": "https://symfony.com/contributors"
  5310. }
  5311. ],
  5312. "description": "Eases the creation of beautiful and testable command line interfaces",
  5313. "homepage": "https://symfony.com",
  5314. "keywords": [
  5315. "cli",
  5316. "command-line",
  5317. "console",
  5318. "terminal"
  5319. ],
  5320. "support": {
  5321. "source": "https://github.com/symfony/console/tree/v5.4.47"
  5322. },
  5323. "funding": [
  5324. {
  5325. "url": "https://symfony.com/sponsor",
  5326. "type": "custom"
  5327. },
  5328. {
  5329. "url": "https://github.com/fabpot",
  5330. "type": "github"
  5331. },
  5332. {
  5333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5334. "type": "tidelift"
  5335. }
  5336. ],
  5337. "time": "2024-11-06T11:30:55+00:00"
  5338. },
  5339. {
  5340. "name": "symfony/css-selector",
  5341. "version": "v6.0.19",
  5342. "source": {
  5343. "type": "git",
  5344. "url": "https://github.com/symfony/css-selector.git",
  5345. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5346. },
  5347. "dist": {
  5348. "type": "zip",
  5349. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5350. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5351. "shasum": "",
  5352. "mirrors": [
  5353. {
  5354. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5355. "preferred": true
  5356. }
  5357. ]
  5358. },
  5359. "require": {
  5360. "php": ">=8.0.2"
  5361. },
  5362. "type": "library",
  5363. "autoload": {
  5364. "psr-4": {
  5365. "Symfony\\Component\\CssSelector\\": ""
  5366. },
  5367. "exclude-from-classmap": [
  5368. "/Tests/"
  5369. ]
  5370. },
  5371. "notification-url": "https://packagist.org/downloads/",
  5372. "license": [
  5373. "MIT"
  5374. ],
  5375. "authors": [
  5376. {
  5377. "name": "Fabien Potencier",
  5378. "email": "fabien@symfony.com"
  5379. },
  5380. {
  5381. "name": "Jean-François Simon",
  5382. "email": "jeanfrancois.simon@sensiolabs.com"
  5383. },
  5384. {
  5385. "name": "Symfony Community",
  5386. "homepage": "https://symfony.com/contributors"
  5387. }
  5388. ],
  5389. "description": "Converts CSS selectors to XPath expressions",
  5390. "homepage": "https://symfony.com",
  5391. "support": {
  5392. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5393. },
  5394. "funding": [
  5395. {
  5396. "url": "https://symfony.com/sponsor",
  5397. "type": "custom"
  5398. },
  5399. {
  5400. "url": "https://github.com/fabpot",
  5401. "type": "github"
  5402. },
  5403. {
  5404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5405. "type": "tidelift"
  5406. }
  5407. ],
  5408. "time": "2023-01-01T08:36:10+00:00"
  5409. },
  5410. {
  5411. "name": "symfony/deprecation-contracts",
  5412. "version": "v3.0.2",
  5413. "source": {
  5414. "type": "git",
  5415. "url": "https://github.com/symfony/deprecation-contracts.git",
  5416. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5417. },
  5418. "dist": {
  5419. "type": "zip",
  5420. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5421. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5422. "shasum": "",
  5423. "mirrors": [
  5424. {
  5425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5426. "preferred": true
  5427. }
  5428. ]
  5429. },
  5430. "require": {
  5431. "php": ">=8.0.2"
  5432. },
  5433. "type": "library",
  5434. "extra": {
  5435. "thanks": {
  5436. "url": "https://github.com/symfony/contracts",
  5437. "name": "symfony/contracts"
  5438. },
  5439. "branch-alias": {
  5440. "dev-main": "3.0-dev"
  5441. }
  5442. },
  5443. "autoload": {
  5444. "files": [
  5445. "function.php"
  5446. ]
  5447. },
  5448. "notification-url": "https://packagist.org/downloads/",
  5449. "license": [
  5450. "MIT"
  5451. ],
  5452. "authors": [
  5453. {
  5454. "name": "Nicolas Grekas",
  5455. "email": "p@tchwork.com"
  5456. },
  5457. {
  5458. "name": "Symfony Community",
  5459. "homepage": "https://symfony.com/contributors"
  5460. }
  5461. ],
  5462. "description": "A generic function and convention to trigger deprecation notices",
  5463. "homepage": "https://symfony.com",
  5464. "support": {
  5465. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5466. },
  5467. "funding": [
  5468. {
  5469. "url": "https://symfony.com/sponsor",
  5470. "type": "custom"
  5471. },
  5472. {
  5473. "url": "https://github.com/fabpot",
  5474. "type": "github"
  5475. },
  5476. {
  5477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5478. "type": "tidelift"
  5479. }
  5480. ],
  5481. "time": "2022-01-02T09:55:41+00:00"
  5482. },
  5483. {
  5484. "name": "symfony/error-handler",
  5485. "version": "v5.4.46",
  5486. "source": {
  5487. "type": "git",
  5488. "url": "https://github.com/symfony/error-handler.git",
  5489. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363"
  5490. },
  5491. "dist": {
  5492. "type": "zip",
  5493. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5494. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5495. "shasum": "",
  5496. "mirrors": [
  5497. {
  5498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5499. "preferred": true
  5500. }
  5501. ]
  5502. },
  5503. "require": {
  5504. "php": ">=7.2.5",
  5505. "psr/log": "^1|^2|^3",
  5506. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5507. },
  5508. "require-dev": {
  5509. "symfony/deprecation-contracts": "^2.1|^3",
  5510. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5511. "symfony/serializer": "^4.4|^5.0|^6.0"
  5512. },
  5513. "bin": [
  5514. "Resources/bin/patch-type-declarations"
  5515. ],
  5516. "type": "library",
  5517. "autoload": {
  5518. "psr-4": {
  5519. "Symfony\\Component\\ErrorHandler\\": ""
  5520. },
  5521. "exclude-from-classmap": [
  5522. "/Tests/"
  5523. ]
  5524. },
  5525. "notification-url": "https://packagist.org/downloads/",
  5526. "license": [
  5527. "MIT"
  5528. ],
  5529. "authors": [
  5530. {
  5531. "name": "Fabien Potencier",
  5532. "email": "fabien@symfony.com"
  5533. },
  5534. {
  5535. "name": "Symfony Community",
  5536. "homepage": "https://symfony.com/contributors"
  5537. }
  5538. ],
  5539. "description": "Provides tools to manage errors and ease debugging PHP code",
  5540. "homepage": "https://symfony.com",
  5541. "support": {
  5542. "source": "https://github.com/symfony/error-handler/tree/v5.4.46"
  5543. },
  5544. "funding": [
  5545. {
  5546. "url": "https://symfony.com/sponsor",
  5547. "type": "custom"
  5548. },
  5549. {
  5550. "url": "https://github.com/fabpot",
  5551. "type": "github"
  5552. },
  5553. {
  5554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5555. "type": "tidelift"
  5556. }
  5557. ],
  5558. "time": "2024-11-05T14:17:06+00:00"
  5559. },
  5560. {
  5561. "name": "symfony/event-dispatcher",
  5562. "version": "v6.0.19",
  5563. "source": {
  5564. "type": "git",
  5565. "url": "https://github.com/symfony/event-dispatcher.git",
  5566. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5567. },
  5568. "dist": {
  5569. "type": "zip",
  5570. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5571. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5572. "shasum": "",
  5573. "mirrors": [
  5574. {
  5575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5576. "preferred": true
  5577. }
  5578. ]
  5579. },
  5580. "require": {
  5581. "php": ">=8.0.2",
  5582. "symfony/event-dispatcher-contracts": "^2|^3"
  5583. },
  5584. "conflict": {
  5585. "symfony/dependency-injection": "<5.4"
  5586. },
  5587. "provide": {
  5588. "psr/event-dispatcher-implementation": "1.0",
  5589. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5590. },
  5591. "require-dev": {
  5592. "psr/log": "^1|^2|^3",
  5593. "symfony/config": "^5.4|^6.0",
  5594. "symfony/dependency-injection": "^5.4|^6.0",
  5595. "symfony/error-handler": "^5.4|^6.0",
  5596. "symfony/expression-language": "^5.4|^6.0",
  5597. "symfony/http-foundation": "^5.4|^6.0",
  5598. "symfony/service-contracts": "^1.1|^2|^3",
  5599. "symfony/stopwatch": "^5.4|^6.0"
  5600. },
  5601. "suggest": {
  5602. "symfony/dependency-injection": "",
  5603. "symfony/http-kernel": ""
  5604. },
  5605. "type": "library",
  5606. "autoload": {
  5607. "psr-4": {
  5608. "Symfony\\Component\\EventDispatcher\\": ""
  5609. },
  5610. "exclude-from-classmap": [
  5611. "/Tests/"
  5612. ]
  5613. },
  5614. "notification-url": "https://packagist.org/downloads/",
  5615. "license": [
  5616. "MIT"
  5617. ],
  5618. "authors": [
  5619. {
  5620. "name": "Fabien Potencier",
  5621. "email": "fabien@symfony.com"
  5622. },
  5623. {
  5624. "name": "Symfony Community",
  5625. "homepage": "https://symfony.com/contributors"
  5626. }
  5627. ],
  5628. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5629. "homepage": "https://symfony.com",
  5630. "support": {
  5631. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5632. },
  5633. "funding": [
  5634. {
  5635. "url": "https://symfony.com/sponsor",
  5636. "type": "custom"
  5637. },
  5638. {
  5639. "url": "https://github.com/fabpot",
  5640. "type": "github"
  5641. },
  5642. {
  5643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5644. "type": "tidelift"
  5645. }
  5646. ],
  5647. "time": "2023-01-01T08:36:10+00:00"
  5648. },
  5649. {
  5650. "name": "symfony/event-dispatcher-contracts",
  5651. "version": "v3.0.2",
  5652. "source": {
  5653. "type": "git",
  5654. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5655. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5656. },
  5657. "dist": {
  5658. "type": "zip",
  5659. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5660. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5661. "shasum": "",
  5662. "mirrors": [
  5663. {
  5664. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5665. "preferred": true
  5666. }
  5667. ]
  5668. },
  5669. "require": {
  5670. "php": ">=8.0.2",
  5671. "psr/event-dispatcher": "^1"
  5672. },
  5673. "suggest": {
  5674. "symfony/event-dispatcher-implementation": ""
  5675. },
  5676. "type": "library",
  5677. "extra": {
  5678. "thanks": {
  5679. "url": "https://github.com/symfony/contracts",
  5680. "name": "symfony/contracts"
  5681. },
  5682. "branch-alias": {
  5683. "dev-main": "3.0-dev"
  5684. }
  5685. },
  5686. "autoload": {
  5687. "psr-4": {
  5688. "Symfony\\Contracts\\EventDispatcher\\": ""
  5689. }
  5690. },
  5691. "notification-url": "https://packagist.org/downloads/",
  5692. "license": [
  5693. "MIT"
  5694. ],
  5695. "authors": [
  5696. {
  5697. "name": "Nicolas Grekas",
  5698. "email": "p@tchwork.com"
  5699. },
  5700. {
  5701. "name": "Symfony Community",
  5702. "homepage": "https://symfony.com/contributors"
  5703. }
  5704. ],
  5705. "description": "Generic abstractions related to dispatching event",
  5706. "homepage": "https://symfony.com",
  5707. "keywords": [
  5708. "abstractions",
  5709. "contracts",
  5710. "decoupling",
  5711. "interfaces",
  5712. "interoperability",
  5713. "standards"
  5714. ],
  5715. "support": {
  5716. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  5717. },
  5718. "funding": [
  5719. {
  5720. "url": "https://symfony.com/sponsor",
  5721. "type": "custom"
  5722. },
  5723. {
  5724. "url": "https://github.com/fabpot",
  5725. "type": "github"
  5726. },
  5727. {
  5728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5729. "type": "tidelift"
  5730. }
  5731. ],
  5732. "time": "2022-01-02T09:55:41+00:00"
  5733. },
  5734. {
  5735. "name": "symfony/finder",
  5736. "version": "v5.4.45",
  5737. "source": {
  5738. "type": "git",
  5739. "url": "https://github.com/symfony/finder.git",
  5740. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  5741. },
  5742. "dist": {
  5743. "type": "zip",
  5744. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  5745. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  5746. "shasum": "",
  5747. "mirrors": [
  5748. {
  5749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5750. "preferred": true
  5751. }
  5752. ]
  5753. },
  5754. "require": {
  5755. "php": ">=7.2.5",
  5756. "symfony/deprecation-contracts": "^2.1|^3",
  5757. "symfony/polyfill-php80": "^1.16"
  5758. },
  5759. "type": "library",
  5760. "autoload": {
  5761. "psr-4": {
  5762. "Symfony\\Component\\Finder\\": ""
  5763. },
  5764. "exclude-from-classmap": [
  5765. "/Tests/"
  5766. ]
  5767. },
  5768. "notification-url": "https://packagist.org/downloads/",
  5769. "license": [
  5770. "MIT"
  5771. ],
  5772. "authors": [
  5773. {
  5774. "name": "Fabien Potencier",
  5775. "email": "fabien@symfony.com"
  5776. },
  5777. {
  5778. "name": "Symfony Community",
  5779. "homepage": "https://symfony.com/contributors"
  5780. }
  5781. ],
  5782. "description": "Finds files and directories via an intuitive fluent interface",
  5783. "homepage": "https://symfony.com",
  5784. "support": {
  5785. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  5786. },
  5787. "funding": [
  5788. {
  5789. "url": "https://symfony.com/sponsor",
  5790. "type": "custom"
  5791. },
  5792. {
  5793. "url": "https://github.com/fabpot",
  5794. "type": "github"
  5795. },
  5796. {
  5797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5798. "type": "tidelift"
  5799. }
  5800. ],
  5801. "time": "2024-09-28T13:32:08+00:00"
  5802. },
  5803. {
  5804. "name": "symfony/http-foundation",
  5805. "version": "v5.4.50",
  5806. "source": {
  5807. "type": "git",
  5808. "url": "https://github.com/symfony/http-foundation.git",
  5809. "reference": "1a0706e8b8041046052ea2695eb8aeee04f97609"
  5810. },
  5811. "dist": {
  5812. "type": "zip",
  5813. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1a0706e8b8041046052ea2695eb8aeee04f97609",
  5814. "reference": "1a0706e8b8041046052ea2695eb8aeee04f97609",
  5815. "shasum": "",
  5816. "mirrors": [
  5817. {
  5818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5819. "preferred": true
  5820. }
  5821. ]
  5822. },
  5823. "require": {
  5824. "php": ">=7.2.5",
  5825. "symfony/deprecation-contracts": "^2.1|^3",
  5826. "symfony/polyfill-mbstring": "~1.1",
  5827. "symfony/polyfill-php80": "^1.16"
  5828. },
  5829. "require-dev": {
  5830. "predis/predis": "^1.0|^2.0",
  5831. "symfony/cache": "^4.4|^5.0|^6.0",
  5832. "symfony/dependency-injection": "^5.4|^6.0",
  5833. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5834. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5835. "symfony/mime": "^4.4|^5.0|^6.0",
  5836. "symfony/rate-limiter": "^5.2|^6.0"
  5837. },
  5838. "suggest": {
  5839. "symfony/mime": "To use the file extension guesser"
  5840. },
  5841. "type": "library",
  5842. "autoload": {
  5843. "psr-4": {
  5844. "Symfony\\Component\\HttpFoundation\\": ""
  5845. },
  5846. "exclude-from-classmap": [
  5847. "/Tests/"
  5848. ]
  5849. },
  5850. "notification-url": "https://packagist.org/downloads/",
  5851. "license": [
  5852. "MIT"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "Fabien Potencier",
  5857. "email": "fabien@symfony.com"
  5858. },
  5859. {
  5860. "name": "Symfony Community",
  5861. "homepage": "https://symfony.com/contributors"
  5862. }
  5863. ],
  5864. "description": "Defines an object-oriented layer for the HTTP specification",
  5865. "homepage": "https://symfony.com",
  5866. "support": {
  5867. "source": "https://github.com/symfony/http-foundation/tree/v5.4.50"
  5868. },
  5869. "funding": [
  5870. {
  5871. "url": "https://symfony.com/sponsor",
  5872. "type": "custom"
  5873. },
  5874. {
  5875. "url": "https://github.com/fabpot",
  5876. "type": "github"
  5877. },
  5878. {
  5879. "url": "https://github.com/nicolas-grekas",
  5880. "type": "github"
  5881. },
  5882. {
  5883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5884. "type": "tidelift"
  5885. }
  5886. ],
  5887. "time": "2025-11-03T12:58:48+00:00"
  5888. },
  5889. {
  5890. "name": "symfony/http-kernel",
  5891. "version": "v5.4.50",
  5892. "source": {
  5893. "type": "git",
  5894. "url": "https://github.com/symfony/http-kernel.git",
  5895. "reference": "2fe5cf994d7e1e189258b7f7d3395cc5999a9762"
  5896. },
  5897. "dist": {
  5898. "type": "zip",
  5899. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2fe5cf994d7e1e189258b7f7d3395cc5999a9762",
  5900. "reference": "2fe5cf994d7e1e189258b7f7d3395cc5999a9762",
  5901. "shasum": "",
  5902. "mirrors": [
  5903. {
  5904. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5905. "preferred": true
  5906. }
  5907. ]
  5908. },
  5909. "require": {
  5910. "php": ">=7.2.5",
  5911. "psr/log": "^1|^2",
  5912. "symfony/deprecation-contracts": "^2.1|^3",
  5913. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5914. "symfony/event-dispatcher": "^5.0|^6.0",
  5915. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5916. "symfony/polyfill-ctype": "^1.8",
  5917. "symfony/polyfill-php73": "^1.9",
  5918. "symfony/polyfill-php80": "^1.16"
  5919. },
  5920. "conflict": {
  5921. "symfony/browser-kit": "<5.4",
  5922. "symfony/cache": "<5.0",
  5923. "symfony/config": "<5.0",
  5924. "symfony/console": "<4.4",
  5925. "symfony/dependency-injection": "<5.3",
  5926. "symfony/doctrine-bridge": "<5.0",
  5927. "symfony/form": "<5.0",
  5928. "symfony/http-client": "<5.0",
  5929. "symfony/mailer": "<5.0",
  5930. "symfony/messenger": "<5.0",
  5931. "symfony/translation": "<5.0",
  5932. "symfony/twig-bridge": "<5.0",
  5933. "symfony/validator": "<5.0",
  5934. "twig/twig": "<2.13"
  5935. },
  5936. "provide": {
  5937. "psr/log-implementation": "1.0|2.0"
  5938. },
  5939. "require-dev": {
  5940. "psr/cache": "^1.0|^2.0|^3.0",
  5941. "symfony/browser-kit": "^5.4|^6.0",
  5942. "symfony/config": "^5.0|^6.0",
  5943. "symfony/console": "^4.4|^5.0|^6.0",
  5944. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5945. "symfony/dependency-injection": "^5.3|^6.0",
  5946. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5947. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5948. "symfony/finder": "^4.4|^5.0|^6.0",
  5949. "symfony/http-client-contracts": "^1.1|^2|^3",
  5950. "symfony/process": "^4.4|^5.0|^6.0",
  5951. "symfony/routing": "^4.4|^5.0|^6.0",
  5952. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  5953. "symfony/translation": "^4.4|^5.0|^6.0",
  5954. "symfony/translation-contracts": "^1.1|^2|^3",
  5955. "symfony/var-dumper": "^4.4.31|^5.4",
  5956. "twig/twig": "^2.13|^3.0.4"
  5957. },
  5958. "suggest": {
  5959. "symfony/browser-kit": "",
  5960. "symfony/config": "",
  5961. "symfony/console": "",
  5962. "symfony/dependency-injection": ""
  5963. },
  5964. "type": "library",
  5965. "autoload": {
  5966. "psr-4": {
  5967. "Symfony\\Component\\HttpKernel\\": ""
  5968. },
  5969. "exclude-from-classmap": [
  5970. "/Tests/"
  5971. ]
  5972. },
  5973. "notification-url": "https://packagist.org/downloads/",
  5974. "license": [
  5975. "MIT"
  5976. ],
  5977. "authors": [
  5978. {
  5979. "name": "Fabien Potencier",
  5980. "email": "fabien@symfony.com"
  5981. },
  5982. {
  5983. "name": "Symfony Community",
  5984. "homepage": "https://symfony.com/contributors"
  5985. }
  5986. ],
  5987. "description": "Provides a structured process for converting a Request into a Response",
  5988. "homepage": "https://symfony.com",
  5989. "support": {
  5990. "source": "https://github.com/symfony/http-kernel/tree/v5.4.50"
  5991. },
  5992. "funding": [
  5993. {
  5994. "url": "https://symfony.com/sponsor",
  5995. "type": "custom"
  5996. },
  5997. {
  5998. "url": "https://github.com/fabpot",
  5999. "type": "github"
  6000. },
  6001. {
  6002. "url": "https://github.com/nicolas-grekas",
  6003. "type": "github"
  6004. },
  6005. {
  6006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6007. "type": "tidelift"
  6008. }
  6009. ],
  6010. "time": "2025-11-12T11:09:00+00:00"
  6011. },
  6012. {
  6013. "name": "symfony/mime",
  6014. "version": "v5.4.45",
  6015. "source": {
  6016. "type": "git",
  6017. "url": "https://github.com/symfony/mime.git",
  6018. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
  6019. },
  6020. "dist": {
  6021. "type": "zip",
  6022. "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
  6023. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
  6024. "shasum": "",
  6025. "mirrors": [
  6026. {
  6027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6028. "preferred": true
  6029. }
  6030. ]
  6031. },
  6032. "require": {
  6033. "php": ">=7.2.5",
  6034. "symfony/deprecation-contracts": "^2.1|^3",
  6035. "symfony/polyfill-intl-idn": "^1.10",
  6036. "symfony/polyfill-mbstring": "^1.0",
  6037. "symfony/polyfill-php80": "^1.16"
  6038. },
  6039. "conflict": {
  6040. "egulias/email-validator": "~3.0.0",
  6041. "phpdocumentor/reflection-docblock": "<3.2.2",
  6042. "phpdocumentor/type-resolver": "<1.4.0",
  6043. "symfony/mailer": "<4.4",
  6044. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  6045. },
  6046. "require-dev": {
  6047. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6048. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6049. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6050. "symfony/process": "^5.4|^6.4",
  6051. "symfony/property-access": "^4.4|^5.1|^6.0",
  6052. "symfony/property-info": "^4.4|^5.1|^6.0",
  6053. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  6054. },
  6055. "type": "library",
  6056. "autoload": {
  6057. "psr-4": {
  6058. "Symfony\\Component\\Mime\\": ""
  6059. },
  6060. "exclude-from-classmap": [
  6061. "/Tests/"
  6062. ]
  6063. },
  6064. "notification-url": "https://packagist.org/downloads/",
  6065. "license": [
  6066. "MIT"
  6067. ],
  6068. "authors": [
  6069. {
  6070. "name": "Fabien Potencier",
  6071. "email": "fabien@symfony.com"
  6072. },
  6073. {
  6074. "name": "Symfony Community",
  6075. "homepage": "https://symfony.com/contributors"
  6076. }
  6077. ],
  6078. "description": "Allows manipulating MIME messages",
  6079. "homepage": "https://symfony.com",
  6080. "keywords": [
  6081. "mime",
  6082. "mime-type"
  6083. ],
  6084. "support": {
  6085. "source": "https://github.com/symfony/mime/tree/v5.4.45"
  6086. },
  6087. "funding": [
  6088. {
  6089. "url": "https://symfony.com/sponsor",
  6090. "type": "custom"
  6091. },
  6092. {
  6093. "url": "https://github.com/fabpot",
  6094. "type": "github"
  6095. },
  6096. {
  6097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6098. "type": "tidelift"
  6099. }
  6100. ],
  6101. "time": "2024-10-23T20:18:32+00:00"
  6102. },
  6103. {
  6104. "name": "symfony/polyfill-ctype",
  6105. "version": "v1.32.0",
  6106. "source": {
  6107. "type": "git",
  6108. "url": "https://github.com/symfony/polyfill-ctype.git",
  6109. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6110. },
  6111. "dist": {
  6112. "type": "zip",
  6113. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6114. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6115. "shasum": "",
  6116. "mirrors": [
  6117. {
  6118. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6119. "preferred": true
  6120. }
  6121. ]
  6122. },
  6123. "require": {
  6124. "php": ">=7.2"
  6125. },
  6126. "provide": {
  6127. "ext-ctype": "*"
  6128. },
  6129. "suggest": {
  6130. "ext-ctype": "For best performance"
  6131. },
  6132. "type": "library",
  6133. "extra": {
  6134. "thanks": {
  6135. "url": "https://github.com/symfony/polyfill",
  6136. "name": "symfony/polyfill"
  6137. }
  6138. },
  6139. "autoload": {
  6140. "files": [
  6141. "bootstrap.php"
  6142. ],
  6143. "psr-4": {
  6144. "Symfony\\Polyfill\\Ctype\\": ""
  6145. }
  6146. },
  6147. "notification-url": "https://packagist.org/downloads/",
  6148. "license": [
  6149. "MIT"
  6150. ],
  6151. "authors": [
  6152. {
  6153. "name": "Gert de Pagter",
  6154. "email": "BackEndTea@gmail.com"
  6155. },
  6156. {
  6157. "name": "Symfony Community",
  6158. "homepage": "https://symfony.com/contributors"
  6159. }
  6160. ],
  6161. "description": "Symfony polyfill for ctype functions",
  6162. "homepage": "https://symfony.com",
  6163. "keywords": [
  6164. "compatibility",
  6165. "ctype",
  6166. "polyfill",
  6167. "portable"
  6168. ],
  6169. "support": {
  6170. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  6171. },
  6172. "funding": [
  6173. {
  6174. "url": "https://symfony.com/sponsor",
  6175. "type": "custom"
  6176. },
  6177. {
  6178. "url": "https://github.com/fabpot",
  6179. "type": "github"
  6180. },
  6181. {
  6182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6183. "type": "tidelift"
  6184. }
  6185. ],
  6186. "time": "2024-09-09T11:45:10+00:00"
  6187. },
  6188. {
  6189. "name": "symfony/polyfill-iconv",
  6190. "version": "v1.32.0",
  6191. "source": {
  6192. "type": "git",
  6193. "url": "https://github.com/symfony/polyfill-iconv.git",
  6194. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  6195. },
  6196. "dist": {
  6197. "type": "zip",
  6198. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6199. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6200. "shasum": "",
  6201. "mirrors": [
  6202. {
  6203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6204. "preferred": true
  6205. }
  6206. ]
  6207. },
  6208. "require": {
  6209. "php": ">=7.2"
  6210. },
  6211. "provide": {
  6212. "ext-iconv": "*"
  6213. },
  6214. "suggest": {
  6215. "ext-iconv": "For best performance"
  6216. },
  6217. "type": "library",
  6218. "extra": {
  6219. "thanks": {
  6220. "url": "https://github.com/symfony/polyfill",
  6221. "name": "symfony/polyfill"
  6222. }
  6223. },
  6224. "autoload": {
  6225. "files": [
  6226. "bootstrap.php"
  6227. ],
  6228. "psr-4": {
  6229. "Symfony\\Polyfill\\Iconv\\": ""
  6230. }
  6231. },
  6232. "notification-url": "https://packagist.org/downloads/",
  6233. "license": [
  6234. "MIT"
  6235. ],
  6236. "authors": [
  6237. {
  6238. "name": "Nicolas Grekas",
  6239. "email": "p@tchwork.com"
  6240. },
  6241. {
  6242. "name": "Symfony Community",
  6243. "homepage": "https://symfony.com/contributors"
  6244. }
  6245. ],
  6246. "description": "Symfony polyfill for the Iconv extension",
  6247. "homepage": "https://symfony.com",
  6248. "keywords": [
  6249. "compatibility",
  6250. "iconv",
  6251. "polyfill",
  6252. "portable",
  6253. "shim"
  6254. ],
  6255. "support": {
  6256. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  6257. },
  6258. "funding": [
  6259. {
  6260. "url": "https://symfony.com/sponsor",
  6261. "type": "custom"
  6262. },
  6263. {
  6264. "url": "https://github.com/fabpot",
  6265. "type": "github"
  6266. },
  6267. {
  6268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6269. "type": "tidelift"
  6270. }
  6271. ],
  6272. "time": "2024-09-17T14:58:18+00:00"
  6273. },
  6274. {
  6275. "name": "symfony/polyfill-intl-grapheme",
  6276. "version": "v1.33.0",
  6277. "source": {
  6278. "type": "git",
  6279. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6280. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  6281. },
  6282. "dist": {
  6283. "type": "zip",
  6284. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6285. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6286. "shasum": "",
  6287. "mirrors": [
  6288. {
  6289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6290. "preferred": true
  6291. }
  6292. ]
  6293. },
  6294. "require": {
  6295. "php": ">=7.2"
  6296. },
  6297. "suggest": {
  6298. "ext-intl": "For best performance"
  6299. },
  6300. "type": "library",
  6301. "extra": {
  6302. "thanks": {
  6303. "url": "https://github.com/symfony/polyfill",
  6304. "name": "symfony/polyfill"
  6305. }
  6306. },
  6307. "autoload": {
  6308. "files": [
  6309. "bootstrap.php"
  6310. ],
  6311. "psr-4": {
  6312. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6313. }
  6314. },
  6315. "notification-url": "https://packagist.org/downloads/",
  6316. "license": [
  6317. "MIT"
  6318. ],
  6319. "authors": [
  6320. {
  6321. "name": "Nicolas Grekas",
  6322. "email": "p@tchwork.com"
  6323. },
  6324. {
  6325. "name": "Symfony Community",
  6326. "homepage": "https://symfony.com/contributors"
  6327. }
  6328. ],
  6329. "description": "Symfony polyfill for intl's grapheme_* functions",
  6330. "homepage": "https://symfony.com",
  6331. "keywords": [
  6332. "compatibility",
  6333. "grapheme",
  6334. "intl",
  6335. "polyfill",
  6336. "portable",
  6337. "shim"
  6338. ],
  6339. "support": {
  6340. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  6341. },
  6342. "funding": [
  6343. {
  6344. "url": "https://symfony.com/sponsor",
  6345. "type": "custom"
  6346. },
  6347. {
  6348. "url": "https://github.com/fabpot",
  6349. "type": "github"
  6350. },
  6351. {
  6352. "url": "https://github.com/nicolas-grekas",
  6353. "type": "github"
  6354. },
  6355. {
  6356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6357. "type": "tidelift"
  6358. }
  6359. ],
  6360. "time": "2025-06-27T09:58:17+00:00"
  6361. },
  6362. {
  6363. "name": "symfony/polyfill-intl-idn",
  6364. "version": "v1.32.0",
  6365. "source": {
  6366. "type": "git",
  6367. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6368. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6369. },
  6370. "dist": {
  6371. "type": "zip",
  6372. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6373. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6374. "shasum": "",
  6375. "mirrors": [
  6376. {
  6377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6378. "preferred": true
  6379. }
  6380. ]
  6381. },
  6382. "require": {
  6383. "php": ">=7.2",
  6384. "symfony/polyfill-intl-normalizer": "^1.10"
  6385. },
  6386. "suggest": {
  6387. "ext-intl": "For best performance"
  6388. },
  6389. "type": "library",
  6390. "extra": {
  6391. "thanks": {
  6392. "url": "https://github.com/symfony/polyfill",
  6393. "name": "symfony/polyfill"
  6394. }
  6395. },
  6396. "autoload": {
  6397. "files": [
  6398. "bootstrap.php"
  6399. ],
  6400. "psr-4": {
  6401. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6402. }
  6403. },
  6404. "notification-url": "https://packagist.org/downloads/",
  6405. "license": [
  6406. "MIT"
  6407. ],
  6408. "authors": [
  6409. {
  6410. "name": "Laurent Bassin",
  6411. "email": "laurent@bassin.info"
  6412. },
  6413. {
  6414. "name": "Trevor Rowbotham",
  6415. "email": "trevor.rowbotham@pm.me"
  6416. },
  6417. {
  6418. "name": "Symfony Community",
  6419. "homepage": "https://symfony.com/contributors"
  6420. }
  6421. ],
  6422. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6423. "homepage": "https://symfony.com",
  6424. "keywords": [
  6425. "compatibility",
  6426. "idn",
  6427. "intl",
  6428. "polyfill",
  6429. "portable",
  6430. "shim"
  6431. ],
  6432. "support": {
  6433. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6434. },
  6435. "funding": [
  6436. {
  6437. "url": "https://symfony.com/sponsor",
  6438. "type": "custom"
  6439. },
  6440. {
  6441. "url": "https://github.com/fabpot",
  6442. "type": "github"
  6443. },
  6444. {
  6445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6446. "type": "tidelift"
  6447. }
  6448. ],
  6449. "time": "2024-09-10T14:38:51+00:00"
  6450. },
  6451. {
  6452. "name": "symfony/polyfill-intl-normalizer",
  6453. "version": "v1.32.0",
  6454. "source": {
  6455. "type": "git",
  6456. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6457. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6458. },
  6459. "dist": {
  6460. "type": "zip",
  6461. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6462. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6463. "shasum": "",
  6464. "mirrors": [
  6465. {
  6466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6467. "preferred": true
  6468. }
  6469. ]
  6470. },
  6471. "require": {
  6472. "php": ">=7.2"
  6473. },
  6474. "suggest": {
  6475. "ext-intl": "For best performance"
  6476. },
  6477. "type": "library",
  6478. "extra": {
  6479. "thanks": {
  6480. "url": "https://github.com/symfony/polyfill",
  6481. "name": "symfony/polyfill"
  6482. }
  6483. },
  6484. "autoload": {
  6485. "files": [
  6486. "bootstrap.php"
  6487. ],
  6488. "psr-4": {
  6489. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6490. },
  6491. "classmap": [
  6492. "Resources/stubs"
  6493. ]
  6494. },
  6495. "notification-url": "https://packagist.org/downloads/",
  6496. "license": [
  6497. "MIT"
  6498. ],
  6499. "authors": [
  6500. {
  6501. "name": "Nicolas Grekas",
  6502. "email": "p@tchwork.com"
  6503. },
  6504. {
  6505. "name": "Symfony Community",
  6506. "homepage": "https://symfony.com/contributors"
  6507. }
  6508. ],
  6509. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6510. "homepage": "https://symfony.com",
  6511. "keywords": [
  6512. "compatibility",
  6513. "intl",
  6514. "normalizer",
  6515. "polyfill",
  6516. "portable",
  6517. "shim"
  6518. ],
  6519. "support": {
  6520. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6521. },
  6522. "funding": [
  6523. {
  6524. "url": "https://symfony.com/sponsor",
  6525. "type": "custom"
  6526. },
  6527. {
  6528. "url": "https://github.com/fabpot",
  6529. "type": "github"
  6530. },
  6531. {
  6532. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6533. "type": "tidelift"
  6534. }
  6535. ],
  6536. "time": "2024-09-09T11:45:10+00:00"
  6537. },
  6538. {
  6539. "name": "symfony/polyfill-mbstring",
  6540. "version": "v1.32.0",
  6541. "source": {
  6542. "type": "git",
  6543. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6544. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6545. },
  6546. "dist": {
  6547. "type": "zip",
  6548. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6549. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6550. "shasum": "",
  6551. "mirrors": [
  6552. {
  6553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6554. "preferred": true
  6555. }
  6556. ]
  6557. },
  6558. "require": {
  6559. "ext-iconv": "*",
  6560. "php": ">=7.2"
  6561. },
  6562. "provide": {
  6563. "ext-mbstring": "*"
  6564. },
  6565. "suggest": {
  6566. "ext-mbstring": "For best performance"
  6567. },
  6568. "type": "library",
  6569. "extra": {
  6570. "thanks": {
  6571. "url": "https://github.com/symfony/polyfill",
  6572. "name": "symfony/polyfill"
  6573. }
  6574. },
  6575. "autoload": {
  6576. "files": [
  6577. "bootstrap.php"
  6578. ],
  6579. "psr-4": {
  6580. "Symfony\\Polyfill\\Mbstring\\": ""
  6581. }
  6582. },
  6583. "notification-url": "https://packagist.org/downloads/",
  6584. "license": [
  6585. "MIT"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "Nicolas Grekas",
  6590. "email": "p@tchwork.com"
  6591. },
  6592. {
  6593. "name": "Symfony Community",
  6594. "homepage": "https://symfony.com/contributors"
  6595. }
  6596. ],
  6597. "description": "Symfony polyfill for the Mbstring extension",
  6598. "homepage": "https://symfony.com",
  6599. "keywords": [
  6600. "compatibility",
  6601. "mbstring",
  6602. "polyfill",
  6603. "portable",
  6604. "shim"
  6605. ],
  6606. "support": {
  6607. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6608. },
  6609. "funding": [
  6610. {
  6611. "url": "https://symfony.com/sponsor",
  6612. "type": "custom"
  6613. },
  6614. {
  6615. "url": "https://github.com/fabpot",
  6616. "type": "github"
  6617. },
  6618. {
  6619. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6620. "type": "tidelift"
  6621. }
  6622. ],
  6623. "time": "2024-12-23T08:48:59+00:00"
  6624. },
  6625. {
  6626. "name": "symfony/polyfill-php73",
  6627. "version": "v1.32.0",
  6628. "source": {
  6629. "type": "git",
  6630. "url": "https://github.com/symfony/polyfill-php73.git",
  6631. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6632. },
  6633. "dist": {
  6634. "type": "zip",
  6635. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6636. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6637. "shasum": "",
  6638. "mirrors": [
  6639. {
  6640. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6641. "preferred": true
  6642. }
  6643. ]
  6644. },
  6645. "require": {
  6646. "php": ">=7.2"
  6647. },
  6648. "type": "library",
  6649. "extra": {
  6650. "thanks": {
  6651. "url": "https://github.com/symfony/polyfill",
  6652. "name": "symfony/polyfill"
  6653. }
  6654. },
  6655. "autoload": {
  6656. "files": [
  6657. "bootstrap.php"
  6658. ],
  6659. "psr-4": {
  6660. "Symfony\\Polyfill\\Php73\\": ""
  6661. },
  6662. "classmap": [
  6663. "Resources/stubs"
  6664. ]
  6665. },
  6666. "notification-url": "https://packagist.org/downloads/",
  6667. "license": [
  6668. "MIT"
  6669. ],
  6670. "authors": [
  6671. {
  6672. "name": "Nicolas Grekas",
  6673. "email": "p@tchwork.com"
  6674. },
  6675. {
  6676. "name": "Symfony Community",
  6677. "homepage": "https://symfony.com/contributors"
  6678. }
  6679. ],
  6680. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6681. "homepage": "https://symfony.com",
  6682. "keywords": [
  6683. "compatibility",
  6684. "polyfill",
  6685. "portable",
  6686. "shim"
  6687. ],
  6688. "support": {
  6689. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  6690. },
  6691. "funding": [
  6692. {
  6693. "url": "https://symfony.com/sponsor",
  6694. "type": "custom"
  6695. },
  6696. {
  6697. "url": "https://github.com/fabpot",
  6698. "type": "github"
  6699. },
  6700. {
  6701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6702. "type": "tidelift"
  6703. }
  6704. ],
  6705. "time": "2024-09-09T11:45:10+00:00"
  6706. },
  6707. {
  6708. "name": "symfony/polyfill-php80",
  6709. "version": "v1.33.0",
  6710. "source": {
  6711. "type": "git",
  6712. "url": "https://github.com/symfony/polyfill-php80.git",
  6713. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6714. },
  6715. "dist": {
  6716. "type": "zip",
  6717. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6718. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6719. "shasum": "",
  6720. "mirrors": [
  6721. {
  6722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6723. "preferred": true
  6724. }
  6725. ]
  6726. },
  6727. "require": {
  6728. "php": ">=7.2"
  6729. },
  6730. "type": "library",
  6731. "extra": {
  6732. "thanks": {
  6733. "url": "https://github.com/symfony/polyfill",
  6734. "name": "symfony/polyfill"
  6735. }
  6736. },
  6737. "autoload": {
  6738. "files": [
  6739. "bootstrap.php"
  6740. ],
  6741. "psr-4": {
  6742. "Symfony\\Polyfill\\Php80\\": ""
  6743. },
  6744. "classmap": [
  6745. "Resources/stubs"
  6746. ]
  6747. },
  6748. "notification-url": "https://packagist.org/downloads/",
  6749. "license": [
  6750. "MIT"
  6751. ],
  6752. "authors": [
  6753. {
  6754. "name": "Ion Bazan",
  6755. "email": "ion.bazan@gmail.com"
  6756. },
  6757. {
  6758. "name": "Nicolas Grekas",
  6759. "email": "p@tchwork.com"
  6760. },
  6761. {
  6762. "name": "Symfony Community",
  6763. "homepage": "https://symfony.com/contributors"
  6764. }
  6765. ],
  6766. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6767. "homepage": "https://symfony.com",
  6768. "keywords": [
  6769. "compatibility",
  6770. "polyfill",
  6771. "portable",
  6772. "shim"
  6773. ],
  6774. "support": {
  6775. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  6776. },
  6777. "funding": [
  6778. {
  6779. "url": "https://symfony.com/sponsor",
  6780. "type": "custom"
  6781. },
  6782. {
  6783. "url": "https://github.com/fabpot",
  6784. "type": "github"
  6785. },
  6786. {
  6787. "url": "https://github.com/nicolas-grekas",
  6788. "type": "github"
  6789. },
  6790. {
  6791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6792. "type": "tidelift"
  6793. }
  6794. ],
  6795. "time": "2025-01-02T08:10:11+00:00"
  6796. },
  6797. {
  6798. "name": "symfony/polyfill-php81",
  6799. "version": "v1.32.0",
  6800. "source": {
  6801. "type": "git",
  6802. "url": "https://github.com/symfony/polyfill-php81.git",
  6803. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6804. },
  6805. "dist": {
  6806. "type": "zip",
  6807. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6808. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6809. "shasum": "",
  6810. "mirrors": [
  6811. {
  6812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6813. "preferred": true
  6814. }
  6815. ]
  6816. },
  6817. "require": {
  6818. "php": ">=7.2"
  6819. },
  6820. "type": "library",
  6821. "extra": {
  6822. "thanks": {
  6823. "url": "https://github.com/symfony/polyfill",
  6824. "name": "symfony/polyfill"
  6825. }
  6826. },
  6827. "autoload": {
  6828. "files": [
  6829. "bootstrap.php"
  6830. ],
  6831. "psr-4": {
  6832. "Symfony\\Polyfill\\Php81\\": ""
  6833. },
  6834. "classmap": [
  6835. "Resources/stubs"
  6836. ]
  6837. },
  6838. "notification-url": "https://packagist.org/downloads/",
  6839. "license": [
  6840. "MIT"
  6841. ],
  6842. "authors": [
  6843. {
  6844. "name": "Nicolas Grekas",
  6845. "email": "p@tchwork.com"
  6846. },
  6847. {
  6848. "name": "Symfony Community",
  6849. "homepage": "https://symfony.com/contributors"
  6850. }
  6851. ],
  6852. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6853. "homepage": "https://symfony.com",
  6854. "keywords": [
  6855. "compatibility",
  6856. "polyfill",
  6857. "portable",
  6858. "shim"
  6859. ],
  6860. "support": {
  6861. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  6862. },
  6863. "funding": [
  6864. {
  6865. "url": "https://symfony.com/sponsor",
  6866. "type": "custom"
  6867. },
  6868. {
  6869. "url": "https://github.com/fabpot",
  6870. "type": "github"
  6871. },
  6872. {
  6873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6874. "type": "tidelift"
  6875. }
  6876. ],
  6877. "time": "2024-09-09T11:45:10+00:00"
  6878. },
  6879. {
  6880. "name": "symfony/process",
  6881. "version": "v5.4.47",
  6882. "source": {
  6883. "type": "git",
  6884. "url": "https://github.com/symfony/process.git",
  6885. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  6886. },
  6887. "dist": {
  6888. "type": "zip",
  6889. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  6890. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  6891. "shasum": "",
  6892. "mirrors": [
  6893. {
  6894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6895. "preferred": true
  6896. }
  6897. ]
  6898. },
  6899. "require": {
  6900. "php": ">=7.2.5",
  6901. "symfony/polyfill-php80": "^1.16"
  6902. },
  6903. "type": "library",
  6904. "autoload": {
  6905. "psr-4": {
  6906. "Symfony\\Component\\Process\\": ""
  6907. },
  6908. "exclude-from-classmap": [
  6909. "/Tests/"
  6910. ]
  6911. },
  6912. "notification-url": "https://packagist.org/downloads/",
  6913. "license": [
  6914. "MIT"
  6915. ],
  6916. "authors": [
  6917. {
  6918. "name": "Fabien Potencier",
  6919. "email": "fabien@symfony.com"
  6920. },
  6921. {
  6922. "name": "Symfony Community",
  6923. "homepage": "https://symfony.com/contributors"
  6924. }
  6925. ],
  6926. "description": "Executes commands in sub-processes",
  6927. "homepage": "https://symfony.com",
  6928. "support": {
  6929. "source": "https://github.com/symfony/process/tree/v5.4.47"
  6930. },
  6931. "funding": [
  6932. {
  6933. "url": "https://symfony.com/sponsor",
  6934. "type": "custom"
  6935. },
  6936. {
  6937. "url": "https://github.com/fabpot",
  6938. "type": "github"
  6939. },
  6940. {
  6941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6942. "type": "tidelift"
  6943. }
  6944. ],
  6945. "time": "2024-11-06T11:36:42+00:00"
  6946. },
  6947. {
  6948. "name": "symfony/psr-http-message-bridge",
  6949. "version": "v2.3.1",
  6950. "source": {
  6951. "type": "git",
  6952. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6953. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  6954. },
  6955. "dist": {
  6956. "type": "zip",
  6957. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6958. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6959. "shasum": "",
  6960. "mirrors": [
  6961. {
  6962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6963. "preferred": true
  6964. }
  6965. ]
  6966. },
  6967. "require": {
  6968. "php": ">=7.2.5",
  6969. "psr/http-message": "^1.0 || ^2.0",
  6970. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  6971. "symfony/http-foundation": "^5.4 || ^6.0"
  6972. },
  6973. "require-dev": {
  6974. "nyholm/psr7": "^1.1",
  6975. "psr/log": "^1.1 || ^2 || ^3",
  6976. "symfony/browser-kit": "^5.4 || ^6.0",
  6977. "symfony/config": "^5.4 || ^6.0",
  6978. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6979. "symfony/framework-bundle": "^5.4 || ^6.0",
  6980. "symfony/http-kernel": "^5.4 || ^6.0",
  6981. "symfony/phpunit-bridge": "^6.2"
  6982. },
  6983. "suggest": {
  6984. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6985. },
  6986. "type": "symfony-bridge",
  6987. "extra": {
  6988. "branch-alias": {
  6989. "dev-main": "2.3-dev"
  6990. }
  6991. },
  6992. "autoload": {
  6993. "psr-4": {
  6994. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6995. },
  6996. "exclude-from-classmap": [
  6997. "/Tests/"
  6998. ]
  6999. },
  7000. "notification-url": "https://packagist.org/downloads/",
  7001. "license": [
  7002. "MIT"
  7003. ],
  7004. "authors": [
  7005. {
  7006. "name": "Fabien Potencier",
  7007. "email": "fabien@symfony.com"
  7008. },
  7009. {
  7010. "name": "Symfony Community",
  7011. "homepage": "http://symfony.com/contributors"
  7012. }
  7013. ],
  7014. "description": "PSR HTTP message bridge",
  7015. "homepage": "http://symfony.com",
  7016. "keywords": [
  7017. "http",
  7018. "http-message",
  7019. "psr-17",
  7020. "psr-7"
  7021. ],
  7022. "support": {
  7023. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  7024. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  7025. },
  7026. "funding": [
  7027. {
  7028. "url": "https://symfony.com/sponsor",
  7029. "type": "custom"
  7030. },
  7031. {
  7032. "url": "https://github.com/fabpot",
  7033. "type": "github"
  7034. },
  7035. {
  7036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7037. "type": "tidelift"
  7038. }
  7039. ],
  7040. "time": "2023-07-26T11:53:26+00:00"
  7041. },
  7042. {
  7043. "name": "symfony/routing",
  7044. "version": "v5.4.48",
  7045. "source": {
  7046. "type": "git",
  7047. "url": "https://github.com/symfony/routing.git",
  7048. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1"
  7049. },
  7050. "dist": {
  7051. "type": "zip",
  7052. "url": "https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7053. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7054. "shasum": "",
  7055. "mirrors": [
  7056. {
  7057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7058. "preferred": true
  7059. }
  7060. ]
  7061. },
  7062. "require": {
  7063. "php": ">=7.2.5",
  7064. "symfony/deprecation-contracts": "^2.1|^3",
  7065. "symfony/polyfill-php80": "^1.16"
  7066. },
  7067. "conflict": {
  7068. "doctrine/annotations": "<1.12",
  7069. "symfony/config": "<5.3",
  7070. "symfony/dependency-injection": "<4.4",
  7071. "symfony/yaml": "<4.4"
  7072. },
  7073. "require-dev": {
  7074. "doctrine/annotations": "^1.12|^2",
  7075. "psr/log": "^1|^2|^3",
  7076. "symfony/config": "^5.3|^6.0",
  7077. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7078. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7079. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7080. "symfony/yaml": "^4.4|^5.0|^6.0"
  7081. },
  7082. "suggest": {
  7083. "symfony/config": "For using the all-in-one router or any loader",
  7084. "symfony/expression-language": "For using expression matching",
  7085. "symfony/http-foundation": "For using a Symfony Request object",
  7086. "symfony/yaml": "For using the YAML loader"
  7087. },
  7088. "type": "library",
  7089. "autoload": {
  7090. "psr-4": {
  7091. "Symfony\\Component\\Routing\\": ""
  7092. },
  7093. "exclude-from-classmap": [
  7094. "/Tests/"
  7095. ]
  7096. },
  7097. "notification-url": "https://packagist.org/downloads/",
  7098. "license": [
  7099. "MIT"
  7100. ],
  7101. "authors": [
  7102. {
  7103. "name": "Fabien Potencier",
  7104. "email": "fabien@symfony.com"
  7105. },
  7106. {
  7107. "name": "Symfony Community",
  7108. "homepage": "https://symfony.com/contributors"
  7109. }
  7110. ],
  7111. "description": "Maps an HTTP request to a set of configuration variables",
  7112. "homepage": "https://symfony.com",
  7113. "keywords": [
  7114. "router",
  7115. "routing",
  7116. "uri",
  7117. "url"
  7118. ],
  7119. "support": {
  7120. "source": "https://github.com/symfony/routing/tree/v5.4.48"
  7121. },
  7122. "funding": [
  7123. {
  7124. "url": "https://symfony.com/sponsor",
  7125. "type": "custom"
  7126. },
  7127. {
  7128. "url": "https://github.com/fabpot",
  7129. "type": "github"
  7130. },
  7131. {
  7132. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7133. "type": "tidelift"
  7134. }
  7135. ],
  7136. "time": "2024-11-12T18:20:21+00:00"
  7137. },
  7138. {
  7139. "name": "symfony/service-contracts",
  7140. "version": "v2.5.4",
  7141. "source": {
  7142. "type": "git",
  7143. "url": "https://github.com/symfony/service-contracts.git",
  7144. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  7145. },
  7146. "dist": {
  7147. "type": "zip",
  7148. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  7149. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  7150. "shasum": "",
  7151. "mirrors": [
  7152. {
  7153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7154. "preferred": true
  7155. }
  7156. ]
  7157. },
  7158. "require": {
  7159. "php": ">=7.2.5",
  7160. "psr/container": "^1.1",
  7161. "symfony/deprecation-contracts": "^2.1|^3"
  7162. },
  7163. "conflict": {
  7164. "ext-psr": "<1.1|>=2"
  7165. },
  7166. "suggest": {
  7167. "symfony/service-implementation": ""
  7168. },
  7169. "type": "library",
  7170. "extra": {
  7171. "thanks": {
  7172. "url": "https://github.com/symfony/contracts",
  7173. "name": "symfony/contracts"
  7174. },
  7175. "branch-alias": {
  7176. "dev-main": "2.5-dev"
  7177. }
  7178. },
  7179. "autoload": {
  7180. "psr-4": {
  7181. "Symfony\\Contracts\\Service\\": ""
  7182. }
  7183. },
  7184. "notification-url": "https://packagist.org/downloads/",
  7185. "license": [
  7186. "MIT"
  7187. ],
  7188. "authors": [
  7189. {
  7190. "name": "Nicolas Grekas",
  7191. "email": "p@tchwork.com"
  7192. },
  7193. {
  7194. "name": "Symfony Community",
  7195. "homepage": "https://symfony.com/contributors"
  7196. }
  7197. ],
  7198. "description": "Generic abstractions related to writing services",
  7199. "homepage": "https://symfony.com",
  7200. "keywords": [
  7201. "abstractions",
  7202. "contracts",
  7203. "decoupling",
  7204. "interfaces",
  7205. "interoperability",
  7206. "standards"
  7207. ],
  7208. "support": {
  7209. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  7210. },
  7211. "funding": [
  7212. {
  7213. "url": "https://symfony.com/sponsor",
  7214. "type": "custom"
  7215. },
  7216. {
  7217. "url": "https://github.com/fabpot",
  7218. "type": "github"
  7219. },
  7220. {
  7221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7222. "type": "tidelift"
  7223. }
  7224. ],
  7225. "time": "2024-09-25T14:11:13+00:00"
  7226. },
  7227. {
  7228. "name": "symfony/string",
  7229. "version": "v6.0.19",
  7230. "source": {
  7231. "type": "git",
  7232. "url": "https://github.com/symfony/string.git",
  7233. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7234. },
  7235. "dist": {
  7236. "type": "zip",
  7237. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7238. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7239. "shasum": "",
  7240. "mirrors": [
  7241. {
  7242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7243. "preferred": true
  7244. }
  7245. ]
  7246. },
  7247. "require": {
  7248. "php": ">=8.0.2",
  7249. "symfony/polyfill-ctype": "~1.8",
  7250. "symfony/polyfill-intl-grapheme": "~1.0",
  7251. "symfony/polyfill-intl-normalizer": "~1.0",
  7252. "symfony/polyfill-mbstring": "~1.0"
  7253. },
  7254. "conflict": {
  7255. "symfony/translation-contracts": "<2.0"
  7256. },
  7257. "require-dev": {
  7258. "symfony/error-handler": "^5.4|^6.0",
  7259. "symfony/http-client": "^5.4|^6.0",
  7260. "symfony/translation-contracts": "^2.0|^3.0",
  7261. "symfony/var-exporter": "^5.4|^6.0"
  7262. },
  7263. "type": "library",
  7264. "autoload": {
  7265. "files": [
  7266. "Resources/functions.php"
  7267. ],
  7268. "psr-4": {
  7269. "Symfony\\Component\\String\\": ""
  7270. },
  7271. "exclude-from-classmap": [
  7272. "/Tests/"
  7273. ]
  7274. },
  7275. "notification-url": "https://packagist.org/downloads/",
  7276. "license": [
  7277. "MIT"
  7278. ],
  7279. "authors": [
  7280. {
  7281. "name": "Nicolas Grekas",
  7282. "email": "p@tchwork.com"
  7283. },
  7284. {
  7285. "name": "Symfony Community",
  7286. "homepage": "https://symfony.com/contributors"
  7287. }
  7288. ],
  7289. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7290. "homepage": "https://symfony.com",
  7291. "keywords": [
  7292. "grapheme",
  7293. "i18n",
  7294. "string",
  7295. "unicode",
  7296. "utf-8",
  7297. "utf8"
  7298. ],
  7299. "support": {
  7300. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7301. },
  7302. "funding": [
  7303. {
  7304. "url": "https://symfony.com/sponsor",
  7305. "type": "custom"
  7306. },
  7307. {
  7308. "url": "https://github.com/fabpot",
  7309. "type": "github"
  7310. },
  7311. {
  7312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7313. "type": "tidelift"
  7314. }
  7315. ],
  7316. "time": "2023-01-01T08:36:10+00:00"
  7317. },
  7318. {
  7319. "name": "symfony/translation",
  7320. "version": "v6.0.19",
  7321. "source": {
  7322. "type": "git",
  7323. "url": "https://github.com/symfony/translation.git",
  7324. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7325. },
  7326. "dist": {
  7327. "type": "zip",
  7328. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7329. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7330. "shasum": "",
  7331. "mirrors": [
  7332. {
  7333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7334. "preferred": true
  7335. }
  7336. ]
  7337. },
  7338. "require": {
  7339. "php": ">=8.0.2",
  7340. "symfony/polyfill-mbstring": "~1.0",
  7341. "symfony/translation-contracts": "^2.3|^3.0"
  7342. },
  7343. "conflict": {
  7344. "symfony/config": "<5.4",
  7345. "symfony/console": "<5.4",
  7346. "symfony/dependency-injection": "<5.4",
  7347. "symfony/http-kernel": "<5.4",
  7348. "symfony/twig-bundle": "<5.4",
  7349. "symfony/yaml": "<5.4"
  7350. },
  7351. "provide": {
  7352. "symfony/translation-implementation": "2.3|3.0"
  7353. },
  7354. "require-dev": {
  7355. "psr/log": "^1|^2|^3",
  7356. "symfony/config": "^5.4|^6.0",
  7357. "symfony/console": "^5.4|^6.0",
  7358. "symfony/dependency-injection": "^5.4|^6.0",
  7359. "symfony/finder": "^5.4|^6.0",
  7360. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7361. "symfony/http-kernel": "^5.4|^6.0",
  7362. "symfony/intl": "^5.4|^6.0",
  7363. "symfony/polyfill-intl-icu": "^1.21",
  7364. "symfony/service-contracts": "^1.1.2|^2|^3",
  7365. "symfony/yaml": "^5.4|^6.0"
  7366. },
  7367. "suggest": {
  7368. "psr/log-implementation": "To use logging capability in translator",
  7369. "symfony/config": "",
  7370. "symfony/yaml": ""
  7371. },
  7372. "type": "library",
  7373. "autoload": {
  7374. "files": [
  7375. "Resources/functions.php"
  7376. ],
  7377. "psr-4": {
  7378. "Symfony\\Component\\Translation\\": ""
  7379. },
  7380. "exclude-from-classmap": [
  7381. "/Tests/"
  7382. ]
  7383. },
  7384. "notification-url": "https://packagist.org/downloads/",
  7385. "license": [
  7386. "MIT"
  7387. ],
  7388. "authors": [
  7389. {
  7390. "name": "Fabien Potencier",
  7391. "email": "fabien@symfony.com"
  7392. },
  7393. {
  7394. "name": "Symfony Community",
  7395. "homepage": "https://symfony.com/contributors"
  7396. }
  7397. ],
  7398. "description": "Provides tools to internationalize your application",
  7399. "homepage": "https://symfony.com",
  7400. "support": {
  7401. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7402. },
  7403. "funding": [
  7404. {
  7405. "url": "https://symfony.com/sponsor",
  7406. "type": "custom"
  7407. },
  7408. {
  7409. "url": "https://github.com/fabpot",
  7410. "type": "github"
  7411. },
  7412. {
  7413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7414. "type": "tidelift"
  7415. }
  7416. ],
  7417. "time": "2023-01-01T08:36:10+00:00"
  7418. },
  7419. {
  7420. "name": "symfony/translation-contracts",
  7421. "version": "v3.0.2",
  7422. "source": {
  7423. "type": "git",
  7424. "url": "https://github.com/symfony/translation-contracts.git",
  7425. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7426. },
  7427. "dist": {
  7428. "type": "zip",
  7429. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7430. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7431. "shasum": "",
  7432. "mirrors": [
  7433. {
  7434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7435. "preferred": true
  7436. }
  7437. ]
  7438. },
  7439. "require": {
  7440. "php": ">=8.0.2"
  7441. },
  7442. "suggest": {
  7443. "symfony/translation-implementation": ""
  7444. },
  7445. "type": "library",
  7446. "extra": {
  7447. "thanks": {
  7448. "url": "https://github.com/symfony/contracts",
  7449. "name": "symfony/contracts"
  7450. },
  7451. "branch-alias": {
  7452. "dev-main": "3.0-dev"
  7453. }
  7454. },
  7455. "autoload": {
  7456. "psr-4": {
  7457. "Symfony\\Contracts\\Translation\\": ""
  7458. }
  7459. },
  7460. "notification-url": "https://packagist.org/downloads/",
  7461. "license": [
  7462. "MIT"
  7463. ],
  7464. "authors": [
  7465. {
  7466. "name": "Nicolas Grekas",
  7467. "email": "p@tchwork.com"
  7468. },
  7469. {
  7470. "name": "Symfony Community",
  7471. "homepage": "https://symfony.com/contributors"
  7472. }
  7473. ],
  7474. "description": "Generic abstractions related to translation",
  7475. "homepage": "https://symfony.com",
  7476. "keywords": [
  7477. "abstractions",
  7478. "contracts",
  7479. "decoupling",
  7480. "interfaces",
  7481. "interoperability",
  7482. "standards"
  7483. ],
  7484. "support": {
  7485. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7486. },
  7487. "funding": [
  7488. {
  7489. "url": "https://symfony.com/sponsor",
  7490. "type": "custom"
  7491. },
  7492. {
  7493. "url": "https://github.com/fabpot",
  7494. "type": "github"
  7495. },
  7496. {
  7497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7498. "type": "tidelift"
  7499. }
  7500. ],
  7501. "time": "2022-06-27T17:10:44+00:00"
  7502. },
  7503. {
  7504. "name": "symfony/var-dumper",
  7505. "version": "v5.4.48",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/symfony/var-dumper.git",
  7509. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7514. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7515. "shasum": "",
  7516. "mirrors": [
  7517. {
  7518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7519. "preferred": true
  7520. }
  7521. ]
  7522. },
  7523. "require": {
  7524. "php": ">=7.2.5",
  7525. "symfony/polyfill-mbstring": "~1.0",
  7526. "symfony/polyfill-php80": "^1.16"
  7527. },
  7528. "conflict": {
  7529. "symfony/console": "<4.4"
  7530. },
  7531. "require-dev": {
  7532. "ext-iconv": "*",
  7533. "symfony/console": "^4.4|^5.0|^6.0",
  7534. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7535. "symfony/process": "^4.4|^5.0|^6.0",
  7536. "symfony/uid": "^5.1|^6.0",
  7537. "twig/twig": "^2.13|^3.0.4"
  7538. },
  7539. "suggest": {
  7540. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7541. "ext-intl": "To show region name in time zone dump",
  7542. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7543. },
  7544. "bin": [
  7545. "Resources/bin/var-dump-server"
  7546. ],
  7547. "type": "library",
  7548. "autoload": {
  7549. "files": [
  7550. "Resources/functions/dump.php"
  7551. ],
  7552. "psr-4": {
  7553. "Symfony\\Component\\VarDumper\\": ""
  7554. },
  7555. "exclude-from-classmap": [
  7556. "/Tests/"
  7557. ]
  7558. },
  7559. "notification-url": "https://packagist.org/downloads/",
  7560. "license": [
  7561. "MIT"
  7562. ],
  7563. "authors": [
  7564. {
  7565. "name": "Nicolas Grekas",
  7566. "email": "p@tchwork.com"
  7567. },
  7568. {
  7569. "name": "Symfony Community",
  7570. "homepage": "https://symfony.com/contributors"
  7571. }
  7572. ],
  7573. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7574. "homepage": "https://symfony.com",
  7575. "keywords": [
  7576. "debug",
  7577. "dump"
  7578. ],
  7579. "support": {
  7580. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  7581. },
  7582. "funding": [
  7583. {
  7584. "url": "https://symfony.com/sponsor",
  7585. "type": "custom"
  7586. },
  7587. {
  7588. "url": "https://github.com/fabpot",
  7589. "type": "github"
  7590. },
  7591. {
  7592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7593. "type": "tidelift"
  7594. }
  7595. ],
  7596. "time": "2024-11-08T15:21:10+00:00"
  7597. },
  7598. {
  7599. "name": "symfony/var-exporter",
  7600. "version": "v6.0.19",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/symfony/var-exporter.git",
  7604. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  7609. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  7610. "shasum": "",
  7611. "mirrors": [
  7612. {
  7613. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7614. "preferred": true
  7615. }
  7616. ]
  7617. },
  7618. "require": {
  7619. "php": ">=8.0.2"
  7620. },
  7621. "require-dev": {
  7622. "symfony/var-dumper": "^5.4|^6.0"
  7623. },
  7624. "type": "library",
  7625. "autoload": {
  7626. "psr-4": {
  7627. "Symfony\\Component\\VarExporter\\": ""
  7628. },
  7629. "exclude-from-classmap": [
  7630. "/Tests/"
  7631. ]
  7632. },
  7633. "notification-url": "https://packagist.org/downloads/",
  7634. "license": [
  7635. "MIT"
  7636. ],
  7637. "authors": [
  7638. {
  7639. "name": "Nicolas Grekas",
  7640. "email": "p@tchwork.com"
  7641. },
  7642. {
  7643. "name": "Symfony Community",
  7644. "homepage": "https://symfony.com/contributors"
  7645. }
  7646. ],
  7647. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7648. "homepage": "https://symfony.com",
  7649. "keywords": [
  7650. "clone",
  7651. "construct",
  7652. "export",
  7653. "hydrate",
  7654. "instantiate",
  7655. "serialize"
  7656. ],
  7657. "support": {
  7658. "source": "https://github.com/symfony/var-exporter/tree/v6.0.19"
  7659. },
  7660. "funding": [
  7661. {
  7662. "url": "https://symfony.com/sponsor",
  7663. "type": "custom"
  7664. },
  7665. {
  7666. "url": "https://github.com/fabpot",
  7667. "type": "github"
  7668. },
  7669. {
  7670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7671. "type": "tidelift"
  7672. }
  7673. ],
  7674. "time": "2023-01-13T08:34:10+00:00"
  7675. },
  7676. {
  7677. "name": "tijsverkoyen/css-to-inline-styles",
  7678. "version": "v2.3.0",
  7679. "source": {
  7680. "type": "git",
  7681. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7682. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7683. },
  7684. "dist": {
  7685. "type": "zip",
  7686. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7687. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7688. "shasum": "",
  7689. "mirrors": [
  7690. {
  7691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7692. "preferred": true
  7693. }
  7694. ]
  7695. },
  7696. "require": {
  7697. "ext-dom": "*",
  7698. "ext-libxml": "*",
  7699. "php": "^7.4 || ^8.0",
  7700. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7701. },
  7702. "require-dev": {
  7703. "phpstan/phpstan": "^2.0",
  7704. "phpstan/phpstan-phpunit": "^2.0",
  7705. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7706. },
  7707. "type": "library",
  7708. "extra": {
  7709. "branch-alias": {
  7710. "dev-master": "2.x-dev"
  7711. }
  7712. },
  7713. "autoload": {
  7714. "psr-4": {
  7715. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7716. }
  7717. },
  7718. "notification-url": "https://packagist.org/downloads/",
  7719. "license": [
  7720. "BSD-3-Clause"
  7721. ],
  7722. "authors": [
  7723. {
  7724. "name": "Tijs Verkoyen",
  7725. "email": "css_to_inline_styles@verkoyen.eu",
  7726. "role": "Developer"
  7727. }
  7728. ],
  7729. "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.",
  7730. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7731. "support": {
  7732. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7733. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7734. },
  7735. "time": "2024-12-21T16:25:41+00:00"
  7736. },
  7737. {
  7738. "name": "vinkla/hashids",
  7739. "version": "9.1.0",
  7740. "source": {
  7741. "type": "git",
  7742. "url": "https://github.com/vinkla/laravel-hashids.git",
  7743. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767"
  7744. },
  7745. "dist": {
  7746. "type": "zip",
  7747. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/cb0086db96cdb49816465adc97e3a024c8ee9767",
  7748. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767",
  7749. "shasum": "",
  7750. "mirrors": [
  7751. {
  7752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7753. "preferred": true
  7754. }
  7755. ]
  7756. },
  7757. "require": {
  7758. "graham-campbell/manager": "^4.4",
  7759. "hashids/hashids": "^4.1",
  7760. "illuminate/contracts": "^8.0",
  7761. "illuminate/support": "^8.0",
  7762. "php": "^7.3 || ^8.0"
  7763. },
  7764. "require-dev": {
  7765. "graham-campbell/analyzer": "^3.0",
  7766. "graham-campbell/testbench": "^5.4",
  7767. "mockery/mockery": "^1.3",
  7768. "phpunit/phpunit": "^9.3",
  7769. "squizlabs/php_codesniffer": "^3.5"
  7770. },
  7771. "type": "library",
  7772. "extra": {
  7773. "laravel": {
  7774. "aliases": {
  7775. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  7776. },
  7777. "providers": [
  7778. "Vinkla\\Hashids\\HashidsServiceProvider"
  7779. ]
  7780. },
  7781. "branch-alias": {
  7782. "dev-master": "9.1-dev"
  7783. }
  7784. },
  7785. "autoload": {
  7786. "psr-4": {
  7787. "Vinkla\\Hashids\\": "src/"
  7788. }
  7789. },
  7790. "notification-url": "https://packagist.org/downloads/",
  7791. "license": [
  7792. "MIT"
  7793. ],
  7794. "authors": [
  7795. {
  7796. "name": "Vincent Klaiber",
  7797. "email": "hello@doubledip.se"
  7798. }
  7799. ],
  7800. "description": "A Hashids bridge for Laravel",
  7801. "keywords": [
  7802. "hashids",
  7803. "laravel"
  7804. ],
  7805. "support": {
  7806. "issues": "https://github.com/vinkla/laravel-hashids/issues",
  7807. "source": "https://github.com/vinkla/laravel-hashids/tree/9.1.0"
  7808. },
  7809. "time": "2020-11-26T19:38:22+00:00"
  7810. },
  7811. {
  7812. "name": "vlucas/phpdotenv",
  7813. "version": "v5.6.1",
  7814. "source": {
  7815. "type": "git",
  7816. "url": "https://github.com/vlucas/phpdotenv.git",
  7817. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7818. },
  7819. "dist": {
  7820. "type": "zip",
  7821. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7822. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7823. "shasum": "",
  7824. "mirrors": [
  7825. {
  7826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7827. "preferred": true
  7828. }
  7829. ]
  7830. },
  7831. "require": {
  7832. "ext-pcre": "*",
  7833. "graham-campbell/result-type": "^1.1.3",
  7834. "php": "^7.2.5 || ^8.0",
  7835. "phpoption/phpoption": "^1.9.3",
  7836. "symfony/polyfill-ctype": "^1.24",
  7837. "symfony/polyfill-mbstring": "^1.24",
  7838. "symfony/polyfill-php80": "^1.24"
  7839. },
  7840. "require-dev": {
  7841. "bamarni/composer-bin-plugin": "^1.8.2",
  7842. "ext-filter": "*",
  7843. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7844. },
  7845. "suggest": {
  7846. "ext-filter": "Required to use the boolean validator."
  7847. },
  7848. "type": "library",
  7849. "extra": {
  7850. "bamarni-bin": {
  7851. "bin-links": true,
  7852. "forward-command": false
  7853. },
  7854. "branch-alias": {
  7855. "dev-master": "5.6-dev"
  7856. }
  7857. },
  7858. "autoload": {
  7859. "psr-4": {
  7860. "Dotenv\\": "src/"
  7861. }
  7862. },
  7863. "notification-url": "https://packagist.org/downloads/",
  7864. "license": [
  7865. "BSD-3-Clause"
  7866. ],
  7867. "authors": [
  7868. {
  7869. "name": "Graham Campbell",
  7870. "email": "hello@gjcampbell.co.uk",
  7871. "homepage": "https://github.com/GrahamCampbell"
  7872. },
  7873. {
  7874. "name": "Vance Lucas",
  7875. "email": "vance@vancelucas.com",
  7876. "homepage": "https://github.com/vlucas"
  7877. }
  7878. ],
  7879. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7880. "keywords": [
  7881. "dotenv",
  7882. "env",
  7883. "environment"
  7884. ],
  7885. "support": {
  7886. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7887. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7888. },
  7889. "funding": [
  7890. {
  7891. "url": "https://github.com/GrahamCampbell",
  7892. "type": "github"
  7893. },
  7894. {
  7895. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7896. "type": "tidelift"
  7897. }
  7898. ],
  7899. "time": "2024-07-20T21:52:34+00:00"
  7900. },
  7901. {
  7902. "name": "voku/portable-ascii",
  7903. "version": "1.6.1",
  7904. "source": {
  7905. "type": "git",
  7906. "url": "https://github.com/voku/portable-ascii.git",
  7907. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7908. },
  7909. "dist": {
  7910. "type": "zip",
  7911. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7912. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7913. "shasum": "",
  7914. "mirrors": [
  7915. {
  7916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7917. "preferred": true
  7918. }
  7919. ]
  7920. },
  7921. "require": {
  7922. "php": ">=7.0.0"
  7923. },
  7924. "require-dev": {
  7925. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7926. },
  7927. "suggest": {
  7928. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7929. },
  7930. "type": "library",
  7931. "autoload": {
  7932. "psr-4": {
  7933. "voku\\": "src/voku/"
  7934. }
  7935. },
  7936. "notification-url": "https://packagist.org/downloads/",
  7937. "license": [
  7938. "MIT"
  7939. ],
  7940. "authors": [
  7941. {
  7942. "name": "Lars Moelleken",
  7943. "homepage": "http://www.moelleken.org/"
  7944. }
  7945. ],
  7946. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7947. "homepage": "https://github.com/voku/portable-ascii",
  7948. "keywords": [
  7949. "ascii",
  7950. "clean",
  7951. "php"
  7952. ],
  7953. "support": {
  7954. "issues": "https://github.com/voku/portable-ascii/issues",
  7955. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7956. },
  7957. "funding": [
  7958. {
  7959. "url": "https://www.paypal.me/moelleken",
  7960. "type": "custom"
  7961. },
  7962. {
  7963. "url": "https://github.com/voku",
  7964. "type": "github"
  7965. },
  7966. {
  7967. "url": "https://opencollective.com/portable-ascii",
  7968. "type": "open_collective"
  7969. },
  7970. {
  7971. "url": "https://www.patreon.com/voku",
  7972. "type": "patreon"
  7973. },
  7974. {
  7975. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7976. "type": "tidelift"
  7977. }
  7978. ],
  7979. "time": "2022-01-24T18:55:24+00:00"
  7980. },
  7981. {
  7982. "name": "w7corp/easywechat",
  7983. "version": "5.36.0",
  7984. "source": {
  7985. "type": "git",
  7986. "url": "https://github.com/w7corp/easywechat.git",
  7987. "reference": "3e3af7e1195e8ad25dae196bdb6420a24b382f1d"
  7988. },
  7989. "dist": {
  7990. "type": "zip",
  7991. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/3e3af7e1195e8ad25dae196bdb6420a24b382f1d",
  7992. "reference": "3e3af7e1195e8ad25dae196bdb6420a24b382f1d",
  7993. "shasum": "",
  7994. "mirrors": [
  7995. {
  7996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7997. "preferred": true
  7998. }
  7999. ]
  8000. },
  8001. "require": {
  8002. "easywechat-composer/easywechat-composer": "^1.1",
  8003. "ext-fileinfo": "*",
  8004. "ext-libxml": "*",
  8005. "ext-openssl": "*",
  8006. "ext-simplexml": "*",
  8007. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  8008. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  8009. "overtrue/socialite": "^3.2 || ^4.0",
  8010. "php": ">=7.4",
  8011. "pimple/pimple": "^3.0",
  8012. "psr/simple-cache": "^1.0||^2.0||^3.0",
  8013. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  8014. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  8015. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8016. },
  8017. "require-dev": {
  8018. "brainmaestro/composer-git-hooks": "^2.7",
  8019. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  8020. "friendsofphp/php-cs-fixer": "^3.5.0",
  8021. "mikey179/vfsstream": "^1.6",
  8022. "mockery/mockery": "^1.2.3",
  8023. "phpstan/phpstan": "^0.12.0",
  8024. "phpunit/phpunit": "^9.3"
  8025. },
  8026. "type": "library",
  8027. "extra": {
  8028. "hooks": {
  8029. "pre-push": [
  8030. "composer test",
  8031. "composer fix-style"
  8032. ],
  8033. "pre-commit": [
  8034. "composer test",
  8035. "composer fix-style"
  8036. ]
  8037. }
  8038. },
  8039. "autoload": {
  8040. "files": [
  8041. "src/Kernel/Support/Helpers.php",
  8042. "src/Kernel/Helpers.php"
  8043. ],
  8044. "psr-4": {
  8045. "EasyWeChat\\": "src/"
  8046. }
  8047. },
  8048. "notification-url": "https://packagist.org/downloads/",
  8049. "license": [
  8050. "MIT"
  8051. ],
  8052. "authors": [
  8053. {
  8054. "name": "overtrue",
  8055. "email": "anzhengchao@gmail.com"
  8056. }
  8057. ],
  8058. "description": "微信SDK",
  8059. "keywords": [
  8060. "easywechat",
  8061. "sdk",
  8062. "wechat",
  8063. "weixin",
  8064. "weixin-sdk"
  8065. ],
  8066. "support": {
  8067. "issues": "https://github.com/w7corp/easywechat/issues",
  8068. "source": "https://github.com/w7corp/easywechat/tree/5.36.0"
  8069. },
  8070. "funding": [
  8071. {
  8072. "url": "https://github.com/overtrue",
  8073. "type": "github"
  8074. }
  8075. ],
  8076. "time": "2024-12-25T08:00:38+00:00"
  8077. },
  8078. {
  8079. "name": "wantp/snowflake",
  8080. "version": "v1.2.0",
  8081. "source": {
  8082. "type": "git",
  8083. "url": "https://github.com/wantp/snowflake.git",
  8084. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d"
  8085. },
  8086. "dist": {
  8087. "type": "zip",
  8088. "url": "https://api.github.com/repos/wantp/snowflake/zipball/821c2800521cddc31afd8dd980090883abc7fe2d",
  8089. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d",
  8090. "shasum": "",
  8091. "mirrors": [
  8092. {
  8093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8094. "preferred": true
  8095. }
  8096. ]
  8097. },
  8098. "require": {
  8099. "php": ">=7.0.0"
  8100. },
  8101. "type": "library",
  8102. "autoload": {
  8103. "psr-4": {
  8104. "wantp\\Snowflake\\": "src/Snowflake/"
  8105. }
  8106. },
  8107. "notification-url": "https://packagist.org/downloads/",
  8108. "license": [
  8109. "MIT"
  8110. ],
  8111. "authors": [
  8112. {
  8113. "name": "zhangrongwang",
  8114. "email": "zhangrongwang798@gmail.com"
  8115. }
  8116. ],
  8117. "description": "A package for create unique id by snowflake",
  8118. "keywords": [
  8119. "snowflake",
  8120. "uniqueId"
  8121. ],
  8122. "support": {
  8123. "issues": "https://github.com/wantp/snowflake/issues",
  8124. "source": "https://github.com/wantp/snowflake/tree/master"
  8125. },
  8126. "time": "2019-08-05T07:14:56+00:00"
  8127. }
  8128. ],
  8129. "packages-dev": [
  8130. {
  8131. "name": "doctrine/instantiator",
  8132. "version": "1.5.0",
  8133. "source": {
  8134. "type": "git",
  8135. "url": "https://github.com/doctrine/instantiator.git",
  8136. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8137. },
  8138. "dist": {
  8139. "type": "zip",
  8140. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8141. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8142. "shasum": "",
  8143. "mirrors": [
  8144. {
  8145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8146. "preferred": true
  8147. }
  8148. ]
  8149. },
  8150. "require": {
  8151. "php": "^7.1 || ^8.0"
  8152. },
  8153. "require-dev": {
  8154. "doctrine/coding-standard": "^9 || ^11",
  8155. "ext-pdo": "*",
  8156. "ext-phar": "*",
  8157. "phpbench/phpbench": "^0.16 || ^1",
  8158. "phpstan/phpstan": "^1.4",
  8159. "phpstan/phpstan-phpunit": "^1",
  8160. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8161. "vimeo/psalm": "^4.30 || ^5.4"
  8162. },
  8163. "type": "library",
  8164. "autoload": {
  8165. "psr-4": {
  8166. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8167. }
  8168. },
  8169. "notification-url": "https://packagist.org/downloads/",
  8170. "license": [
  8171. "MIT"
  8172. ],
  8173. "authors": [
  8174. {
  8175. "name": "Marco Pivetta",
  8176. "email": "ocramius@gmail.com",
  8177. "homepage": "https://ocramius.github.io/"
  8178. }
  8179. ],
  8180. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8181. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8182. "keywords": [
  8183. "constructor",
  8184. "instantiate"
  8185. ],
  8186. "support": {
  8187. "issues": "https://github.com/doctrine/instantiator/issues",
  8188. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8189. },
  8190. "funding": [
  8191. {
  8192. "url": "https://www.doctrine-project.org/sponsorship.html",
  8193. "type": "custom"
  8194. },
  8195. {
  8196. "url": "https://www.patreon.com/phpdoctrine",
  8197. "type": "patreon"
  8198. },
  8199. {
  8200. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8201. "type": "tidelift"
  8202. }
  8203. ],
  8204. "time": "2022-12-30T00:15:36+00:00"
  8205. },
  8206. {
  8207. "name": "facade/flare-client-php",
  8208. "version": "1.10.0",
  8209. "source": {
  8210. "type": "git",
  8211. "url": "https://github.com/facade/flare-client-php.git",
  8212. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8213. },
  8214. "dist": {
  8215. "type": "zip",
  8216. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8217. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8218. "shasum": "",
  8219. "mirrors": [
  8220. {
  8221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8222. "preferred": true
  8223. }
  8224. ]
  8225. },
  8226. "require": {
  8227. "facade/ignition-contracts": "~1.0",
  8228. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8229. "php": "^7.1|^8.0",
  8230. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8231. "symfony/mime": "^3.4|^4.0|^5.1",
  8232. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8233. },
  8234. "require-dev": {
  8235. "friendsofphp/php-cs-fixer": "^2.14",
  8236. "phpunit/phpunit": "^7.5",
  8237. "spatie/phpunit-snapshot-assertions": "^2.0"
  8238. },
  8239. "type": "library",
  8240. "extra": {
  8241. "branch-alias": {
  8242. "dev-master": "1.0-dev"
  8243. }
  8244. },
  8245. "autoload": {
  8246. "files": [
  8247. "src/helpers.php"
  8248. ],
  8249. "psr-4": {
  8250. "Facade\\FlareClient\\": "src"
  8251. }
  8252. },
  8253. "notification-url": "https://packagist.org/downloads/",
  8254. "license": [
  8255. "MIT"
  8256. ],
  8257. "description": "Send PHP errors to Flare",
  8258. "homepage": "https://github.com/facade/flare-client-php",
  8259. "keywords": [
  8260. "exception",
  8261. "facade",
  8262. "flare",
  8263. "reporting"
  8264. ],
  8265. "support": {
  8266. "issues": "https://github.com/facade/flare-client-php/issues",
  8267. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8268. },
  8269. "funding": [
  8270. {
  8271. "url": "https://github.com/spatie",
  8272. "type": "github"
  8273. }
  8274. ],
  8275. "time": "2022-08-09T11:23:57+00:00"
  8276. },
  8277. {
  8278. "name": "facade/ignition",
  8279. "version": "2.17.7",
  8280. "source": {
  8281. "type": "git",
  8282. "url": "https://github.com/facade/ignition.git",
  8283. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8284. },
  8285. "dist": {
  8286. "type": "zip",
  8287. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8288. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8289. "shasum": "",
  8290. "mirrors": [
  8291. {
  8292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8293. "preferred": true
  8294. }
  8295. ]
  8296. },
  8297. "require": {
  8298. "ext-curl": "*",
  8299. "ext-json": "*",
  8300. "ext-mbstring": "*",
  8301. "facade/flare-client-php": "^1.9.1",
  8302. "facade/ignition-contracts": "^1.0.2",
  8303. "illuminate/support": "^7.0|^8.0",
  8304. "monolog/monolog": "^2.0",
  8305. "php": "^7.2.5|^8.0",
  8306. "symfony/console": "^5.0",
  8307. "symfony/var-dumper": "^5.0"
  8308. },
  8309. "require-dev": {
  8310. "friendsofphp/php-cs-fixer": "^2.14",
  8311. "livewire/livewire": "^2.4",
  8312. "mockery/mockery": "^1.3",
  8313. "orchestra/testbench": "^5.0|^6.0",
  8314. "psalm/plugin-laravel": "^1.2"
  8315. },
  8316. "suggest": {
  8317. "laravel/telescope": "^3.1"
  8318. },
  8319. "type": "library",
  8320. "extra": {
  8321. "branch-alias": {
  8322. "dev-master": "2.x-dev"
  8323. },
  8324. "laravel": {
  8325. "providers": [
  8326. "Facade\\Ignition\\IgnitionServiceProvider"
  8327. ],
  8328. "aliases": {
  8329. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8330. }
  8331. }
  8332. },
  8333. "autoload": {
  8334. "files": [
  8335. "src/helpers.php"
  8336. ],
  8337. "psr-4": {
  8338. "Facade\\Ignition\\": "src"
  8339. }
  8340. },
  8341. "notification-url": "https://packagist.org/downloads/",
  8342. "license": [
  8343. "MIT"
  8344. ],
  8345. "description": "A beautiful error page for Laravel applications.",
  8346. "homepage": "https://github.com/facade/ignition",
  8347. "keywords": [
  8348. "error",
  8349. "flare",
  8350. "laravel",
  8351. "page"
  8352. ],
  8353. "support": {
  8354. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8355. "forum": "https://twitter.com/flareappio",
  8356. "issues": "https://github.com/facade/ignition/issues",
  8357. "source": "https://github.com/facade/ignition"
  8358. },
  8359. "time": "2023-01-26T12:34:59+00:00"
  8360. },
  8361. {
  8362. "name": "facade/ignition-contracts",
  8363. "version": "1.0.2",
  8364. "source": {
  8365. "type": "git",
  8366. "url": "https://github.com/facade/ignition-contracts.git",
  8367. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8368. },
  8369. "dist": {
  8370. "type": "zip",
  8371. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8372. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8373. "shasum": "",
  8374. "mirrors": [
  8375. {
  8376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8377. "preferred": true
  8378. }
  8379. ]
  8380. },
  8381. "require": {
  8382. "php": "^7.3|^8.0"
  8383. },
  8384. "require-dev": {
  8385. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8386. "phpunit/phpunit": "^9.3.11",
  8387. "vimeo/psalm": "^3.17.1"
  8388. },
  8389. "type": "library",
  8390. "autoload": {
  8391. "psr-4": {
  8392. "Facade\\IgnitionContracts\\": "src"
  8393. }
  8394. },
  8395. "notification-url": "https://packagist.org/downloads/",
  8396. "license": [
  8397. "MIT"
  8398. ],
  8399. "authors": [
  8400. {
  8401. "name": "Freek Van der Herten",
  8402. "email": "freek@spatie.be",
  8403. "homepage": "https://flareapp.io",
  8404. "role": "Developer"
  8405. }
  8406. ],
  8407. "description": "Solution contracts for Ignition",
  8408. "homepage": "https://github.com/facade/ignition-contracts",
  8409. "keywords": [
  8410. "contracts",
  8411. "flare",
  8412. "ignition"
  8413. ],
  8414. "support": {
  8415. "issues": "https://github.com/facade/ignition-contracts/issues",
  8416. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8417. },
  8418. "time": "2020-10-16T08:27:54+00:00"
  8419. },
  8420. {
  8421. "name": "fakerphp/faker",
  8422. "version": "v1.23.1",
  8423. "source": {
  8424. "type": "git",
  8425. "url": "https://github.com/FakerPHP/Faker.git",
  8426. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8427. },
  8428. "dist": {
  8429. "type": "zip",
  8430. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8431. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8432. "shasum": "",
  8433. "mirrors": [
  8434. {
  8435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8436. "preferred": true
  8437. }
  8438. ]
  8439. },
  8440. "require": {
  8441. "php": "^7.4 || ^8.0",
  8442. "psr/container": "^1.0 || ^2.0",
  8443. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8444. },
  8445. "conflict": {
  8446. "fzaninotto/faker": "*"
  8447. },
  8448. "require-dev": {
  8449. "bamarni/composer-bin-plugin": "^1.4.1",
  8450. "doctrine/persistence": "^1.3 || ^2.0",
  8451. "ext-intl": "*",
  8452. "phpunit/phpunit": "^9.5.26",
  8453. "symfony/phpunit-bridge": "^5.4.16"
  8454. },
  8455. "suggest": {
  8456. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8457. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8458. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8459. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8460. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8461. },
  8462. "type": "library",
  8463. "autoload": {
  8464. "psr-4": {
  8465. "Faker\\": "src/Faker/"
  8466. }
  8467. },
  8468. "notification-url": "https://packagist.org/downloads/",
  8469. "license": [
  8470. "MIT"
  8471. ],
  8472. "authors": [
  8473. {
  8474. "name": "François Zaninotto"
  8475. }
  8476. ],
  8477. "description": "Faker is a PHP library that generates fake data for you.",
  8478. "keywords": [
  8479. "data",
  8480. "faker",
  8481. "fixtures"
  8482. ],
  8483. "support": {
  8484. "issues": "https://github.com/FakerPHP/Faker/issues",
  8485. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8486. },
  8487. "time": "2024-01-02T13:46:09+00:00"
  8488. },
  8489. {
  8490. "name": "filp/whoops",
  8491. "version": "2.16.0",
  8492. "source": {
  8493. "type": "git",
  8494. "url": "https://github.com/filp/whoops.git",
  8495. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  8496. },
  8497. "dist": {
  8498. "type": "zip",
  8499. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  8500. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  8501. "shasum": "",
  8502. "mirrors": [
  8503. {
  8504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8505. "preferred": true
  8506. }
  8507. ]
  8508. },
  8509. "require": {
  8510. "php": "^7.1 || ^8.0",
  8511. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8512. },
  8513. "require-dev": {
  8514. "mockery/mockery": "^1.0",
  8515. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8516. "symfony/var-dumper": "^4.0 || ^5.0"
  8517. },
  8518. "suggest": {
  8519. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8520. "whoops/soap": "Formats errors as SOAP responses"
  8521. },
  8522. "type": "library",
  8523. "extra": {
  8524. "branch-alias": {
  8525. "dev-master": "2.7-dev"
  8526. }
  8527. },
  8528. "autoload": {
  8529. "psr-4": {
  8530. "Whoops\\": "src/Whoops/"
  8531. }
  8532. },
  8533. "notification-url": "https://packagist.org/downloads/",
  8534. "license": [
  8535. "MIT"
  8536. ],
  8537. "authors": [
  8538. {
  8539. "name": "Filipe Dobreira",
  8540. "homepage": "https://github.com/filp",
  8541. "role": "Developer"
  8542. }
  8543. ],
  8544. "description": "php error handling for cool kids",
  8545. "homepage": "https://filp.github.io/whoops/",
  8546. "keywords": [
  8547. "error",
  8548. "exception",
  8549. "handling",
  8550. "library",
  8551. "throwable",
  8552. "whoops"
  8553. ],
  8554. "support": {
  8555. "issues": "https://github.com/filp/whoops/issues",
  8556. "source": "https://github.com/filp/whoops/tree/2.16.0"
  8557. },
  8558. "funding": [
  8559. {
  8560. "url": "https://github.com/denis-sokolov",
  8561. "type": "github"
  8562. }
  8563. ],
  8564. "time": "2024-09-25T12:00:00+00:00"
  8565. },
  8566. {
  8567. "name": "hamcrest/hamcrest-php",
  8568. "version": "v2.0.1",
  8569. "source": {
  8570. "type": "git",
  8571. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8572. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8573. },
  8574. "dist": {
  8575. "type": "zip",
  8576. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8577. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8578. "shasum": "",
  8579. "mirrors": [
  8580. {
  8581. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8582. "preferred": true
  8583. }
  8584. ]
  8585. },
  8586. "require": {
  8587. "php": "^5.3|^7.0|^8.0"
  8588. },
  8589. "replace": {
  8590. "cordoval/hamcrest-php": "*",
  8591. "davedevelopment/hamcrest-php": "*",
  8592. "kodova/hamcrest-php": "*"
  8593. },
  8594. "require-dev": {
  8595. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8596. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8597. },
  8598. "type": "library",
  8599. "extra": {
  8600. "branch-alias": {
  8601. "dev-master": "2.1-dev"
  8602. }
  8603. },
  8604. "autoload": {
  8605. "classmap": [
  8606. "hamcrest"
  8607. ]
  8608. },
  8609. "notification-url": "https://packagist.org/downloads/",
  8610. "license": [
  8611. "BSD-3-Clause"
  8612. ],
  8613. "description": "This is the PHP port of Hamcrest Matchers",
  8614. "keywords": [
  8615. "test"
  8616. ],
  8617. "support": {
  8618. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8619. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8620. },
  8621. "time": "2020-07-09T08:09:16+00:00"
  8622. },
  8623. {
  8624. "name": "laravel/sail",
  8625. "version": "v1.25.0",
  8626. "source": {
  8627. "type": "git",
  8628. "url": "https://github.com/laravel/sail.git",
  8629. "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a"
  8630. },
  8631. "dist": {
  8632. "type": "zip",
  8633. "url": "https://api.github.com/repos/laravel/sail/zipball/e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
  8634. "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
  8635. "shasum": "",
  8636. "mirrors": [
  8637. {
  8638. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8639. "preferred": true
  8640. }
  8641. ]
  8642. },
  8643. "require": {
  8644. "illuminate/console": "^8.0|^9.0|^10.0",
  8645. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8646. "illuminate/support": "^8.0|^9.0|^10.0",
  8647. "php": "^8.0",
  8648. "symfony/yaml": "^6.0"
  8649. },
  8650. "require-dev": {
  8651. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8652. "phpstan/phpstan": "^1.10"
  8653. },
  8654. "bin": [
  8655. "bin/sail"
  8656. ],
  8657. "type": "library",
  8658. "extra": {
  8659. "laravel": {
  8660. "providers": [
  8661. "Laravel\\Sail\\SailServiceProvider"
  8662. ]
  8663. },
  8664. "branch-alias": {
  8665. "dev-master": "1.x-dev"
  8666. }
  8667. },
  8668. "autoload": {
  8669. "psr-4": {
  8670. "Laravel\\Sail\\": "src/"
  8671. }
  8672. },
  8673. "notification-url": "https://packagist.org/downloads/",
  8674. "license": [
  8675. "MIT"
  8676. ],
  8677. "authors": [
  8678. {
  8679. "name": "Taylor Otwell",
  8680. "email": "taylor@laravel.com"
  8681. }
  8682. ],
  8683. "description": "Docker files for running a basic Laravel application.",
  8684. "keywords": [
  8685. "docker",
  8686. "laravel"
  8687. ],
  8688. "support": {
  8689. "issues": "https://github.com/laravel/sail/issues",
  8690. "source": "https://github.com/laravel/sail"
  8691. },
  8692. "time": "2023-09-11T17:37:09+00:00"
  8693. },
  8694. {
  8695. "name": "mockery/mockery",
  8696. "version": "1.6.12",
  8697. "source": {
  8698. "type": "git",
  8699. "url": "https://github.com/mockery/mockery.git",
  8700. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8701. },
  8702. "dist": {
  8703. "type": "zip",
  8704. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8705. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8706. "shasum": "",
  8707. "mirrors": [
  8708. {
  8709. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8710. "preferred": true
  8711. }
  8712. ]
  8713. },
  8714. "require": {
  8715. "hamcrest/hamcrest-php": "^2.0.1",
  8716. "lib-pcre": ">=7.0",
  8717. "php": ">=7.3"
  8718. },
  8719. "conflict": {
  8720. "phpunit/phpunit": "<8.0"
  8721. },
  8722. "require-dev": {
  8723. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8724. "symplify/easy-coding-standard": "^12.1.14"
  8725. },
  8726. "type": "library",
  8727. "autoload": {
  8728. "files": [
  8729. "library/helpers.php",
  8730. "library/Mockery.php"
  8731. ],
  8732. "psr-4": {
  8733. "Mockery\\": "library/Mockery"
  8734. }
  8735. },
  8736. "notification-url": "https://packagist.org/downloads/",
  8737. "license": [
  8738. "BSD-3-Clause"
  8739. ],
  8740. "authors": [
  8741. {
  8742. "name": "Pádraic Brady",
  8743. "email": "padraic.brady@gmail.com",
  8744. "homepage": "https://github.com/padraic",
  8745. "role": "Author"
  8746. },
  8747. {
  8748. "name": "Dave Marshall",
  8749. "email": "dave.marshall@atstsolutions.co.uk",
  8750. "homepage": "https://davedevelopment.co.uk",
  8751. "role": "Developer"
  8752. },
  8753. {
  8754. "name": "Nathanael Esayeas",
  8755. "email": "nathanael.esayeas@protonmail.com",
  8756. "homepage": "https://github.com/ghostwriter",
  8757. "role": "Lead Developer"
  8758. }
  8759. ],
  8760. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8761. "homepage": "https://github.com/mockery/mockery",
  8762. "keywords": [
  8763. "BDD",
  8764. "TDD",
  8765. "library",
  8766. "mock",
  8767. "mock objects",
  8768. "mockery",
  8769. "stub",
  8770. "test",
  8771. "test double",
  8772. "testing"
  8773. ],
  8774. "support": {
  8775. "docs": "https://docs.mockery.io/",
  8776. "issues": "https://github.com/mockery/mockery/issues",
  8777. "rss": "https://github.com/mockery/mockery/releases.atom",
  8778. "security": "https://github.com/mockery/mockery/security/advisories",
  8779. "source": "https://github.com/mockery/mockery"
  8780. },
  8781. "time": "2024-05-16T03:13:13+00:00"
  8782. },
  8783. {
  8784. "name": "myclabs/deep-copy",
  8785. "version": "1.x-dev",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/myclabs/DeepCopy.git",
  8789. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8794. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8795. "shasum": "",
  8796. "mirrors": [
  8797. {
  8798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8799. "preferred": true
  8800. }
  8801. ]
  8802. },
  8803. "require": {
  8804. "php": "^7.1 || ^8.0"
  8805. },
  8806. "conflict": {
  8807. "doctrine/collections": "<1.6.8",
  8808. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8809. },
  8810. "require-dev": {
  8811. "doctrine/collections": "^1.6.8",
  8812. "doctrine/common": "^2.13.3 || ^3.2.2",
  8813. "phpspec/prophecy": "^1.10",
  8814. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8815. },
  8816. "default-branch": true,
  8817. "type": "library",
  8818. "autoload": {
  8819. "files": [
  8820. "src/DeepCopy/deep_copy.php"
  8821. ],
  8822. "psr-4": {
  8823. "DeepCopy\\": "src/DeepCopy/"
  8824. }
  8825. },
  8826. "notification-url": "https://packagist.org/downloads/",
  8827. "license": [
  8828. "MIT"
  8829. ],
  8830. "description": "Create deep copies (clones) of your objects",
  8831. "keywords": [
  8832. "clone",
  8833. "copy",
  8834. "duplicate",
  8835. "object",
  8836. "object graph"
  8837. ],
  8838. "support": {
  8839. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8840. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8841. },
  8842. "funding": [
  8843. {
  8844. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8845. "type": "tidelift"
  8846. }
  8847. ],
  8848. "time": "2025-07-05T12:25:42+00:00"
  8849. },
  8850. {
  8851. "name": "nunomaduro/collision",
  8852. "version": "v5.11.0",
  8853. "source": {
  8854. "type": "git",
  8855. "url": "https://github.com/nunomaduro/collision.git",
  8856. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8857. },
  8858. "dist": {
  8859. "type": "zip",
  8860. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8861. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8862. "shasum": "",
  8863. "mirrors": [
  8864. {
  8865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8866. "preferred": true
  8867. }
  8868. ]
  8869. },
  8870. "require": {
  8871. "facade/ignition-contracts": "^1.0",
  8872. "filp/whoops": "^2.14.3",
  8873. "php": "^7.3 || ^8.0",
  8874. "symfony/console": "^5.0"
  8875. },
  8876. "require-dev": {
  8877. "brianium/paratest": "^6.1",
  8878. "fideloper/proxy": "^4.4.1",
  8879. "fruitcake/laravel-cors": "^2.0.3",
  8880. "laravel/framework": "8.x-dev",
  8881. "nunomaduro/larastan": "^0.6.2",
  8882. "nunomaduro/mock-final-classes": "^1.0",
  8883. "orchestra/testbench": "^6.0",
  8884. "phpstan/phpstan": "^0.12.64",
  8885. "phpunit/phpunit": "^9.5.0"
  8886. },
  8887. "type": "library",
  8888. "extra": {
  8889. "laravel": {
  8890. "providers": [
  8891. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8892. ]
  8893. }
  8894. },
  8895. "autoload": {
  8896. "psr-4": {
  8897. "NunoMaduro\\Collision\\": "src/"
  8898. }
  8899. },
  8900. "notification-url": "https://packagist.org/downloads/",
  8901. "license": [
  8902. "MIT"
  8903. ],
  8904. "authors": [
  8905. {
  8906. "name": "Nuno Maduro",
  8907. "email": "enunomaduro@gmail.com"
  8908. }
  8909. ],
  8910. "description": "Cli error handling for console/command-line PHP applications.",
  8911. "keywords": [
  8912. "artisan",
  8913. "cli",
  8914. "command-line",
  8915. "console",
  8916. "error",
  8917. "handling",
  8918. "laravel",
  8919. "laravel-zero",
  8920. "php",
  8921. "symfony"
  8922. ],
  8923. "support": {
  8924. "issues": "https://github.com/nunomaduro/collision/issues",
  8925. "source": "https://github.com/nunomaduro/collision"
  8926. },
  8927. "funding": [
  8928. {
  8929. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8930. "type": "custom"
  8931. },
  8932. {
  8933. "url": "https://github.com/nunomaduro",
  8934. "type": "github"
  8935. },
  8936. {
  8937. "url": "https://www.patreon.com/nunomaduro",
  8938. "type": "patreon"
  8939. }
  8940. ],
  8941. "time": "2022-01-10T16:22:52+00:00"
  8942. },
  8943. {
  8944. "name": "phar-io/manifest",
  8945. "version": "dev-master",
  8946. "source": {
  8947. "type": "git",
  8948. "url": "https://github.com/phar-io/manifest.git",
  8949. "reference": "c581d4941e196459bf76c945a8ca922963a66708"
  8950. },
  8951. "dist": {
  8952. "type": "zip",
  8953. "url": "https://api.github.com/repos/phar-io/manifest/zipball/c581d4941e196459bf76c945a8ca922963a66708",
  8954. "reference": "c581d4941e196459bf76c945a8ca922963a66708",
  8955. "shasum": "",
  8956. "mirrors": [
  8957. {
  8958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8959. "preferred": true
  8960. }
  8961. ]
  8962. },
  8963. "require": {
  8964. "ext-dom": "*",
  8965. "ext-libxml": "*",
  8966. "ext-phar": "*",
  8967. "ext-xmlwriter": "*",
  8968. "phar-io/version": "^3.0.1",
  8969. "php": "^7.2 || ^8.0"
  8970. },
  8971. "default-branch": true,
  8972. "type": "library",
  8973. "extra": {
  8974. "branch-alias": {
  8975. "dev-master": "2.0.x-dev"
  8976. }
  8977. },
  8978. "autoload": {
  8979. "classmap": [
  8980. "src/"
  8981. ]
  8982. },
  8983. "notification-url": "https://packagist.org/downloads/",
  8984. "license": [
  8985. "BSD-3-Clause"
  8986. ],
  8987. "authors": [
  8988. {
  8989. "name": "Arne Blankerts",
  8990. "email": "arne@blankerts.de",
  8991. "role": "Developer"
  8992. },
  8993. {
  8994. "name": "Sebastian Heuer",
  8995. "email": "sebastian@phpeople.de",
  8996. "role": "Developer"
  8997. },
  8998. {
  8999. "name": "Sebastian Bergmann",
  9000. "email": "sebastian@phpunit.de",
  9001. "role": "Developer"
  9002. }
  9003. ],
  9004. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9005. "support": {
  9006. "issues": "https://github.com/phar-io/manifest/issues",
  9007. "source": "https://github.com/phar-io/manifest/tree/master"
  9008. },
  9009. "funding": [
  9010. {
  9011. "url": "https://github.com/theseer",
  9012. "type": "github"
  9013. }
  9014. ],
  9015. "time": "2025-11-27T15:23:09+00:00"
  9016. },
  9017. {
  9018. "name": "phar-io/version",
  9019. "version": "3.2.1",
  9020. "source": {
  9021. "type": "git",
  9022. "url": "https://github.com/phar-io/version.git",
  9023. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9024. },
  9025. "dist": {
  9026. "type": "zip",
  9027. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9028. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9029. "shasum": "",
  9030. "mirrors": [
  9031. {
  9032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9033. "preferred": true
  9034. }
  9035. ]
  9036. },
  9037. "require": {
  9038. "php": "^7.2 || ^8.0"
  9039. },
  9040. "type": "library",
  9041. "autoload": {
  9042. "classmap": [
  9043. "src/"
  9044. ]
  9045. },
  9046. "notification-url": "https://packagist.org/downloads/",
  9047. "license": [
  9048. "BSD-3-Clause"
  9049. ],
  9050. "authors": [
  9051. {
  9052. "name": "Arne Blankerts",
  9053. "email": "arne@blankerts.de",
  9054. "role": "Developer"
  9055. },
  9056. {
  9057. "name": "Sebastian Heuer",
  9058. "email": "sebastian@phpeople.de",
  9059. "role": "Developer"
  9060. },
  9061. {
  9062. "name": "Sebastian Bergmann",
  9063. "email": "sebastian@phpunit.de",
  9064. "role": "Developer"
  9065. }
  9066. ],
  9067. "description": "Library for handling version information and constraints",
  9068. "support": {
  9069. "issues": "https://github.com/phar-io/version/issues",
  9070. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9071. },
  9072. "time": "2022-02-21T01:04:05+00:00"
  9073. },
  9074. {
  9075. "name": "phpunit/php-code-coverage",
  9076. "version": "9.2.32",
  9077. "source": {
  9078. "type": "git",
  9079. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9080. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9081. },
  9082. "dist": {
  9083. "type": "zip",
  9084. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9085. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9086. "shasum": "",
  9087. "mirrors": [
  9088. {
  9089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9090. "preferred": true
  9091. }
  9092. ]
  9093. },
  9094. "require": {
  9095. "ext-dom": "*",
  9096. "ext-libxml": "*",
  9097. "ext-xmlwriter": "*",
  9098. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9099. "php": ">=7.3",
  9100. "phpunit/php-file-iterator": "^3.0.6",
  9101. "phpunit/php-text-template": "^2.0.4",
  9102. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9103. "sebastian/complexity": "^2.0.3",
  9104. "sebastian/environment": "^5.1.5",
  9105. "sebastian/lines-of-code": "^1.0.4",
  9106. "sebastian/version": "^3.0.2",
  9107. "theseer/tokenizer": "^1.2.3"
  9108. },
  9109. "require-dev": {
  9110. "phpunit/phpunit": "^9.6"
  9111. },
  9112. "suggest": {
  9113. "ext-pcov": "PHP extension that provides line coverage",
  9114. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9115. },
  9116. "type": "library",
  9117. "extra": {
  9118. "branch-alias": {
  9119. "dev-main": "9.2.x-dev"
  9120. }
  9121. },
  9122. "autoload": {
  9123. "classmap": [
  9124. "src/"
  9125. ]
  9126. },
  9127. "notification-url": "https://packagist.org/downloads/",
  9128. "license": [
  9129. "BSD-3-Clause"
  9130. ],
  9131. "authors": [
  9132. {
  9133. "name": "Sebastian Bergmann",
  9134. "email": "sebastian@phpunit.de",
  9135. "role": "lead"
  9136. }
  9137. ],
  9138. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9139. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9140. "keywords": [
  9141. "coverage",
  9142. "testing",
  9143. "xunit"
  9144. ],
  9145. "support": {
  9146. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9147. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9148. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9149. },
  9150. "funding": [
  9151. {
  9152. "url": "https://github.com/sebastianbergmann",
  9153. "type": "github"
  9154. }
  9155. ],
  9156. "time": "2024-08-22T04:23:01+00:00"
  9157. },
  9158. {
  9159. "name": "phpunit/php-file-iterator",
  9160. "version": "3.0.6",
  9161. "source": {
  9162. "type": "git",
  9163. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9164. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9165. },
  9166. "dist": {
  9167. "type": "zip",
  9168. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9169. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9170. "shasum": "",
  9171. "mirrors": [
  9172. {
  9173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9174. "preferred": true
  9175. }
  9176. ]
  9177. },
  9178. "require": {
  9179. "php": ">=7.3"
  9180. },
  9181. "require-dev": {
  9182. "phpunit/phpunit": "^9.3"
  9183. },
  9184. "type": "library",
  9185. "extra": {
  9186. "branch-alias": {
  9187. "dev-master": "3.0-dev"
  9188. }
  9189. },
  9190. "autoload": {
  9191. "classmap": [
  9192. "src/"
  9193. ]
  9194. },
  9195. "notification-url": "https://packagist.org/downloads/",
  9196. "license": [
  9197. "BSD-3-Clause"
  9198. ],
  9199. "authors": [
  9200. {
  9201. "name": "Sebastian Bergmann",
  9202. "email": "sebastian@phpunit.de",
  9203. "role": "lead"
  9204. }
  9205. ],
  9206. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9207. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9208. "keywords": [
  9209. "filesystem",
  9210. "iterator"
  9211. ],
  9212. "support": {
  9213. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9214. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9215. },
  9216. "funding": [
  9217. {
  9218. "url": "https://github.com/sebastianbergmann",
  9219. "type": "github"
  9220. }
  9221. ],
  9222. "time": "2021-12-02T12:48:52+00:00"
  9223. },
  9224. {
  9225. "name": "phpunit/php-invoker",
  9226. "version": "3.1.1",
  9227. "source": {
  9228. "type": "git",
  9229. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9230. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9231. },
  9232. "dist": {
  9233. "type": "zip",
  9234. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9235. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9236. "shasum": "",
  9237. "mirrors": [
  9238. {
  9239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9240. "preferred": true
  9241. }
  9242. ]
  9243. },
  9244. "require": {
  9245. "php": ">=7.3"
  9246. },
  9247. "require-dev": {
  9248. "ext-pcntl": "*",
  9249. "phpunit/phpunit": "^9.3"
  9250. },
  9251. "suggest": {
  9252. "ext-pcntl": "*"
  9253. },
  9254. "type": "library",
  9255. "extra": {
  9256. "branch-alias": {
  9257. "dev-master": "3.1-dev"
  9258. }
  9259. },
  9260. "autoload": {
  9261. "classmap": [
  9262. "src/"
  9263. ]
  9264. },
  9265. "notification-url": "https://packagist.org/downloads/",
  9266. "license": [
  9267. "BSD-3-Clause"
  9268. ],
  9269. "authors": [
  9270. {
  9271. "name": "Sebastian Bergmann",
  9272. "email": "sebastian@phpunit.de",
  9273. "role": "lead"
  9274. }
  9275. ],
  9276. "description": "Invoke callables with a timeout",
  9277. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9278. "keywords": [
  9279. "process"
  9280. ],
  9281. "support": {
  9282. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9283. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9284. },
  9285. "funding": [
  9286. {
  9287. "url": "https://github.com/sebastianbergmann",
  9288. "type": "github"
  9289. }
  9290. ],
  9291. "time": "2020-09-28T05:58:55+00:00"
  9292. },
  9293. {
  9294. "name": "phpunit/php-text-template",
  9295. "version": "2.0.4",
  9296. "source": {
  9297. "type": "git",
  9298. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9299. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9300. },
  9301. "dist": {
  9302. "type": "zip",
  9303. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9304. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9305. "shasum": "",
  9306. "mirrors": [
  9307. {
  9308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9309. "preferred": true
  9310. }
  9311. ]
  9312. },
  9313. "require": {
  9314. "php": ">=7.3"
  9315. },
  9316. "require-dev": {
  9317. "phpunit/phpunit": "^9.3"
  9318. },
  9319. "type": "library",
  9320. "extra": {
  9321. "branch-alias": {
  9322. "dev-master": "2.0-dev"
  9323. }
  9324. },
  9325. "autoload": {
  9326. "classmap": [
  9327. "src/"
  9328. ]
  9329. },
  9330. "notification-url": "https://packagist.org/downloads/",
  9331. "license": [
  9332. "BSD-3-Clause"
  9333. ],
  9334. "authors": [
  9335. {
  9336. "name": "Sebastian Bergmann",
  9337. "email": "sebastian@phpunit.de",
  9338. "role": "lead"
  9339. }
  9340. ],
  9341. "description": "Simple template engine.",
  9342. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9343. "keywords": [
  9344. "template"
  9345. ],
  9346. "support": {
  9347. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9348. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9349. },
  9350. "funding": [
  9351. {
  9352. "url": "https://github.com/sebastianbergmann",
  9353. "type": "github"
  9354. }
  9355. ],
  9356. "time": "2020-10-26T05:33:50+00:00"
  9357. },
  9358. {
  9359. "name": "phpunit/php-timer",
  9360. "version": "5.0.3",
  9361. "source": {
  9362. "type": "git",
  9363. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9364. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9365. },
  9366. "dist": {
  9367. "type": "zip",
  9368. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9369. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9370. "shasum": "",
  9371. "mirrors": [
  9372. {
  9373. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9374. "preferred": true
  9375. }
  9376. ]
  9377. },
  9378. "require": {
  9379. "php": ">=7.3"
  9380. },
  9381. "require-dev": {
  9382. "phpunit/phpunit": "^9.3"
  9383. },
  9384. "type": "library",
  9385. "extra": {
  9386. "branch-alias": {
  9387. "dev-master": "5.0-dev"
  9388. }
  9389. },
  9390. "autoload": {
  9391. "classmap": [
  9392. "src/"
  9393. ]
  9394. },
  9395. "notification-url": "https://packagist.org/downloads/",
  9396. "license": [
  9397. "BSD-3-Clause"
  9398. ],
  9399. "authors": [
  9400. {
  9401. "name": "Sebastian Bergmann",
  9402. "email": "sebastian@phpunit.de",
  9403. "role": "lead"
  9404. }
  9405. ],
  9406. "description": "Utility class for timing",
  9407. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9408. "keywords": [
  9409. "timer"
  9410. ],
  9411. "support": {
  9412. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9413. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9414. },
  9415. "funding": [
  9416. {
  9417. "url": "https://github.com/sebastianbergmann",
  9418. "type": "github"
  9419. }
  9420. ],
  9421. "time": "2020-10-26T13:16:10+00:00"
  9422. },
  9423. {
  9424. "name": "phpunit/phpunit",
  9425. "version": "9.6.30",
  9426. "source": {
  9427. "type": "git",
  9428. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9429. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4"
  9430. },
  9431. "dist": {
  9432. "type": "zip",
  9433. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9434. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9435. "shasum": "",
  9436. "mirrors": [
  9437. {
  9438. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9439. "preferred": true
  9440. }
  9441. ]
  9442. },
  9443. "require": {
  9444. "doctrine/instantiator": "^1.5.0 || ^2",
  9445. "ext-dom": "*",
  9446. "ext-json": "*",
  9447. "ext-libxml": "*",
  9448. "ext-mbstring": "*",
  9449. "ext-xml": "*",
  9450. "ext-xmlwriter": "*",
  9451. "myclabs/deep-copy": "^1.13.4",
  9452. "phar-io/manifest": "^2.0.4",
  9453. "phar-io/version": "^3.2.1",
  9454. "php": ">=7.3",
  9455. "phpunit/php-code-coverage": "^9.2.32",
  9456. "phpunit/php-file-iterator": "^3.0.6",
  9457. "phpunit/php-invoker": "^3.1.1",
  9458. "phpunit/php-text-template": "^2.0.4",
  9459. "phpunit/php-timer": "^5.0.3",
  9460. "sebastian/cli-parser": "^1.0.2",
  9461. "sebastian/code-unit": "^1.0.8",
  9462. "sebastian/comparator": "^4.0.9",
  9463. "sebastian/diff": "^4.0.6",
  9464. "sebastian/environment": "^5.1.5",
  9465. "sebastian/exporter": "^4.0.8",
  9466. "sebastian/global-state": "^5.0.8",
  9467. "sebastian/object-enumerator": "^4.0.4",
  9468. "sebastian/resource-operations": "^3.0.4",
  9469. "sebastian/type": "^3.2.1",
  9470. "sebastian/version": "^3.0.2"
  9471. },
  9472. "suggest": {
  9473. "ext-soap": "To be able to generate mocks based on WSDL files",
  9474. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9475. },
  9476. "bin": [
  9477. "phpunit"
  9478. ],
  9479. "type": "library",
  9480. "extra": {
  9481. "branch-alias": {
  9482. "dev-master": "9.6-dev"
  9483. }
  9484. },
  9485. "autoload": {
  9486. "files": [
  9487. "src/Framework/Assert/Functions.php"
  9488. ],
  9489. "classmap": [
  9490. "src/"
  9491. ]
  9492. },
  9493. "notification-url": "https://packagist.org/downloads/",
  9494. "license": [
  9495. "BSD-3-Clause"
  9496. ],
  9497. "authors": [
  9498. {
  9499. "name": "Sebastian Bergmann",
  9500. "email": "sebastian@phpunit.de",
  9501. "role": "lead"
  9502. }
  9503. ],
  9504. "description": "The PHP Unit Testing framework.",
  9505. "homepage": "https://phpunit.de/",
  9506. "keywords": [
  9507. "phpunit",
  9508. "testing",
  9509. "xunit"
  9510. ],
  9511. "support": {
  9512. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9513. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9514. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.30"
  9515. },
  9516. "funding": [
  9517. {
  9518. "url": "https://phpunit.de/sponsors.html",
  9519. "type": "custom"
  9520. },
  9521. {
  9522. "url": "https://github.com/sebastianbergmann",
  9523. "type": "github"
  9524. },
  9525. {
  9526. "url": "https://liberapay.com/sebastianbergmann",
  9527. "type": "liberapay"
  9528. },
  9529. {
  9530. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9531. "type": "thanks_dev"
  9532. },
  9533. {
  9534. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9535. "type": "tidelift"
  9536. }
  9537. ],
  9538. "time": "2025-12-01T07:35:08+00:00"
  9539. },
  9540. {
  9541. "name": "sebastian/cli-parser",
  9542. "version": "1.0.2",
  9543. "source": {
  9544. "type": "git",
  9545. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9546. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9547. },
  9548. "dist": {
  9549. "type": "zip",
  9550. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9551. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9552. "shasum": "",
  9553. "mirrors": [
  9554. {
  9555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9556. "preferred": true
  9557. }
  9558. ]
  9559. },
  9560. "require": {
  9561. "php": ">=7.3"
  9562. },
  9563. "require-dev": {
  9564. "phpunit/phpunit": "^9.3"
  9565. },
  9566. "type": "library",
  9567. "extra": {
  9568. "branch-alias": {
  9569. "dev-master": "1.0-dev"
  9570. }
  9571. },
  9572. "autoload": {
  9573. "classmap": [
  9574. "src/"
  9575. ]
  9576. },
  9577. "notification-url": "https://packagist.org/downloads/",
  9578. "license": [
  9579. "BSD-3-Clause"
  9580. ],
  9581. "authors": [
  9582. {
  9583. "name": "Sebastian Bergmann",
  9584. "email": "sebastian@phpunit.de",
  9585. "role": "lead"
  9586. }
  9587. ],
  9588. "description": "Library for parsing CLI options",
  9589. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9590. "support": {
  9591. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9592. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9593. },
  9594. "funding": [
  9595. {
  9596. "url": "https://github.com/sebastianbergmann",
  9597. "type": "github"
  9598. }
  9599. ],
  9600. "time": "2024-03-02T06:27:43+00:00"
  9601. },
  9602. {
  9603. "name": "sebastian/code-unit",
  9604. "version": "1.0.8",
  9605. "source": {
  9606. "type": "git",
  9607. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9608. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9609. },
  9610. "dist": {
  9611. "type": "zip",
  9612. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9613. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9614. "shasum": "",
  9615. "mirrors": [
  9616. {
  9617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9618. "preferred": true
  9619. }
  9620. ]
  9621. },
  9622. "require": {
  9623. "php": ">=7.3"
  9624. },
  9625. "require-dev": {
  9626. "phpunit/phpunit": "^9.3"
  9627. },
  9628. "type": "library",
  9629. "extra": {
  9630. "branch-alias": {
  9631. "dev-master": "1.0-dev"
  9632. }
  9633. },
  9634. "autoload": {
  9635. "classmap": [
  9636. "src/"
  9637. ]
  9638. },
  9639. "notification-url": "https://packagist.org/downloads/",
  9640. "license": [
  9641. "BSD-3-Clause"
  9642. ],
  9643. "authors": [
  9644. {
  9645. "name": "Sebastian Bergmann",
  9646. "email": "sebastian@phpunit.de",
  9647. "role": "lead"
  9648. }
  9649. ],
  9650. "description": "Collection of value objects that represent the PHP code units",
  9651. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9652. "support": {
  9653. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9654. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9655. },
  9656. "funding": [
  9657. {
  9658. "url": "https://github.com/sebastianbergmann",
  9659. "type": "github"
  9660. }
  9661. ],
  9662. "time": "2020-10-26T13:08:54+00:00"
  9663. },
  9664. {
  9665. "name": "sebastian/code-unit-reverse-lookup",
  9666. "version": "2.0.3",
  9667. "source": {
  9668. "type": "git",
  9669. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9670. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9671. },
  9672. "dist": {
  9673. "type": "zip",
  9674. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9675. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9676. "shasum": "",
  9677. "mirrors": [
  9678. {
  9679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9680. "preferred": true
  9681. }
  9682. ]
  9683. },
  9684. "require": {
  9685. "php": ">=7.3"
  9686. },
  9687. "require-dev": {
  9688. "phpunit/phpunit": "^9.3"
  9689. },
  9690. "type": "library",
  9691. "extra": {
  9692. "branch-alias": {
  9693. "dev-master": "2.0-dev"
  9694. }
  9695. },
  9696. "autoload": {
  9697. "classmap": [
  9698. "src/"
  9699. ]
  9700. },
  9701. "notification-url": "https://packagist.org/downloads/",
  9702. "license": [
  9703. "BSD-3-Clause"
  9704. ],
  9705. "authors": [
  9706. {
  9707. "name": "Sebastian Bergmann",
  9708. "email": "sebastian@phpunit.de"
  9709. }
  9710. ],
  9711. "description": "Looks up which function or method a line of code belongs to",
  9712. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9713. "support": {
  9714. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9715. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9716. },
  9717. "funding": [
  9718. {
  9719. "url": "https://github.com/sebastianbergmann",
  9720. "type": "github"
  9721. }
  9722. ],
  9723. "time": "2020-09-28T05:30:19+00:00"
  9724. },
  9725. {
  9726. "name": "sebastian/comparator",
  9727. "version": "4.0.x-dev",
  9728. "source": {
  9729. "type": "git",
  9730. "url": "https://github.com/sebastianbergmann/comparator.git",
  9731. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5"
  9732. },
  9733. "dist": {
  9734. "type": "zip",
  9735. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9736. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9737. "shasum": "",
  9738. "mirrors": [
  9739. {
  9740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9741. "preferred": true
  9742. }
  9743. ]
  9744. },
  9745. "require": {
  9746. "php": ">=7.3",
  9747. "sebastian/diff": "^4.0",
  9748. "sebastian/exporter": "^4.0"
  9749. },
  9750. "require-dev": {
  9751. "phpunit/phpunit": "^9.3"
  9752. },
  9753. "type": "library",
  9754. "extra": {
  9755. "branch-alias": {
  9756. "dev-master": "4.0-dev"
  9757. }
  9758. },
  9759. "autoload": {
  9760. "classmap": [
  9761. "src/"
  9762. ]
  9763. },
  9764. "notification-url": "https://packagist.org/downloads/",
  9765. "license": [
  9766. "BSD-3-Clause"
  9767. ],
  9768. "authors": [
  9769. {
  9770. "name": "Sebastian Bergmann",
  9771. "email": "sebastian@phpunit.de"
  9772. },
  9773. {
  9774. "name": "Jeff Welch",
  9775. "email": "whatthejeff@gmail.com"
  9776. },
  9777. {
  9778. "name": "Volker Dusch",
  9779. "email": "github@wallbash.com"
  9780. },
  9781. {
  9782. "name": "Bernhard Schussek",
  9783. "email": "bschussek@2bepublished.at"
  9784. }
  9785. ],
  9786. "description": "Provides the functionality to compare PHP values for equality",
  9787. "homepage": "https://github.com/sebastianbergmann/comparator",
  9788. "keywords": [
  9789. "comparator",
  9790. "compare",
  9791. "equality"
  9792. ],
  9793. "support": {
  9794. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9795. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.9"
  9796. },
  9797. "funding": [
  9798. {
  9799. "url": "https://github.com/sebastianbergmann",
  9800. "type": "github"
  9801. },
  9802. {
  9803. "url": "https://liberapay.com/sebastianbergmann",
  9804. "type": "liberapay"
  9805. },
  9806. {
  9807. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9808. "type": "thanks_dev"
  9809. },
  9810. {
  9811. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  9812. "type": "tidelift"
  9813. }
  9814. ],
  9815. "time": "2025-08-10T06:51:50+00:00"
  9816. },
  9817. {
  9818. "name": "sebastian/complexity",
  9819. "version": "2.0.3",
  9820. "source": {
  9821. "type": "git",
  9822. "url": "https://github.com/sebastianbergmann/complexity.git",
  9823. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9824. },
  9825. "dist": {
  9826. "type": "zip",
  9827. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9828. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9829. "shasum": "",
  9830. "mirrors": [
  9831. {
  9832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9833. "preferred": true
  9834. }
  9835. ]
  9836. },
  9837. "require": {
  9838. "nikic/php-parser": "^4.18 || ^5.0",
  9839. "php": ">=7.3"
  9840. },
  9841. "require-dev": {
  9842. "phpunit/phpunit": "^9.3"
  9843. },
  9844. "type": "library",
  9845. "extra": {
  9846. "branch-alias": {
  9847. "dev-master": "2.0-dev"
  9848. }
  9849. },
  9850. "autoload": {
  9851. "classmap": [
  9852. "src/"
  9853. ]
  9854. },
  9855. "notification-url": "https://packagist.org/downloads/",
  9856. "license": [
  9857. "BSD-3-Clause"
  9858. ],
  9859. "authors": [
  9860. {
  9861. "name": "Sebastian Bergmann",
  9862. "email": "sebastian@phpunit.de",
  9863. "role": "lead"
  9864. }
  9865. ],
  9866. "description": "Library for calculating the complexity of PHP code units",
  9867. "homepage": "https://github.com/sebastianbergmann/complexity",
  9868. "support": {
  9869. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9870. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9871. },
  9872. "funding": [
  9873. {
  9874. "url": "https://github.com/sebastianbergmann",
  9875. "type": "github"
  9876. }
  9877. ],
  9878. "time": "2023-12-22T06:19:30+00:00"
  9879. },
  9880. {
  9881. "name": "sebastian/diff",
  9882. "version": "4.0.6",
  9883. "source": {
  9884. "type": "git",
  9885. "url": "https://github.com/sebastianbergmann/diff.git",
  9886. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9887. },
  9888. "dist": {
  9889. "type": "zip",
  9890. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9891. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9892. "shasum": "",
  9893. "mirrors": [
  9894. {
  9895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9896. "preferred": true
  9897. }
  9898. ]
  9899. },
  9900. "require": {
  9901. "php": ">=7.3"
  9902. },
  9903. "require-dev": {
  9904. "phpunit/phpunit": "^9.3",
  9905. "symfony/process": "^4.2 || ^5"
  9906. },
  9907. "type": "library",
  9908. "extra": {
  9909. "branch-alias": {
  9910. "dev-master": "4.0-dev"
  9911. }
  9912. },
  9913. "autoload": {
  9914. "classmap": [
  9915. "src/"
  9916. ]
  9917. },
  9918. "notification-url": "https://packagist.org/downloads/",
  9919. "license": [
  9920. "BSD-3-Clause"
  9921. ],
  9922. "authors": [
  9923. {
  9924. "name": "Sebastian Bergmann",
  9925. "email": "sebastian@phpunit.de"
  9926. },
  9927. {
  9928. "name": "Kore Nordmann",
  9929. "email": "mail@kore-nordmann.de"
  9930. }
  9931. ],
  9932. "description": "Diff implementation",
  9933. "homepage": "https://github.com/sebastianbergmann/diff",
  9934. "keywords": [
  9935. "diff",
  9936. "udiff",
  9937. "unidiff",
  9938. "unified diff"
  9939. ],
  9940. "support": {
  9941. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9942. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9943. },
  9944. "funding": [
  9945. {
  9946. "url": "https://github.com/sebastianbergmann",
  9947. "type": "github"
  9948. }
  9949. ],
  9950. "time": "2024-03-02T06:30:58+00:00"
  9951. },
  9952. {
  9953. "name": "sebastian/environment",
  9954. "version": "5.1.5",
  9955. "source": {
  9956. "type": "git",
  9957. "url": "https://github.com/sebastianbergmann/environment.git",
  9958. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9959. },
  9960. "dist": {
  9961. "type": "zip",
  9962. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9963. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9964. "shasum": "",
  9965. "mirrors": [
  9966. {
  9967. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9968. "preferred": true
  9969. }
  9970. ]
  9971. },
  9972. "require": {
  9973. "php": ">=7.3"
  9974. },
  9975. "require-dev": {
  9976. "phpunit/phpunit": "^9.3"
  9977. },
  9978. "suggest": {
  9979. "ext-posix": "*"
  9980. },
  9981. "type": "library",
  9982. "extra": {
  9983. "branch-alias": {
  9984. "dev-master": "5.1-dev"
  9985. }
  9986. },
  9987. "autoload": {
  9988. "classmap": [
  9989. "src/"
  9990. ]
  9991. },
  9992. "notification-url": "https://packagist.org/downloads/",
  9993. "license": [
  9994. "BSD-3-Clause"
  9995. ],
  9996. "authors": [
  9997. {
  9998. "name": "Sebastian Bergmann",
  9999. "email": "sebastian@phpunit.de"
  10000. }
  10001. ],
  10002. "description": "Provides functionality to handle HHVM/PHP environments",
  10003. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10004. "keywords": [
  10005. "Xdebug",
  10006. "environment",
  10007. "hhvm"
  10008. ],
  10009. "support": {
  10010. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10011. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10012. },
  10013. "funding": [
  10014. {
  10015. "url": "https://github.com/sebastianbergmann",
  10016. "type": "github"
  10017. }
  10018. ],
  10019. "time": "2023-02-03T06:03:51+00:00"
  10020. },
  10021. {
  10022. "name": "sebastian/exporter",
  10023. "version": "4.0.8",
  10024. "source": {
  10025. "type": "git",
  10026. "url": "https://github.com/sebastianbergmann/exporter.git",
  10027. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
  10028. },
  10029. "dist": {
  10030. "type": "zip",
  10031. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  10032. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  10033. "shasum": "",
  10034. "mirrors": [
  10035. {
  10036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10037. "preferred": true
  10038. }
  10039. ]
  10040. },
  10041. "require": {
  10042. "php": ">=7.3",
  10043. "sebastian/recursion-context": "^4.0"
  10044. },
  10045. "require-dev": {
  10046. "ext-mbstring": "*",
  10047. "phpunit/phpunit": "^9.3"
  10048. },
  10049. "type": "library",
  10050. "extra": {
  10051. "branch-alias": {
  10052. "dev-master": "4.0-dev"
  10053. }
  10054. },
  10055. "autoload": {
  10056. "classmap": [
  10057. "src/"
  10058. ]
  10059. },
  10060. "notification-url": "https://packagist.org/downloads/",
  10061. "license": [
  10062. "BSD-3-Clause"
  10063. ],
  10064. "authors": [
  10065. {
  10066. "name": "Sebastian Bergmann",
  10067. "email": "sebastian@phpunit.de"
  10068. },
  10069. {
  10070. "name": "Jeff Welch",
  10071. "email": "whatthejeff@gmail.com"
  10072. },
  10073. {
  10074. "name": "Volker Dusch",
  10075. "email": "github@wallbash.com"
  10076. },
  10077. {
  10078. "name": "Adam Harvey",
  10079. "email": "aharvey@php.net"
  10080. },
  10081. {
  10082. "name": "Bernhard Schussek",
  10083. "email": "bschussek@gmail.com"
  10084. }
  10085. ],
  10086. "description": "Provides the functionality to export PHP variables for visualization",
  10087. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10088. "keywords": [
  10089. "export",
  10090. "exporter"
  10091. ],
  10092. "support": {
  10093. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10094. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.8"
  10095. },
  10096. "funding": [
  10097. {
  10098. "url": "https://github.com/sebastianbergmann",
  10099. "type": "github"
  10100. },
  10101. {
  10102. "url": "https://liberapay.com/sebastianbergmann",
  10103. "type": "liberapay"
  10104. },
  10105. {
  10106. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10107. "type": "thanks_dev"
  10108. },
  10109. {
  10110. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  10111. "type": "tidelift"
  10112. }
  10113. ],
  10114. "time": "2025-09-24T06:03:27+00:00"
  10115. },
  10116. {
  10117. "name": "sebastian/global-state",
  10118. "version": "5.0.8",
  10119. "source": {
  10120. "type": "git",
  10121. "url": "https://github.com/sebastianbergmann/global-state.git",
  10122. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  10123. },
  10124. "dist": {
  10125. "type": "zip",
  10126. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10127. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10128. "shasum": "",
  10129. "mirrors": [
  10130. {
  10131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10132. "preferred": true
  10133. }
  10134. ]
  10135. },
  10136. "require": {
  10137. "php": ">=7.3",
  10138. "sebastian/object-reflector": "^2.0",
  10139. "sebastian/recursion-context": "^4.0"
  10140. },
  10141. "require-dev": {
  10142. "ext-dom": "*",
  10143. "phpunit/phpunit": "^9.3"
  10144. },
  10145. "suggest": {
  10146. "ext-uopz": "*"
  10147. },
  10148. "type": "library",
  10149. "extra": {
  10150. "branch-alias": {
  10151. "dev-master": "5.0-dev"
  10152. }
  10153. },
  10154. "autoload": {
  10155. "classmap": [
  10156. "src/"
  10157. ]
  10158. },
  10159. "notification-url": "https://packagist.org/downloads/",
  10160. "license": [
  10161. "BSD-3-Clause"
  10162. ],
  10163. "authors": [
  10164. {
  10165. "name": "Sebastian Bergmann",
  10166. "email": "sebastian@phpunit.de"
  10167. }
  10168. ],
  10169. "description": "Snapshotting of global state",
  10170. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10171. "keywords": [
  10172. "global state"
  10173. ],
  10174. "support": {
  10175. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10176. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  10177. },
  10178. "funding": [
  10179. {
  10180. "url": "https://github.com/sebastianbergmann",
  10181. "type": "github"
  10182. },
  10183. {
  10184. "url": "https://liberapay.com/sebastianbergmann",
  10185. "type": "liberapay"
  10186. },
  10187. {
  10188. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10189. "type": "thanks_dev"
  10190. },
  10191. {
  10192. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  10193. "type": "tidelift"
  10194. }
  10195. ],
  10196. "time": "2025-08-10T07:10:35+00:00"
  10197. },
  10198. {
  10199. "name": "sebastian/lines-of-code",
  10200. "version": "1.0.4",
  10201. "source": {
  10202. "type": "git",
  10203. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10204. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10205. },
  10206. "dist": {
  10207. "type": "zip",
  10208. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10209. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10210. "shasum": "",
  10211. "mirrors": [
  10212. {
  10213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10214. "preferred": true
  10215. }
  10216. ]
  10217. },
  10218. "require": {
  10219. "nikic/php-parser": "^4.18 || ^5.0",
  10220. "php": ">=7.3"
  10221. },
  10222. "require-dev": {
  10223. "phpunit/phpunit": "^9.3"
  10224. },
  10225. "type": "library",
  10226. "extra": {
  10227. "branch-alias": {
  10228. "dev-master": "1.0-dev"
  10229. }
  10230. },
  10231. "autoload": {
  10232. "classmap": [
  10233. "src/"
  10234. ]
  10235. },
  10236. "notification-url": "https://packagist.org/downloads/",
  10237. "license": [
  10238. "BSD-3-Clause"
  10239. ],
  10240. "authors": [
  10241. {
  10242. "name": "Sebastian Bergmann",
  10243. "email": "sebastian@phpunit.de",
  10244. "role": "lead"
  10245. }
  10246. ],
  10247. "description": "Library for counting the lines of code in PHP source code",
  10248. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10249. "support": {
  10250. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10251. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10252. },
  10253. "funding": [
  10254. {
  10255. "url": "https://github.com/sebastianbergmann",
  10256. "type": "github"
  10257. }
  10258. ],
  10259. "time": "2023-12-22T06:20:34+00:00"
  10260. },
  10261. {
  10262. "name": "sebastian/object-enumerator",
  10263. "version": "4.0.4",
  10264. "source": {
  10265. "type": "git",
  10266. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10267. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10268. },
  10269. "dist": {
  10270. "type": "zip",
  10271. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10272. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10273. "shasum": "",
  10274. "mirrors": [
  10275. {
  10276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10277. "preferred": true
  10278. }
  10279. ]
  10280. },
  10281. "require": {
  10282. "php": ">=7.3",
  10283. "sebastian/object-reflector": "^2.0",
  10284. "sebastian/recursion-context": "^4.0"
  10285. },
  10286. "require-dev": {
  10287. "phpunit/phpunit": "^9.3"
  10288. },
  10289. "type": "library",
  10290. "extra": {
  10291. "branch-alias": {
  10292. "dev-master": "4.0-dev"
  10293. }
  10294. },
  10295. "autoload": {
  10296. "classmap": [
  10297. "src/"
  10298. ]
  10299. },
  10300. "notification-url": "https://packagist.org/downloads/",
  10301. "license": [
  10302. "BSD-3-Clause"
  10303. ],
  10304. "authors": [
  10305. {
  10306. "name": "Sebastian Bergmann",
  10307. "email": "sebastian@phpunit.de"
  10308. }
  10309. ],
  10310. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10311. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10312. "support": {
  10313. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10314. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10315. },
  10316. "funding": [
  10317. {
  10318. "url": "https://github.com/sebastianbergmann",
  10319. "type": "github"
  10320. }
  10321. ],
  10322. "time": "2020-10-26T13:12:34+00:00"
  10323. },
  10324. {
  10325. "name": "sebastian/object-reflector",
  10326. "version": "2.0.4",
  10327. "source": {
  10328. "type": "git",
  10329. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10330. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10331. },
  10332. "dist": {
  10333. "type": "zip",
  10334. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10335. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10336. "shasum": "",
  10337. "mirrors": [
  10338. {
  10339. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10340. "preferred": true
  10341. }
  10342. ]
  10343. },
  10344. "require": {
  10345. "php": ">=7.3"
  10346. },
  10347. "require-dev": {
  10348. "phpunit/phpunit": "^9.3"
  10349. },
  10350. "type": "library",
  10351. "extra": {
  10352. "branch-alias": {
  10353. "dev-master": "2.0-dev"
  10354. }
  10355. },
  10356. "autoload": {
  10357. "classmap": [
  10358. "src/"
  10359. ]
  10360. },
  10361. "notification-url": "https://packagist.org/downloads/",
  10362. "license": [
  10363. "BSD-3-Clause"
  10364. ],
  10365. "authors": [
  10366. {
  10367. "name": "Sebastian Bergmann",
  10368. "email": "sebastian@phpunit.de"
  10369. }
  10370. ],
  10371. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10372. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10373. "support": {
  10374. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10375. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10376. },
  10377. "funding": [
  10378. {
  10379. "url": "https://github.com/sebastianbergmann",
  10380. "type": "github"
  10381. }
  10382. ],
  10383. "time": "2020-10-26T13:14:26+00:00"
  10384. },
  10385. {
  10386. "name": "sebastian/recursion-context",
  10387. "version": "4.0.5",
  10388. "source": {
  10389. "type": "git",
  10390. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10391. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10392. },
  10393. "dist": {
  10394. "type": "zip",
  10395. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10396. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10397. "shasum": "",
  10398. "mirrors": [
  10399. {
  10400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10401. "preferred": true
  10402. }
  10403. ]
  10404. },
  10405. "require": {
  10406. "php": ">=7.3"
  10407. },
  10408. "require-dev": {
  10409. "phpunit/phpunit": "^9.3"
  10410. },
  10411. "type": "library",
  10412. "extra": {
  10413. "branch-alias": {
  10414. "dev-master": "4.0-dev"
  10415. }
  10416. },
  10417. "autoload": {
  10418. "classmap": [
  10419. "src/"
  10420. ]
  10421. },
  10422. "notification-url": "https://packagist.org/downloads/",
  10423. "license": [
  10424. "BSD-3-Clause"
  10425. ],
  10426. "authors": [
  10427. {
  10428. "name": "Sebastian Bergmann",
  10429. "email": "sebastian@phpunit.de"
  10430. },
  10431. {
  10432. "name": "Jeff Welch",
  10433. "email": "whatthejeff@gmail.com"
  10434. },
  10435. {
  10436. "name": "Adam Harvey",
  10437. "email": "aharvey@php.net"
  10438. }
  10439. ],
  10440. "description": "Provides functionality to recursively process PHP variables",
  10441. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10442. "support": {
  10443. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10444. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10445. },
  10446. "funding": [
  10447. {
  10448. "url": "https://github.com/sebastianbergmann",
  10449. "type": "github"
  10450. }
  10451. ],
  10452. "time": "2023-02-03T06:07:39+00:00"
  10453. },
  10454. {
  10455. "name": "sebastian/resource-operations",
  10456. "version": "3.0.4",
  10457. "source": {
  10458. "type": "git",
  10459. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10460. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10461. },
  10462. "dist": {
  10463. "type": "zip",
  10464. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10465. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10466. "shasum": "",
  10467. "mirrors": [
  10468. {
  10469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10470. "preferred": true
  10471. }
  10472. ]
  10473. },
  10474. "require": {
  10475. "php": ">=7.3"
  10476. },
  10477. "require-dev": {
  10478. "phpunit/phpunit": "^9.0"
  10479. },
  10480. "type": "library",
  10481. "extra": {
  10482. "branch-alias": {
  10483. "dev-main": "3.0-dev"
  10484. }
  10485. },
  10486. "autoload": {
  10487. "classmap": [
  10488. "src/"
  10489. ]
  10490. },
  10491. "notification-url": "https://packagist.org/downloads/",
  10492. "license": [
  10493. "BSD-3-Clause"
  10494. ],
  10495. "authors": [
  10496. {
  10497. "name": "Sebastian Bergmann",
  10498. "email": "sebastian@phpunit.de"
  10499. }
  10500. ],
  10501. "description": "Provides a list of PHP built-in functions that operate on resources",
  10502. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10503. "support": {
  10504. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10505. },
  10506. "funding": [
  10507. {
  10508. "url": "https://github.com/sebastianbergmann",
  10509. "type": "github"
  10510. }
  10511. ],
  10512. "abandoned": true,
  10513. "time": "2024-03-14T16:00:52+00:00"
  10514. },
  10515. {
  10516. "name": "sebastian/type",
  10517. "version": "3.2.1",
  10518. "source": {
  10519. "type": "git",
  10520. "url": "https://github.com/sebastianbergmann/type.git",
  10521. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10522. },
  10523. "dist": {
  10524. "type": "zip",
  10525. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10526. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10527. "shasum": "",
  10528. "mirrors": [
  10529. {
  10530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10531. "preferred": true
  10532. }
  10533. ]
  10534. },
  10535. "require": {
  10536. "php": ">=7.3"
  10537. },
  10538. "require-dev": {
  10539. "phpunit/phpunit": "^9.5"
  10540. },
  10541. "type": "library",
  10542. "extra": {
  10543. "branch-alias": {
  10544. "dev-master": "3.2-dev"
  10545. }
  10546. },
  10547. "autoload": {
  10548. "classmap": [
  10549. "src/"
  10550. ]
  10551. },
  10552. "notification-url": "https://packagist.org/downloads/",
  10553. "license": [
  10554. "BSD-3-Clause"
  10555. ],
  10556. "authors": [
  10557. {
  10558. "name": "Sebastian Bergmann",
  10559. "email": "sebastian@phpunit.de",
  10560. "role": "lead"
  10561. }
  10562. ],
  10563. "description": "Collection of value objects that represent the types of the PHP type system",
  10564. "homepage": "https://github.com/sebastianbergmann/type",
  10565. "support": {
  10566. "issues": "https://github.com/sebastianbergmann/type/issues",
  10567. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10568. },
  10569. "funding": [
  10570. {
  10571. "url": "https://github.com/sebastianbergmann",
  10572. "type": "github"
  10573. }
  10574. ],
  10575. "time": "2023-02-03T06:13:03+00:00"
  10576. },
  10577. {
  10578. "name": "sebastian/version",
  10579. "version": "3.0.2",
  10580. "source": {
  10581. "type": "git",
  10582. "url": "https://github.com/sebastianbergmann/version.git",
  10583. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10584. },
  10585. "dist": {
  10586. "type": "zip",
  10587. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10588. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10589. "shasum": "",
  10590. "mirrors": [
  10591. {
  10592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10593. "preferred": true
  10594. }
  10595. ]
  10596. },
  10597. "require": {
  10598. "php": ">=7.3"
  10599. },
  10600. "type": "library",
  10601. "extra": {
  10602. "branch-alias": {
  10603. "dev-master": "3.0-dev"
  10604. }
  10605. },
  10606. "autoload": {
  10607. "classmap": [
  10608. "src/"
  10609. ]
  10610. },
  10611. "notification-url": "https://packagist.org/downloads/",
  10612. "license": [
  10613. "BSD-3-Clause"
  10614. ],
  10615. "authors": [
  10616. {
  10617. "name": "Sebastian Bergmann",
  10618. "email": "sebastian@phpunit.de",
  10619. "role": "lead"
  10620. }
  10621. ],
  10622. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10623. "homepage": "https://github.com/sebastianbergmann/version",
  10624. "support": {
  10625. "issues": "https://github.com/sebastianbergmann/version/issues",
  10626. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10627. },
  10628. "funding": [
  10629. {
  10630. "url": "https://github.com/sebastianbergmann",
  10631. "type": "github"
  10632. }
  10633. ],
  10634. "time": "2020-09-28T06:39:44+00:00"
  10635. },
  10636. {
  10637. "name": "symfony/yaml",
  10638. "version": "v6.0.19",
  10639. "source": {
  10640. "type": "git",
  10641. "url": "https://github.com/symfony/yaml.git",
  10642. "reference": "deec3a812a0305a50db8ae689b183f43d915c884"
  10643. },
  10644. "dist": {
  10645. "type": "zip",
  10646. "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884",
  10647. "reference": "deec3a812a0305a50db8ae689b183f43d915c884",
  10648. "shasum": "",
  10649. "mirrors": [
  10650. {
  10651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10652. "preferred": true
  10653. }
  10654. ]
  10655. },
  10656. "require": {
  10657. "php": ">=8.0.2",
  10658. "symfony/polyfill-ctype": "^1.8"
  10659. },
  10660. "conflict": {
  10661. "symfony/console": "<5.4"
  10662. },
  10663. "require-dev": {
  10664. "symfony/console": "^5.4|^6.0"
  10665. },
  10666. "suggest": {
  10667. "symfony/console": "For validating YAML files using the lint command"
  10668. },
  10669. "bin": [
  10670. "Resources/bin/yaml-lint"
  10671. ],
  10672. "type": "library",
  10673. "autoload": {
  10674. "psr-4": {
  10675. "Symfony\\Component\\Yaml\\": ""
  10676. },
  10677. "exclude-from-classmap": [
  10678. "/Tests/"
  10679. ]
  10680. },
  10681. "notification-url": "https://packagist.org/downloads/",
  10682. "license": [
  10683. "MIT"
  10684. ],
  10685. "authors": [
  10686. {
  10687. "name": "Fabien Potencier",
  10688. "email": "fabien@symfony.com"
  10689. },
  10690. {
  10691. "name": "Symfony Community",
  10692. "homepage": "https://symfony.com/contributors"
  10693. }
  10694. ],
  10695. "description": "Loads and dumps YAML files",
  10696. "homepage": "https://symfony.com",
  10697. "support": {
  10698. "source": "https://github.com/symfony/yaml/tree/v6.0.19"
  10699. },
  10700. "funding": [
  10701. {
  10702. "url": "https://symfony.com/sponsor",
  10703. "type": "custom"
  10704. },
  10705. {
  10706. "url": "https://github.com/fabpot",
  10707. "type": "github"
  10708. },
  10709. {
  10710. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10711. "type": "tidelift"
  10712. }
  10713. ],
  10714. "time": "2023-01-11T11:50:03+00:00"
  10715. },
  10716. {
  10717. "name": "theseer/tokenizer",
  10718. "version": "1.3.1",
  10719. "source": {
  10720. "type": "git",
  10721. "url": "https://github.com/theseer/tokenizer.git",
  10722. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  10723. },
  10724. "dist": {
  10725. "type": "zip",
  10726. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  10727. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  10728. "shasum": "",
  10729. "mirrors": [
  10730. {
  10731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10732. "preferred": true
  10733. }
  10734. ]
  10735. },
  10736. "require": {
  10737. "ext-dom": "*",
  10738. "ext-tokenizer": "*",
  10739. "ext-xmlwriter": "*",
  10740. "php": "^7.2 || ^8.0"
  10741. },
  10742. "type": "library",
  10743. "autoload": {
  10744. "classmap": [
  10745. "src/"
  10746. ]
  10747. },
  10748. "notification-url": "https://packagist.org/downloads/",
  10749. "license": [
  10750. "BSD-3-Clause"
  10751. ],
  10752. "authors": [
  10753. {
  10754. "name": "Arne Blankerts",
  10755. "email": "arne@blankerts.de",
  10756. "role": "Developer"
  10757. }
  10758. ],
  10759. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10760. "support": {
  10761. "issues": "https://github.com/theseer/tokenizer/issues",
  10762. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  10763. },
  10764. "funding": [
  10765. {
  10766. "url": "https://github.com/theseer",
  10767. "type": "github"
  10768. }
  10769. ],
  10770. "time": "2025-11-17T20:03:58+00:00"
  10771. }
  10772. ],
  10773. "aliases": [],
  10774. "minimum-stability": "dev",
  10775. "stability-flags": [],
  10776. "prefer-stable": true,
  10777. "prefer-lowest": false,
  10778. "platform": {
  10779. "php": "^7.3|^8.0"
  10780. },
  10781. "platform-dev": [],
  10782. "plugin-api-version": "2.3.0"
  10783. }