composer.lock 385 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660
  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": "f2157eaa2ce1df248cf5c88e008c8930",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  20. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.3|^8.0",
  31. "symfony/http-foundation": "^5.3|^6|^7",
  32. "symfony/http-kernel": "^5.3|^6|^7"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.2-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/asm89/stack-cors/issues",
  67. "source": "https://github.com/asm89/stack-cors/tree/v2.3.0"
  68. },
  69. "time": "2025-03-13T08:50:04+00:00"
  70. },
  71. {
  72. "name": "brick/math",
  73. "version": "0.11.0",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/brick/math.git",
  77. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  82. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "php": "^8.0"
  93. },
  94. "require-dev": {
  95. "php-coveralls/php-coveralls": "^2.2",
  96. "phpunit/phpunit": "^9.0",
  97. "vimeo/psalm": "5.0.0"
  98. },
  99. "type": "library",
  100. "autoload": {
  101. "psr-4": {
  102. "Brick\\Math\\": "src/"
  103. }
  104. },
  105. "notification-url": "https://packagist.org/downloads/",
  106. "license": [
  107. "MIT"
  108. ],
  109. "description": "Arbitrary-precision arithmetic library",
  110. "keywords": [
  111. "Arbitrary-precision",
  112. "BigInteger",
  113. "BigRational",
  114. "arithmetic",
  115. "bigdecimal",
  116. "bignum",
  117. "brick",
  118. "math"
  119. ],
  120. "support": {
  121. "issues": "https://github.com/brick/math/issues",
  122. "source": "https://github.com/brick/math/tree/0.11.0"
  123. },
  124. "funding": [
  125. {
  126. "url": "https://github.com/BenMorel",
  127. "type": "github"
  128. }
  129. ],
  130. "time": "2023-01-15T23:15:59+00:00"
  131. },
  132. {
  133. "name": "carbonphp/carbon-doctrine-types",
  134. "version": "2.1.0",
  135. "source": {
  136. "type": "git",
  137. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  138. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  139. },
  140. "dist": {
  141. "type": "zip",
  142. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  143. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  144. "shasum": "",
  145. "mirrors": [
  146. {
  147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  148. "preferred": true
  149. }
  150. ]
  151. },
  152. "require": {
  153. "php": "^7.4 || ^8.0"
  154. },
  155. "conflict": {
  156. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  157. },
  158. "require-dev": {
  159. "doctrine/dbal": "^3.7.0",
  160. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  161. "phpunit/phpunit": "^10.3"
  162. },
  163. "type": "library",
  164. "autoload": {
  165. "psr-4": {
  166. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  167. }
  168. },
  169. "notification-url": "https://packagist.org/downloads/",
  170. "license": [
  171. "MIT"
  172. ],
  173. "authors": [
  174. {
  175. "name": "KyleKatarn",
  176. "email": "kylekatarnls@gmail.com"
  177. }
  178. ],
  179. "description": "Types to use Carbon in Doctrine",
  180. "keywords": [
  181. "carbon",
  182. "date",
  183. "datetime",
  184. "doctrine",
  185. "time"
  186. ],
  187. "support": {
  188. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  189. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  190. },
  191. "funding": [
  192. {
  193. "url": "https://github.com/kylekatarnls",
  194. "type": "github"
  195. },
  196. {
  197. "url": "https://opencollective.com/Carbon",
  198. "type": "open_collective"
  199. },
  200. {
  201. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  202. "type": "tidelift"
  203. }
  204. ],
  205. "time": "2023-12-11T17:09:12+00:00"
  206. },
  207. {
  208. "name": "cboden/ratchet",
  209. "version": "v0.4.4",
  210. "source": {
  211. "type": "git",
  212. "url": "https://github.com/ratchetphp/Ratchet.git",
  213. "reference": "5012dc954541b40c5599d286fd40653f5716a38f"
  214. },
  215. "dist": {
  216. "type": "zip",
  217. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/5012dc954541b40c5599d286fd40653f5716a38f",
  218. "reference": "5012dc954541b40c5599d286fd40653f5716a38f",
  219. "shasum": "",
  220. "mirrors": [
  221. {
  222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  223. "preferred": true
  224. }
  225. ]
  226. },
  227. "require": {
  228. "guzzlehttp/psr7": "^1.7|^2.0",
  229. "php": ">=5.4.2",
  230. "ratchet/rfc6455": "^0.3.1",
  231. "react/event-loop": ">=0.4",
  232. "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5",
  233. "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0",
  234. "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0"
  235. },
  236. "require-dev": {
  237. "phpunit/phpunit": "~4.8"
  238. },
  239. "type": "library",
  240. "autoload": {
  241. "psr-4": {
  242. "Ratchet\\": "src/Ratchet"
  243. }
  244. },
  245. "notification-url": "https://packagist.org/downloads/",
  246. "license": [
  247. "MIT"
  248. ],
  249. "authors": [
  250. {
  251. "name": "Chris Boden",
  252. "email": "cboden@gmail.com",
  253. "role": "Developer"
  254. },
  255. {
  256. "name": "Matt Bonneau",
  257. "role": "Developer"
  258. }
  259. ],
  260. "description": "PHP WebSocket library",
  261. "homepage": "http://socketo.me",
  262. "keywords": [
  263. "Ratchet",
  264. "WebSockets",
  265. "server",
  266. "sockets",
  267. "websocket"
  268. ],
  269. "support": {
  270. "chat": "https://gitter.im/reactphp/reactphp",
  271. "issues": "https://github.com/ratchetphp/Ratchet/issues",
  272. "source": "https://github.com/ratchetphp/Ratchet/tree/v0.4.4"
  273. },
  274. "time": "2021-12-14T00:20:41+00:00"
  275. },
  276. {
  277. "name": "composer/pcre",
  278. "version": "3.3.2",
  279. "source": {
  280. "type": "git",
  281. "url": "https://github.com/composer/pcre.git",
  282. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  283. },
  284. "dist": {
  285. "type": "zip",
  286. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  287. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  288. "shasum": "",
  289. "mirrors": [
  290. {
  291. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  292. "preferred": true
  293. }
  294. ]
  295. },
  296. "require": {
  297. "php": "^7.4 || ^8.0"
  298. },
  299. "conflict": {
  300. "phpstan/phpstan": "<1.11.10"
  301. },
  302. "require-dev": {
  303. "phpstan/phpstan": "^1.12 || ^2",
  304. "phpstan/phpstan-strict-rules": "^1 || ^2",
  305. "phpunit/phpunit": "^8 || ^9"
  306. },
  307. "type": "library",
  308. "extra": {
  309. "branch-alias": {
  310. "dev-main": "3.x-dev"
  311. },
  312. "phpstan": {
  313. "includes": [
  314. "extension.neon"
  315. ]
  316. }
  317. },
  318. "autoload": {
  319. "psr-4": {
  320. "Composer\\Pcre\\": "src"
  321. }
  322. },
  323. "notification-url": "https://packagist.org/downloads/",
  324. "license": [
  325. "MIT"
  326. ],
  327. "authors": [
  328. {
  329. "name": "Jordi Boggiano",
  330. "email": "j.boggiano@seld.be",
  331. "homepage": "http://seld.be"
  332. }
  333. ],
  334. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  335. "keywords": [
  336. "PCRE",
  337. "preg",
  338. "regex",
  339. "regular expression"
  340. ],
  341. "support": {
  342. "issues": "https://github.com/composer/pcre/issues",
  343. "source": "https://github.com/composer/pcre/tree/3.3.2"
  344. },
  345. "funding": [
  346. {
  347. "url": "https://packagist.com",
  348. "type": "custom"
  349. },
  350. {
  351. "url": "https://github.com/composer",
  352. "type": "github"
  353. },
  354. {
  355. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  356. "type": "tidelift"
  357. }
  358. ],
  359. "time": "2024-11-12T16:29:46+00:00"
  360. },
  361. {
  362. "name": "composer/semver",
  363. "version": "3.4.3",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/composer/semver.git",
  367. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  372. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  373. "shasum": "",
  374. "mirrors": [
  375. {
  376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  377. "preferred": true
  378. }
  379. ]
  380. },
  381. "require": {
  382. "php": "^5.3.2 || ^7.0 || ^8.0"
  383. },
  384. "require-dev": {
  385. "phpstan/phpstan": "^1.11",
  386. "symfony/phpunit-bridge": "^3 || ^7"
  387. },
  388. "type": "library",
  389. "extra": {
  390. "branch-alias": {
  391. "dev-main": "3.x-dev"
  392. }
  393. },
  394. "autoload": {
  395. "psr-4": {
  396. "Composer\\Semver\\": "src"
  397. }
  398. },
  399. "notification-url": "https://packagist.org/downloads/",
  400. "license": [
  401. "MIT"
  402. ],
  403. "authors": [
  404. {
  405. "name": "Nils Adermann",
  406. "email": "naderman@naderman.de",
  407. "homepage": "http://www.naderman.de"
  408. },
  409. {
  410. "name": "Jordi Boggiano",
  411. "email": "j.boggiano@seld.be",
  412. "homepage": "http://seld.be"
  413. },
  414. {
  415. "name": "Rob Bast",
  416. "email": "rob.bast@gmail.com",
  417. "homepage": "http://robbast.nl"
  418. }
  419. ],
  420. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  421. "keywords": [
  422. "semantic",
  423. "semver",
  424. "validation",
  425. "versioning"
  426. ],
  427. "support": {
  428. "irc": "ircs://irc.libera.chat:6697/composer",
  429. "issues": "https://github.com/composer/semver/issues",
  430. "source": "https://github.com/composer/semver/tree/3.4.3"
  431. },
  432. "funding": [
  433. {
  434. "url": "https://packagist.com",
  435. "type": "custom"
  436. },
  437. {
  438. "url": "https://github.com/composer",
  439. "type": "github"
  440. },
  441. {
  442. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  443. "type": "tidelift"
  444. }
  445. ],
  446. "time": "2024-09-19T14:15:21+00:00"
  447. },
  448. {
  449. "name": "dflydev/dot-access-data",
  450. "version": "v3.0.3",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  454. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  459. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  460. "shasum": "",
  461. "mirrors": [
  462. {
  463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  464. "preferred": true
  465. }
  466. ]
  467. },
  468. "require": {
  469. "php": "^7.1 || ^8.0"
  470. },
  471. "require-dev": {
  472. "phpstan/phpstan": "^0.12.42",
  473. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  474. "scrutinizer/ocular": "1.6.0",
  475. "squizlabs/php_codesniffer": "^3.5",
  476. "vimeo/psalm": "^4.0.0"
  477. },
  478. "type": "library",
  479. "extra": {
  480. "branch-alias": {
  481. "dev-main": "3.x-dev"
  482. }
  483. },
  484. "autoload": {
  485. "psr-4": {
  486. "Dflydev\\DotAccessData\\": "src/"
  487. }
  488. },
  489. "notification-url": "https://packagist.org/downloads/",
  490. "license": [
  491. "MIT"
  492. ],
  493. "authors": [
  494. {
  495. "name": "Dragonfly Development Inc.",
  496. "email": "info@dflydev.com",
  497. "homepage": "http://dflydev.com"
  498. },
  499. {
  500. "name": "Beau Simensen",
  501. "email": "beau@dflydev.com",
  502. "homepage": "http://beausimensen.com"
  503. },
  504. {
  505. "name": "Carlos Frutos",
  506. "email": "carlos@kiwing.it",
  507. "homepage": "https://github.com/cfrutos"
  508. },
  509. {
  510. "name": "Colin O'Dell",
  511. "email": "colinodell@gmail.com",
  512. "homepage": "https://www.colinodell.com"
  513. }
  514. ],
  515. "description": "Given a deep data structure, access data by dot notation.",
  516. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  517. "keywords": [
  518. "access",
  519. "data",
  520. "dot",
  521. "notation"
  522. ],
  523. "support": {
  524. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  525. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  526. },
  527. "time": "2024-07-08T12:26:09+00:00"
  528. },
  529. {
  530. "name": "doctrine/inflector",
  531. "version": "2.0.10",
  532. "source": {
  533. "type": "git",
  534. "url": "https://github.com/doctrine/inflector.git",
  535. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  536. },
  537. "dist": {
  538. "type": "zip",
  539. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  540. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  541. "shasum": "",
  542. "mirrors": [
  543. {
  544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  545. "preferred": true
  546. }
  547. ]
  548. },
  549. "require": {
  550. "php": "^7.2 || ^8.0"
  551. },
  552. "require-dev": {
  553. "doctrine/coding-standard": "^11.0",
  554. "phpstan/phpstan": "^1.8",
  555. "phpstan/phpstan-phpunit": "^1.1",
  556. "phpstan/phpstan-strict-rules": "^1.3",
  557. "phpunit/phpunit": "^8.5 || ^9.5",
  558. "vimeo/psalm": "^4.25 || ^5.4"
  559. },
  560. "type": "library",
  561. "autoload": {
  562. "psr-4": {
  563. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  564. }
  565. },
  566. "notification-url": "https://packagist.org/downloads/",
  567. "license": [
  568. "MIT"
  569. ],
  570. "authors": [
  571. {
  572. "name": "Guilherme Blanco",
  573. "email": "guilhermeblanco@gmail.com"
  574. },
  575. {
  576. "name": "Roman Borschel",
  577. "email": "roman@code-factory.org"
  578. },
  579. {
  580. "name": "Benjamin Eberlei",
  581. "email": "kontakt@beberlei.de"
  582. },
  583. {
  584. "name": "Jonathan Wage",
  585. "email": "jonwage@gmail.com"
  586. },
  587. {
  588. "name": "Johannes Schmitt",
  589. "email": "schmittjoh@gmail.com"
  590. }
  591. ],
  592. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  593. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  594. "keywords": [
  595. "inflection",
  596. "inflector",
  597. "lowercase",
  598. "manipulation",
  599. "php",
  600. "plural",
  601. "singular",
  602. "strings",
  603. "uppercase",
  604. "words"
  605. ],
  606. "support": {
  607. "issues": "https://github.com/doctrine/inflector/issues",
  608. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  609. },
  610. "funding": [
  611. {
  612. "url": "https://www.doctrine-project.org/sponsorship.html",
  613. "type": "custom"
  614. },
  615. {
  616. "url": "https://www.patreon.com/phpdoctrine",
  617. "type": "patreon"
  618. },
  619. {
  620. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  621. "type": "tidelift"
  622. }
  623. ],
  624. "time": "2024-02-18T20:23:39+00:00"
  625. },
  626. {
  627. "name": "doctrine/lexer",
  628. "version": "1.2.3",
  629. "source": {
  630. "type": "git",
  631. "url": "https://github.com/doctrine/lexer.git",
  632. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  633. },
  634. "dist": {
  635. "type": "zip",
  636. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  637. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  638. "shasum": "",
  639. "mirrors": [
  640. {
  641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  642. "preferred": true
  643. }
  644. ]
  645. },
  646. "require": {
  647. "php": "^7.1 || ^8.0"
  648. },
  649. "require-dev": {
  650. "doctrine/coding-standard": "^9.0",
  651. "phpstan/phpstan": "^1.3",
  652. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  653. "vimeo/psalm": "^4.11"
  654. },
  655. "type": "library",
  656. "autoload": {
  657. "psr-4": {
  658. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  659. }
  660. },
  661. "notification-url": "https://packagist.org/downloads/",
  662. "license": [
  663. "MIT"
  664. ],
  665. "authors": [
  666. {
  667. "name": "Guilherme Blanco",
  668. "email": "guilhermeblanco@gmail.com"
  669. },
  670. {
  671. "name": "Roman Borschel",
  672. "email": "roman@code-factory.org"
  673. },
  674. {
  675. "name": "Johannes Schmitt",
  676. "email": "schmittjoh@gmail.com"
  677. }
  678. ],
  679. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  680. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  681. "keywords": [
  682. "annotations",
  683. "docblock",
  684. "lexer",
  685. "parser",
  686. "php"
  687. ],
  688. "support": {
  689. "issues": "https://github.com/doctrine/lexer/issues",
  690. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  691. },
  692. "funding": [
  693. {
  694. "url": "https://www.doctrine-project.org/sponsorship.html",
  695. "type": "custom"
  696. },
  697. {
  698. "url": "https://www.patreon.com/phpdoctrine",
  699. "type": "patreon"
  700. },
  701. {
  702. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  703. "type": "tidelift"
  704. }
  705. ],
  706. "time": "2022-02-28T11:07:21+00:00"
  707. },
  708. {
  709. "name": "dragonmantank/cron-expression",
  710. "version": "v3.5.0",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/dragonmantank/cron-expression.git",
  714. "reference": "1b2de7f4a468165dca07b142240733a1973e766d"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/1b2de7f4a468165dca07b142240733a1973e766d",
  719. "reference": "1b2de7f4a468165dca07b142240733a1973e766d",
  720. "shasum": "",
  721. "mirrors": [
  722. {
  723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  724. "preferred": true
  725. }
  726. ]
  727. },
  728. "require": {
  729. "php": "^7.2|^8.0"
  730. },
  731. "replace": {
  732. "mtdowling/cron-expression": "^1.0"
  733. },
  734. "require-dev": {
  735. "phpstan/extension-installer": "^1.4.3",
  736. "phpstan/phpstan": "^1.12.32|^2.1.31",
  737. "phpunit/phpunit": "^8.5.48|^9.0"
  738. },
  739. "type": "library",
  740. "extra": {
  741. "branch-alias": {
  742. "dev-master": "3.x-dev"
  743. }
  744. },
  745. "autoload": {
  746. "psr-4": {
  747. "Cron\\": "src/Cron/"
  748. }
  749. },
  750. "notification-url": "https://packagist.org/downloads/",
  751. "license": [
  752. "MIT"
  753. ],
  754. "authors": [
  755. {
  756. "name": "Chris Tankersley",
  757. "email": "chris@ctankersley.com",
  758. "homepage": "https://github.com/dragonmantank"
  759. }
  760. ],
  761. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  762. "keywords": [
  763. "cron",
  764. "schedule"
  765. ],
  766. "support": {
  767. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  768. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.5.0"
  769. },
  770. "funding": [
  771. {
  772. "url": "https://github.com/dragonmantank",
  773. "type": "github"
  774. }
  775. ],
  776. "time": "2025-10-31T18:36:32+00:00"
  777. },
  778. {
  779. "name": "egulias/email-validator",
  780. "version": "2.1.25",
  781. "source": {
  782. "type": "git",
  783. "url": "https://github.com/egulias/EmailValidator.git",
  784. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  785. },
  786. "dist": {
  787. "type": "zip",
  788. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  789. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  790. "shasum": "",
  791. "mirrors": [
  792. {
  793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  794. "preferred": true
  795. }
  796. ]
  797. },
  798. "require": {
  799. "doctrine/lexer": "^1.0.1",
  800. "php": ">=5.5",
  801. "symfony/polyfill-intl-idn": "^1.10"
  802. },
  803. "require-dev": {
  804. "dominicsayers/isemail": "^3.0.7",
  805. "phpunit/phpunit": "^4.8.36|^7.5.15",
  806. "satooshi/php-coveralls": "^1.0.1"
  807. },
  808. "suggest": {
  809. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  810. },
  811. "type": "library",
  812. "extra": {
  813. "branch-alias": {
  814. "dev-master": "2.1.x-dev"
  815. }
  816. },
  817. "autoload": {
  818. "psr-4": {
  819. "Egulias\\EmailValidator\\": "src"
  820. }
  821. },
  822. "notification-url": "https://packagist.org/downloads/",
  823. "license": [
  824. "MIT"
  825. ],
  826. "authors": [
  827. {
  828. "name": "Eduardo Gulias Davis"
  829. }
  830. ],
  831. "description": "A library for validating emails against several RFCs",
  832. "homepage": "https://github.com/egulias/EmailValidator",
  833. "keywords": [
  834. "email",
  835. "emailvalidation",
  836. "emailvalidator",
  837. "validation",
  838. "validator"
  839. ],
  840. "support": {
  841. "issues": "https://github.com/egulias/EmailValidator/issues",
  842. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  843. },
  844. "funding": [
  845. {
  846. "url": "https://github.com/egulias",
  847. "type": "github"
  848. }
  849. ],
  850. "time": "2020-12-29T14:50:06+00:00"
  851. },
  852. {
  853. "name": "evenement/evenement",
  854. "version": "v3.0.2",
  855. "source": {
  856. "type": "git",
  857. "url": "https://github.com/igorw/evenement.git",
  858. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  859. },
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  863. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  864. "shasum": "",
  865. "mirrors": [
  866. {
  867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  868. "preferred": true
  869. }
  870. ]
  871. },
  872. "require": {
  873. "php": ">=7.0"
  874. },
  875. "require-dev": {
  876. "phpunit/phpunit": "^9 || ^6"
  877. },
  878. "type": "library",
  879. "autoload": {
  880. "psr-4": {
  881. "Evenement\\": "src/"
  882. }
  883. },
  884. "notification-url": "https://packagist.org/downloads/",
  885. "license": [
  886. "MIT"
  887. ],
  888. "authors": [
  889. {
  890. "name": "Igor Wiedler",
  891. "email": "igor@wiedler.ch"
  892. }
  893. ],
  894. "description": "Événement is a very simple event dispatching library for PHP",
  895. "keywords": [
  896. "event-dispatcher",
  897. "event-emitter"
  898. ],
  899. "support": {
  900. "issues": "https://github.com/igorw/evenement/issues",
  901. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  902. },
  903. "time": "2023-08-08T05:53:35+00:00"
  904. },
  905. {
  906. "name": "ezyang/htmlpurifier",
  907. "version": "v4.19.0",
  908. "source": {
  909. "type": "git",
  910. "url": "https://github.com/ezyang/htmlpurifier.git",
  911. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf"
  912. },
  913. "dist": {
  914. "type": "zip",
  915. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/b287d2a16aceffbf6e0295559b39662612b77fcf",
  916. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf",
  917. "shasum": "",
  918. "mirrors": [
  919. {
  920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  921. "preferred": true
  922. }
  923. ]
  924. },
  925. "require": {
  926. "php": "~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"
  927. },
  928. "require-dev": {
  929. "cerdic/css-tidy": "^1.7 || ^2.0",
  930. "simpletest/simpletest": "dev-master"
  931. },
  932. "suggest": {
  933. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  934. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  935. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  936. "ext-tidy": "Used for pretty-printing HTML"
  937. },
  938. "type": "library",
  939. "autoload": {
  940. "files": [
  941. "library/HTMLPurifier.composer.php"
  942. ],
  943. "psr-0": {
  944. "HTMLPurifier": "library/"
  945. },
  946. "exclude-from-classmap": [
  947. "/library/HTMLPurifier/Language/"
  948. ]
  949. },
  950. "notification-url": "https://packagist.org/downloads/",
  951. "license": [
  952. "LGPL-2.1-or-later"
  953. ],
  954. "authors": [
  955. {
  956. "name": "Edward Z. Yang",
  957. "email": "admin@htmlpurifier.org",
  958. "homepage": "http://ezyang.com"
  959. }
  960. ],
  961. "description": "Standards compliant HTML filter written in PHP",
  962. "homepage": "http://htmlpurifier.org/",
  963. "keywords": [
  964. "html"
  965. ],
  966. "support": {
  967. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  968. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.19.0"
  969. },
  970. "time": "2025-10-17T16:34:55+00:00"
  971. },
  972. {
  973. "name": "fideloper/proxy",
  974. "version": "4.4.2",
  975. "source": {
  976. "type": "git",
  977. "url": "https://github.com/fideloper/TrustedProxy.git",
  978. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  979. },
  980. "dist": {
  981. "type": "zip",
  982. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  983. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  984. "shasum": "",
  985. "mirrors": [
  986. {
  987. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  988. "preferred": true
  989. }
  990. ]
  991. },
  992. "require": {
  993. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  994. "php": ">=5.4.0"
  995. },
  996. "require-dev": {
  997. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  998. "mockery/mockery": "^1.0",
  999. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1000. },
  1001. "type": "library",
  1002. "extra": {
  1003. "laravel": {
  1004. "providers": [
  1005. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1006. ]
  1007. }
  1008. },
  1009. "autoload": {
  1010. "psr-4": {
  1011. "Fideloper\\Proxy\\": "src/"
  1012. }
  1013. },
  1014. "notification-url": "https://packagist.org/downloads/",
  1015. "license": [
  1016. "MIT"
  1017. ],
  1018. "authors": [
  1019. {
  1020. "name": "Chris Fidao",
  1021. "email": "fideloper@gmail.com"
  1022. }
  1023. ],
  1024. "description": "Set trusted proxies for Laravel",
  1025. "keywords": [
  1026. "load balancing",
  1027. "proxy",
  1028. "trusted proxy"
  1029. ],
  1030. "support": {
  1031. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1032. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1033. },
  1034. "time": "2022-02-09T13:33:34+00:00"
  1035. },
  1036. {
  1037. "name": "firebase/php-jwt",
  1038. "version": "v6.11.0",
  1039. "source": {
  1040. "type": "git",
  1041. "url": "https://github.com/firebase/php-jwt.git",
  1042. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  1043. },
  1044. "dist": {
  1045. "type": "zip",
  1046. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1047. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1048. "shasum": "",
  1049. "mirrors": [
  1050. {
  1051. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1052. "preferred": true
  1053. }
  1054. ]
  1055. },
  1056. "require": {
  1057. "php": "^8.0"
  1058. },
  1059. "require-dev": {
  1060. "guzzlehttp/guzzle": "^7.4",
  1061. "phpspec/prophecy-phpunit": "^2.0",
  1062. "phpunit/phpunit": "^9.5",
  1063. "psr/cache": "^2.0||^3.0",
  1064. "psr/http-client": "^1.0",
  1065. "psr/http-factory": "^1.0"
  1066. },
  1067. "suggest": {
  1068. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1069. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1070. },
  1071. "type": "library",
  1072. "autoload": {
  1073. "psr-4": {
  1074. "Firebase\\JWT\\": "src"
  1075. }
  1076. },
  1077. "notification-url": "https://packagist.org/downloads/",
  1078. "license": [
  1079. "BSD-3-Clause"
  1080. ],
  1081. "authors": [
  1082. {
  1083. "name": "Neuman Vong",
  1084. "email": "neuman+pear@twilio.com",
  1085. "role": "Developer"
  1086. },
  1087. {
  1088. "name": "Anant Narayanan",
  1089. "email": "anant@php.net",
  1090. "role": "Developer"
  1091. }
  1092. ],
  1093. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1094. "homepage": "https://github.com/firebase/php-jwt",
  1095. "keywords": [
  1096. "jwt",
  1097. "php"
  1098. ],
  1099. "support": {
  1100. "issues": "https://github.com/firebase/php-jwt/issues",
  1101. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  1102. },
  1103. "time": "2025-01-23T05:11:06+00:00"
  1104. },
  1105. {
  1106. "name": "fruitcake/laravel-cors",
  1107. "version": "v2.2.0",
  1108. "source": {
  1109. "type": "git",
  1110. "url": "https://github.com/fruitcake/laravel-cors.git",
  1111. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1112. },
  1113. "dist": {
  1114. "type": "zip",
  1115. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1116. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1117. "shasum": "",
  1118. "mirrors": [
  1119. {
  1120. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1121. "preferred": true
  1122. }
  1123. ]
  1124. },
  1125. "require": {
  1126. "asm89/stack-cors": "^2.0.1",
  1127. "illuminate/contracts": "^6|^7|^8|^9",
  1128. "illuminate/support": "^6|^7|^8|^9",
  1129. "php": ">=7.2"
  1130. },
  1131. "require-dev": {
  1132. "laravel/framework": "^6|^7.24|^8",
  1133. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1134. "phpunit/phpunit": "^6|^7|^8|^9",
  1135. "squizlabs/php_codesniffer": "^3.5"
  1136. },
  1137. "type": "library",
  1138. "extra": {
  1139. "branch-alias": {
  1140. "dev-master": "2.1-dev"
  1141. },
  1142. "laravel": {
  1143. "providers": [
  1144. "Fruitcake\\Cors\\CorsServiceProvider"
  1145. ]
  1146. }
  1147. },
  1148. "autoload": {
  1149. "psr-4": {
  1150. "Fruitcake\\Cors\\": "src/"
  1151. }
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "MIT"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "Fruitcake",
  1160. "homepage": "https://fruitcake.nl"
  1161. },
  1162. {
  1163. "name": "Barry vd. Heuvel",
  1164. "email": "barryvdh@gmail.com"
  1165. }
  1166. ],
  1167. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1168. "keywords": [
  1169. "api",
  1170. "cors",
  1171. "crossdomain",
  1172. "laravel"
  1173. ],
  1174. "support": {
  1175. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1176. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1177. },
  1178. "funding": [
  1179. {
  1180. "url": "https://fruitcake.nl",
  1181. "type": "custom"
  1182. },
  1183. {
  1184. "url": "https://github.com/barryvdh",
  1185. "type": "github"
  1186. }
  1187. ],
  1188. "abandoned": true,
  1189. "time": "2022-02-23T14:25:13+00:00"
  1190. },
  1191. {
  1192. "name": "fukuball/jieba-php",
  1193. "version": "dev-master",
  1194. "source": {
  1195. "type": "git",
  1196. "url": "https://github.com/fukuball/jieba-php.git",
  1197. "reference": "435d73f4d85435fd88a472ddce76b6cc3892f3e4"
  1198. },
  1199. "dist": {
  1200. "type": "zip",
  1201. "url": "https://api.github.com/repos/fukuball/jieba-php/zipball/435d73f4d85435fd88a472ddce76b6cc3892f3e4",
  1202. "reference": "435d73f4d85435fd88a472ddce76b6cc3892f3e4",
  1203. "shasum": "",
  1204. "mirrors": [
  1205. {
  1206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1207. "preferred": true
  1208. }
  1209. ]
  1210. },
  1211. "require": {
  1212. "php": ">=7.1"
  1213. },
  1214. "require-dev": {
  1215. "doctrine/instantiator": "^1.3",
  1216. "guzzlehttp/guzzle": "^7.0",
  1217. "php-coveralls/php-coveralls": "^2.5",
  1218. "phpunit/phpunit": "^8.5 || ^9.0",
  1219. "psr/log": "^1.1",
  1220. "squizlabs/php_codesniffer": "^3.6 || ^4.0",
  1221. "symfony/config": "^5.4",
  1222. "symfony/console": "^5.4",
  1223. "symfony/deprecation-contracts": "^2.5",
  1224. "symfony/filesystem": "^5.4",
  1225. "symfony/service-contracts": "^2.5",
  1226. "symfony/stopwatch": "^5.4",
  1227. "symfony/string": "^5.4",
  1228. "symfony/yaml": "^5.4"
  1229. },
  1230. "default-branch": true,
  1231. "type": "library",
  1232. "autoload": {
  1233. "files": [
  1234. "src/vendor/multi-array/MultiArray.php",
  1235. "src/vendor/multi-array/Factory/MultiArrayFactory.php"
  1236. ],
  1237. "psr-4": {
  1238. "Fukuball\\Jieba\\": "src/class/"
  1239. }
  1240. },
  1241. "notification-url": "https://packagist.org/downloads/",
  1242. "license": [
  1243. "MIT"
  1244. ],
  1245. "authors": [
  1246. {
  1247. "name": "fukuball",
  1248. "email": "fukuball@gmail.com"
  1249. }
  1250. ],
  1251. "description": "結巴中文分詞(PHP 版本):做最好的 PHP 中文分詞、中文斷詞組件",
  1252. "keywords": [
  1253. "Jieba",
  1254. "php"
  1255. ],
  1256. "support": {
  1257. "issues": "https://github.com/fukuball/jieba-php/issues",
  1258. "source": "https://github.com/fukuball/jieba-php/tree/master"
  1259. },
  1260. "time": "2025-10-20T08:31:12+00:00"
  1261. },
  1262. {
  1263. "name": "graham-campbell/result-type",
  1264. "version": "v1.1.4",
  1265. "source": {
  1266. "type": "git",
  1267. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1268. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
  1269. },
  1270. "dist": {
  1271. "type": "zip",
  1272. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
  1273. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
  1274. "shasum": "",
  1275. "mirrors": [
  1276. {
  1277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1278. "preferred": true
  1279. }
  1280. ]
  1281. },
  1282. "require": {
  1283. "php": "^7.2.5 || ^8.0",
  1284. "phpoption/phpoption": "^1.9.5"
  1285. },
  1286. "require-dev": {
  1287. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  1288. },
  1289. "type": "library",
  1290. "autoload": {
  1291. "psr-4": {
  1292. "GrahamCampbell\\ResultType\\": "src/"
  1293. }
  1294. },
  1295. "notification-url": "https://packagist.org/downloads/",
  1296. "license": [
  1297. "MIT"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "Graham Campbell",
  1302. "email": "hello@gjcampbell.co.uk",
  1303. "homepage": "https://github.com/GrahamCampbell"
  1304. }
  1305. ],
  1306. "description": "An Implementation Of The Result Type",
  1307. "keywords": [
  1308. "Graham Campbell",
  1309. "GrahamCampbell",
  1310. "Result Type",
  1311. "Result-Type",
  1312. "result"
  1313. ],
  1314. "support": {
  1315. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1316. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
  1317. },
  1318. "funding": [
  1319. {
  1320. "url": "https://github.com/GrahamCampbell",
  1321. "type": "github"
  1322. },
  1323. {
  1324. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1325. "type": "tidelift"
  1326. }
  1327. ],
  1328. "time": "2025-12-27T19:43:20+00:00"
  1329. },
  1330. {
  1331. "name": "gregwar/captcha",
  1332. "version": "v1.2.1",
  1333. "source": {
  1334. "type": "git",
  1335. "url": "https://github.com/Gregwar/Captcha.git",
  1336. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  1337. },
  1338. "dist": {
  1339. "type": "zip",
  1340. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1341. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  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. "ext-gd": "*",
  1352. "ext-mbstring": "*",
  1353. "php": ">=5.3.0",
  1354. "symfony/finder": "*"
  1355. },
  1356. "require-dev": {
  1357. "phpunit/phpunit": "^6.4"
  1358. },
  1359. "type": "library",
  1360. "autoload": {
  1361. "psr-4": {
  1362. "Gregwar\\": "src/Gregwar"
  1363. }
  1364. },
  1365. "notification-url": "https://packagist.org/downloads/",
  1366. "license": [
  1367. "MIT"
  1368. ],
  1369. "authors": [
  1370. {
  1371. "name": "Grégoire Passault",
  1372. "email": "g.passault@gmail.com",
  1373. "homepage": "http://www.gregwar.com/"
  1374. },
  1375. {
  1376. "name": "Jeremy Livingston",
  1377. "email": "jeremy.j.livingston@gmail.com"
  1378. }
  1379. ],
  1380. "description": "Captcha generator",
  1381. "homepage": "https://github.com/Gregwar/Captcha",
  1382. "keywords": [
  1383. "bot",
  1384. "captcha",
  1385. "spam"
  1386. ],
  1387. "support": {
  1388. "issues": "https://github.com/Gregwar/Captcha/issues",
  1389. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  1390. },
  1391. "time": "2023-09-26T13:45:37+00:00"
  1392. },
  1393. {
  1394. "name": "guzzlehttp/guzzle",
  1395. "version": "7.10.0",
  1396. "source": {
  1397. "type": "git",
  1398. "url": "https://github.com/guzzle/guzzle.git",
  1399. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  1400. },
  1401. "dist": {
  1402. "type": "zip",
  1403. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1404. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1405. "shasum": "",
  1406. "mirrors": [
  1407. {
  1408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1409. "preferred": true
  1410. }
  1411. ]
  1412. },
  1413. "require": {
  1414. "ext-json": "*",
  1415. "guzzlehttp/promises": "^2.3",
  1416. "guzzlehttp/psr7": "^2.8",
  1417. "php": "^7.2.5 || ^8.0",
  1418. "psr/http-client": "^1.0",
  1419. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1420. },
  1421. "provide": {
  1422. "psr/http-client-implementation": "1.0"
  1423. },
  1424. "require-dev": {
  1425. "bamarni/composer-bin-plugin": "^1.8.2",
  1426. "ext-curl": "*",
  1427. "guzzle/client-integration-tests": "3.0.2",
  1428. "php-http/message-factory": "^1.1",
  1429. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1430. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1431. },
  1432. "suggest": {
  1433. "ext-curl": "Required for CURL handler support",
  1434. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1435. "psr/log": "Required for using the Log middleware"
  1436. },
  1437. "type": "library",
  1438. "extra": {
  1439. "bamarni-bin": {
  1440. "bin-links": true,
  1441. "forward-command": false
  1442. }
  1443. },
  1444. "autoload": {
  1445. "files": [
  1446. "src/functions_include.php"
  1447. ],
  1448. "psr-4": {
  1449. "GuzzleHttp\\": "src/"
  1450. }
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "Graham Campbell",
  1459. "email": "hello@gjcampbell.co.uk",
  1460. "homepage": "https://github.com/GrahamCampbell"
  1461. },
  1462. {
  1463. "name": "Michael Dowling",
  1464. "email": "mtdowling@gmail.com",
  1465. "homepage": "https://github.com/mtdowling"
  1466. },
  1467. {
  1468. "name": "Jeremy Lindblom",
  1469. "email": "jeremeamia@gmail.com",
  1470. "homepage": "https://github.com/jeremeamia"
  1471. },
  1472. {
  1473. "name": "George Mponos",
  1474. "email": "gmponos@gmail.com",
  1475. "homepage": "https://github.com/gmponos"
  1476. },
  1477. {
  1478. "name": "Tobias Nyholm",
  1479. "email": "tobias.nyholm@gmail.com",
  1480. "homepage": "https://github.com/Nyholm"
  1481. },
  1482. {
  1483. "name": "Márk Sági-Kazár",
  1484. "email": "mark.sagikazar@gmail.com",
  1485. "homepage": "https://github.com/sagikazarmark"
  1486. },
  1487. {
  1488. "name": "Tobias Schultze",
  1489. "email": "webmaster@tubo-world.de",
  1490. "homepage": "https://github.com/Tobion"
  1491. }
  1492. ],
  1493. "description": "Guzzle is a PHP HTTP client library",
  1494. "keywords": [
  1495. "client",
  1496. "curl",
  1497. "framework",
  1498. "http",
  1499. "http client",
  1500. "psr-18",
  1501. "psr-7",
  1502. "rest",
  1503. "web service"
  1504. ],
  1505. "support": {
  1506. "issues": "https://github.com/guzzle/guzzle/issues",
  1507. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  1508. },
  1509. "funding": [
  1510. {
  1511. "url": "https://github.com/GrahamCampbell",
  1512. "type": "github"
  1513. },
  1514. {
  1515. "url": "https://github.com/Nyholm",
  1516. "type": "github"
  1517. },
  1518. {
  1519. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1520. "type": "tidelift"
  1521. }
  1522. ],
  1523. "time": "2025-08-23T22:36:01+00:00"
  1524. },
  1525. {
  1526. "name": "guzzlehttp/promises",
  1527. "version": "2.3.0",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://github.com/guzzle/promises.git",
  1531. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1536. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1537. "shasum": "",
  1538. "mirrors": [
  1539. {
  1540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1541. "preferred": true
  1542. }
  1543. ]
  1544. },
  1545. "require": {
  1546. "php": "^7.2.5 || ^8.0"
  1547. },
  1548. "require-dev": {
  1549. "bamarni/composer-bin-plugin": "^1.8.2",
  1550. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1551. },
  1552. "type": "library",
  1553. "extra": {
  1554. "bamarni-bin": {
  1555. "bin-links": true,
  1556. "forward-command": false
  1557. }
  1558. },
  1559. "autoload": {
  1560. "psr-4": {
  1561. "GuzzleHttp\\Promise\\": "src/"
  1562. }
  1563. },
  1564. "notification-url": "https://packagist.org/downloads/",
  1565. "license": [
  1566. "MIT"
  1567. ],
  1568. "authors": [
  1569. {
  1570. "name": "Graham Campbell",
  1571. "email": "hello@gjcampbell.co.uk",
  1572. "homepage": "https://github.com/GrahamCampbell"
  1573. },
  1574. {
  1575. "name": "Michael Dowling",
  1576. "email": "mtdowling@gmail.com",
  1577. "homepage": "https://github.com/mtdowling"
  1578. },
  1579. {
  1580. "name": "Tobias Nyholm",
  1581. "email": "tobias.nyholm@gmail.com",
  1582. "homepage": "https://github.com/Nyholm"
  1583. },
  1584. {
  1585. "name": "Tobias Schultze",
  1586. "email": "webmaster@tubo-world.de",
  1587. "homepage": "https://github.com/Tobion"
  1588. }
  1589. ],
  1590. "description": "Guzzle promises library",
  1591. "keywords": [
  1592. "promise"
  1593. ],
  1594. "support": {
  1595. "issues": "https://github.com/guzzle/promises/issues",
  1596. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1597. },
  1598. "funding": [
  1599. {
  1600. "url": "https://github.com/GrahamCampbell",
  1601. "type": "github"
  1602. },
  1603. {
  1604. "url": "https://github.com/Nyholm",
  1605. "type": "github"
  1606. },
  1607. {
  1608. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1609. "type": "tidelift"
  1610. }
  1611. ],
  1612. "time": "2025-08-22T14:34:08+00:00"
  1613. },
  1614. {
  1615. "name": "guzzlehttp/psr7",
  1616. "version": "2.8.0",
  1617. "source": {
  1618. "type": "git",
  1619. "url": "https://github.com/guzzle/psr7.git",
  1620. "reference": "21dc724a0583619cd1652f673303492272778051"
  1621. },
  1622. "dist": {
  1623. "type": "zip",
  1624. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  1625. "reference": "21dc724a0583619cd1652f673303492272778051",
  1626. "shasum": "",
  1627. "mirrors": [
  1628. {
  1629. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1630. "preferred": true
  1631. }
  1632. ]
  1633. },
  1634. "require": {
  1635. "php": "^7.2.5 || ^8.0",
  1636. "psr/http-factory": "^1.0",
  1637. "psr/http-message": "^1.1 || ^2.0",
  1638. "ralouphie/getallheaders": "^3.0"
  1639. },
  1640. "provide": {
  1641. "psr/http-factory-implementation": "1.0",
  1642. "psr/http-message-implementation": "1.0"
  1643. },
  1644. "require-dev": {
  1645. "bamarni/composer-bin-plugin": "^1.8.2",
  1646. "http-interop/http-factory-tests": "0.9.0",
  1647. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1648. },
  1649. "suggest": {
  1650. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1651. },
  1652. "type": "library",
  1653. "extra": {
  1654. "bamarni-bin": {
  1655. "bin-links": true,
  1656. "forward-command": false
  1657. }
  1658. },
  1659. "autoload": {
  1660. "psr-4": {
  1661. "GuzzleHttp\\Psr7\\": "src/"
  1662. }
  1663. },
  1664. "notification-url": "https://packagist.org/downloads/",
  1665. "license": [
  1666. "MIT"
  1667. ],
  1668. "authors": [
  1669. {
  1670. "name": "Graham Campbell",
  1671. "email": "hello@gjcampbell.co.uk",
  1672. "homepage": "https://github.com/GrahamCampbell"
  1673. },
  1674. {
  1675. "name": "Michael Dowling",
  1676. "email": "mtdowling@gmail.com",
  1677. "homepage": "https://github.com/mtdowling"
  1678. },
  1679. {
  1680. "name": "George Mponos",
  1681. "email": "gmponos@gmail.com",
  1682. "homepage": "https://github.com/gmponos"
  1683. },
  1684. {
  1685. "name": "Tobias Nyholm",
  1686. "email": "tobias.nyholm@gmail.com",
  1687. "homepage": "https://github.com/Nyholm"
  1688. },
  1689. {
  1690. "name": "Márk Sági-Kazár",
  1691. "email": "mark.sagikazar@gmail.com",
  1692. "homepage": "https://github.com/sagikazarmark"
  1693. },
  1694. {
  1695. "name": "Tobias Schultze",
  1696. "email": "webmaster@tubo-world.de",
  1697. "homepage": "https://github.com/Tobion"
  1698. },
  1699. {
  1700. "name": "Márk Sági-Kazár",
  1701. "email": "mark.sagikazar@gmail.com",
  1702. "homepage": "https://sagikazarmark.hu"
  1703. }
  1704. ],
  1705. "description": "PSR-7 message implementation that also provides common utility methods",
  1706. "keywords": [
  1707. "http",
  1708. "message",
  1709. "psr-7",
  1710. "request",
  1711. "response",
  1712. "stream",
  1713. "uri",
  1714. "url"
  1715. ],
  1716. "support": {
  1717. "issues": "https://github.com/guzzle/psr7/issues",
  1718. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  1719. },
  1720. "funding": [
  1721. {
  1722. "url": "https://github.com/GrahamCampbell",
  1723. "type": "github"
  1724. },
  1725. {
  1726. "url": "https://github.com/Nyholm",
  1727. "type": "github"
  1728. },
  1729. {
  1730. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1731. "type": "tidelift"
  1732. }
  1733. ],
  1734. "time": "2025-08-23T21:21:41+00:00"
  1735. },
  1736. {
  1737. "name": "laravel/framework",
  1738. "version": "v8.83.29",
  1739. "source": {
  1740. "type": "git",
  1741. "url": "https://github.com/laravel/framework.git",
  1742. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4"
  1743. },
  1744. "dist": {
  1745. "type": "zip",
  1746. "url": "https://api.github.com/repos/laravel/framework/zipball/d841a226a50c715431952a10260ba4fac9e91cc4",
  1747. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4",
  1748. "shasum": "",
  1749. "mirrors": [
  1750. {
  1751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1752. "preferred": true
  1753. }
  1754. ]
  1755. },
  1756. "require": {
  1757. "doctrine/inflector": "^1.4|^2.0",
  1758. "dragonmantank/cron-expression": "^3.0.2",
  1759. "egulias/email-validator": "^2.1.10",
  1760. "ext-json": "*",
  1761. "ext-mbstring": "*",
  1762. "ext-openssl": "*",
  1763. "laravel/serializable-closure": "^1.0",
  1764. "league/commonmark": "^1.3|^2.0.2",
  1765. "league/flysystem": "^1.1",
  1766. "monolog/monolog": "^2.0",
  1767. "nesbot/carbon": "^2.53.1",
  1768. "opis/closure": "^3.6",
  1769. "php": "^7.3|^8.0",
  1770. "psr/container": "^1.0",
  1771. "psr/log": "^1.0|^2.0",
  1772. "psr/simple-cache": "^1.0",
  1773. "ramsey/uuid": "^4.2.2",
  1774. "swiftmailer/swiftmailer": "^6.3",
  1775. "symfony/console": "^5.4",
  1776. "symfony/error-handler": "^5.4",
  1777. "symfony/finder": "^5.4",
  1778. "symfony/http-foundation": "^5.4",
  1779. "symfony/http-kernel": "^5.4",
  1780. "symfony/mime": "^5.4",
  1781. "symfony/process": "^5.4",
  1782. "symfony/routing": "^5.4",
  1783. "symfony/var-dumper": "^5.4",
  1784. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1785. "vlucas/phpdotenv": "^5.4.1",
  1786. "voku/portable-ascii": "^1.6.1"
  1787. },
  1788. "conflict": {
  1789. "tightenco/collect": "<5.5.33"
  1790. },
  1791. "provide": {
  1792. "psr/container-implementation": "1.0",
  1793. "psr/simple-cache-implementation": "1.0"
  1794. },
  1795. "replace": {
  1796. "illuminate/auth": "self.version",
  1797. "illuminate/broadcasting": "self.version",
  1798. "illuminate/bus": "self.version",
  1799. "illuminate/cache": "self.version",
  1800. "illuminate/collections": "self.version",
  1801. "illuminate/config": "self.version",
  1802. "illuminate/console": "self.version",
  1803. "illuminate/container": "self.version",
  1804. "illuminate/contracts": "self.version",
  1805. "illuminate/cookie": "self.version",
  1806. "illuminate/database": "self.version",
  1807. "illuminate/encryption": "self.version",
  1808. "illuminate/events": "self.version",
  1809. "illuminate/filesystem": "self.version",
  1810. "illuminate/hashing": "self.version",
  1811. "illuminate/http": "self.version",
  1812. "illuminate/log": "self.version",
  1813. "illuminate/macroable": "self.version",
  1814. "illuminate/mail": "self.version",
  1815. "illuminate/notifications": "self.version",
  1816. "illuminate/pagination": "self.version",
  1817. "illuminate/pipeline": "self.version",
  1818. "illuminate/queue": "self.version",
  1819. "illuminate/redis": "self.version",
  1820. "illuminate/routing": "self.version",
  1821. "illuminate/session": "self.version",
  1822. "illuminate/support": "self.version",
  1823. "illuminate/testing": "self.version",
  1824. "illuminate/translation": "self.version",
  1825. "illuminate/validation": "self.version",
  1826. "illuminate/view": "self.version"
  1827. },
  1828. "require-dev": {
  1829. "aws/aws-sdk-php": "^3.198.1",
  1830. "doctrine/dbal": "^2.13.3|^3.1.4",
  1831. "filp/whoops": "^2.14.3",
  1832. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1833. "league/flysystem-cached-adapter": "^1.0",
  1834. "mockery/mockery": "^1.4.4",
  1835. "orchestra/testbench-core": "^6.27",
  1836. "pda/pheanstalk": "^4.0",
  1837. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1838. "predis/predis": "^1.1.9",
  1839. "symfony/cache": "^5.4"
  1840. },
  1841. "suggest": {
  1842. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1843. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1844. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1845. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1846. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1847. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1848. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1849. "ext-memcached": "Required to use the memcache cache driver.",
  1850. "ext-pcntl": "Required to use all features of the queue worker.",
  1851. "ext-posix": "Required to use all features of the queue worker.",
  1852. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1853. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1854. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1855. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1856. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1857. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1858. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1859. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1860. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1861. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1862. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1863. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1864. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1865. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1866. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1867. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1868. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1869. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1870. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1871. },
  1872. "type": "library",
  1873. "extra": {
  1874. "branch-alias": {
  1875. "dev-master": "8.x-dev"
  1876. }
  1877. },
  1878. "autoload": {
  1879. "files": [
  1880. "src/Illuminate/Collections/helpers.php",
  1881. "src/Illuminate/Events/functions.php",
  1882. "src/Illuminate/Foundation/helpers.php",
  1883. "src/Illuminate/Support/helpers.php"
  1884. ],
  1885. "psr-4": {
  1886. "Illuminate\\": "src/Illuminate/",
  1887. "Illuminate\\Support\\": [
  1888. "src/Illuminate/Macroable/",
  1889. "src/Illuminate/Collections/"
  1890. ]
  1891. }
  1892. },
  1893. "notification-url": "https://packagist.org/downloads/",
  1894. "license": [
  1895. "MIT"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "Taylor Otwell",
  1900. "email": "taylor@laravel.com"
  1901. }
  1902. ],
  1903. "description": "The Laravel Framework.",
  1904. "homepage": "https://laravel.com",
  1905. "keywords": [
  1906. "framework",
  1907. "laravel"
  1908. ],
  1909. "support": {
  1910. "issues": "https://github.com/laravel/framework/issues",
  1911. "source": "https://github.com/laravel/framework"
  1912. },
  1913. "time": "2024-11-20T15:55:41+00:00"
  1914. },
  1915. {
  1916. "name": "laravel/serializable-closure",
  1917. "version": "v1.3.7",
  1918. "source": {
  1919. "type": "git",
  1920. "url": "https://github.com/laravel/serializable-closure.git",
  1921. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  1922. },
  1923. "dist": {
  1924. "type": "zip",
  1925. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  1926. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  1927. "shasum": "",
  1928. "mirrors": [
  1929. {
  1930. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1931. "preferred": true
  1932. }
  1933. ]
  1934. },
  1935. "require": {
  1936. "php": "^7.3|^8.0"
  1937. },
  1938. "require-dev": {
  1939. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1940. "nesbot/carbon": "^2.61|^3.0",
  1941. "pestphp/pest": "^1.21.3",
  1942. "phpstan/phpstan": "^1.8.2",
  1943. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  1944. },
  1945. "type": "library",
  1946. "extra": {
  1947. "branch-alias": {
  1948. "dev-master": "1.x-dev"
  1949. }
  1950. },
  1951. "autoload": {
  1952. "psr-4": {
  1953. "Laravel\\SerializableClosure\\": "src/"
  1954. }
  1955. },
  1956. "notification-url": "https://packagist.org/downloads/",
  1957. "license": [
  1958. "MIT"
  1959. ],
  1960. "authors": [
  1961. {
  1962. "name": "Taylor Otwell",
  1963. "email": "taylor@laravel.com"
  1964. },
  1965. {
  1966. "name": "Nuno Maduro",
  1967. "email": "nuno@laravel.com"
  1968. }
  1969. ],
  1970. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1971. "keywords": [
  1972. "closure",
  1973. "laravel",
  1974. "serializable"
  1975. ],
  1976. "support": {
  1977. "issues": "https://github.com/laravel/serializable-closure/issues",
  1978. "source": "https://github.com/laravel/serializable-closure"
  1979. },
  1980. "time": "2024-11-14T18:34:49+00:00"
  1981. },
  1982. {
  1983. "name": "laravel/socialite",
  1984. "version": "v5.16.0",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://github.com/laravel/socialite.git",
  1988. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://api.github.com/repos/laravel/socialite/zipball/40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  1993. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  1994. "shasum": "",
  1995. "mirrors": [
  1996. {
  1997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1998. "preferred": true
  1999. }
  2000. ]
  2001. },
  2002. "require": {
  2003. "ext-json": "*",
  2004. "firebase/php-jwt": "^6.4",
  2005. "guzzlehttp/guzzle": "^6.0|^7.0",
  2006. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2007. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2008. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2009. "league/oauth1-client": "^1.10.1",
  2010. "php": "^7.2|^8.0",
  2011. "phpseclib/phpseclib": "^3.0"
  2012. },
  2013. "require-dev": {
  2014. "mockery/mockery": "^1.0",
  2015. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  2016. "phpstan/phpstan": "^1.10",
  2017. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  2018. },
  2019. "type": "library",
  2020. "extra": {
  2021. "laravel": {
  2022. "aliases": {
  2023. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2024. },
  2025. "providers": [
  2026. "Laravel\\Socialite\\SocialiteServiceProvider"
  2027. ]
  2028. },
  2029. "branch-alias": {
  2030. "dev-master": "5.x-dev"
  2031. }
  2032. },
  2033. "autoload": {
  2034. "psr-4": {
  2035. "Laravel\\Socialite\\": "src/"
  2036. }
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "MIT"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "Taylor Otwell",
  2045. "email": "taylor@laravel.com"
  2046. }
  2047. ],
  2048. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2049. "homepage": "https://laravel.com",
  2050. "keywords": [
  2051. "laravel",
  2052. "oauth"
  2053. ],
  2054. "support": {
  2055. "issues": "https://github.com/laravel/socialite/issues",
  2056. "source": "https://github.com/laravel/socialite"
  2057. },
  2058. "time": "2024-09-03T09:46:57+00:00"
  2059. },
  2060. {
  2061. "name": "laravel/tinker",
  2062. "version": "v2.10.0",
  2063. "source": {
  2064. "type": "git",
  2065. "url": "https://github.com/laravel/tinker.git",
  2066. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2067. },
  2068. "dist": {
  2069. "type": "zip",
  2070. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2071. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2072. "shasum": "",
  2073. "mirrors": [
  2074. {
  2075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2076. "preferred": true
  2077. }
  2078. ]
  2079. },
  2080. "require": {
  2081. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2082. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2083. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2084. "php": "^7.2.5|^8.0",
  2085. "psy/psysh": "^0.11.1|^0.12.0",
  2086. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2087. },
  2088. "require-dev": {
  2089. "mockery/mockery": "~1.3.3|^1.4.2",
  2090. "phpstan/phpstan": "^1.10",
  2091. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2092. },
  2093. "suggest": {
  2094. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2095. },
  2096. "type": "library",
  2097. "extra": {
  2098. "laravel": {
  2099. "providers": [
  2100. "Laravel\\Tinker\\TinkerServiceProvider"
  2101. ]
  2102. }
  2103. },
  2104. "autoload": {
  2105. "psr-4": {
  2106. "Laravel\\Tinker\\": "src/"
  2107. }
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "MIT"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "Taylor Otwell",
  2116. "email": "taylor@laravel.com"
  2117. }
  2118. ],
  2119. "description": "Powerful REPL for the Laravel framework.",
  2120. "keywords": [
  2121. "REPL",
  2122. "Tinker",
  2123. "laravel",
  2124. "psysh"
  2125. ],
  2126. "support": {
  2127. "issues": "https://github.com/laravel/tinker/issues",
  2128. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2129. },
  2130. "time": "2024-09-23T13:32:56+00:00"
  2131. },
  2132. {
  2133. "name": "league/commonmark",
  2134. "version": "2.6.0",
  2135. "source": {
  2136. "type": "git",
  2137. "url": "https://github.com/thephpleague/commonmark.git",
  2138. "reference": "d150f911e0079e90ae3c106734c93137c184f932"
  2139. },
  2140. "dist": {
  2141. "type": "zip",
  2142. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d150f911e0079e90ae3c106734c93137c184f932",
  2143. "reference": "d150f911e0079e90ae3c106734c93137c184f932",
  2144. "shasum": "",
  2145. "mirrors": [
  2146. {
  2147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2148. "preferred": true
  2149. }
  2150. ]
  2151. },
  2152. "require": {
  2153. "ext-mbstring": "*",
  2154. "league/config": "^1.1.1",
  2155. "php": "^7.4 || ^8.0",
  2156. "psr/event-dispatcher": "^1.0",
  2157. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2158. "symfony/polyfill-php80": "^1.16"
  2159. },
  2160. "require-dev": {
  2161. "cebe/markdown": "^1.0",
  2162. "commonmark/cmark": "0.31.1",
  2163. "commonmark/commonmark.js": "0.31.1",
  2164. "composer/package-versions-deprecated": "^1.8",
  2165. "embed/embed": "^4.4",
  2166. "erusev/parsedown": "^1.0",
  2167. "ext-json": "*",
  2168. "github/gfm": "0.29.0",
  2169. "michelf/php-markdown": "^1.4 || ^2.0",
  2170. "nyholm/psr7": "^1.5",
  2171. "phpstan/phpstan": "^1.8.2",
  2172. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2173. "scrutinizer/ocular": "^1.8.1",
  2174. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2175. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2176. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2177. "unleashedtech/php-coding-standard": "^3.1.1",
  2178. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2179. },
  2180. "suggest": {
  2181. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2182. },
  2183. "type": "library",
  2184. "extra": {
  2185. "branch-alias": {
  2186. "dev-main": "2.7-dev"
  2187. }
  2188. },
  2189. "autoload": {
  2190. "psr-4": {
  2191. "League\\CommonMark\\": "src"
  2192. }
  2193. },
  2194. "notification-url": "https://packagist.org/downloads/",
  2195. "license": [
  2196. "BSD-3-Clause"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Colin O'Dell",
  2201. "email": "colinodell@gmail.com",
  2202. "homepage": "https://www.colinodell.com",
  2203. "role": "Lead Developer"
  2204. }
  2205. ],
  2206. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2207. "homepage": "https://commonmark.thephpleague.com",
  2208. "keywords": [
  2209. "commonmark",
  2210. "flavored",
  2211. "gfm",
  2212. "github",
  2213. "github-flavored",
  2214. "markdown",
  2215. "md",
  2216. "parser"
  2217. ],
  2218. "support": {
  2219. "docs": "https://commonmark.thephpleague.com/",
  2220. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2221. "issues": "https://github.com/thephpleague/commonmark/issues",
  2222. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2223. "source": "https://github.com/thephpleague/commonmark"
  2224. },
  2225. "funding": [
  2226. {
  2227. "url": "https://www.colinodell.com/sponsor",
  2228. "type": "custom"
  2229. },
  2230. {
  2231. "url": "https://www.paypal.me/colinpodell/10.00",
  2232. "type": "custom"
  2233. },
  2234. {
  2235. "url": "https://github.com/colinodell",
  2236. "type": "github"
  2237. },
  2238. {
  2239. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2240. "type": "tidelift"
  2241. }
  2242. ],
  2243. "time": "2024-12-07T15:34:16+00:00"
  2244. },
  2245. {
  2246. "name": "league/config",
  2247. "version": "v1.2.0",
  2248. "source": {
  2249. "type": "git",
  2250. "url": "https://github.com/thephpleague/config.git",
  2251. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2252. },
  2253. "dist": {
  2254. "type": "zip",
  2255. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2256. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2257. "shasum": "",
  2258. "mirrors": [
  2259. {
  2260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2261. "preferred": true
  2262. }
  2263. ]
  2264. },
  2265. "require": {
  2266. "dflydev/dot-access-data": "^3.0.1",
  2267. "nette/schema": "^1.2",
  2268. "php": "^7.4 || ^8.0"
  2269. },
  2270. "require-dev": {
  2271. "phpstan/phpstan": "^1.8.2",
  2272. "phpunit/phpunit": "^9.5.5",
  2273. "scrutinizer/ocular": "^1.8.1",
  2274. "unleashedtech/php-coding-standard": "^3.1",
  2275. "vimeo/psalm": "^4.7.3"
  2276. },
  2277. "type": "library",
  2278. "extra": {
  2279. "branch-alias": {
  2280. "dev-main": "1.2-dev"
  2281. }
  2282. },
  2283. "autoload": {
  2284. "psr-4": {
  2285. "League\\Config\\": "src"
  2286. }
  2287. },
  2288. "notification-url": "https://packagist.org/downloads/",
  2289. "license": [
  2290. "BSD-3-Clause"
  2291. ],
  2292. "authors": [
  2293. {
  2294. "name": "Colin O'Dell",
  2295. "email": "colinodell@gmail.com",
  2296. "homepage": "https://www.colinodell.com",
  2297. "role": "Lead Developer"
  2298. }
  2299. ],
  2300. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2301. "homepage": "https://config.thephpleague.com",
  2302. "keywords": [
  2303. "array",
  2304. "config",
  2305. "configuration",
  2306. "dot",
  2307. "dot-access",
  2308. "nested",
  2309. "schema"
  2310. ],
  2311. "support": {
  2312. "docs": "https://config.thephpleague.com/",
  2313. "issues": "https://github.com/thephpleague/config/issues",
  2314. "rss": "https://github.com/thephpleague/config/releases.atom",
  2315. "source": "https://github.com/thephpleague/config"
  2316. },
  2317. "funding": [
  2318. {
  2319. "url": "https://www.colinodell.com/sponsor",
  2320. "type": "custom"
  2321. },
  2322. {
  2323. "url": "https://www.paypal.me/colinpodell/10.00",
  2324. "type": "custom"
  2325. },
  2326. {
  2327. "url": "https://github.com/colinodell",
  2328. "type": "github"
  2329. }
  2330. ],
  2331. "time": "2022-12-11T20:36:23+00:00"
  2332. },
  2333. {
  2334. "name": "league/flysystem",
  2335. "version": "1.1.10",
  2336. "source": {
  2337. "type": "git",
  2338. "url": "https://github.com/thephpleague/flysystem.git",
  2339. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2340. },
  2341. "dist": {
  2342. "type": "zip",
  2343. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2344. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2345. "shasum": "",
  2346. "mirrors": [
  2347. {
  2348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2349. "preferred": true
  2350. }
  2351. ]
  2352. },
  2353. "require": {
  2354. "ext-fileinfo": "*",
  2355. "league/mime-type-detection": "^1.3",
  2356. "php": "^7.2.5 || ^8.0"
  2357. },
  2358. "conflict": {
  2359. "league/flysystem-sftp": "<1.0.6"
  2360. },
  2361. "require-dev": {
  2362. "phpspec/prophecy": "^1.11.1",
  2363. "phpunit/phpunit": "^8.5.8"
  2364. },
  2365. "suggest": {
  2366. "ext-ftp": "Allows you to use FTP server storage",
  2367. "ext-openssl": "Allows you to use FTPS server storage",
  2368. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2369. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2370. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2371. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2372. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2373. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2374. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2375. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2376. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2377. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2378. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2379. },
  2380. "type": "library",
  2381. "extra": {
  2382. "branch-alias": {
  2383. "dev-master": "1.1-dev"
  2384. }
  2385. },
  2386. "autoload": {
  2387. "psr-4": {
  2388. "League\\Flysystem\\": "src/"
  2389. }
  2390. },
  2391. "notification-url": "https://packagist.org/downloads/",
  2392. "license": [
  2393. "MIT"
  2394. ],
  2395. "authors": [
  2396. {
  2397. "name": "Frank de Jonge",
  2398. "email": "info@frenky.net"
  2399. }
  2400. ],
  2401. "description": "Filesystem abstraction: Many filesystems, one API.",
  2402. "keywords": [
  2403. "Cloud Files",
  2404. "WebDAV",
  2405. "abstraction",
  2406. "aws",
  2407. "cloud",
  2408. "copy.com",
  2409. "dropbox",
  2410. "file systems",
  2411. "files",
  2412. "filesystem",
  2413. "filesystems",
  2414. "ftp",
  2415. "rackspace",
  2416. "remote",
  2417. "s3",
  2418. "sftp",
  2419. "storage"
  2420. ],
  2421. "support": {
  2422. "issues": "https://github.com/thephpleague/flysystem/issues",
  2423. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2424. },
  2425. "funding": [
  2426. {
  2427. "url": "https://offset.earth/frankdejonge",
  2428. "type": "other"
  2429. }
  2430. ],
  2431. "time": "2022-10-04T09:16:37+00:00"
  2432. },
  2433. {
  2434. "name": "league/mime-type-detection",
  2435. "version": "1.15.0",
  2436. "source": {
  2437. "type": "git",
  2438. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2439. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2440. },
  2441. "dist": {
  2442. "type": "zip",
  2443. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2444. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2445. "shasum": "",
  2446. "mirrors": [
  2447. {
  2448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2449. "preferred": true
  2450. }
  2451. ]
  2452. },
  2453. "require": {
  2454. "ext-fileinfo": "*",
  2455. "php": "^7.4 || ^8.0"
  2456. },
  2457. "require-dev": {
  2458. "friendsofphp/php-cs-fixer": "^3.2",
  2459. "phpstan/phpstan": "^0.12.68",
  2460. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2461. },
  2462. "type": "library",
  2463. "autoload": {
  2464. "psr-4": {
  2465. "League\\MimeTypeDetection\\": "src"
  2466. }
  2467. },
  2468. "notification-url": "https://packagist.org/downloads/",
  2469. "license": [
  2470. "MIT"
  2471. ],
  2472. "authors": [
  2473. {
  2474. "name": "Frank de Jonge",
  2475. "email": "info@frankdejonge.nl"
  2476. }
  2477. ],
  2478. "description": "Mime-type detection for Flysystem",
  2479. "support": {
  2480. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2481. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2482. },
  2483. "funding": [
  2484. {
  2485. "url": "https://github.com/frankdejonge",
  2486. "type": "github"
  2487. },
  2488. {
  2489. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2490. "type": "tidelift"
  2491. }
  2492. ],
  2493. "time": "2024-01-28T23:22:08+00:00"
  2494. },
  2495. {
  2496. "name": "league/oauth1-client",
  2497. "version": "v1.10.1",
  2498. "source": {
  2499. "type": "git",
  2500. "url": "https://github.com/thephpleague/oauth1-client.git",
  2501. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2502. },
  2503. "dist": {
  2504. "type": "zip",
  2505. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2506. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2507. "shasum": "",
  2508. "mirrors": [
  2509. {
  2510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2511. "preferred": true
  2512. }
  2513. ]
  2514. },
  2515. "require": {
  2516. "ext-json": "*",
  2517. "ext-openssl": "*",
  2518. "guzzlehttp/guzzle": "^6.0|^7.0",
  2519. "guzzlehttp/psr7": "^1.7|^2.0",
  2520. "php": ">=7.1||>=8.0"
  2521. },
  2522. "require-dev": {
  2523. "ext-simplexml": "*",
  2524. "friendsofphp/php-cs-fixer": "^2.17",
  2525. "mockery/mockery": "^1.3.3",
  2526. "phpstan/phpstan": "^0.12.42",
  2527. "phpunit/phpunit": "^7.5||9.5"
  2528. },
  2529. "suggest": {
  2530. "ext-simplexml": "For decoding XML-based responses."
  2531. },
  2532. "type": "library",
  2533. "extra": {
  2534. "branch-alias": {
  2535. "dev-master": "1.0-dev",
  2536. "dev-develop": "2.0-dev"
  2537. }
  2538. },
  2539. "autoload": {
  2540. "psr-4": {
  2541. "League\\OAuth1\\Client\\": "src/"
  2542. }
  2543. },
  2544. "notification-url": "https://packagist.org/downloads/",
  2545. "license": [
  2546. "MIT"
  2547. ],
  2548. "authors": [
  2549. {
  2550. "name": "Ben Corlett",
  2551. "email": "bencorlett@me.com",
  2552. "homepage": "http://www.webcomm.com.au",
  2553. "role": "Developer"
  2554. }
  2555. ],
  2556. "description": "OAuth 1.0 Client Library",
  2557. "keywords": [
  2558. "Authentication",
  2559. "SSO",
  2560. "authorization",
  2561. "bitbucket",
  2562. "identity",
  2563. "idp",
  2564. "oauth",
  2565. "oauth1",
  2566. "single sign on",
  2567. "trello",
  2568. "tumblr",
  2569. "twitter"
  2570. ],
  2571. "support": {
  2572. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2573. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2574. },
  2575. "time": "2022-04-15T14:02:14+00:00"
  2576. },
  2577. {
  2578. "name": "maatwebsite/excel",
  2579. "version": "3.1.59",
  2580. "source": {
  2581. "type": "git",
  2582. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  2583. "reference": "b4d8b877e31998811700283d91292ab2b9a4970d"
  2584. },
  2585. "dist": {
  2586. "type": "zip",
  2587. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/b4d8b877e31998811700283d91292ab2b9a4970d",
  2588. "reference": "b4d8b877e31998811700283d91292ab2b9a4970d",
  2589. "shasum": "",
  2590. "mirrors": [
  2591. {
  2592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2593. "preferred": true
  2594. }
  2595. ]
  2596. },
  2597. "require": {
  2598. "composer/semver": "^3.3",
  2599. "ext-json": "*",
  2600. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0",
  2601. "php": "^7.0||^8.0",
  2602. "phpoffice/phpspreadsheet": "^1.29.2",
  2603. "psr/simple-cache": "^1.0||^2.0||^3.0"
  2604. },
  2605. "require-dev": {
  2606. "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
  2607. "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0",
  2608. "predis/predis": "^1.1"
  2609. },
  2610. "type": "library",
  2611. "extra": {
  2612. "laravel": {
  2613. "providers": [
  2614. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2615. ],
  2616. "aliases": {
  2617. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2618. }
  2619. }
  2620. },
  2621. "autoload": {
  2622. "psr-4": {
  2623. "Maatwebsite\\Excel\\": "src/"
  2624. }
  2625. },
  2626. "notification-url": "https://packagist.org/downloads/",
  2627. "license": [
  2628. "MIT"
  2629. ],
  2630. "authors": [
  2631. {
  2632. "name": "Patrick Brouwers",
  2633. "email": "patrick@spartner.nl"
  2634. }
  2635. ],
  2636. "description": "Supercharged Excel exports and imports in Laravel",
  2637. "keywords": [
  2638. "PHPExcel",
  2639. "batch",
  2640. "csv",
  2641. "excel",
  2642. "export",
  2643. "import",
  2644. "laravel",
  2645. "php",
  2646. "phpspreadsheet"
  2647. ],
  2648. "support": {
  2649. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  2650. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.59"
  2651. },
  2652. "funding": [
  2653. {
  2654. "url": "https://laravel-excel.com/commercial-support",
  2655. "type": "custom"
  2656. },
  2657. {
  2658. "url": "https://github.com/patrickbrouwers",
  2659. "type": "github"
  2660. }
  2661. ],
  2662. "time": "2024-10-25T15:40:14+00:00"
  2663. },
  2664. {
  2665. "name": "maennchen/zipstream-php",
  2666. "version": "2.4.0",
  2667. "source": {
  2668. "type": "git",
  2669. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2670. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  2671. },
  2672. "dist": {
  2673. "type": "zip",
  2674. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2675. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2676. "shasum": "",
  2677. "mirrors": [
  2678. {
  2679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2680. "preferred": true
  2681. }
  2682. ]
  2683. },
  2684. "require": {
  2685. "ext-mbstring": "*",
  2686. "myclabs/php-enum": "^1.5",
  2687. "php": "^8.0",
  2688. "psr/http-message": "^1.0"
  2689. },
  2690. "require-dev": {
  2691. "ext-zip": "*",
  2692. "friendsofphp/php-cs-fixer": "^3.9",
  2693. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2694. "mikey179/vfsstream": "^1.6",
  2695. "php-coveralls/php-coveralls": "^2.4",
  2696. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2697. "vimeo/psalm": "^5.0"
  2698. },
  2699. "type": "library",
  2700. "autoload": {
  2701. "psr-4": {
  2702. "ZipStream\\": "src/"
  2703. }
  2704. },
  2705. "notification-url": "https://packagist.org/downloads/",
  2706. "license": [
  2707. "MIT"
  2708. ],
  2709. "authors": [
  2710. {
  2711. "name": "Paul Duncan",
  2712. "email": "pabs@pablotron.org"
  2713. },
  2714. {
  2715. "name": "Jonatan Männchen",
  2716. "email": "jonatan@maennchen.ch"
  2717. },
  2718. {
  2719. "name": "Jesse Donat",
  2720. "email": "donatj@gmail.com"
  2721. },
  2722. {
  2723. "name": "András Kolesár",
  2724. "email": "kolesar@kolesar.hu"
  2725. }
  2726. ],
  2727. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2728. "keywords": [
  2729. "stream",
  2730. "zip"
  2731. ],
  2732. "support": {
  2733. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2734. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  2735. },
  2736. "funding": [
  2737. {
  2738. "url": "https://github.com/maennchen",
  2739. "type": "github"
  2740. },
  2741. {
  2742. "url": "https://opencollective.com/zipstream",
  2743. "type": "open_collective"
  2744. }
  2745. ],
  2746. "time": "2022-12-08T12:29:14+00:00"
  2747. },
  2748. {
  2749. "name": "markbaker/complex",
  2750. "version": "3.0.2",
  2751. "source": {
  2752. "type": "git",
  2753. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2754. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2755. },
  2756. "dist": {
  2757. "type": "zip",
  2758. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2759. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2760. "shasum": "",
  2761. "mirrors": [
  2762. {
  2763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2764. "preferred": true
  2765. }
  2766. ]
  2767. },
  2768. "require": {
  2769. "php": "^7.2 || ^8.0"
  2770. },
  2771. "require-dev": {
  2772. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2773. "phpcompatibility/php-compatibility": "^9.3",
  2774. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2775. "squizlabs/php_codesniffer": "^3.7"
  2776. },
  2777. "type": "library",
  2778. "autoload": {
  2779. "psr-4": {
  2780. "Complex\\": "classes/src/"
  2781. }
  2782. },
  2783. "notification-url": "https://packagist.org/downloads/",
  2784. "license": [
  2785. "MIT"
  2786. ],
  2787. "authors": [
  2788. {
  2789. "name": "Mark Baker",
  2790. "email": "mark@lange.demon.co.uk"
  2791. }
  2792. ],
  2793. "description": "PHP Class for working with complex numbers",
  2794. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2795. "keywords": [
  2796. "complex",
  2797. "mathematics"
  2798. ],
  2799. "support": {
  2800. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2801. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2802. },
  2803. "time": "2022-12-06T16:21:08+00:00"
  2804. },
  2805. {
  2806. "name": "markbaker/matrix",
  2807. "version": "3.0.1",
  2808. "source": {
  2809. "type": "git",
  2810. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2811. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2812. },
  2813. "dist": {
  2814. "type": "zip",
  2815. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2816. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2817. "shasum": "",
  2818. "mirrors": [
  2819. {
  2820. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2821. "preferred": true
  2822. }
  2823. ]
  2824. },
  2825. "require": {
  2826. "php": "^7.1 || ^8.0"
  2827. },
  2828. "require-dev": {
  2829. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2830. "phpcompatibility/php-compatibility": "^9.3",
  2831. "phpdocumentor/phpdocumentor": "2.*",
  2832. "phploc/phploc": "^4.0",
  2833. "phpmd/phpmd": "2.*",
  2834. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2835. "sebastian/phpcpd": "^4.0",
  2836. "squizlabs/php_codesniffer": "^3.7"
  2837. },
  2838. "type": "library",
  2839. "autoload": {
  2840. "psr-4": {
  2841. "Matrix\\": "classes/src/"
  2842. }
  2843. },
  2844. "notification-url": "https://packagist.org/downloads/",
  2845. "license": [
  2846. "MIT"
  2847. ],
  2848. "authors": [
  2849. {
  2850. "name": "Mark Baker",
  2851. "email": "mark@demon-angel.eu"
  2852. }
  2853. ],
  2854. "description": "PHP Class for working with matrices",
  2855. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2856. "keywords": [
  2857. "mathematics",
  2858. "matrix",
  2859. "vector"
  2860. ],
  2861. "support": {
  2862. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2863. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2864. },
  2865. "time": "2022-12-02T22:17:43+00:00"
  2866. },
  2867. {
  2868. "name": "monolog/monolog",
  2869. "version": "2.10.0",
  2870. "source": {
  2871. "type": "git",
  2872. "url": "https://github.com/Seldaek/monolog.git",
  2873. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  2874. },
  2875. "dist": {
  2876. "type": "zip",
  2877. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  2878. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  2879. "shasum": "",
  2880. "mirrors": [
  2881. {
  2882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2883. "preferred": true
  2884. }
  2885. ]
  2886. },
  2887. "require": {
  2888. "php": ">=7.2",
  2889. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2890. },
  2891. "provide": {
  2892. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2893. },
  2894. "require-dev": {
  2895. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2896. "doctrine/couchdb": "~1.0@dev",
  2897. "elasticsearch/elasticsearch": "^7 || ^8",
  2898. "ext-json": "*",
  2899. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2900. "guzzlehttp/guzzle": "^7.4",
  2901. "guzzlehttp/psr7": "^2.2",
  2902. "mongodb/mongodb": "^1.8",
  2903. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2904. "phpspec/prophecy": "^1.15",
  2905. "phpstan/phpstan": "^1.10",
  2906. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  2907. "predis/predis": "^1.1 || ^2.0",
  2908. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2909. "ruflin/elastica": "^7",
  2910. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2911. "symfony/mailer": "^5.4 || ^6",
  2912. "symfony/mime": "^5.4 || ^6"
  2913. },
  2914. "suggest": {
  2915. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2916. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2917. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2918. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2919. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2920. "ext-mbstring": "Allow to work properly with unicode symbols",
  2921. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2922. "ext-openssl": "Required to send log messages using SSL",
  2923. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2924. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2925. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2926. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2927. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2928. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2929. },
  2930. "type": "library",
  2931. "extra": {
  2932. "branch-alias": {
  2933. "dev-main": "2.x-dev"
  2934. }
  2935. },
  2936. "autoload": {
  2937. "psr-4": {
  2938. "Monolog\\": "src/Monolog"
  2939. }
  2940. },
  2941. "notification-url": "https://packagist.org/downloads/",
  2942. "license": [
  2943. "MIT"
  2944. ],
  2945. "authors": [
  2946. {
  2947. "name": "Jordi Boggiano",
  2948. "email": "j.boggiano@seld.be",
  2949. "homepage": "https://seld.be"
  2950. }
  2951. ],
  2952. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2953. "homepage": "https://github.com/Seldaek/monolog",
  2954. "keywords": [
  2955. "log",
  2956. "logging",
  2957. "psr-3"
  2958. ],
  2959. "support": {
  2960. "issues": "https://github.com/Seldaek/monolog/issues",
  2961. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  2962. },
  2963. "funding": [
  2964. {
  2965. "url": "https://github.com/Seldaek",
  2966. "type": "github"
  2967. },
  2968. {
  2969. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2970. "type": "tidelift"
  2971. }
  2972. ],
  2973. "time": "2024-11-12T12:43:37+00:00"
  2974. },
  2975. {
  2976. "name": "myclabs/php-enum",
  2977. "version": "1.8.4",
  2978. "source": {
  2979. "type": "git",
  2980. "url": "https://github.com/myclabs/php-enum.git",
  2981. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2982. },
  2983. "dist": {
  2984. "type": "zip",
  2985. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2986. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2987. "shasum": "",
  2988. "mirrors": [
  2989. {
  2990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2991. "preferred": true
  2992. }
  2993. ]
  2994. },
  2995. "require": {
  2996. "ext-json": "*",
  2997. "php": "^7.3 || ^8.0"
  2998. },
  2999. "require-dev": {
  3000. "phpunit/phpunit": "^9.5",
  3001. "squizlabs/php_codesniffer": "1.*",
  3002. "vimeo/psalm": "^4.6.2"
  3003. },
  3004. "type": "library",
  3005. "autoload": {
  3006. "psr-4": {
  3007. "MyCLabs\\Enum\\": "src/"
  3008. },
  3009. "classmap": [
  3010. "stubs/Stringable.php"
  3011. ]
  3012. },
  3013. "notification-url": "https://packagist.org/downloads/",
  3014. "license": [
  3015. "MIT"
  3016. ],
  3017. "authors": [
  3018. {
  3019. "name": "PHP Enum contributors",
  3020. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3021. }
  3022. ],
  3023. "description": "PHP Enum implementation",
  3024. "homepage": "http://github.com/myclabs/php-enum",
  3025. "keywords": [
  3026. "enum"
  3027. ],
  3028. "support": {
  3029. "issues": "https://github.com/myclabs/php-enum/issues",
  3030. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3031. },
  3032. "funding": [
  3033. {
  3034. "url": "https://github.com/mnapoli",
  3035. "type": "github"
  3036. },
  3037. {
  3038. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3039. "type": "tidelift"
  3040. }
  3041. ],
  3042. "time": "2022-08-04T09:53:51+00:00"
  3043. },
  3044. {
  3045. "name": "nesbot/carbon",
  3046. "version": "2.73.0",
  3047. "source": {
  3048. "type": "git",
  3049. "url": "https://github.com/CarbonPHP/carbon.git",
  3050. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  3051. },
  3052. "dist": {
  3053. "type": "zip",
  3054. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3055. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3056. "shasum": "",
  3057. "mirrors": [
  3058. {
  3059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3060. "preferred": true
  3061. }
  3062. ]
  3063. },
  3064. "require": {
  3065. "carbonphp/carbon-doctrine-types": "*",
  3066. "ext-json": "*",
  3067. "php": "^7.1.8 || ^8.0",
  3068. "psr/clock": "^1.0",
  3069. "symfony/polyfill-mbstring": "^1.0",
  3070. "symfony/polyfill-php80": "^1.16",
  3071. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3072. },
  3073. "provide": {
  3074. "psr/clock-implementation": "1.0"
  3075. },
  3076. "require-dev": {
  3077. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3078. "doctrine/orm": "^2.7 || ^3.0",
  3079. "friendsofphp/php-cs-fixer": "^3.0",
  3080. "kylekatarnls/multi-tester": "^2.0",
  3081. "ondrejmirtes/better-reflection": "<6",
  3082. "phpmd/phpmd": "^2.9",
  3083. "phpstan/extension-installer": "^1.0",
  3084. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3085. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3086. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3087. "squizlabs/php_codesniffer": "^3.4"
  3088. },
  3089. "bin": [
  3090. "bin/carbon"
  3091. ],
  3092. "type": "library",
  3093. "extra": {
  3094. "laravel": {
  3095. "providers": [
  3096. "Carbon\\Laravel\\ServiceProvider"
  3097. ]
  3098. },
  3099. "phpstan": {
  3100. "includes": [
  3101. "extension.neon"
  3102. ]
  3103. },
  3104. "branch-alias": {
  3105. "dev-2.x": "2.x-dev",
  3106. "dev-master": "3.x-dev"
  3107. }
  3108. },
  3109. "autoload": {
  3110. "psr-4": {
  3111. "Carbon\\": "src/Carbon/"
  3112. }
  3113. },
  3114. "notification-url": "https://packagist.org/downloads/",
  3115. "license": [
  3116. "MIT"
  3117. ],
  3118. "authors": [
  3119. {
  3120. "name": "Brian Nesbitt",
  3121. "email": "brian@nesbot.com",
  3122. "homepage": "https://markido.com"
  3123. },
  3124. {
  3125. "name": "kylekatarnls",
  3126. "homepage": "https://github.com/kylekatarnls"
  3127. }
  3128. ],
  3129. "description": "An API extension for DateTime that supports 281 different languages.",
  3130. "homepage": "https://carbon.nesbot.com",
  3131. "keywords": [
  3132. "date",
  3133. "datetime",
  3134. "time"
  3135. ],
  3136. "support": {
  3137. "docs": "https://carbon.nesbot.com/docs",
  3138. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3139. "source": "https://github.com/briannesbitt/Carbon"
  3140. },
  3141. "funding": [
  3142. {
  3143. "url": "https://github.com/sponsors/kylekatarnls",
  3144. "type": "github"
  3145. },
  3146. {
  3147. "url": "https://opencollective.com/Carbon#sponsor",
  3148. "type": "opencollective"
  3149. },
  3150. {
  3151. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3152. "type": "tidelift"
  3153. }
  3154. ],
  3155. "time": "2025-01-08T20:10:23+00:00"
  3156. },
  3157. {
  3158. "name": "nette/schema",
  3159. "version": "v1.2.5",
  3160. "source": {
  3161. "type": "git",
  3162. "url": "https://github.com/nette/schema.git",
  3163. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3164. },
  3165. "dist": {
  3166. "type": "zip",
  3167. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3168. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3169. "shasum": "",
  3170. "mirrors": [
  3171. {
  3172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3173. "preferred": true
  3174. }
  3175. ]
  3176. },
  3177. "require": {
  3178. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3179. "php": "7.1 - 8.3"
  3180. },
  3181. "require-dev": {
  3182. "nette/tester": "^2.3 || ^2.4",
  3183. "phpstan/phpstan-nette": "^1.0",
  3184. "tracy/tracy": "^2.7"
  3185. },
  3186. "type": "library",
  3187. "extra": {
  3188. "branch-alias": {
  3189. "dev-master": "1.2-dev"
  3190. }
  3191. },
  3192. "autoload": {
  3193. "classmap": [
  3194. "src/"
  3195. ]
  3196. },
  3197. "notification-url": "https://packagist.org/downloads/",
  3198. "license": [
  3199. "BSD-3-Clause",
  3200. "GPL-2.0-only",
  3201. "GPL-3.0-only"
  3202. ],
  3203. "authors": [
  3204. {
  3205. "name": "David Grudl",
  3206. "homepage": "https://davidgrudl.com"
  3207. },
  3208. {
  3209. "name": "Nette Community",
  3210. "homepage": "https://nette.org/contributors"
  3211. }
  3212. ],
  3213. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3214. "homepage": "https://nette.org",
  3215. "keywords": [
  3216. "config",
  3217. "nette"
  3218. ],
  3219. "support": {
  3220. "issues": "https://github.com/nette/schema/issues",
  3221. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3222. },
  3223. "time": "2023-10-05T20:37:59+00:00"
  3224. },
  3225. {
  3226. "name": "nette/utils",
  3227. "version": "v4.0.10",
  3228. "source": {
  3229. "type": "git",
  3230. "url": "https://github.com/nette/utils.git",
  3231. "reference": "2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3"
  3232. },
  3233. "dist": {
  3234. "type": "zip",
  3235. "url": "https://api.github.com/repos/nette/utils/zipball/2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3",
  3236. "reference": "2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3",
  3237. "shasum": "",
  3238. "mirrors": [
  3239. {
  3240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3241. "preferred": true
  3242. }
  3243. ]
  3244. },
  3245. "require": {
  3246. "php": "8.0 - 8.5"
  3247. },
  3248. "conflict": {
  3249. "nette/finder": "<3",
  3250. "nette/schema": "<1.2.2"
  3251. },
  3252. "require-dev": {
  3253. "jetbrains/phpstorm-attributes": "^1.2",
  3254. "nette/tester": "^2.5",
  3255. "phpstan/phpstan-nette": "^2.0@stable",
  3256. "tracy/tracy": "^2.9"
  3257. },
  3258. "suggest": {
  3259. "ext-gd": "to use Image",
  3260. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3261. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3262. "ext-json": "to use Nette\\Utils\\Json",
  3263. "ext-mbstring": "to use Strings::lower() etc...",
  3264. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3265. },
  3266. "type": "library",
  3267. "extra": {
  3268. "branch-alias": {
  3269. "dev-master": "4.0-dev"
  3270. }
  3271. },
  3272. "autoload": {
  3273. "psr-4": {
  3274. "Nette\\": "src"
  3275. },
  3276. "classmap": [
  3277. "src/"
  3278. ]
  3279. },
  3280. "notification-url": "https://packagist.org/downloads/",
  3281. "license": [
  3282. "BSD-3-Clause",
  3283. "GPL-2.0-only",
  3284. "GPL-3.0-only"
  3285. ],
  3286. "authors": [
  3287. {
  3288. "name": "David Grudl",
  3289. "homepage": "https://davidgrudl.com"
  3290. },
  3291. {
  3292. "name": "Nette Community",
  3293. "homepage": "https://nette.org/contributors"
  3294. }
  3295. ],
  3296. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3297. "homepage": "https://nette.org",
  3298. "keywords": [
  3299. "array",
  3300. "core",
  3301. "datetime",
  3302. "images",
  3303. "json",
  3304. "nette",
  3305. "paginator",
  3306. "password",
  3307. "slugify",
  3308. "string",
  3309. "unicode",
  3310. "utf-8",
  3311. "utility",
  3312. "validation"
  3313. ],
  3314. "support": {
  3315. "issues": "https://github.com/nette/utils/issues",
  3316. "source": "https://github.com/nette/utils/tree/v4.0.10"
  3317. },
  3318. "time": "2025-12-01T17:30:42+00:00"
  3319. },
  3320. {
  3321. "name": "nikic/php-parser",
  3322. "version": "v5.7.0",
  3323. "source": {
  3324. "type": "git",
  3325. "url": "https://github.com/nikic/PHP-Parser.git",
  3326. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  3327. },
  3328. "dist": {
  3329. "type": "zip",
  3330. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3331. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3332. "shasum": "",
  3333. "mirrors": [
  3334. {
  3335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3336. "preferred": true
  3337. }
  3338. ]
  3339. },
  3340. "require": {
  3341. "ext-ctype": "*",
  3342. "ext-json": "*",
  3343. "ext-tokenizer": "*",
  3344. "php": ">=7.4"
  3345. },
  3346. "require-dev": {
  3347. "ircmaxell/php-yacc": "^0.0.7",
  3348. "phpunit/phpunit": "^9.0"
  3349. },
  3350. "bin": [
  3351. "bin/php-parse"
  3352. ],
  3353. "type": "library",
  3354. "extra": {
  3355. "branch-alias": {
  3356. "dev-master": "5.x-dev"
  3357. }
  3358. },
  3359. "autoload": {
  3360. "psr-4": {
  3361. "PhpParser\\": "lib/PhpParser"
  3362. }
  3363. },
  3364. "notification-url": "https://packagist.org/downloads/",
  3365. "license": [
  3366. "BSD-3-Clause"
  3367. ],
  3368. "authors": [
  3369. {
  3370. "name": "Nikita Popov"
  3371. }
  3372. ],
  3373. "description": "A PHP parser written in PHP",
  3374. "keywords": [
  3375. "parser",
  3376. "php"
  3377. ],
  3378. "support": {
  3379. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3380. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  3381. },
  3382. "time": "2025-12-06T11:56:16+00:00"
  3383. },
  3384. {
  3385. "name": "opis/closure",
  3386. "version": "3.6.3",
  3387. "source": {
  3388. "type": "git",
  3389. "url": "https://github.com/opis/closure.git",
  3390. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3391. },
  3392. "dist": {
  3393. "type": "zip",
  3394. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3395. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3396. "shasum": "",
  3397. "mirrors": [
  3398. {
  3399. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3400. "preferred": true
  3401. }
  3402. ]
  3403. },
  3404. "require": {
  3405. "php": "^5.4 || ^7.0 || ^8.0"
  3406. },
  3407. "require-dev": {
  3408. "jeremeamia/superclosure": "^2.0",
  3409. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3410. },
  3411. "type": "library",
  3412. "extra": {
  3413. "branch-alias": {
  3414. "dev-master": "3.6.x-dev"
  3415. }
  3416. },
  3417. "autoload": {
  3418. "files": [
  3419. "functions.php"
  3420. ],
  3421. "psr-4": {
  3422. "Opis\\Closure\\": "src/"
  3423. }
  3424. },
  3425. "notification-url": "https://packagist.org/downloads/",
  3426. "license": [
  3427. "MIT"
  3428. ],
  3429. "authors": [
  3430. {
  3431. "name": "Marius Sarca",
  3432. "email": "marius.sarca@gmail.com"
  3433. },
  3434. {
  3435. "name": "Sorin Sarca",
  3436. "email": "sarca_sorin@hotmail.com"
  3437. }
  3438. ],
  3439. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3440. "homepage": "https://opis.io/closure",
  3441. "keywords": [
  3442. "anonymous functions",
  3443. "closure",
  3444. "function",
  3445. "serializable",
  3446. "serialization",
  3447. "serialize"
  3448. ],
  3449. "support": {
  3450. "issues": "https://github.com/opis/closure/issues",
  3451. "source": "https://github.com/opis/closure/tree/3.6.3"
  3452. },
  3453. "time": "2022-01-27T09:35:39+00:00"
  3454. },
  3455. {
  3456. "name": "paragonie/constant_time_encoding",
  3457. "version": "v3.1.3",
  3458. "source": {
  3459. "type": "git",
  3460. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3461. "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77"
  3462. },
  3463. "dist": {
  3464. "type": "zip",
  3465. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77",
  3466. "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77",
  3467. "shasum": "",
  3468. "mirrors": [
  3469. {
  3470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3471. "preferred": true
  3472. }
  3473. ]
  3474. },
  3475. "require": {
  3476. "php": "^8"
  3477. },
  3478. "require-dev": {
  3479. "infection/infection": "^0",
  3480. "nikic/php-fuzzer": "^0",
  3481. "phpunit/phpunit": "^9|^10|^11",
  3482. "vimeo/psalm": "^4|^5|^6"
  3483. },
  3484. "type": "library",
  3485. "autoload": {
  3486. "psr-4": {
  3487. "ParagonIE\\ConstantTime\\": "src/"
  3488. }
  3489. },
  3490. "notification-url": "https://packagist.org/downloads/",
  3491. "license": [
  3492. "MIT"
  3493. ],
  3494. "authors": [
  3495. {
  3496. "name": "Paragon Initiative Enterprises",
  3497. "email": "security@paragonie.com",
  3498. "homepage": "https://paragonie.com",
  3499. "role": "Maintainer"
  3500. },
  3501. {
  3502. "name": "Steve 'Sc00bz' Thomas",
  3503. "email": "steve@tobtu.com",
  3504. "homepage": "https://www.tobtu.com",
  3505. "role": "Original Developer"
  3506. }
  3507. ],
  3508. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3509. "keywords": [
  3510. "base16",
  3511. "base32",
  3512. "base32_decode",
  3513. "base32_encode",
  3514. "base64",
  3515. "base64_decode",
  3516. "base64_encode",
  3517. "bin2hex",
  3518. "encoding",
  3519. "hex",
  3520. "hex2bin",
  3521. "rfc4648"
  3522. ],
  3523. "support": {
  3524. "email": "info@paragonie.com",
  3525. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3526. "source": "https://github.com/paragonie/constant_time_encoding"
  3527. },
  3528. "time": "2025-09-24T15:06:41+00:00"
  3529. },
  3530. {
  3531. "name": "paragonie/random_compat",
  3532. "version": "v9.99.100",
  3533. "source": {
  3534. "type": "git",
  3535. "url": "https://github.com/paragonie/random_compat.git",
  3536. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3537. },
  3538. "dist": {
  3539. "type": "zip",
  3540. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3541. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3542. "shasum": "",
  3543. "mirrors": [
  3544. {
  3545. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3546. "preferred": true
  3547. }
  3548. ]
  3549. },
  3550. "require": {
  3551. "php": ">= 7"
  3552. },
  3553. "require-dev": {
  3554. "phpunit/phpunit": "4.*|5.*",
  3555. "vimeo/psalm": "^1"
  3556. },
  3557. "suggest": {
  3558. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3559. },
  3560. "type": "library",
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "MIT"
  3564. ],
  3565. "authors": [
  3566. {
  3567. "name": "Paragon Initiative Enterprises",
  3568. "email": "security@paragonie.com",
  3569. "homepage": "https://paragonie.com"
  3570. }
  3571. ],
  3572. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3573. "keywords": [
  3574. "csprng",
  3575. "polyfill",
  3576. "pseudorandom",
  3577. "random"
  3578. ],
  3579. "support": {
  3580. "email": "info@paragonie.com",
  3581. "issues": "https://github.com/paragonie/random_compat/issues",
  3582. "source": "https://github.com/paragonie/random_compat"
  3583. },
  3584. "time": "2020-10-15T08:29:30+00:00"
  3585. },
  3586. {
  3587. "name": "phpoffice/phpspreadsheet",
  3588. "version": "1.30.1",
  3589. "source": {
  3590. "type": "git",
  3591. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3592. "reference": "fa8257a579ec623473eabfe49731de5967306c4c"
  3593. },
  3594. "dist": {
  3595. "type": "zip",
  3596. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fa8257a579ec623473eabfe49731de5967306c4c",
  3597. "reference": "fa8257a579ec623473eabfe49731de5967306c4c",
  3598. "shasum": "",
  3599. "mirrors": [
  3600. {
  3601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3602. "preferred": true
  3603. }
  3604. ]
  3605. },
  3606. "require": {
  3607. "composer/pcre": "^1||^2||^3",
  3608. "ext-ctype": "*",
  3609. "ext-dom": "*",
  3610. "ext-fileinfo": "*",
  3611. "ext-gd": "*",
  3612. "ext-iconv": "*",
  3613. "ext-libxml": "*",
  3614. "ext-mbstring": "*",
  3615. "ext-simplexml": "*",
  3616. "ext-xml": "*",
  3617. "ext-xmlreader": "*",
  3618. "ext-xmlwriter": "*",
  3619. "ext-zip": "*",
  3620. "ext-zlib": "*",
  3621. "ezyang/htmlpurifier": "^4.15",
  3622. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3623. "markbaker/complex": "^3.0",
  3624. "markbaker/matrix": "^3.0",
  3625. "php": ">=7.4.0 <8.5.0",
  3626. "psr/http-client": "^1.0",
  3627. "psr/http-factory": "^1.0",
  3628. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3629. },
  3630. "require-dev": {
  3631. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3632. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  3633. "friendsofphp/php-cs-fixer": "^3.2",
  3634. "mitoteam/jpgraph": "^10.3",
  3635. "mpdf/mpdf": "^8.1.1",
  3636. "phpcompatibility/php-compatibility": "^9.3",
  3637. "phpstan/phpstan": "^1.1",
  3638. "phpstan/phpstan-phpunit": "^1.0",
  3639. "phpunit/phpunit": "^8.5 || ^9.0",
  3640. "squizlabs/php_codesniffer": "^3.7",
  3641. "tecnickcom/tcpdf": "^6.5"
  3642. },
  3643. "suggest": {
  3644. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3645. "ext-intl": "PHP Internationalization Functions",
  3646. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3647. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3648. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3649. },
  3650. "type": "library",
  3651. "autoload": {
  3652. "psr-4": {
  3653. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3654. }
  3655. },
  3656. "notification-url": "https://packagist.org/downloads/",
  3657. "license": [
  3658. "MIT"
  3659. ],
  3660. "authors": [
  3661. {
  3662. "name": "Maarten Balliauw",
  3663. "homepage": "https://blog.maartenballiauw.be"
  3664. },
  3665. {
  3666. "name": "Mark Baker",
  3667. "homepage": "https://markbakeruk.net"
  3668. },
  3669. {
  3670. "name": "Franck Lefevre",
  3671. "homepage": "https://rootslabs.net"
  3672. },
  3673. {
  3674. "name": "Erik Tilt"
  3675. },
  3676. {
  3677. "name": "Adrien Crivelli"
  3678. }
  3679. ],
  3680. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3681. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3682. "keywords": [
  3683. "OpenXML",
  3684. "excel",
  3685. "gnumeric",
  3686. "ods",
  3687. "php",
  3688. "spreadsheet",
  3689. "xls",
  3690. "xlsx"
  3691. ],
  3692. "support": {
  3693. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3694. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.1"
  3695. },
  3696. "time": "2025-10-26T16:01:04+00:00"
  3697. },
  3698. {
  3699. "name": "phpoption/phpoption",
  3700. "version": "dev-master",
  3701. "source": {
  3702. "type": "git",
  3703. "url": "https://github.com/schmittjoh/php-option.git",
  3704. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3705. },
  3706. "dist": {
  3707. "type": "zip",
  3708. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3709. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3710. "shasum": "",
  3711. "mirrors": [
  3712. {
  3713. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3714. "preferred": true
  3715. }
  3716. ]
  3717. },
  3718. "require": {
  3719. "php": "^7.2.5 || ^8.0"
  3720. },
  3721. "require-dev": {
  3722. "bamarni/composer-bin-plugin": "^1.8.2",
  3723. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3724. },
  3725. "default-branch": true,
  3726. "type": "library",
  3727. "extra": {
  3728. "bamarni-bin": {
  3729. "bin-links": true,
  3730. "forward-command": false
  3731. },
  3732. "branch-alias": {
  3733. "dev-master": "1.9-dev"
  3734. }
  3735. },
  3736. "autoload": {
  3737. "psr-4": {
  3738. "PhpOption\\": "src/PhpOption/"
  3739. }
  3740. },
  3741. "notification-url": "https://packagist.org/downloads/",
  3742. "license": [
  3743. "Apache-2.0"
  3744. ],
  3745. "authors": [
  3746. {
  3747. "name": "Johannes M. Schmitt",
  3748. "email": "schmittjoh@gmail.com",
  3749. "homepage": "https://github.com/schmittjoh"
  3750. },
  3751. {
  3752. "name": "Graham Campbell",
  3753. "email": "hello@gjcampbell.co.uk",
  3754. "homepage": "https://github.com/GrahamCampbell"
  3755. }
  3756. ],
  3757. "description": "Option Type for PHP",
  3758. "keywords": [
  3759. "language",
  3760. "option",
  3761. "php",
  3762. "type"
  3763. ],
  3764. "support": {
  3765. "issues": "https://github.com/schmittjoh/php-option/issues",
  3766. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3767. },
  3768. "funding": [
  3769. {
  3770. "url": "https://github.com/GrahamCampbell",
  3771. "type": "github"
  3772. },
  3773. {
  3774. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3775. "type": "tidelift"
  3776. }
  3777. ],
  3778. "time": "2024-07-20T21:41:07+00:00"
  3779. },
  3780. {
  3781. "name": "phpseclib/phpseclib",
  3782. "version": "3.0.48",
  3783. "source": {
  3784. "type": "git",
  3785. "url": "https://github.com/phpseclib/phpseclib.git",
  3786. "reference": "64065a5679c50acb886e82c07aa139b0f757bb89"
  3787. },
  3788. "dist": {
  3789. "type": "zip",
  3790. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/64065a5679c50acb886e82c07aa139b0f757bb89",
  3791. "reference": "64065a5679c50acb886e82c07aa139b0f757bb89",
  3792. "shasum": "",
  3793. "mirrors": [
  3794. {
  3795. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3796. "preferred": true
  3797. }
  3798. ]
  3799. },
  3800. "require": {
  3801. "paragonie/constant_time_encoding": "^1|^2|^3",
  3802. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  3803. "php": ">=5.6.1"
  3804. },
  3805. "require-dev": {
  3806. "phpunit/phpunit": "*"
  3807. },
  3808. "suggest": {
  3809. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  3810. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3811. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3812. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3813. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3814. },
  3815. "type": "library",
  3816. "autoload": {
  3817. "files": [
  3818. "phpseclib/bootstrap.php"
  3819. ],
  3820. "psr-4": {
  3821. "phpseclib3\\": "phpseclib/"
  3822. }
  3823. },
  3824. "notification-url": "https://packagist.org/downloads/",
  3825. "license": [
  3826. "MIT"
  3827. ],
  3828. "authors": [
  3829. {
  3830. "name": "Jim Wigginton",
  3831. "email": "terrafrost@php.net",
  3832. "role": "Lead Developer"
  3833. },
  3834. {
  3835. "name": "Patrick Monnerat",
  3836. "email": "pm@datasphere.ch",
  3837. "role": "Developer"
  3838. },
  3839. {
  3840. "name": "Andreas Fischer",
  3841. "email": "bantu@phpbb.com",
  3842. "role": "Developer"
  3843. },
  3844. {
  3845. "name": "Hans-Jürgen Petrich",
  3846. "email": "petrich@tronic-media.com",
  3847. "role": "Developer"
  3848. },
  3849. {
  3850. "name": "Graham Campbell",
  3851. "email": "graham@alt-three.com",
  3852. "role": "Developer"
  3853. }
  3854. ],
  3855. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3856. "homepage": "http://phpseclib.sourceforge.net",
  3857. "keywords": [
  3858. "BigInteger",
  3859. "aes",
  3860. "asn.1",
  3861. "asn1",
  3862. "blowfish",
  3863. "crypto",
  3864. "cryptography",
  3865. "encryption",
  3866. "rsa",
  3867. "security",
  3868. "sftp",
  3869. "signature",
  3870. "signing",
  3871. "ssh",
  3872. "twofish",
  3873. "x.509",
  3874. "x509"
  3875. ],
  3876. "support": {
  3877. "issues": "https://github.com/phpseclib/phpseclib/issues",
  3878. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.48"
  3879. },
  3880. "funding": [
  3881. {
  3882. "url": "https://github.com/terrafrost",
  3883. "type": "github"
  3884. },
  3885. {
  3886. "url": "https://www.patreon.com/phpseclib",
  3887. "type": "patreon"
  3888. },
  3889. {
  3890. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  3891. "type": "tidelift"
  3892. }
  3893. ],
  3894. "time": "2025-12-15T11:51:42+00:00"
  3895. },
  3896. {
  3897. "name": "psr/clock",
  3898. "version": "1.0.0",
  3899. "source": {
  3900. "type": "git",
  3901. "url": "https://github.com/php-fig/clock.git",
  3902. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3903. },
  3904. "dist": {
  3905. "type": "zip",
  3906. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3907. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3908. "shasum": "",
  3909. "mirrors": [
  3910. {
  3911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3912. "preferred": true
  3913. }
  3914. ]
  3915. },
  3916. "require": {
  3917. "php": "^7.0 || ^8.0"
  3918. },
  3919. "type": "library",
  3920. "autoload": {
  3921. "psr-4": {
  3922. "Psr\\Clock\\": "src/"
  3923. }
  3924. },
  3925. "notification-url": "https://packagist.org/downloads/",
  3926. "license": [
  3927. "MIT"
  3928. ],
  3929. "authors": [
  3930. {
  3931. "name": "PHP-FIG",
  3932. "homepage": "https://www.php-fig.org/"
  3933. }
  3934. ],
  3935. "description": "Common interface for reading the clock.",
  3936. "homepage": "https://github.com/php-fig/clock",
  3937. "keywords": [
  3938. "clock",
  3939. "now",
  3940. "psr",
  3941. "psr-20",
  3942. "time"
  3943. ],
  3944. "support": {
  3945. "issues": "https://github.com/php-fig/clock/issues",
  3946. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3947. },
  3948. "time": "2022-11-25T14:36:26+00:00"
  3949. },
  3950. {
  3951. "name": "psr/container",
  3952. "version": "1.1.2",
  3953. "source": {
  3954. "type": "git",
  3955. "url": "https://github.com/php-fig/container.git",
  3956. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  3957. },
  3958. "dist": {
  3959. "type": "zip",
  3960. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  3961. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  3962. "shasum": "",
  3963. "mirrors": [
  3964. {
  3965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3966. "preferred": true
  3967. }
  3968. ]
  3969. },
  3970. "require": {
  3971. "php": ">=7.4.0"
  3972. },
  3973. "type": "library",
  3974. "autoload": {
  3975. "psr-4": {
  3976. "Psr\\Container\\": "src/"
  3977. }
  3978. },
  3979. "notification-url": "https://packagist.org/downloads/",
  3980. "license": [
  3981. "MIT"
  3982. ],
  3983. "authors": [
  3984. {
  3985. "name": "PHP-FIG",
  3986. "homepage": "https://www.php-fig.org/"
  3987. }
  3988. ],
  3989. "description": "Common Container Interface (PHP FIG PSR-11)",
  3990. "homepage": "https://github.com/php-fig/container",
  3991. "keywords": [
  3992. "PSR-11",
  3993. "container",
  3994. "container-interface",
  3995. "container-interop",
  3996. "psr"
  3997. ],
  3998. "support": {
  3999. "issues": "https://github.com/php-fig/container/issues",
  4000. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4001. },
  4002. "time": "2021-11-05T16:50:12+00:00"
  4003. },
  4004. {
  4005. "name": "psr/event-dispatcher",
  4006. "version": "1.0.0",
  4007. "source": {
  4008. "type": "git",
  4009. "url": "https://github.com/php-fig/event-dispatcher.git",
  4010. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4011. },
  4012. "dist": {
  4013. "type": "zip",
  4014. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4015. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4016. "shasum": "",
  4017. "mirrors": [
  4018. {
  4019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4020. "preferred": true
  4021. }
  4022. ]
  4023. },
  4024. "require": {
  4025. "php": ">=7.2.0"
  4026. },
  4027. "type": "library",
  4028. "extra": {
  4029. "branch-alias": {
  4030. "dev-master": "1.0.x-dev"
  4031. }
  4032. },
  4033. "autoload": {
  4034. "psr-4": {
  4035. "Psr\\EventDispatcher\\": "src/"
  4036. }
  4037. },
  4038. "notification-url": "https://packagist.org/downloads/",
  4039. "license": [
  4040. "MIT"
  4041. ],
  4042. "authors": [
  4043. {
  4044. "name": "PHP-FIG",
  4045. "homepage": "http://www.php-fig.org/"
  4046. }
  4047. ],
  4048. "description": "Standard interfaces for event handling.",
  4049. "keywords": [
  4050. "events",
  4051. "psr",
  4052. "psr-14"
  4053. ],
  4054. "support": {
  4055. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4056. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4057. },
  4058. "time": "2019-01-08T18:20:26+00:00"
  4059. },
  4060. {
  4061. "name": "psr/http-client",
  4062. "version": "1.0.3",
  4063. "source": {
  4064. "type": "git",
  4065. "url": "https://github.com/php-fig/http-client.git",
  4066. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4067. },
  4068. "dist": {
  4069. "type": "zip",
  4070. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4071. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4072. "shasum": "",
  4073. "mirrors": [
  4074. {
  4075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4076. "preferred": true
  4077. }
  4078. ]
  4079. },
  4080. "require": {
  4081. "php": "^7.0 || ^8.0",
  4082. "psr/http-message": "^1.0 || ^2.0"
  4083. },
  4084. "type": "library",
  4085. "extra": {
  4086. "branch-alias": {
  4087. "dev-master": "1.0.x-dev"
  4088. }
  4089. },
  4090. "autoload": {
  4091. "psr-4": {
  4092. "Psr\\Http\\Client\\": "src/"
  4093. }
  4094. },
  4095. "notification-url": "https://packagist.org/downloads/",
  4096. "license": [
  4097. "MIT"
  4098. ],
  4099. "authors": [
  4100. {
  4101. "name": "PHP-FIG",
  4102. "homepage": "https://www.php-fig.org/"
  4103. }
  4104. ],
  4105. "description": "Common interface for HTTP clients",
  4106. "homepage": "https://github.com/php-fig/http-client",
  4107. "keywords": [
  4108. "http",
  4109. "http-client",
  4110. "psr",
  4111. "psr-18"
  4112. ],
  4113. "support": {
  4114. "source": "https://github.com/php-fig/http-client"
  4115. },
  4116. "time": "2023-09-23T14:17:50+00:00"
  4117. },
  4118. {
  4119. "name": "psr/http-factory",
  4120. "version": "1.0.2",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/php-fig/http-factory.git",
  4124. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4129. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4130. "shasum": "",
  4131. "mirrors": [
  4132. {
  4133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4134. "preferred": true
  4135. }
  4136. ]
  4137. },
  4138. "require": {
  4139. "php": ">=7.0.0",
  4140. "psr/http-message": "^1.0 || ^2.0"
  4141. },
  4142. "type": "library",
  4143. "extra": {
  4144. "branch-alias": {
  4145. "dev-master": "1.0.x-dev"
  4146. }
  4147. },
  4148. "autoload": {
  4149. "psr-4": {
  4150. "Psr\\Http\\Message\\": "src/"
  4151. }
  4152. },
  4153. "notification-url": "https://packagist.org/downloads/",
  4154. "license": [
  4155. "MIT"
  4156. ],
  4157. "authors": [
  4158. {
  4159. "name": "PHP-FIG",
  4160. "homepage": "https://www.php-fig.org/"
  4161. }
  4162. ],
  4163. "description": "Common interfaces for PSR-7 HTTP message factories",
  4164. "keywords": [
  4165. "factory",
  4166. "http",
  4167. "message",
  4168. "psr",
  4169. "psr-17",
  4170. "psr-7",
  4171. "request",
  4172. "response"
  4173. ],
  4174. "support": {
  4175. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4176. },
  4177. "time": "2023-04-10T20:10:41+00:00"
  4178. },
  4179. {
  4180. "name": "psr/http-message",
  4181. "version": "1.1",
  4182. "source": {
  4183. "type": "git",
  4184. "url": "https://github.com/php-fig/http-message.git",
  4185. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4186. },
  4187. "dist": {
  4188. "type": "zip",
  4189. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4190. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4191. "shasum": "",
  4192. "mirrors": [
  4193. {
  4194. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4195. "preferred": true
  4196. }
  4197. ]
  4198. },
  4199. "require": {
  4200. "php": "^7.2 || ^8.0"
  4201. },
  4202. "type": "library",
  4203. "extra": {
  4204. "branch-alias": {
  4205. "dev-master": "1.1.x-dev"
  4206. }
  4207. },
  4208. "autoload": {
  4209. "psr-4": {
  4210. "Psr\\Http\\Message\\": "src/"
  4211. }
  4212. },
  4213. "notification-url": "https://packagist.org/downloads/",
  4214. "license": [
  4215. "MIT"
  4216. ],
  4217. "authors": [
  4218. {
  4219. "name": "PHP-FIG",
  4220. "homepage": "http://www.php-fig.org/"
  4221. }
  4222. ],
  4223. "description": "Common interface for HTTP messages",
  4224. "homepage": "https://github.com/php-fig/http-message",
  4225. "keywords": [
  4226. "http",
  4227. "http-message",
  4228. "psr",
  4229. "psr-7",
  4230. "request",
  4231. "response"
  4232. ],
  4233. "support": {
  4234. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4235. },
  4236. "time": "2023-04-04T09:50:52+00:00"
  4237. },
  4238. {
  4239. "name": "psr/log",
  4240. "version": "2.0.0",
  4241. "source": {
  4242. "type": "git",
  4243. "url": "https://github.com/php-fig/log.git",
  4244. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4245. },
  4246. "dist": {
  4247. "type": "zip",
  4248. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4249. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4250. "shasum": "",
  4251. "mirrors": [
  4252. {
  4253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4254. "preferred": true
  4255. }
  4256. ]
  4257. },
  4258. "require": {
  4259. "php": ">=8.0.0"
  4260. },
  4261. "type": "library",
  4262. "extra": {
  4263. "branch-alias": {
  4264. "dev-master": "2.0.x-dev"
  4265. }
  4266. },
  4267. "autoload": {
  4268. "psr-4": {
  4269. "Psr\\Log\\": "src"
  4270. }
  4271. },
  4272. "notification-url": "https://packagist.org/downloads/",
  4273. "license": [
  4274. "MIT"
  4275. ],
  4276. "authors": [
  4277. {
  4278. "name": "PHP-FIG",
  4279. "homepage": "https://www.php-fig.org/"
  4280. }
  4281. ],
  4282. "description": "Common interface for logging libraries",
  4283. "homepage": "https://github.com/php-fig/log",
  4284. "keywords": [
  4285. "log",
  4286. "psr",
  4287. "psr-3"
  4288. ],
  4289. "support": {
  4290. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4291. },
  4292. "time": "2021-07-14T16:41:46+00:00"
  4293. },
  4294. {
  4295. "name": "psr/simple-cache",
  4296. "version": "1.0.1",
  4297. "source": {
  4298. "type": "git",
  4299. "url": "https://github.com/php-fig/simple-cache.git",
  4300. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4301. },
  4302. "dist": {
  4303. "type": "zip",
  4304. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4305. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4306. "shasum": "",
  4307. "mirrors": [
  4308. {
  4309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4310. "preferred": true
  4311. }
  4312. ]
  4313. },
  4314. "require": {
  4315. "php": ">=5.3.0"
  4316. },
  4317. "type": "library",
  4318. "extra": {
  4319. "branch-alias": {
  4320. "dev-master": "1.0.x-dev"
  4321. }
  4322. },
  4323. "autoload": {
  4324. "psr-4": {
  4325. "Psr\\SimpleCache\\": "src/"
  4326. }
  4327. },
  4328. "notification-url": "https://packagist.org/downloads/",
  4329. "license": [
  4330. "MIT"
  4331. ],
  4332. "authors": [
  4333. {
  4334. "name": "PHP-FIG",
  4335. "homepage": "http://www.php-fig.org/"
  4336. }
  4337. ],
  4338. "description": "Common interfaces for simple caching",
  4339. "keywords": [
  4340. "cache",
  4341. "caching",
  4342. "psr",
  4343. "psr-16",
  4344. "simple-cache"
  4345. ],
  4346. "support": {
  4347. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4348. },
  4349. "time": "2017-10-23T01:57:42+00:00"
  4350. },
  4351. {
  4352. "name": "psy/psysh",
  4353. "version": "v0.12.15",
  4354. "source": {
  4355. "type": "git",
  4356. "url": "https://github.com/bobthecow/psysh.git",
  4357. "reference": "38953bc71491c838fcb6ebcbdc41ab7483cd549c"
  4358. },
  4359. "dist": {
  4360. "type": "zip",
  4361. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/38953bc71491c838fcb6ebcbdc41ab7483cd549c",
  4362. "reference": "38953bc71491c838fcb6ebcbdc41ab7483cd549c",
  4363. "shasum": "",
  4364. "mirrors": [
  4365. {
  4366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4367. "preferred": true
  4368. }
  4369. ]
  4370. },
  4371. "require": {
  4372. "ext-json": "*",
  4373. "ext-tokenizer": "*",
  4374. "nikic/php-parser": "^5.0 || ^4.0",
  4375. "php": "^8.0 || ^7.4",
  4376. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4377. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4378. },
  4379. "conflict": {
  4380. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4381. },
  4382. "require-dev": {
  4383. "bamarni/composer-bin-plugin": "^1.2",
  4384. "composer/class-map-generator": "^1.6"
  4385. },
  4386. "suggest": {
  4387. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  4388. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4389. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4390. },
  4391. "bin": [
  4392. "bin/psysh"
  4393. ],
  4394. "type": "library",
  4395. "extra": {
  4396. "bamarni-bin": {
  4397. "bin-links": false,
  4398. "forward-command": false
  4399. },
  4400. "branch-alias": {
  4401. "dev-main": "0.12.x-dev"
  4402. }
  4403. },
  4404. "autoload": {
  4405. "files": [
  4406. "src/functions.php"
  4407. ],
  4408. "psr-4": {
  4409. "Psy\\": "src/"
  4410. }
  4411. },
  4412. "notification-url": "https://packagist.org/downloads/",
  4413. "license": [
  4414. "MIT"
  4415. ],
  4416. "authors": [
  4417. {
  4418. "name": "Justin Hileman",
  4419. "email": "justin@justinhileman.info"
  4420. }
  4421. ],
  4422. "description": "An interactive shell for modern PHP.",
  4423. "homepage": "https://psysh.org",
  4424. "keywords": [
  4425. "REPL",
  4426. "console",
  4427. "interactive",
  4428. "shell"
  4429. ],
  4430. "support": {
  4431. "issues": "https://github.com/bobthecow/psysh/issues",
  4432. "source": "https://github.com/bobthecow/psysh/tree/v0.12.15"
  4433. },
  4434. "time": "2025-11-28T00:00:14+00:00"
  4435. },
  4436. {
  4437. "name": "ralouphie/getallheaders",
  4438. "version": "3.0.3",
  4439. "source": {
  4440. "type": "git",
  4441. "url": "https://github.com/ralouphie/getallheaders.git",
  4442. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4443. },
  4444. "dist": {
  4445. "type": "zip",
  4446. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4447. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4448. "shasum": "",
  4449. "mirrors": [
  4450. {
  4451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4452. "preferred": true
  4453. }
  4454. ]
  4455. },
  4456. "require": {
  4457. "php": ">=5.6"
  4458. },
  4459. "require-dev": {
  4460. "php-coveralls/php-coveralls": "^2.1",
  4461. "phpunit/phpunit": "^5 || ^6.5"
  4462. },
  4463. "type": "library",
  4464. "autoload": {
  4465. "files": [
  4466. "src/getallheaders.php"
  4467. ]
  4468. },
  4469. "notification-url": "https://packagist.org/downloads/",
  4470. "license": [
  4471. "MIT"
  4472. ],
  4473. "authors": [
  4474. {
  4475. "name": "Ralph Khattar",
  4476. "email": "ralph.khattar@gmail.com"
  4477. }
  4478. ],
  4479. "description": "A polyfill for getallheaders.",
  4480. "support": {
  4481. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4482. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4483. },
  4484. "time": "2019-03-08T08:55:37+00:00"
  4485. },
  4486. {
  4487. "name": "ramsey/collection",
  4488. "version": "1.3.0",
  4489. "source": {
  4490. "type": "git",
  4491. "url": "https://github.com/ramsey/collection.git",
  4492. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4493. },
  4494. "dist": {
  4495. "type": "zip",
  4496. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4497. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4498. "shasum": "",
  4499. "mirrors": [
  4500. {
  4501. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4502. "preferred": true
  4503. }
  4504. ]
  4505. },
  4506. "require": {
  4507. "php": "^7.4 || ^8.0",
  4508. "symfony/polyfill-php81": "^1.23"
  4509. },
  4510. "require-dev": {
  4511. "captainhook/plugin-composer": "^5.3",
  4512. "ergebnis/composer-normalize": "^2.28.3",
  4513. "fakerphp/faker": "^1.21",
  4514. "hamcrest/hamcrest-php": "^2.0",
  4515. "jangregor/phpstan-prophecy": "^1.0",
  4516. "mockery/mockery": "^1.5",
  4517. "php-parallel-lint/php-console-highlighter": "^1.0",
  4518. "php-parallel-lint/php-parallel-lint": "^1.3",
  4519. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4520. "phpspec/prophecy-phpunit": "^2.0",
  4521. "phpstan/extension-installer": "^1.2",
  4522. "phpstan/phpstan": "^1.9",
  4523. "phpstan/phpstan-mockery": "^1.1",
  4524. "phpstan/phpstan-phpunit": "^1.3",
  4525. "phpunit/phpunit": "^9.5",
  4526. "psalm/plugin-mockery": "^1.1",
  4527. "psalm/plugin-phpunit": "^0.18.4",
  4528. "ramsey/coding-standard": "^2.0.3",
  4529. "ramsey/conventional-commits": "^1.3",
  4530. "vimeo/psalm": "^5.4"
  4531. },
  4532. "type": "library",
  4533. "extra": {
  4534. "captainhook": {
  4535. "force-install": true
  4536. },
  4537. "ramsey/conventional-commits": {
  4538. "configFile": "conventional-commits.json"
  4539. }
  4540. },
  4541. "autoload": {
  4542. "psr-4": {
  4543. "Ramsey\\Collection\\": "src/"
  4544. }
  4545. },
  4546. "notification-url": "https://packagist.org/downloads/",
  4547. "license": [
  4548. "MIT"
  4549. ],
  4550. "authors": [
  4551. {
  4552. "name": "Ben Ramsey",
  4553. "email": "ben@benramsey.com",
  4554. "homepage": "https://benramsey.com"
  4555. }
  4556. ],
  4557. "description": "A PHP library for representing and manipulating collections.",
  4558. "keywords": [
  4559. "array",
  4560. "collection",
  4561. "hash",
  4562. "map",
  4563. "queue",
  4564. "set"
  4565. ],
  4566. "support": {
  4567. "issues": "https://github.com/ramsey/collection/issues",
  4568. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4569. },
  4570. "funding": [
  4571. {
  4572. "url": "https://github.com/ramsey",
  4573. "type": "github"
  4574. },
  4575. {
  4576. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4577. "type": "tidelift"
  4578. }
  4579. ],
  4580. "time": "2022-12-27T19:12:24+00:00"
  4581. },
  4582. {
  4583. "name": "ramsey/uuid",
  4584. "version": "4.9.0",
  4585. "source": {
  4586. "type": "git",
  4587. "url": "https://github.com/ramsey/uuid.git",
  4588. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4589. },
  4590. "dist": {
  4591. "type": "zip",
  4592. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4593. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4594. "shasum": "",
  4595. "mirrors": [
  4596. {
  4597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4598. "preferred": true
  4599. }
  4600. ]
  4601. },
  4602. "require": {
  4603. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4604. "php": "^8.0",
  4605. "ramsey/collection": "^1.2 || ^2.0"
  4606. },
  4607. "replace": {
  4608. "rhumsaa/uuid": "self.version"
  4609. },
  4610. "require-dev": {
  4611. "captainhook/captainhook": "^5.25",
  4612. "captainhook/plugin-composer": "^5.3",
  4613. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4614. "ergebnis/composer-normalize": "^2.47",
  4615. "mockery/mockery": "^1.6",
  4616. "paragonie/random-lib": "^2",
  4617. "php-mock/php-mock": "^2.6",
  4618. "php-mock/php-mock-mockery": "^1.5",
  4619. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4620. "phpbench/phpbench": "^1.2.14",
  4621. "phpstan/extension-installer": "^1.4",
  4622. "phpstan/phpstan": "^2.1",
  4623. "phpstan/phpstan-mockery": "^2.0",
  4624. "phpstan/phpstan-phpunit": "^2.0",
  4625. "phpunit/phpunit": "^9.6",
  4626. "slevomat/coding-standard": "^8.18",
  4627. "squizlabs/php_codesniffer": "^3.13"
  4628. },
  4629. "suggest": {
  4630. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4631. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4632. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4633. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4634. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4635. },
  4636. "type": "library",
  4637. "extra": {
  4638. "captainhook": {
  4639. "force-install": true
  4640. }
  4641. },
  4642. "autoload": {
  4643. "files": [
  4644. "src/functions.php"
  4645. ],
  4646. "psr-4": {
  4647. "Ramsey\\Uuid\\": "src/"
  4648. }
  4649. },
  4650. "notification-url": "https://packagist.org/downloads/",
  4651. "license": [
  4652. "MIT"
  4653. ],
  4654. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4655. "keywords": [
  4656. "guid",
  4657. "identifier",
  4658. "uuid"
  4659. ],
  4660. "support": {
  4661. "issues": "https://github.com/ramsey/uuid/issues",
  4662. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  4663. },
  4664. "time": "2025-06-25T14:20:11+00:00"
  4665. },
  4666. {
  4667. "name": "ratchet/rfc6455",
  4668. "version": "v0.3.1",
  4669. "source": {
  4670. "type": "git",
  4671. "url": "https://github.com/ratchetphp/RFC6455.git",
  4672. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  4673. },
  4674. "dist": {
  4675. "type": "zip",
  4676. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4677. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4678. "shasum": "",
  4679. "mirrors": [
  4680. {
  4681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4682. "preferred": true
  4683. }
  4684. ]
  4685. },
  4686. "require": {
  4687. "guzzlehttp/psr7": "^2 || ^1.7",
  4688. "php": ">=5.4.2"
  4689. },
  4690. "require-dev": {
  4691. "phpunit/phpunit": "^5.7",
  4692. "react/socket": "^1.3"
  4693. },
  4694. "type": "library",
  4695. "autoload": {
  4696. "psr-4": {
  4697. "Ratchet\\RFC6455\\": "src"
  4698. }
  4699. },
  4700. "notification-url": "https://packagist.org/downloads/",
  4701. "license": [
  4702. "MIT"
  4703. ],
  4704. "authors": [
  4705. {
  4706. "name": "Chris Boden",
  4707. "email": "cboden@gmail.com",
  4708. "role": "Developer"
  4709. },
  4710. {
  4711. "name": "Matt Bonneau",
  4712. "role": "Developer"
  4713. }
  4714. ],
  4715. "description": "RFC6455 WebSocket protocol handler",
  4716. "homepage": "http://socketo.me",
  4717. "keywords": [
  4718. "WebSockets",
  4719. "rfc6455",
  4720. "websocket"
  4721. ],
  4722. "support": {
  4723. "chat": "https://gitter.im/reactphp/reactphp",
  4724. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  4725. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  4726. },
  4727. "time": "2021-12-09T23:20:49+00:00"
  4728. },
  4729. {
  4730. "name": "react/cache",
  4731. "version": "v1.2.0",
  4732. "source": {
  4733. "type": "git",
  4734. "url": "https://github.com/reactphp/cache.git",
  4735. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4736. },
  4737. "dist": {
  4738. "type": "zip",
  4739. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4740. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4741. "shasum": "",
  4742. "mirrors": [
  4743. {
  4744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4745. "preferred": true
  4746. }
  4747. ]
  4748. },
  4749. "require": {
  4750. "php": ">=5.3.0",
  4751. "react/promise": "^3.0 || ^2.0 || ^1.1"
  4752. },
  4753. "require-dev": {
  4754. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  4755. },
  4756. "type": "library",
  4757. "autoload": {
  4758. "psr-4": {
  4759. "React\\Cache\\": "src/"
  4760. }
  4761. },
  4762. "notification-url": "https://packagist.org/downloads/",
  4763. "license": [
  4764. "MIT"
  4765. ],
  4766. "authors": [
  4767. {
  4768. "name": "Christian Lück",
  4769. "email": "christian@clue.engineering",
  4770. "homepage": "https://clue.engineering/"
  4771. },
  4772. {
  4773. "name": "Cees-Jan Kiewiet",
  4774. "email": "reactphp@ceesjankiewiet.nl",
  4775. "homepage": "https://wyrihaximus.net/"
  4776. },
  4777. {
  4778. "name": "Jan Sorgalla",
  4779. "email": "jsorgalla@gmail.com",
  4780. "homepage": "https://sorgalla.com/"
  4781. },
  4782. {
  4783. "name": "Chris Boden",
  4784. "email": "cboden@gmail.com",
  4785. "homepage": "https://cboden.dev/"
  4786. }
  4787. ],
  4788. "description": "Async, Promise-based cache interface for ReactPHP",
  4789. "keywords": [
  4790. "cache",
  4791. "caching",
  4792. "promise",
  4793. "reactphp"
  4794. ],
  4795. "support": {
  4796. "issues": "https://github.com/reactphp/cache/issues",
  4797. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  4798. },
  4799. "funding": [
  4800. {
  4801. "url": "https://opencollective.com/reactphp",
  4802. "type": "open_collective"
  4803. }
  4804. ],
  4805. "time": "2022-11-30T15:59:55+00:00"
  4806. },
  4807. {
  4808. "name": "react/dns",
  4809. "version": "v1.14.0",
  4810. "source": {
  4811. "type": "git",
  4812. "url": "https://github.com/reactphp/dns.git",
  4813. "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3"
  4814. },
  4815. "dist": {
  4816. "type": "zip",
  4817. "url": "https://api.github.com/repos/reactphp/dns/zipball/7562c05391f42701c1fccf189c8225fece1cd7c3",
  4818. "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3",
  4819. "shasum": "",
  4820. "mirrors": [
  4821. {
  4822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4823. "preferred": true
  4824. }
  4825. ]
  4826. },
  4827. "require": {
  4828. "php": ">=5.3.0",
  4829. "react/cache": "^1.0 || ^0.6 || ^0.5",
  4830. "react/event-loop": "^1.2",
  4831. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  4832. },
  4833. "require-dev": {
  4834. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4835. "react/async": "^4.3 || ^3 || ^2",
  4836. "react/promise-timer": "^1.11"
  4837. },
  4838. "type": "library",
  4839. "autoload": {
  4840. "psr-4": {
  4841. "React\\Dns\\": "src/"
  4842. }
  4843. },
  4844. "notification-url": "https://packagist.org/downloads/",
  4845. "license": [
  4846. "MIT"
  4847. ],
  4848. "authors": [
  4849. {
  4850. "name": "Christian Lück",
  4851. "email": "christian@clue.engineering",
  4852. "homepage": "https://clue.engineering/"
  4853. },
  4854. {
  4855. "name": "Cees-Jan Kiewiet",
  4856. "email": "reactphp@ceesjankiewiet.nl",
  4857. "homepage": "https://wyrihaximus.net/"
  4858. },
  4859. {
  4860. "name": "Jan Sorgalla",
  4861. "email": "jsorgalla@gmail.com",
  4862. "homepage": "https://sorgalla.com/"
  4863. },
  4864. {
  4865. "name": "Chris Boden",
  4866. "email": "cboden@gmail.com",
  4867. "homepage": "https://cboden.dev/"
  4868. }
  4869. ],
  4870. "description": "Async DNS resolver for ReactPHP",
  4871. "keywords": [
  4872. "async",
  4873. "dns",
  4874. "dns-resolver",
  4875. "reactphp"
  4876. ],
  4877. "support": {
  4878. "issues": "https://github.com/reactphp/dns/issues",
  4879. "source": "https://github.com/reactphp/dns/tree/v1.14.0"
  4880. },
  4881. "funding": [
  4882. {
  4883. "url": "https://opencollective.com/reactphp",
  4884. "type": "open_collective"
  4885. }
  4886. ],
  4887. "time": "2025-11-18T19:34:28+00:00"
  4888. },
  4889. {
  4890. "name": "react/event-loop",
  4891. "version": "v1.6.0",
  4892. "source": {
  4893. "type": "git",
  4894. "url": "https://github.com/reactphp/event-loop.git",
  4895. "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a"
  4896. },
  4897. "dist": {
  4898. "type": "zip",
  4899. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/ba276bda6083df7e0050fd9b33f66ad7a4ac747a",
  4900. "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a",
  4901. "shasum": "",
  4902. "mirrors": [
  4903. {
  4904. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4905. "preferred": true
  4906. }
  4907. ]
  4908. },
  4909. "require": {
  4910. "php": ">=5.3.0"
  4911. },
  4912. "require-dev": {
  4913. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4914. },
  4915. "suggest": {
  4916. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  4917. },
  4918. "type": "library",
  4919. "autoload": {
  4920. "psr-4": {
  4921. "React\\EventLoop\\": "src/"
  4922. }
  4923. },
  4924. "notification-url": "https://packagist.org/downloads/",
  4925. "license": [
  4926. "MIT"
  4927. ],
  4928. "authors": [
  4929. {
  4930. "name": "Christian Lück",
  4931. "email": "christian@clue.engineering",
  4932. "homepage": "https://clue.engineering/"
  4933. },
  4934. {
  4935. "name": "Cees-Jan Kiewiet",
  4936. "email": "reactphp@ceesjankiewiet.nl",
  4937. "homepage": "https://wyrihaximus.net/"
  4938. },
  4939. {
  4940. "name": "Jan Sorgalla",
  4941. "email": "jsorgalla@gmail.com",
  4942. "homepage": "https://sorgalla.com/"
  4943. },
  4944. {
  4945. "name": "Chris Boden",
  4946. "email": "cboden@gmail.com",
  4947. "homepage": "https://cboden.dev/"
  4948. }
  4949. ],
  4950. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  4951. "keywords": [
  4952. "asynchronous",
  4953. "event-loop"
  4954. ],
  4955. "support": {
  4956. "issues": "https://github.com/reactphp/event-loop/issues",
  4957. "source": "https://github.com/reactphp/event-loop/tree/v1.6.0"
  4958. },
  4959. "funding": [
  4960. {
  4961. "url": "https://opencollective.com/reactphp",
  4962. "type": "open_collective"
  4963. }
  4964. ],
  4965. "time": "2025-11-17T20:46:25+00:00"
  4966. },
  4967. {
  4968. "name": "react/promise",
  4969. "version": "v3.2.0",
  4970. "source": {
  4971. "type": "git",
  4972. "url": "https://github.com/reactphp/promise.git",
  4973. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  4974. },
  4975. "dist": {
  4976. "type": "zip",
  4977. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  4978. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  4979. "shasum": "",
  4980. "mirrors": [
  4981. {
  4982. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4983. "preferred": true
  4984. }
  4985. ]
  4986. },
  4987. "require": {
  4988. "php": ">=7.1.0"
  4989. },
  4990. "require-dev": {
  4991. "phpstan/phpstan": "1.10.39 || 1.4.10",
  4992. "phpunit/phpunit": "^9.6 || ^7.5"
  4993. },
  4994. "type": "library",
  4995. "autoload": {
  4996. "files": [
  4997. "src/functions_include.php"
  4998. ],
  4999. "psr-4": {
  5000. "React\\Promise\\": "src/"
  5001. }
  5002. },
  5003. "notification-url": "https://packagist.org/downloads/",
  5004. "license": [
  5005. "MIT"
  5006. ],
  5007. "authors": [
  5008. {
  5009. "name": "Jan Sorgalla",
  5010. "email": "jsorgalla@gmail.com",
  5011. "homepage": "https://sorgalla.com/"
  5012. },
  5013. {
  5014. "name": "Christian Lück",
  5015. "email": "christian@clue.engineering",
  5016. "homepage": "https://clue.engineering/"
  5017. },
  5018. {
  5019. "name": "Cees-Jan Kiewiet",
  5020. "email": "reactphp@ceesjankiewiet.nl",
  5021. "homepage": "https://wyrihaximus.net/"
  5022. },
  5023. {
  5024. "name": "Chris Boden",
  5025. "email": "cboden@gmail.com",
  5026. "homepage": "https://cboden.dev/"
  5027. }
  5028. ],
  5029. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5030. "keywords": [
  5031. "promise",
  5032. "promises"
  5033. ],
  5034. "support": {
  5035. "issues": "https://github.com/reactphp/promise/issues",
  5036. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  5037. },
  5038. "funding": [
  5039. {
  5040. "url": "https://opencollective.com/reactphp",
  5041. "type": "open_collective"
  5042. }
  5043. ],
  5044. "time": "2024-05-24T10:39:05+00:00"
  5045. },
  5046. {
  5047. "name": "react/socket",
  5048. "version": "v1.16.0",
  5049. "source": {
  5050. "type": "git",
  5051. "url": "https://github.com/reactphp/socket.git",
  5052. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  5053. },
  5054. "dist": {
  5055. "type": "zip",
  5056. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5057. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5058. "shasum": "",
  5059. "mirrors": [
  5060. {
  5061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5062. "preferred": true
  5063. }
  5064. ]
  5065. },
  5066. "require": {
  5067. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5068. "php": ">=5.3.0",
  5069. "react/dns": "^1.13",
  5070. "react/event-loop": "^1.2",
  5071. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  5072. "react/stream": "^1.4"
  5073. },
  5074. "require-dev": {
  5075. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5076. "react/async": "^4.3 || ^3.3 || ^2",
  5077. "react/promise-stream": "^1.4",
  5078. "react/promise-timer": "^1.11"
  5079. },
  5080. "type": "library",
  5081. "autoload": {
  5082. "psr-4": {
  5083. "React\\Socket\\": "src/"
  5084. }
  5085. },
  5086. "notification-url": "https://packagist.org/downloads/",
  5087. "license": [
  5088. "MIT"
  5089. ],
  5090. "authors": [
  5091. {
  5092. "name": "Christian Lück",
  5093. "email": "christian@clue.engineering",
  5094. "homepage": "https://clue.engineering/"
  5095. },
  5096. {
  5097. "name": "Cees-Jan Kiewiet",
  5098. "email": "reactphp@ceesjankiewiet.nl",
  5099. "homepage": "https://wyrihaximus.net/"
  5100. },
  5101. {
  5102. "name": "Jan Sorgalla",
  5103. "email": "jsorgalla@gmail.com",
  5104. "homepage": "https://sorgalla.com/"
  5105. },
  5106. {
  5107. "name": "Chris Boden",
  5108. "email": "cboden@gmail.com",
  5109. "homepage": "https://cboden.dev/"
  5110. }
  5111. ],
  5112. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5113. "keywords": [
  5114. "Connection",
  5115. "Socket",
  5116. "async",
  5117. "reactphp",
  5118. "stream"
  5119. ],
  5120. "support": {
  5121. "issues": "https://github.com/reactphp/socket/issues",
  5122. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  5123. },
  5124. "funding": [
  5125. {
  5126. "url": "https://opencollective.com/reactphp",
  5127. "type": "open_collective"
  5128. }
  5129. ],
  5130. "time": "2024-07-26T10:38:09+00:00"
  5131. },
  5132. {
  5133. "name": "react/stream",
  5134. "version": "1.x-dev",
  5135. "source": {
  5136. "type": "git",
  5137. "url": "https://github.com/reactphp/stream.git",
  5138. "reference": "9decb8fa54f361877ba62c2d5e46bb4401779fb1"
  5139. },
  5140. "dist": {
  5141. "type": "zip",
  5142. "url": "https://api.github.com/repos/reactphp/stream/zipball/9decb8fa54f361877ba62c2d5e46bb4401779fb1",
  5143. "reference": "9decb8fa54f361877ba62c2d5e46bb4401779fb1",
  5144. "shasum": "",
  5145. "mirrors": [
  5146. {
  5147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5148. "preferred": true
  5149. }
  5150. ]
  5151. },
  5152. "require": {
  5153. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5154. "php": ">=5.3.8",
  5155. "react/event-loop": "^1.2"
  5156. },
  5157. "require-dev": {
  5158. "clue/stream-filter": "~1.2",
  5159. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5160. },
  5161. "type": "library",
  5162. "autoload": {
  5163. "psr-4": {
  5164. "React\\Stream\\": "src/"
  5165. }
  5166. },
  5167. "notification-url": "https://packagist.org/downloads/",
  5168. "license": [
  5169. "MIT"
  5170. ],
  5171. "authors": [
  5172. {
  5173. "name": "Christian Lück",
  5174. "email": "christian@clue.engineering",
  5175. "homepage": "https://clue.engineering/"
  5176. },
  5177. {
  5178. "name": "Cees-Jan Kiewiet",
  5179. "email": "reactphp@ceesjankiewiet.nl",
  5180. "homepage": "https://wyrihaximus.net/"
  5181. },
  5182. {
  5183. "name": "Jan Sorgalla",
  5184. "email": "jsorgalla@gmail.com",
  5185. "homepage": "https://sorgalla.com/"
  5186. },
  5187. {
  5188. "name": "Chris Boden",
  5189. "email": "cboden@gmail.com",
  5190. "homepage": "https://cboden.dev/"
  5191. }
  5192. ],
  5193. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5194. "keywords": [
  5195. "event-driven",
  5196. "io",
  5197. "non-blocking",
  5198. "pipe",
  5199. "reactphp",
  5200. "readable",
  5201. "stream",
  5202. "writable"
  5203. ],
  5204. "support": {
  5205. "issues": "https://github.com/reactphp/stream/issues",
  5206. "source": "https://github.com/reactphp/stream/tree/1.x"
  5207. },
  5208. "funding": [
  5209. {
  5210. "url": "https://opencollective.com/reactphp",
  5211. "type": "open_collective"
  5212. }
  5213. ],
  5214. "time": "2025-10-15T07:30:20+00:00"
  5215. },
  5216. {
  5217. "name": "socialiteproviders/manager",
  5218. "version": "v4.7.0",
  5219. "source": {
  5220. "type": "git",
  5221. "url": "https://github.com/SocialiteProviders/Manager.git",
  5222. "reference": "ab0691b82cec77efd90154c78f1854903455c82f"
  5223. },
  5224. "dist": {
  5225. "type": "zip",
  5226. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/ab0691b82cec77efd90154c78f1854903455c82f",
  5227. "reference": "ab0691b82cec77efd90154c78f1854903455c82f",
  5228. "shasum": "",
  5229. "mirrors": [
  5230. {
  5231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5232. "preferred": true
  5233. }
  5234. ]
  5235. },
  5236. "require": {
  5237. "illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0",
  5238. "laravel/socialite": "^5.5",
  5239. "php": "^8.0"
  5240. },
  5241. "require-dev": {
  5242. "mockery/mockery": "^1.2",
  5243. "phpunit/phpunit": "^9.0"
  5244. },
  5245. "type": "library",
  5246. "extra": {
  5247. "laravel": {
  5248. "providers": [
  5249. "SocialiteProviders\\Manager\\ServiceProvider"
  5250. ]
  5251. }
  5252. },
  5253. "autoload": {
  5254. "psr-4": {
  5255. "SocialiteProviders\\Manager\\": "src/"
  5256. }
  5257. },
  5258. "notification-url": "https://packagist.org/downloads/",
  5259. "license": [
  5260. "MIT"
  5261. ],
  5262. "authors": [
  5263. {
  5264. "name": "Andy Wendt",
  5265. "email": "andy@awendt.com"
  5266. },
  5267. {
  5268. "name": "Anton Komarev",
  5269. "email": "a.komarev@cybercog.su"
  5270. },
  5271. {
  5272. "name": "Miguel Piedrafita",
  5273. "email": "soy@miguelpiedrafita.com"
  5274. },
  5275. {
  5276. "name": "atymic",
  5277. "email": "atymicq@gmail.com",
  5278. "homepage": "https://atymic.dev"
  5279. }
  5280. ],
  5281. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  5282. "homepage": "https://socialiteproviders.com",
  5283. "keywords": [
  5284. "laravel",
  5285. "manager",
  5286. "oauth",
  5287. "providers",
  5288. "socialite"
  5289. ],
  5290. "support": {
  5291. "issues": "https://github.com/socialiteproviders/manager/issues",
  5292. "source": "https://github.com/socialiteproviders/manager"
  5293. },
  5294. "time": "2024-11-10T01:56:18+00:00"
  5295. },
  5296. {
  5297. "name": "socialiteproviders/weixin",
  5298. "version": "4.1.0",
  5299. "source": {
  5300. "type": "git",
  5301. "url": "https://github.com/SocialiteProviders/Weixin.git",
  5302. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  5303. },
  5304. "dist": {
  5305. "type": "zip",
  5306. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5307. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5308. "shasum": "",
  5309. "mirrors": [
  5310. {
  5311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5312. "preferred": true
  5313. }
  5314. ]
  5315. },
  5316. "require": {
  5317. "ext-json": "*",
  5318. "php": "^7.2 || ^8.0",
  5319. "socialiteproviders/manager": "~4.0"
  5320. },
  5321. "type": "library",
  5322. "autoload": {
  5323. "psr-4": {
  5324. "SocialiteProviders\\Weixin\\": ""
  5325. }
  5326. },
  5327. "notification-url": "https://packagist.org/downloads/",
  5328. "license": [
  5329. "MIT"
  5330. ],
  5331. "authors": [
  5332. {
  5333. "name": "xyxu",
  5334. "email": "techxu@gmail.com"
  5335. },
  5336. {
  5337. "name": "xiami",
  5338. "email": "jhdxr@php.net"
  5339. }
  5340. ],
  5341. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  5342. "support": {
  5343. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  5344. },
  5345. "time": "2020-12-01T23:10:59+00:00"
  5346. },
  5347. {
  5348. "name": "swiftmailer/swiftmailer",
  5349. "version": "v6.3.0",
  5350. "source": {
  5351. "type": "git",
  5352. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5353. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5354. },
  5355. "dist": {
  5356. "type": "zip",
  5357. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5358. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5359. "shasum": "",
  5360. "mirrors": [
  5361. {
  5362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5363. "preferred": true
  5364. }
  5365. ]
  5366. },
  5367. "require": {
  5368. "egulias/email-validator": "^2.0|^3.1",
  5369. "php": ">=7.0.0",
  5370. "symfony/polyfill-iconv": "^1.0",
  5371. "symfony/polyfill-intl-idn": "^1.10",
  5372. "symfony/polyfill-mbstring": "^1.0"
  5373. },
  5374. "require-dev": {
  5375. "mockery/mockery": "^1.0",
  5376. "symfony/phpunit-bridge": "^4.4|^5.4"
  5377. },
  5378. "suggest": {
  5379. "ext-intl": "Needed to support internationalized email addresses"
  5380. },
  5381. "type": "library",
  5382. "extra": {
  5383. "branch-alias": {
  5384. "dev-master": "6.2-dev"
  5385. }
  5386. },
  5387. "autoload": {
  5388. "files": [
  5389. "lib/swift_required.php"
  5390. ]
  5391. },
  5392. "notification-url": "https://packagist.org/downloads/",
  5393. "license": [
  5394. "MIT"
  5395. ],
  5396. "authors": [
  5397. {
  5398. "name": "Chris Corbyn"
  5399. },
  5400. {
  5401. "name": "Fabien Potencier",
  5402. "email": "fabien@symfony.com"
  5403. }
  5404. ],
  5405. "description": "Swiftmailer, free feature-rich PHP mailer",
  5406. "homepage": "https://swiftmailer.symfony.com",
  5407. "keywords": [
  5408. "email",
  5409. "mail",
  5410. "mailer"
  5411. ],
  5412. "support": {
  5413. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5414. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5415. },
  5416. "funding": [
  5417. {
  5418. "url": "https://github.com/fabpot",
  5419. "type": "github"
  5420. },
  5421. {
  5422. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5423. "type": "tidelift"
  5424. }
  5425. ],
  5426. "abandoned": "symfony/mailer",
  5427. "time": "2021-10-18T15:26:12+00:00"
  5428. },
  5429. {
  5430. "name": "symfony/console",
  5431. "version": "v5.4.47",
  5432. "source": {
  5433. "type": "git",
  5434. "url": "https://github.com/symfony/console.git",
  5435. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  5436. },
  5437. "dist": {
  5438. "type": "zip",
  5439. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5440. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5441. "shasum": "",
  5442. "mirrors": [
  5443. {
  5444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5445. "preferred": true
  5446. }
  5447. ]
  5448. },
  5449. "require": {
  5450. "php": ">=7.2.5",
  5451. "symfony/deprecation-contracts": "^2.1|^3",
  5452. "symfony/polyfill-mbstring": "~1.0",
  5453. "symfony/polyfill-php73": "^1.9",
  5454. "symfony/polyfill-php80": "^1.16",
  5455. "symfony/service-contracts": "^1.1|^2|^3",
  5456. "symfony/string": "^5.1|^6.0"
  5457. },
  5458. "conflict": {
  5459. "psr/log": ">=3",
  5460. "symfony/dependency-injection": "<4.4",
  5461. "symfony/dotenv": "<5.1",
  5462. "symfony/event-dispatcher": "<4.4",
  5463. "symfony/lock": "<4.4",
  5464. "symfony/process": "<4.4"
  5465. },
  5466. "provide": {
  5467. "psr/log-implementation": "1.0|2.0"
  5468. },
  5469. "require-dev": {
  5470. "psr/log": "^1|^2",
  5471. "symfony/config": "^4.4|^5.0|^6.0",
  5472. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5473. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5474. "symfony/lock": "^4.4|^5.0|^6.0",
  5475. "symfony/process": "^4.4|^5.0|^6.0",
  5476. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5477. },
  5478. "suggest": {
  5479. "psr/log": "For using the console logger",
  5480. "symfony/event-dispatcher": "",
  5481. "symfony/lock": "",
  5482. "symfony/process": ""
  5483. },
  5484. "type": "library",
  5485. "autoload": {
  5486. "psr-4": {
  5487. "Symfony\\Component\\Console\\": ""
  5488. },
  5489. "exclude-from-classmap": [
  5490. "/Tests/"
  5491. ]
  5492. },
  5493. "notification-url": "https://packagist.org/downloads/",
  5494. "license": [
  5495. "MIT"
  5496. ],
  5497. "authors": [
  5498. {
  5499. "name": "Fabien Potencier",
  5500. "email": "fabien@symfony.com"
  5501. },
  5502. {
  5503. "name": "Symfony Community",
  5504. "homepage": "https://symfony.com/contributors"
  5505. }
  5506. ],
  5507. "description": "Eases the creation of beautiful and testable command line interfaces",
  5508. "homepage": "https://symfony.com",
  5509. "keywords": [
  5510. "cli",
  5511. "command-line",
  5512. "console",
  5513. "terminal"
  5514. ],
  5515. "support": {
  5516. "source": "https://github.com/symfony/console/tree/v5.4.47"
  5517. },
  5518. "funding": [
  5519. {
  5520. "url": "https://symfony.com/sponsor",
  5521. "type": "custom"
  5522. },
  5523. {
  5524. "url": "https://github.com/fabpot",
  5525. "type": "github"
  5526. },
  5527. {
  5528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5529. "type": "tidelift"
  5530. }
  5531. ],
  5532. "time": "2024-11-06T11:30:55+00:00"
  5533. },
  5534. {
  5535. "name": "symfony/css-selector",
  5536. "version": "v6.0.19",
  5537. "source": {
  5538. "type": "git",
  5539. "url": "https://github.com/symfony/css-selector.git",
  5540. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5541. },
  5542. "dist": {
  5543. "type": "zip",
  5544. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5545. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5546. "shasum": "",
  5547. "mirrors": [
  5548. {
  5549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5550. "preferred": true
  5551. }
  5552. ]
  5553. },
  5554. "require": {
  5555. "php": ">=8.0.2"
  5556. },
  5557. "type": "library",
  5558. "autoload": {
  5559. "psr-4": {
  5560. "Symfony\\Component\\CssSelector\\": ""
  5561. },
  5562. "exclude-from-classmap": [
  5563. "/Tests/"
  5564. ]
  5565. },
  5566. "notification-url": "https://packagist.org/downloads/",
  5567. "license": [
  5568. "MIT"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "Fabien Potencier",
  5573. "email": "fabien@symfony.com"
  5574. },
  5575. {
  5576. "name": "Jean-François Simon",
  5577. "email": "jeanfrancois.simon@sensiolabs.com"
  5578. },
  5579. {
  5580. "name": "Symfony Community",
  5581. "homepage": "https://symfony.com/contributors"
  5582. }
  5583. ],
  5584. "description": "Converts CSS selectors to XPath expressions",
  5585. "homepage": "https://symfony.com",
  5586. "support": {
  5587. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5588. },
  5589. "funding": [
  5590. {
  5591. "url": "https://symfony.com/sponsor",
  5592. "type": "custom"
  5593. },
  5594. {
  5595. "url": "https://github.com/fabpot",
  5596. "type": "github"
  5597. },
  5598. {
  5599. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5600. "type": "tidelift"
  5601. }
  5602. ],
  5603. "time": "2023-01-01T08:36:10+00:00"
  5604. },
  5605. {
  5606. "name": "symfony/deprecation-contracts",
  5607. "version": "v3.0.2",
  5608. "source": {
  5609. "type": "git",
  5610. "url": "https://github.com/symfony/deprecation-contracts.git",
  5611. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5612. },
  5613. "dist": {
  5614. "type": "zip",
  5615. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5616. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5617. "shasum": "",
  5618. "mirrors": [
  5619. {
  5620. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5621. "preferred": true
  5622. }
  5623. ]
  5624. },
  5625. "require": {
  5626. "php": ">=8.0.2"
  5627. },
  5628. "type": "library",
  5629. "extra": {
  5630. "thanks": {
  5631. "url": "https://github.com/symfony/contracts",
  5632. "name": "symfony/contracts"
  5633. },
  5634. "branch-alias": {
  5635. "dev-main": "3.0-dev"
  5636. }
  5637. },
  5638. "autoload": {
  5639. "files": [
  5640. "function.php"
  5641. ]
  5642. },
  5643. "notification-url": "https://packagist.org/downloads/",
  5644. "license": [
  5645. "MIT"
  5646. ],
  5647. "authors": [
  5648. {
  5649. "name": "Nicolas Grekas",
  5650. "email": "p@tchwork.com"
  5651. },
  5652. {
  5653. "name": "Symfony Community",
  5654. "homepage": "https://symfony.com/contributors"
  5655. }
  5656. ],
  5657. "description": "A generic function and convention to trigger deprecation notices",
  5658. "homepage": "https://symfony.com",
  5659. "support": {
  5660. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5661. },
  5662. "funding": [
  5663. {
  5664. "url": "https://symfony.com/sponsor",
  5665. "type": "custom"
  5666. },
  5667. {
  5668. "url": "https://github.com/fabpot",
  5669. "type": "github"
  5670. },
  5671. {
  5672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5673. "type": "tidelift"
  5674. }
  5675. ],
  5676. "time": "2022-01-02T09:55:41+00:00"
  5677. },
  5678. {
  5679. "name": "symfony/error-handler",
  5680. "version": "v5.4.46",
  5681. "source": {
  5682. "type": "git",
  5683. "url": "https://github.com/symfony/error-handler.git",
  5684. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363"
  5685. },
  5686. "dist": {
  5687. "type": "zip",
  5688. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5689. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5690. "shasum": "",
  5691. "mirrors": [
  5692. {
  5693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5694. "preferred": true
  5695. }
  5696. ]
  5697. },
  5698. "require": {
  5699. "php": ">=7.2.5",
  5700. "psr/log": "^1|^2|^3",
  5701. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5702. },
  5703. "require-dev": {
  5704. "symfony/deprecation-contracts": "^2.1|^3",
  5705. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5706. "symfony/serializer": "^4.4|^5.0|^6.0"
  5707. },
  5708. "bin": [
  5709. "Resources/bin/patch-type-declarations"
  5710. ],
  5711. "type": "library",
  5712. "autoload": {
  5713. "psr-4": {
  5714. "Symfony\\Component\\ErrorHandler\\": ""
  5715. },
  5716. "exclude-from-classmap": [
  5717. "/Tests/"
  5718. ]
  5719. },
  5720. "notification-url": "https://packagist.org/downloads/",
  5721. "license": [
  5722. "MIT"
  5723. ],
  5724. "authors": [
  5725. {
  5726. "name": "Fabien Potencier",
  5727. "email": "fabien@symfony.com"
  5728. },
  5729. {
  5730. "name": "Symfony Community",
  5731. "homepage": "https://symfony.com/contributors"
  5732. }
  5733. ],
  5734. "description": "Provides tools to manage errors and ease debugging PHP code",
  5735. "homepage": "https://symfony.com",
  5736. "support": {
  5737. "source": "https://github.com/symfony/error-handler/tree/v5.4.46"
  5738. },
  5739. "funding": [
  5740. {
  5741. "url": "https://symfony.com/sponsor",
  5742. "type": "custom"
  5743. },
  5744. {
  5745. "url": "https://github.com/fabpot",
  5746. "type": "github"
  5747. },
  5748. {
  5749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5750. "type": "tidelift"
  5751. }
  5752. ],
  5753. "time": "2024-11-05T14:17:06+00:00"
  5754. },
  5755. {
  5756. "name": "symfony/event-dispatcher",
  5757. "version": "v6.0.19",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/symfony/event-dispatcher.git",
  5761. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5766. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5767. "shasum": "",
  5768. "mirrors": [
  5769. {
  5770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5771. "preferred": true
  5772. }
  5773. ]
  5774. },
  5775. "require": {
  5776. "php": ">=8.0.2",
  5777. "symfony/event-dispatcher-contracts": "^2|^3"
  5778. },
  5779. "conflict": {
  5780. "symfony/dependency-injection": "<5.4"
  5781. },
  5782. "provide": {
  5783. "psr/event-dispatcher-implementation": "1.0",
  5784. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5785. },
  5786. "require-dev": {
  5787. "psr/log": "^1|^2|^3",
  5788. "symfony/config": "^5.4|^6.0",
  5789. "symfony/dependency-injection": "^5.4|^6.0",
  5790. "symfony/error-handler": "^5.4|^6.0",
  5791. "symfony/expression-language": "^5.4|^6.0",
  5792. "symfony/http-foundation": "^5.4|^6.0",
  5793. "symfony/service-contracts": "^1.1|^2|^3",
  5794. "symfony/stopwatch": "^5.4|^6.0"
  5795. },
  5796. "suggest": {
  5797. "symfony/dependency-injection": "",
  5798. "symfony/http-kernel": ""
  5799. },
  5800. "type": "library",
  5801. "autoload": {
  5802. "psr-4": {
  5803. "Symfony\\Component\\EventDispatcher\\": ""
  5804. },
  5805. "exclude-from-classmap": [
  5806. "/Tests/"
  5807. ]
  5808. },
  5809. "notification-url": "https://packagist.org/downloads/",
  5810. "license": [
  5811. "MIT"
  5812. ],
  5813. "authors": [
  5814. {
  5815. "name": "Fabien Potencier",
  5816. "email": "fabien@symfony.com"
  5817. },
  5818. {
  5819. "name": "Symfony Community",
  5820. "homepage": "https://symfony.com/contributors"
  5821. }
  5822. ],
  5823. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5824. "homepage": "https://symfony.com",
  5825. "support": {
  5826. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5827. },
  5828. "funding": [
  5829. {
  5830. "url": "https://symfony.com/sponsor",
  5831. "type": "custom"
  5832. },
  5833. {
  5834. "url": "https://github.com/fabpot",
  5835. "type": "github"
  5836. },
  5837. {
  5838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5839. "type": "tidelift"
  5840. }
  5841. ],
  5842. "time": "2023-01-01T08:36:10+00:00"
  5843. },
  5844. {
  5845. "name": "symfony/event-dispatcher-contracts",
  5846. "version": "v3.0.2",
  5847. "source": {
  5848. "type": "git",
  5849. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5850. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5851. },
  5852. "dist": {
  5853. "type": "zip",
  5854. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5855. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5856. "shasum": "",
  5857. "mirrors": [
  5858. {
  5859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5860. "preferred": true
  5861. }
  5862. ]
  5863. },
  5864. "require": {
  5865. "php": ">=8.0.2",
  5866. "psr/event-dispatcher": "^1"
  5867. },
  5868. "suggest": {
  5869. "symfony/event-dispatcher-implementation": ""
  5870. },
  5871. "type": "library",
  5872. "extra": {
  5873. "thanks": {
  5874. "url": "https://github.com/symfony/contracts",
  5875. "name": "symfony/contracts"
  5876. },
  5877. "branch-alias": {
  5878. "dev-main": "3.0-dev"
  5879. }
  5880. },
  5881. "autoload": {
  5882. "psr-4": {
  5883. "Symfony\\Contracts\\EventDispatcher\\": ""
  5884. }
  5885. },
  5886. "notification-url": "https://packagist.org/downloads/",
  5887. "license": [
  5888. "MIT"
  5889. ],
  5890. "authors": [
  5891. {
  5892. "name": "Nicolas Grekas",
  5893. "email": "p@tchwork.com"
  5894. },
  5895. {
  5896. "name": "Symfony Community",
  5897. "homepage": "https://symfony.com/contributors"
  5898. }
  5899. ],
  5900. "description": "Generic abstractions related to dispatching event",
  5901. "homepage": "https://symfony.com",
  5902. "keywords": [
  5903. "abstractions",
  5904. "contracts",
  5905. "decoupling",
  5906. "interfaces",
  5907. "interoperability",
  5908. "standards"
  5909. ],
  5910. "support": {
  5911. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  5912. },
  5913. "funding": [
  5914. {
  5915. "url": "https://symfony.com/sponsor",
  5916. "type": "custom"
  5917. },
  5918. {
  5919. "url": "https://github.com/fabpot",
  5920. "type": "github"
  5921. },
  5922. {
  5923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5924. "type": "tidelift"
  5925. }
  5926. ],
  5927. "time": "2022-01-02T09:55:41+00:00"
  5928. },
  5929. {
  5930. "name": "symfony/finder",
  5931. "version": "v5.4.45",
  5932. "source": {
  5933. "type": "git",
  5934. "url": "https://github.com/symfony/finder.git",
  5935. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  5936. },
  5937. "dist": {
  5938. "type": "zip",
  5939. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  5940. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  5941. "shasum": "",
  5942. "mirrors": [
  5943. {
  5944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5945. "preferred": true
  5946. }
  5947. ]
  5948. },
  5949. "require": {
  5950. "php": ">=7.2.5",
  5951. "symfony/deprecation-contracts": "^2.1|^3",
  5952. "symfony/polyfill-php80": "^1.16"
  5953. },
  5954. "type": "library",
  5955. "autoload": {
  5956. "psr-4": {
  5957. "Symfony\\Component\\Finder\\": ""
  5958. },
  5959. "exclude-from-classmap": [
  5960. "/Tests/"
  5961. ]
  5962. },
  5963. "notification-url": "https://packagist.org/downloads/",
  5964. "license": [
  5965. "MIT"
  5966. ],
  5967. "authors": [
  5968. {
  5969. "name": "Fabien Potencier",
  5970. "email": "fabien@symfony.com"
  5971. },
  5972. {
  5973. "name": "Symfony Community",
  5974. "homepage": "https://symfony.com/contributors"
  5975. }
  5976. ],
  5977. "description": "Finds files and directories via an intuitive fluent interface",
  5978. "homepage": "https://symfony.com",
  5979. "support": {
  5980. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  5981. },
  5982. "funding": [
  5983. {
  5984. "url": "https://symfony.com/sponsor",
  5985. "type": "custom"
  5986. },
  5987. {
  5988. "url": "https://github.com/fabpot",
  5989. "type": "github"
  5990. },
  5991. {
  5992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5993. "type": "tidelift"
  5994. }
  5995. ],
  5996. "time": "2024-09-28T13:32:08+00:00"
  5997. },
  5998. {
  5999. "name": "symfony/http-foundation",
  6000. "version": "v5.4.50",
  6001. "source": {
  6002. "type": "git",
  6003. "url": "https://github.com/symfony/http-foundation.git",
  6004. "reference": "1a0706e8b8041046052ea2695eb8aeee04f97609"
  6005. },
  6006. "dist": {
  6007. "type": "zip",
  6008. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1a0706e8b8041046052ea2695eb8aeee04f97609",
  6009. "reference": "1a0706e8b8041046052ea2695eb8aeee04f97609",
  6010. "shasum": "",
  6011. "mirrors": [
  6012. {
  6013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6014. "preferred": true
  6015. }
  6016. ]
  6017. },
  6018. "require": {
  6019. "php": ">=7.2.5",
  6020. "symfony/deprecation-contracts": "^2.1|^3",
  6021. "symfony/polyfill-mbstring": "~1.1",
  6022. "symfony/polyfill-php80": "^1.16"
  6023. },
  6024. "require-dev": {
  6025. "predis/predis": "^1.0|^2.0",
  6026. "symfony/cache": "^4.4|^5.0|^6.0",
  6027. "symfony/dependency-injection": "^5.4|^6.0",
  6028. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6029. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6030. "symfony/mime": "^4.4|^5.0|^6.0",
  6031. "symfony/rate-limiter": "^5.2|^6.0"
  6032. },
  6033. "suggest": {
  6034. "symfony/mime": "To use the file extension guesser"
  6035. },
  6036. "type": "library",
  6037. "autoload": {
  6038. "psr-4": {
  6039. "Symfony\\Component\\HttpFoundation\\": ""
  6040. },
  6041. "exclude-from-classmap": [
  6042. "/Tests/"
  6043. ]
  6044. },
  6045. "notification-url": "https://packagist.org/downloads/",
  6046. "license": [
  6047. "MIT"
  6048. ],
  6049. "authors": [
  6050. {
  6051. "name": "Fabien Potencier",
  6052. "email": "fabien@symfony.com"
  6053. },
  6054. {
  6055. "name": "Symfony Community",
  6056. "homepage": "https://symfony.com/contributors"
  6057. }
  6058. ],
  6059. "description": "Defines an object-oriented layer for the HTTP specification",
  6060. "homepage": "https://symfony.com",
  6061. "support": {
  6062. "source": "https://github.com/symfony/http-foundation/tree/v5.4.50"
  6063. },
  6064. "funding": [
  6065. {
  6066. "url": "https://symfony.com/sponsor",
  6067. "type": "custom"
  6068. },
  6069. {
  6070. "url": "https://github.com/fabpot",
  6071. "type": "github"
  6072. },
  6073. {
  6074. "url": "https://github.com/nicolas-grekas",
  6075. "type": "github"
  6076. },
  6077. {
  6078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6079. "type": "tidelift"
  6080. }
  6081. ],
  6082. "time": "2025-11-03T12:58:48+00:00"
  6083. },
  6084. {
  6085. "name": "symfony/http-kernel",
  6086. "version": "v5.4.50",
  6087. "source": {
  6088. "type": "git",
  6089. "url": "https://github.com/symfony/http-kernel.git",
  6090. "reference": "2fe5cf994d7e1e189258b7f7d3395cc5999a9762"
  6091. },
  6092. "dist": {
  6093. "type": "zip",
  6094. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2fe5cf994d7e1e189258b7f7d3395cc5999a9762",
  6095. "reference": "2fe5cf994d7e1e189258b7f7d3395cc5999a9762",
  6096. "shasum": "",
  6097. "mirrors": [
  6098. {
  6099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6100. "preferred": true
  6101. }
  6102. ]
  6103. },
  6104. "require": {
  6105. "php": ">=7.2.5",
  6106. "psr/log": "^1|^2",
  6107. "symfony/deprecation-contracts": "^2.1|^3",
  6108. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6109. "symfony/event-dispatcher": "^5.0|^6.0",
  6110. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6111. "symfony/polyfill-ctype": "^1.8",
  6112. "symfony/polyfill-php73": "^1.9",
  6113. "symfony/polyfill-php80": "^1.16"
  6114. },
  6115. "conflict": {
  6116. "symfony/browser-kit": "<5.4",
  6117. "symfony/cache": "<5.0",
  6118. "symfony/config": "<5.0",
  6119. "symfony/console": "<4.4",
  6120. "symfony/dependency-injection": "<5.3",
  6121. "symfony/doctrine-bridge": "<5.0",
  6122. "symfony/form": "<5.0",
  6123. "symfony/http-client": "<5.0",
  6124. "symfony/mailer": "<5.0",
  6125. "symfony/messenger": "<5.0",
  6126. "symfony/translation": "<5.0",
  6127. "symfony/twig-bridge": "<5.0",
  6128. "symfony/validator": "<5.0",
  6129. "twig/twig": "<2.13"
  6130. },
  6131. "provide": {
  6132. "psr/log-implementation": "1.0|2.0"
  6133. },
  6134. "require-dev": {
  6135. "psr/cache": "^1.0|^2.0|^3.0",
  6136. "symfony/browser-kit": "^5.4|^6.0",
  6137. "symfony/config": "^5.0|^6.0",
  6138. "symfony/console": "^4.4|^5.0|^6.0",
  6139. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6140. "symfony/dependency-injection": "^5.3|^6.0",
  6141. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6142. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6143. "symfony/finder": "^4.4|^5.0|^6.0",
  6144. "symfony/http-client-contracts": "^1.1|^2|^3",
  6145. "symfony/process": "^4.4|^5.0|^6.0",
  6146. "symfony/routing": "^4.4|^5.0|^6.0",
  6147. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6148. "symfony/translation": "^4.4|^5.0|^6.0",
  6149. "symfony/translation-contracts": "^1.1|^2|^3",
  6150. "symfony/var-dumper": "^4.4.31|^5.4",
  6151. "twig/twig": "^2.13|^3.0.4"
  6152. },
  6153. "suggest": {
  6154. "symfony/browser-kit": "",
  6155. "symfony/config": "",
  6156. "symfony/console": "",
  6157. "symfony/dependency-injection": ""
  6158. },
  6159. "type": "library",
  6160. "autoload": {
  6161. "psr-4": {
  6162. "Symfony\\Component\\HttpKernel\\": ""
  6163. },
  6164. "exclude-from-classmap": [
  6165. "/Tests/"
  6166. ]
  6167. },
  6168. "notification-url": "https://packagist.org/downloads/",
  6169. "license": [
  6170. "MIT"
  6171. ],
  6172. "authors": [
  6173. {
  6174. "name": "Fabien Potencier",
  6175. "email": "fabien@symfony.com"
  6176. },
  6177. {
  6178. "name": "Symfony Community",
  6179. "homepage": "https://symfony.com/contributors"
  6180. }
  6181. ],
  6182. "description": "Provides a structured process for converting a Request into a Response",
  6183. "homepage": "https://symfony.com",
  6184. "support": {
  6185. "source": "https://github.com/symfony/http-kernel/tree/v5.4.50"
  6186. },
  6187. "funding": [
  6188. {
  6189. "url": "https://symfony.com/sponsor",
  6190. "type": "custom"
  6191. },
  6192. {
  6193. "url": "https://github.com/fabpot",
  6194. "type": "github"
  6195. },
  6196. {
  6197. "url": "https://github.com/nicolas-grekas",
  6198. "type": "github"
  6199. },
  6200. {
  6201. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6202. "type": "tidelift"
  6203. }
  6204. ],
  6205. "time": "2025-11-12T11:09:00+00:00"
  6206. },
  6207. {
  6208. "name": "symfony/mime",
  6209. "version": "v5.4.45",
  6210. "source": {
  6211. "type": "git",
  6212. "url": "https://github.com/symfony/mime.git",
  6213. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
  6214. },
  6215. "dist": {
  6216. "type": "zip",
  6217. "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
  6218. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
  6219. "shasum": "",
  6220. "mirrors": [
  6221. {
  6222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6223. "preferred": true
  6224. }
  6225. ]
  6226. },
  6227. "require": {
  6228. "php": ">=7.2.5",
  6229. "symfony/deprecation-contracts": "^2.1|^3",
  6230. "symfony/polyfill-intl-idn": "^1.10",
  6231. "symfony/polyfill-mbstring": "^1.0",
  6232. "symfony/polyfill-php80": "^1.16"
  6233. },
  6234. "conflict": {
  6235. "egulias/email-validator": "~3.0.0",
  6236. "phpdocumentor/reflection-docblock": "<3.2.2",
  6237. "phpdocumentor/type-resolver": "<1.4.0",
  6238. "symfony/mailer": "<4.4",
  6239. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  6240. },
  6241. "require-dev": {
  6242. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6243. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6244. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6245. "symfony/process": "^5.4|^6.4",
  6246. "symfony/property-access": "^4.4|^5.1|^6.0",
  6247. "symfony/property-info": "^4.4|^5.1|^6.0",
  6248. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  6249. },
  6250. "type": "library",
  6251. "autoload": {
  6252. "psr-4": {
  6253. "Symfony\\Component\\Mime\\": ""
  6254. },
  6255. "exclude-from-classmap": [
  6256. "/Tests/"
  6257. ]
  6258. },
  6259. "notification-url": "https://packagist.org/downloads/",
  6260. "license": [
  6261. "MIT"
  6262. ],
  6263. "authors": [
  6264. {
  6265. "name": "Fabien Potencier",
  6266. "email": "fabien@symfony.com"
  6267. },
  6268. {
  6269. "name": "Symfony Community",
  6270. "homepage": "https://symfony.com/contributors"
  6271. }
  6272. ],
  6273. "description": "Allows manipulating MIME messages",
  6274. "homepage": "https://symfony.com",
  6275. "keywords": [
  6276. "mime",
  6277. "mime-type"
  6278. ],
  6279. "support": {
  6280. "source": "https://github.com/symfony/mime/tree/v5.4.45"
  6281. },
  6282. "funding": [
  6283. {
  6284. "url": "https://symfony.com/sponsor",
  6285. "type": "custom"
  6286. },
  6287. {
  6288. "url": "https://github.com/fabpot",
  6289. "type": "github"
  6290. },
  6291. {
  6292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6293. "type": "tidelift"
  6294. }
  6295. ],
  6296. "time": "2024-10-23T20:18:32+00:00"
  6297. },
  6298. {
  6299. "name": "symfony/polyfill-ctype",
  6300. "version": "v1.32.0",
  6301. "source": {
  6302. "type": "git",
  6303. "url": "https://github.com/symfony/polyfill-ctype.git",
  6304. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6305. },
  6306. "dist": {
  6307. "type": "zip",
  6308. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6309. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6310. "shasum": "",
  6311. "mirrors": [
  6312. {
  6313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6314. "preferred": true
  6315. }
  6316. ]
  6317. },
  6318. "require": {
  6319. "php": ">=7.2"
  6320. },
  6321. "provide": {
  6322. "ext-ctype": "*"
  6323. },
  6324. "suggest": {
  6325. "ext-ctype": "For best performance"
  6326. },
  6327. "type": "library",
  6328. "extra": {
  6329. "thanks": {
  6330. "url": "https://github.com/symfony/polyfill",
  6331. "name": "symfony/polyfill"
  6332. }
  6333. },
  6334. "autoload": {
  6335. "files": [
  6336. "bootstrap.php"
  6337. ],
  6338. "psr-4": {
  6339. "Symfony\\Polyfill\\Ctype\\": ""
  6340. }
  6341. },
  6342. "notification-url": "https://packagist.org/downloads/",
  6343. "license": [
  6344. "MIT"
  6345. ],
  6346. "authors": [
  6347. {
  6348. "name": "Gert de Pagter",
  6349. "email": "BackEndTea@gmail.com"
  6350. },
  6351. {
  6352. "name": "Symfony Community",
  6353. "homepage": "https://symfony.com/contributors"
  6354. }
  6355. ],
  6356. "description": "Symfony polyfill for ctype functions",
  6357. "homepage": "https://symfony.com",
  6358. "keywords": [
  6359. "compatibility",
  6360. "ctype",
  6361. "polyfill",
  6362. "portable"
  6363. ],
  6364. "support": {
  6365. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  6366. },
  6367. "funding": [
  6368. {
  6369. "url": "https://symfony.com/sponsor",
  6370. "type": "custom"
  6371. },
  6372. {
  6373. "url": "https://github.com/fabpot",
  6374. "type": "github"
  6375. },
  6376. {
  6377. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6378. "type": "tidelift"
  6379. }
  6380. ],
  6381. "time": "2024-09-09T11:45:10+00:00"
  6382. },
  6383. {
  6384. "name": "symfony/polyfill-iconv",
  6385. "version": "v1.32.0",
  6386. "source": {
  6387. "type": "git",
  6388. "url": "https://github.com/symfony/polyfill-iconv.git",
  6389. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  6390. },
  6391. "dist": {
  6392. "type": "zip",
  6393. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6394. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6395. "shasum": "",
  6396. "mirrors": [
  6397. {
  6398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6399. "preferred": true
  6400. }
  6401. ]
  6402. },
  6403. "require": {
  6404. "php": ">=7.2"
  6405. },
  6406. "provide": {
  6407. "ext-iconv": "*"
  6408. },
  6409. "suggest": {
  6410. "ext-iconv": "For best performance"
  6411. },
  6412. "type": "library",
  6413. "extra": {
  6414. "thanks": {
  6415. "url": "https://github.com/symfony/polyfill",
  6416. "name": "symfony/polyfill"
  6417. }
  6418. },
  6419. "autoload": {
  6420. "files": [
  6421. "bootstrap.php"
  6422. ],
  6423. "psr-4": {
  6424. "Symfony\\Polyfill\\Iconv\\": ""
  6425. }
  6426. },
  6427. "notification-url": "https://packagist.org/downloads/",
  6428. "license": [
  6429. "MIT"
  6430. ],
  6431. "authors": [
  6432. {
  6433. "name": "Nicolas Grekas",
  6434. "email": "p@tchwork.com"
  6435. },
  6436. {
  6437. "name": "Symfony Community",
  6438. "homepage": "https://symfony.com/contributors"
  6439. }
  6440. ],
  6441. "description": "Symfony polyfill for the Iconv extension",
  6442. "homepage": "https://symfony.com",
  6443. "keywords": [
  6444. "compatibility",
  6445. "iconv",
  6446. "polyfill",
  6447. "portable",
  6448. "shim"
  6449. ],
  6450. "support": {
  6451. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  6452. },
  6453. "funding": [
  6454. {
  6455. "url": "https://symfony.com/sponsor",
  6456. "type": "custom"
  6457. },
  6458. {
  6459. "url": "https://github.com/fabpot",
  6460. "type": "github"
  6461. },
  6462. {
  6463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6464. "type": "tidelift"
  6465. }
  6466. ],
  6467. "time": "2024-09-17T14:58:18+00:00"
  6468. },
  6469. {
  6470. "name": "symfony/polyfill-intl-grapheme",
  6471. "version": "v1.33.0",
  6472. "source": {
  6473. "type": "git",
  6474. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6475. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  6476. },
  6477. "dist": {
  6478. "type": "zip",
  6479. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6480. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6481. "shasum": "",
  6482. "mirrors": [
  6483. {
  6484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6485. "preferred": true
  6486. }
  6487. ]
  6488. },
  6489. "require": {
  6490. "php": ">=7.2"
  6491. },
  6492. "suggest": {
  6493. "ext-intl": "For best performance"
  6494. },
  6495. "type": "library",
  6496. "extra": {
  6497. "thanks": {
  6498. "url": "https://github.com/symfony/polyfill",
  6499. "name": "symfony/polyfill"
  6500. }
  6501. },
  6502. "autoload": {
  6503. "files": [
  6504. "bootstrap.php"
  6505. ],
  6506. "psr-4": {
  6507. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6508. }
  6509. },
  6510. "notification-url": "https://packagist.org/downloads/",
  6511. "license": [
  6512. "MIT"
  6513. ],
  6514. "authors": [
  6515. {
  6516. "name": "Nicolas Grekas",
  6517. "email": "p@tchwork.com"
  6518. },
  6519. {
  6520. "name": "Symfony Community",
  6521. "homepage": "https://symfony.com/contributors"
  6522. }
  6523. ],
  6524. "description": "Symfony polyfill for intl's grapheme_* functions",
  6525. "homepage": "https://symfony.com",
  6526. "keywords": [
  6527. "compatibility",
  6528. "grapheme",
  6529. "intl",
  6530. "polyfill",
  6531. "portable",
  6532. "shim"
  6533. ],
  6534. "support": {
  6535. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  6536. },
  6537. "funding": [
  6538. {
  6539. "url": "https://symfony.com/sponsor",
  6540. "type": "custom"
  6541. },
  6542. {
  6543. "url": "https://github.com/fabpot",
  6544. "type": "github"
  6545. },
  6546. {
  6547. "url": "https://github.com/nicolas-grekas",
  6548. "type": "github"
  6549. },
  6550. {
  6551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6552. "type": "tidelift"
  6553. }
  6554. ],
  6555. "time": "2025-06-27T09:58:17+00:00"
  6556. },
  6557. {
  6558. "name": "symfony/polyfill-intl-idn",
  6559. "version": "v1.32.0",
  6560. "source": {
  6561. "type": "git",
  6562. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6563. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6564. },
  6565. "dist": {
  6566. "type": "zip",
  6567. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6568. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6569. "shasum": "",
  6570. "mirrors": [
  6571. {
  6572. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6573. "preferred": true
  6574. }
  6575. ]
  6576. },
  6577. "require": {
  6578. "php": ">=7.2",
  6579. "symfony/polyfill-intl-normalizer": "^1.10"
  6580. },
  6581. "suggest": {
  6582. "ext-intl": "For best performance"
  6583. },
  6584. "type": "library",
  6585. "extra": {
  6586. "thanks": {
  6587. "url": "https://github.com/symfony/polyfill",
  6588. "name": "symfony/polyfill"
  6589. }
  6590. },
  6591. "autoload": {
  6592. "files": [
  6593. "bootstrap.php"
  6594. ],
  6595. "psr-4": {
  6596. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6597. }
  6598. },
  6599. "notification-url": "https://packagist.org/downloads/",
  6600. "license": [
  6601. "MIT"
  6602. ],
  6603. "authors": [
  6604. {
  6605. "name": "Laurent Bassin",
  6606. "email": "laurent@bassin.info"
  6607. },
  6608. {
  6609. "name": "Trevor Rowbotham",
  6610. "email": "trevor.rowbotham@pm.me"
  6611. },
  6612. {
  6613. "name": "Symfony Community",
  6614. "homepage": "https://symfony.com/contributors"
  6615. }
  6616. ],
  6617. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6618. "homepage": "https://symfony.com",
  6619. "keywords": [
  6620. "compatibility",
  6621. "idn",
  6622. "intl",
  6623. "polyfill",
  6624. "portable",
  6625. "shim"
  6626. ],
  6627. "support": {
  6628. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6629. },
  6630. "funding": [
  6631. {
  6632. "url": "https://symfony.com/sponsor",
  6633. "type": "custom"
  6634. },
  6635. {
  6636. "url": "https://github.com/fabpot",
  6637. "type": "github"
  6638. },
  6639. {
  6640. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6641. "type": "tidelift"
  6642. }
  6643. ],
  6644. "time": "2024-09-10T14:38:51+00:00"
  6645. },
  6646. {
  6647. "name": "symfony/polyfill-intl-normalizer",
  6648. "version": "v1.32.0",
  6649. "source": {
  6650. "type": "git",
  6651. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6652. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6653. },
  6654. "dist": {
  6655. "type": "zip",
  6656. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6657. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6658. "shasum": "",
  6659. "mirrors": [
  6660. {
  6661. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6662. "preferred": true
  6663. }
  6664. ]
  6665. },
  6666. "require": {
  6667. "php": ">=7.2"
  6668. },
  6669. "suggest": {
  6670. "ext-intl": "For best performance"
  6671. },
  6672. "type": "library",
  6673. "extra": {
  6674. "thanks": {
  6675. "url": "https://github.com/symfony/polyfill",
  6676. "name": "symfony/polyfill"
  6677. }
  6678. },
  6679. "autoload": {
  6680. "files": [
  6681. "bootstrap.php"
  6682. ],
  6683. "psr-4": {
  6684. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6685. },
  6686. "classmap": [
  6687. "Resources/stubs"
  6688. ]
  6689. },
  6690. "notification-url": "https://packagist.org/downloads/",
  6691. "license": [
  6692. "MIT"
  6693. ],
  6694. "authors": [
  6695. {
  6696. "name": "Nicolas Grekas",
  6697. "email": "p@tchwork.com"
  6698. },
  6699. {
  6700. "name": "Symfony Community",
  6701. "homepage": "https://symfony.com/contributors"
  6702. }
  6703. ],
  6704. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6705. "homepage": "https://symfony.com",
  6706. "keywords": [
  6707. "compatibility",
  6708. "intl",
  6709. "normalizer",
  6710. "polyfill",
  6711. "portable",
  6712. "shim"
  6713. ],
  6714. "support": {
  6715. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6716. },
  6717. "funding": [
  6718. {
  6719. "url": "https://symfony.com/sponsor",
  6720. "type": "custom"
  6721. },
  6722. {
  6723. "url": "https://github.com/fabpot",
  6724. "type": "github"
  6725. },
  6726. {
  6727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6728. "type": "tidelift"
  6729. }
  6730. ],
  6731. "time": "2024-09-09T11:45:10+00:00"
  6732. },
  6733. {
  6734. "name": "symfony/polyfill-mbstring",
  6735. "version": "v1.32.0",
  6736. "source": {
  6737. "type": "git",
  6738. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6739. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6740. },
  6741. "dist": {
  6742. "type": "zip",
  6743. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6744. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6745. "shasum": "",
  6746. "mirrors": [
  6747. {
  6748. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6749. "preferred": true
  6750. }
  6751. ]
  6752. },
  6753. "require": {
  6754. "ext-iconv": "*",
  6755. "php": ">=7.2"
  6756. },
  6757. "provide": {
  6758. "ext-mbstring": "*"
  6759. },
  6760. "suggest": {
  6761. "ext-mbstring": "For best performance"
  6762. },
  6763. "type": "library",
  6764. "extra": {
  6765. "thanks": {
  6766. "url": "https://github.com/symfony/polyfill",
  6767. "name": "symfony/polyfill"
  6768. }
  6769. },
  6770. "autoload": {
  6771. "files": [
  6772. "bootstrap.php"
  6773. ],
  6774. "psr-4": {
  6775. "Symfony\\Polyfill\\Mbstring\\": ""
  6776. }
  6777. },
  6778. "notification-url": "https://packagist.org/downloads/",
  6779. "license": [
  6780. "MIT"
  6781. ],
  6782. "authors": [
  6783. {
  6784. "name": "Nicolas Grekas",
  6785. "email": "p@tchwork.com"
  6786. },
  6787. {
  6788. "name": "Symfony Community",
  6789. "homepage": "https://symfony.com/contributors"
  6790. }
  6791. ],
  6792. "description": "Symfony polyfill for the Mbstring extension",
  6793. "homepage": "https://symfony.com",
  6794. "keywords": [
  6795. "compatibility",
  6796. "mbstring",
  6797. "polyfill",
  6798. "portable",
  6799. "shim"
  6800. ],
  6801. "support": {
  6802. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6803. },
  6804. "funding": [
  6805. {
  6806. "url": "https://symfony.com/sponsor",
  6807. "type": "custom"
  6808. },
  6809. {
  6810. "url": "https://github.com/fabpot",
  6811. "type": "github"
  6812. },
  6813. {
  6814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6815. "type": "tidelift"
  6816. }
  6817. ],
  6818. "time": "2024-12-23T08:48:59+00:00"
  6819. },
  6820. {
  6821. "name": "symfony/polyfill-php73",
  6822. "version": "v1.32.0",
  6823. "source": {
  6824. "type": "git",
  6825. "url": "https://github.com/symfony/polyfill-php73.git",
  6826. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6827. },
  6828. "dist": {
  6829. "type": "zip",
  6830. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6831. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6832. "shasum": "",
  6833. "mirrors": [
  6834. {
  6835. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6836. "preferred": true
  6837. }
  6838. ]
  6839. },
  6840. "require": {
  6841. "php": ">=7.2"
  6842. },
  6843. "type": "library",
  6844. "extra": {
  6845. "thanks": {
  6846. "url": "https://github.com/symfony/polyfill",
  6847. "name": "symfony/polyfill"
  6848. }
  6849. },
  6850. "autoload": {
  6851. "files": [
  6852. "bootstrap.php"
  6853. ],
  6854. "psr-4": {
  6855. "Symfony\\Polyfill\\Php73\\": ""
  6856. },
  6857. "classmap": [
  6858. "Resources/stubs"
  6859. ]
  6860. },
  6861. "notification-url": "https://packagist.org/downloads/",
  6862. "license": [
  6863. "MIT"
  6864. ],
  6865. "authors": [
  6866. {
  6867. "name": "Nicolas Grekas",
  6868. "email": "p@tchwork.com"
  6869. },
  6870. {
  6871. "name": "Symfony Community",
  6872. "homepage": "https://symfony.com/contributors"
  6873. }
  6874. ],
  6875. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6876. "homepage": "https://symfony.com",
  6877. "keywords": [
  6878. "compatibility",
  6879. "polyfill",
  6880. "portable",
  6881. "shim"
  6882. ],
  6883. "support": {
  6884. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  6885. },
  6886. "funding": [
  6887. {
  6888. "url": "https://symfony.com/sponsor",
  6889. "type": "custom"
  6890. },
  6891. {
  6892. "url": "https://github.com/fabpot",
  6893. "type": "github"
  6894. },
  6895. {
  6896. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6897. "type": "tidelift"
  6898. }
  6899. ],
  6900. "time": "2024-09-09T11:45:10+00:00"
  6901. },
  6902. {
  6903. "name": "symfony/polyfill-php80",
  6904. "version": "v1.33.0",
  6905. "source": {
  6906. "type": "git",
  6907. "url": "https://github.com/symfony/polyfill-php80.git",
  6908. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6909. },
  6910. "dist": {
  6911. "type": "zip",
  6912. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6913. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6914. "shasum": "",
  6915. "mirrors": [
  6916. {
  6917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6918. "preferred": true
  6919. }
  6920. ]
  6921. },
  6922. "require": {
  6923. "php": ">=7.2"
  6924. },
  6925. "type": "library",
  6926. "extra": {
  6927. "thanks": {
  6928. "url": "https://github.com/symfony/polyfill",
  6929. "name": "symfony/polyfill"
  6930. }
  6931. },
  6932. "autoload": {
  6933. "files": [
  6934. "bootstrap.php"
  6935. ],
  6936. "psr-4": {
  6937. "Symfony\\Polyfill\\Php80\\": ""
  6938. },
  6939. "classmap": [
  6940. "Resources/stubs"
  6941. ]
  6942. },
  6943. "notification-url": "https://packagist.org/downloads/",
  6944. "license": [
  6945. "MIT"
  6946. ],
  6947. "authors": [
  6948. {
  6949. "name": "Ion Bazan",
  6950. "email": "ion.bazan@gmail.com"
  6951. },
  6952. {
  6953. "name": "Nicolas Grekas",
  6954. "email": "p@tchwork.com"
  6955. },
  6956. {
  6957. "name": "Symfony Community",
  6958. "homepage": "https://symfony.com/contributors"
  6959. }
  6960. ],
  6961. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6962. "homepage": "https://symfony.com",
  6963. "keywords": [
  6964. "compatibility",
  6965. "polyfill",
  6966. "portable",
  6967. "shim"
  6968. ],
  6969. "support": {
  6970. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  6971. },
  6972. "funding": [
  6973. {
  6974. "url": "https://symfony.com/sponsor",
  6975. "type": "custom"
  6976. },
  6977. {
  6978. "url": "https://github.com/fabpot",
  6979. "type": "github"
  6980. },
  6981. {
  6982. "url": "https://github.com/nicolas-grekas",
  6983. "type": "github"
  6984. },
  6985. {
  6986. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6987. "type": "tidelift"
  6988. }
  6989. ],
  6990. "time": "2025-01-02T08:10:11+00:00"
  6991. },
  6992. {
  6993. "name": "symfony/polyfill-php81",
  6994. "version": "v1.32.0",
  6995. "source": {
  6996. "type": "git",
  6997. "url": "https://github.com/symfony/polyfill-php81.git",
  6998. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6999. },
  7000. "dist": {
  7001. "type": "zip",
  7002. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7003. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7004. "shasum": "",
  7005. "mirrors": [
  7006. {
  7007. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7008. "preferred": true
  7009. }
  7010. ]
  7011. },
  7012. "require": {
  7013. "php": ">=7.2"
  7014. },
  7015. "type": "library",
  7016. "extra": {
  7017. "thanks": {
  7018. "url": "https://github.com/symfony/polyfill",
  7019. "name": "symfony/polyfill"
  7020. }
  7021. },
  7022. "autoload": {
  7023. "files": [
  7024. "bootstrap.php"
  7025. ],
  7026. "psr-4": {
  7027. "Symfony\\Polyfill\\Php81\\": ""
  7028. },
  7029. "classmap": [
  7030. "Resources/stubs"
  7031. ]
  7032. },
  7033. "notification-url": "https://packagist.org/downloads/",
  7034. "license": [
  7035. "MIT"
  7036. ],
  7037. "authors": [
  7038. {
  7039. "name": "Nicolas Grekas",
  7040. "email": "p@tchwork.com"
  7041. },
  7042. {
  7043. "name": "Symfony Community",
  7044. "homepage": "https://symfony.com/contributors"
  7045. }
  7046. ],
  7047. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7048. "homepage": "https://symfony.com",
  7049. "keywords": [
  7050. "compatibility",
  7051. "polyfill",
  7052. "portable",
  7053. "shim"
  7054. ],
  7055. "support": {
  7056. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  7057. },
  7058. "funding": [
  7059. {
  7060. "url": "https://symfony.com/sponsor",
  7061. "type": "custom"
  7062. },
  7063. {
  7064. "url": "https://github.com/fabpot",
  7065. "type": "github"
  7066. },
  7067. {
  7068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7069. "type": "tidelift"
  7070. }
  7071. ],
  7072. "time": "2024-09-09T11:45:10+00:00"
  7073. },
  7074. {
  7075. "name": "symfony/process",
  7076. "version": "v5.4.47",
  7077. "source": {
  7078. "type": "git",
  7079. "url": "https://github.com/symfony/process.git",
  7080. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  7081. },
  7082. "dist": {
  7083. "type": "zip",
  7084. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  7085. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  7086. "shasum": "",
  7087. "mirrors": [
  7088. {
  7089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7090. "preferred": true
  7091. }
  7092. ]
  7093. },
  7094. "require": {
  7095. "php": ">=7.2.5",
  7096. "symfony/polyfill-php80": "^1.16"
  7097. },
  7098. "type": "library",
  7099. "autoload": {
  7100. "psr-4": {
  7101. "Symfony\\Component\\Process\\": ""
  7102. },
  7103. "exclude-from-classmap": [
  7104. "/Tests/"
  7105. ]
  7106. },
  7107. "notification-url": "https://packagist.org/downloads/",
  7108. "license": [
  7109. "MIT"
  7110. ],
  7111. "authors": [
  7112. {
  7113. "name": "Fabien Potencier",
  7114. "email": "fabien@symfony.com"
  7115. },
  7116. {
  7117. "name": "Symfony Community",
  7118. "homepage": "https://symfony.com/contributors"
  7119. }
  7120. ],
  7121. "description": "Executes commands in sub-processes",
  7122. "homepage": "https://symfony.com",
  7123. "support": {
  7124. "source": "https://github.com/symfony/process/tree/v5.4.47"
  7125. },
  7126. "funding": [
  7127. {
  7128. "url": "https://symfony.com/sponsor",
  7129. "type": "custom"
  7130. },
  7131. {
  7132. "url": "https://github.com/fabpot",
  7133. "type": "github"
  7134. },
  7135. {
  7136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7137. "type": "tidelift"
  7138. }
  7139. ],
  7140. "time": "2024-11-06T11:36:42+00:00"
  7141. },
  7142. {
  7143. "name": "symfony/routing",
  7144. "version": "v5.4.48",
  7145. "source": {
  7146. "type": "git",
  7147. "url": "https://github.com/symfony/routing.git",
  7148. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1"
  7149. },
  7150. "dist": {
  7151. "type": "zip",
  7152. "url": "https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7153. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7154. "shasum": "",
  7155. "mirrors": [
  7156. {
  7157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7158. "preferred": true
  7159. }
  7160. ]
  7161. },
  7162. "require": {
  7163. "php": ">=7.2.5",
  7164. "symfony/deprecation-contracts": "^2.1|^3",
  7165. "symfony/polyfill-php80": "^1.16"
  7166. },
  7167. "conflict": {
  7168. "doctrine/annotations": "<1.12",
  7169. "symfony/config": "<5.3",
  7170. "symfony/dependency-injection": "<4.4",
  7171. "symfony/yaml": "<4.4"
  7172. },
  7173. "require-dev": {
  7174. "doctrine/annotations": "^1.12|^2",
  7175. "psr/log": "^1|^2|^3",
  7176. "symfony/config": "^5.3|^6.0",
  7177. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7178. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7179. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7180. "symfony/yaml": "^4.4|^5.0|^6.0"
  7181. },
  7182. "suggest": {
  7183. "symfony/config": "For using the all-in-one router or any loader",
  7184. "symfony/expression-language": "For using expression matching",
  7185. "symfony/http-foundation": "For using a Symfony Request object",
  7186. "symfony/yaml": "For using the YAML loader"
  7187. },
  7188. "type": "library",
  7189. "autoload": {
  7190. "psr-4": {
  7191. "Symfony\\Component\\Routing\\": ""
  7192. },
  7193. "exclude-from-classmap": [
  7194. "/Tests/"
  7195. ]
  7196. },
  7197. "notification-url": "https://packagist.org/downloads/",
  7198. "license": [
  7199. "MIT"
  7200. ],
  7201. "authors": [
  7202. {
  7203. "name": "Fabien Potencier",
  7204. "email": "fabien@symfony.com"
  7205. },
  7206. {
  7207. "name": "Symfony Community",
  7208. "homepage": "https://symfony.com/contributors"
  7209. }
  7210. ],
  7211. "description": "Maps an HTTP request to a set of configuration variables",
  7212. "homepage": "https://symfony.com",
  7213. "keywords": [
  7214. "router",
  7215. "routing",
  7216. "uri",
  7217. "url"
  7218. ],
  7219. "support": {
  7220. "source": "https://github.com/symfony/routing/tree/v5.4.48"
  7221. },
  7222. "funding": [
  7223. {
  7224. "url": "https://symfony.com/sponsor",
  7225. "type": "custom"
  7226. },
  7227. {
  7228. "url": "https://github.com/fabpot",
  7229. "type": "github"
  7230. },
  7231. {
  7232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7233. "type": "tidelift"
  7234. }
  7235. ],
  7236. "time": "2024-11-12T18:20:21+00:00"
  7237. },
  7238. {
  7239. "name": "symfony/service-contracts",
  7240. "version": "v2.5.4",
  7241. "source": {
  7242. "type": "git",
  7243. "url": "https://github.com/symfony/service-contracts.git",
  7244. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  7245. },
  7246. "dist": {
  7247. "type": "zip",
  7248. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  7249. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  7250. "shasum": "",
  7251. "mirrors": [
  7252. {
  7253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7254. "preferred": true
  7255. }
  7256. ]
  7257. },
  7258. "require": {
  7259. "php": ">=7.2.5",
  7260. "psr/container": "^1.1",
  7261. "symfony/deprecation-contracts": "^2.1|^3"
  7262. },
  7263. "conflict": {
  7264. "ext-psr": "<1.1|>=2"
  7265. },
  7266. "suggest": {
  7267. "symfony/service-implementation": ""
  7268. },
  7269. "type": "library",
  7270. "extra": {
  7271. "thanks": {
  7272. "url": "https://github.com/symfony/contracts",
  7273. "name": "symfony/contracts"
  7274. },
  7275. "branch-alias": {
  7276. "dev-main": "2.5-dev"
  7277. }
  7278. },
  7279. "autoload": {
  7280. "psr-4": {
  7281. "Symfony\\Contracts\\Service\\": ""
  7282. }
  7283. },
  7284. "notification-url": "https://packagist.org/downloads/",
  7285. "license": [
  7286. "MIT"
  7287. ],
  7288. "authors": [
  7289. {
  7290. "name": "Nicolas Grekas",
  7291. "email": "p@tchwork.com"
  7292. },
  7293. {
  7294. "name": "Symfony Community",
  7295. "homepage": "https://symfony.com/contributors"
  7296. }
  7297. ],
  7298. "description": "Generic abstractions related to writing services",
  7299. "homepage": "https://symfony.com",
  7300. "keywords": [
  7301. "abstractions",
  7302. "contracts",
  7303. "decoupling",
  7304. "interfaces",
  7305. "interoperability",
  7306. "standards"
  7307. ],
  7308. "support": {
  7309. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  7310. },
  7311. "funding": [
  7312. {
  7313. "url": "https://symfony.com/sponsor",
  7314. "type": "custom"
  7315. },
  7316. {
  7317. "url": "https://github.com/fabpot",
  7318. "type": "github"
  7319. },
  7320. {
  7321. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7322. "type": "tidelift"
  7323. }
  7324. ],
  7325. "time": "2024-09-25T14:11:13+00:00"
  7326. },
  7327. {
  7328. "name": "symfony/string",
  7329. "version": "v6.0.19",
  7330. "source": {
  7331. "type": "git",
  7332. "url": "https://github.com/symfony/string.git",
  7333. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7334. },
  7335. "dist": {
  7336. "type": "zip",
  7337. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7338. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7339. "shasum": "",
  7340. "mirrors": [
  7341. {
  7342. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7343. "preferred": true
  7344. }
  7345. ]
  7346. },
  7347. "require": {
  7348. "php": ">=8.0.2",
  7349. "symfony/polyfill-ctype": "~1.8",
  7350. "symfony/polyfill-intl-grapheme": "~1.0",
  7351. "symfony/polyfill-intl-normalizer": "~1.0",
  7352. "symfony/polyfill-mbstring": "~1.0"
  7353. },
  7354. "conflict": {
  7355. "symfony/translation-contracts": "<2.0"
  7356. },
  7357. "require-dev": {
  7358. "symfony/error-handler": "^5.4|^6.0",
  7359. "symfony/http-client": "^5.4|^6.0",
  7360. "symfony/translation-contracts": "^2.0|^3.0",
  7361. "symfony/var-exporter": "^5.4|^6.0"
  7362. },
  7363. "type": "library",
  7364. "autoload": {
  7365. "files": [
  7366. "Resources/functions.php"
  7367. ],
  7368. "psr-4": {
  7369. "Symfony\\Component\\String\\": ""
  7370. },
  7371. "exclude-from-classmap": [
  7372. "/Tests/"
  7373. ]
  7374. },
  7375. "notification-url": "https://packagist.org/downloads/",
  7376. "license": [
  7377. "MIT"
  7378. ],
  7379. "authors": [
  7380. {
  7381. "name": "Nicolas Grekas",
  7382. "email": "p@tchwork.com"
  7383. },
  7384. {
  7385. "name": "Symfony Community",
  7386. "homepage": "https://symfony.com/contributors"
  7387. }
  7388. ],
  7389. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7390. "homepage": "https://symfony.com",
  7391. "keywords": [
  7392. "grapheme",
  7393. "i18n",
  7394. "string",
  7395. "unicode",
  7396. "utf-8",
  7397. "utf8"
  7398. ],
  7399. "support": {
  7400. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7401. },
  7402. "funding": [
  7403. {
  7404. "url": "https://symfony.com/sponsor",
  7405. "type": "custom"
  7406. },
  7407. {
  7408. "url": "https://github.com/fabpot",
  7409. "type": "github"
  7410. },
  7411. {
  7412. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7413. "type": "tidelift"
  7414. }
  7415. ],
  7416. "time": "2023-01-01T08:36:10+00:00"
  7417. },
  7418. {
  7419. "name": "symfony/translation",
  7420. "version": "v6.0.19",
  7421. "source": {
  7422. "type": "git",
  7423. "url": "https://github.com/symfony/translation.git",
  7424. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7425. },
  7426. "dist": {
  7427. "type": "zip",
  7428. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7429. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7430. "shasum": "",
  7431. "mirrors": [
  7432. {
  7433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7434. "preferred": true
  7435. }
  7436. ]
  7437. },
  7438. "require": {
  7439. "php": ">=8.0.2",
  7440. "symfony/polyfill-mbstring": "~1.0",
  7441. "symfony/translation-contracts": "^2.3|^3.0"
  7442. },
  7443. "conflict": {
  7444. "symfony/config": "<5.4",
  7445. "symfony/console": "<5.4",
  7446. "symfony/dependency-injection": "<5.4",
  7447. "symfony/http-kernel": "<5.4",
  7448. "symfony/twig-bundle": "<5.4",
  7449. "symfony/yaml": "<5.4"
  7450. },
  7451. "provide": {
  7452. "symfony/translation-implementation": "2.3|3.0"
  7453. },
  7454. "require-dev": {
  7455. "psr/log": "^1|^2|^3",
  7456. "symfony/config": "^5.4|^6.0",
  7457. "symfony/console": "^5.4|^6.0",
  7458. "symfony/dependency-injection": "^5.4|^6.0",
  7459. "symfony/finder": "^5.4|^6.0",
  7460. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7461. "symfony/http-kernel": "^5.4|^6.0",
  7462. "symfony/intl": "^5.4|^6.0",
  7463. "symfony/polyfill-intl-icu": "^1.21",
  7464. "symfony/service-contracts": "^1.1.2|^2|^3",
  7465. "symfony/yaml": "^5.4|^6.0"
  7466. },
  7467. "suggest": {
  7468. "psr/log-implementation": "To use logging capability in translator",
  7469. "symfony/config": "",
  7470. "symfony/yaml": ""
  7471. },
  7472. "type": "library",
  7473. "autoload": {
  7474. "files": [
  7475. "Resources/functions.php"
  7476. ],
  7477. "psr-4": {
  7478. "Symfony\\Component\\Translation\\": ""
  7479. },
  7480. "exclude-from-classmap": [
  7481. "/Tests/"
  7482. ]
  7483. },
  7484. "notification-url": "https://packagist.org/downloads/",
  7485. "license": [
  7486. "MIT"
  7487. ],
  7488. "authors": [
  7489. {
  7490. "name": "Fabien Potencier",
  7491. "email": "fabien@symfony.com"
  7492. },
  7493. {
  7494. "name": "Symfony Community",
  7495. "homepage": "https://symfony.com/contributors"
  7496. }
  7497. ],
  7498. "description": "Provides tools to internationalize your application",
  7499. "homepage": "https://symfony.com",
  7500. "support": {
  7501. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7502. },
  7503. "funding": [
  7504. {
  7505. "url": "https://symfony.com/sponsor",
  7506. "type": "custom"
  7507. },
  7508. {
  7509. "url": "https://github.com/fabpot",
  7510. "type": "github"
  7511. },
  7512. {
  7513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7514. "type": "tidelift"
  7515. }
  7516. ],
  7517. "time": "2023-01-01T08:36:10+00:00"
  7518. },
  7519. {
  7520. "name": "symfony/translation-contracts",
  7521. "version": "v3.0.2",
  7522. "source": {
  7523. "type": "git",
  7524. "url": "https://github.com/symfony/translation-contracts.git",
  7525. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7526. },
  7527. "dist": {
  7528. "type": "zip",
  7529. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7530. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7531. "shasum": "",
  7532. "mirrors": [
  7533. {
  7534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7535. "preferred": true
  7536. }
  7537. ]
  7538. },
  7539. "require": {
  7540. "php": ">=8.0.2"
  7541. },
  7542. "suggest": {
  7543. "symfony/translation-implementation": ""
  7544. },
  7545. "type": "library",
  7546. "extra": {
  7547. "thanks": {
  7548. "url": "https://github.com/symfony/contracts",
  7549. "name": "symfony/contracts"
  7550. },
  7551. "branch-alias": {
  7552. "dev-main": "3.0-dev"
  7553. }
  7554. },
  7555. "autoload": {
  7556. "psr-4": {
  7557. "Symfony\\Contracts\\Translation\\": ""
  7558. }
  7559. },
  7560. "notification-url": "https://packagist.org/downloads/",
  7561. "license": [
  7562. "MIT"
  7563. ],
  7564. "authors": [
  7565. {
  7566. "name": "Nicolas Grekas",
  7567. "email": "p@tchwork.com"
  7568. },
  7569. {
  7570. "name": "Symfony Community",
  7571. "homepage": "https://symfony.com/contributors"
  7572. }
  7573. ],
  7574. "description": "Generic abstractions related to translation",
  7575. "homepage": "https://symfony.com",
  7576. "keywords": [
  7577. "abstractions",
  7578. "contracts",
  7579. "decoupling",
  7580. "interfaces",
  7581. "interoperability",
  7582. "standards"
  7583. ],
  7584. "support": {
  7585. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7586. },
  7587. "funding": [
  7588. {
  7589. "url": "https://symfony.com/sponsor",
  7590. "type": "custom"
  7591. },
  7592. {
  7593. "url": "https://github.com/fabpot",
  7594. "type": "github"
  7595. },
  7596. {
  7597. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7598. "type": "tidelift"
  7599. }
  7600. ],
  7601. "time": "2022-06-27T17:10:44+00:00"
  7602. },
  7603. {
  7604. "name": "symfony/var-dumper",
  7605. "version": "v5.4.48",
  7606. "source": {
  7607. "type": "git",
  7608. "url": "https://github.com/symfony/var-dumper.git",
  7609. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  7610. },
  7611. "dist": {
  7612. "type": "zip",
  7613. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7614. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7615. "shasum": "",
  7616. "mirrors": [
  7617. {
  7618. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7619. "preferred": true
  7620. }
  7621. ]
  7622. },
  7623. "require": {
  7624. "php": ">=7.2.5",
  7625. "symfony/polyfill-mbstring": "~1.0",
  7626. "symfony/polyfill-php80": "^1.16"
  7627. },
  7628. "conflict": {
  7629. "symfony/console": "<4.4"
  7630. },
  7631. "require-dev": {
  7632. "ext-iconv": "*",
  7633. "symfony/console": "^4.4|^5.0|^6.0",
  7634. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7635. "symfony/process": "^4.4|^5.0|^6.0",
  7636. "symfony/uid": "^5.1|^6.0",
  7637. "twig/twig": "^2.13|^3.0.4"
  7638. },
  7639. "suggest": {
  7640. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7641. "ext-intl": "To show region name in time zone dump",
  7642. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7643. },
  7644. "bin": [
  7645. "Resources/bin/var-dump-server"
  7646. ],
  7647. "type": "library",
  7648. "autoload": {
  7649. "files": [
  7650. "Resources/functions/dump.php"
  7651. ],
  7652. "psr-4": {
  7653. "Symfony\\Component\\VarDumper\\": ""
  7654. },
  7655. "exclude-from-classmap": [
  7656. "/Tests/"
  7657. ]
  7658. },
  7659. "notification-url": "https://packagist.org/downloads/",
  7660. "license": [
  7661. "MIT"
  7662. ],
  7663. "authors": [
  7664. {
  7665. "name": "Nicolas Grekas",
  7666. "email": "p@tchwork.com"
  7667. },
  7668. {
  7669. "name": "Symfony Community",
  7670. "homepage": "https://symfony.com/contributors"
  7671. }
  7672. ],
  7673. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7674. "homepage": "https://symfony.com",
  7675. "keywords": [
  7676. "debug",
  7677. "dump"
  7678. ],
  7679. "support": {
  7680. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  7681. },
  7682. "funding": [
  7683. {
  7684. "url": "https://symfony.com/sponsor",
  7685. "type": "custom"
  7686. },
  7687. {
  7688. "url": "https://github.com/fabpot",
  7689. "type": "github"
  7690. },
  7691. {
  7692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7693. "type": "tidelift"
  7694. }
  7695. ],
  7696. "time": "2024-11-08T15:21:10+00:00"
  7697. },
  7698. {
  7699. "name": "tijsverkoyen/css-to-inline-styles",
  7700. "version": "v2.3.0",
  7701. "source": {
  7702. "type": "git",
  7703. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7704. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7705. },
  7706. "dist": {
  7707. "type": "zip",
  7708. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7709. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7710. "shasum": "",
  7711. "mirrors": [
  7712. {
  7713. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7714. "preferred": true
  7715. }
  7716. ]
  7717. },
  7718. "require": {
  7719. "ext-dom": "*",
  7720. "ext-libxml": "*",
  7721. "php": "^7.4 || ^8.0",
  7722. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7723. },
  7724. "require-dev": {
  7725. "phpstan/phpstan": "^2.0",
  7726. "phpstan/phpstan-phpunit": "^2.0",
  7727. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7728. },
  7729. "type": "library",
  7730. "extra": {
  7731. "branch-alias": {
  7732. "dev-master": "2.x-dev"
  7733. }
  7734. },
  7735. "autoload": {
  7736. "psr-4": {
  7737. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7738. }
  7739. },
  7740. "notification-url": "https://packagist.org/downloads/",
  7741. "license": [
  7742. "BSD-3-Clause"
  7743. ],
  7744. "authors": [
  7745. {
  7746. "name": "Tijs Verkoyen",
  7747. "email": "css_to_inline_styles@verkoyen.eu",
  7748. "role": "Developer"
  7749. }
  7750. ],
  7751. "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.",
  7752. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7753. "support": {
  7754. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7755. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7756. },
  7757. "time": "2024-12-21T16:25:41+00:00"
  7758. },
  7759. {
  7760. "name": "vlucas/phpdotenv",
  7761. "version": "v5.6.1",
  7762. "source": {
  7763. "type": "git",
  7764. "url": "https://github.com/vlucas/phpdotenv.git",
  7765. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7766. },
  7767. "dist": {
  7768. "type": "zip",
  7769. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7770. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7771. "shasum": "",
  7772. "mirrors": [
  7773. {
  7774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7775. "preferred": true
  7776. }
  7777. ]
  7778. },
  7779. "require": {
  7780. "ext-pcre": "*",
  7781. "graham-campbell/result-type": "^1.1.3",
  7782. "php": "^7.2.5 || ^8.0",
  7783. "phpoption/phpoption": "^1.9.3",
  7784. "symfony/polyfill-ctype": "^1.24",
  7785. "symfony/polyfill-mbstring": "^1.24",
  7786. "symfony/polyfill-php80": "^1.24"
  7787. },
  7788. "require-dev": {
  7789. "bamarni/composer-bin-plugin": "^1.8.2",
  7790. "ext-filter": "*",
  7791. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7792. },
  7793. "suggest": {
  7794. "ext-filter": "Required to use the boolean validator."
  7795. },
  7796. "type": "library",
  7797. "extra": {
  7798. "bamarni-bin": {
  7799. "bin-links": true,
  7800. "forward-command": false
  7801. },
  7802. "branch-alias": {
  7803. "dev-master": "5.6-dev"
  7804. }
  7805. },
  7806. "autoload": {
  7807. "psr-4": {
  7808. "Dotenv\\": "src/"
  7809. }
  7810. },
  7811. "notification-url": "https://packagist.org/downloads/",
  7812. "license": [
  7813. "BSD-3-Clause"
  7814. ],
  7815. "authors": [
  7816. {
  7817. "name": "Graham Campbell",
  7818. "email": "hello@gjcampbell.co.uk",
  7819. "homepage": "https://github.com/GrahamCampbell"
  7820. },
  7821. {
  7822. "name": "Vance Lucas",
  7823. "email": "vance@vancelucas.com",
  7824. "homepage": "https://github.com/vlucas"
  7825. }
  7826. ],
  7827. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7828. "keywords": [
  7829. "dotenv",
  7830. "env",
  7831. "environment"
  7832. ],
  7833. "support": {
  7834. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7835. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7836. },
  7837. "funding": [
  7838. {
  7839. "url": "https://github.com/GrahamCampbell",
  7840. "type": "github"
  7841. },
  7842. {
  7843. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7844. "type": "tidelift"
  7845. }
  7846. ],
  7847. "time": "2024-07-20T21:52:34+00:00"
  7848. },
  7849. {
  7850. "name": "voku/portable-ascii",
  7851. "version": "1.6.1",
  7852. "source": {
  7853. "type": "git",
  7854. "url": "https://github.com/voku/portable-ascii.git",
  7855. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7856. },
  7857. "dist": {
  7858. "type": "zip",
  7859. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7860. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7861. "shasum": "",
  7862. "mirrors": [
  7863. {
  7864. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7865. "preferred": true
  7866. }
  7867. ]
  7868. },
  7869. "require": {
  7870. "php": ">=7.0.0"
  7871. },
  7872. "require-dev": {
  7873. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7874. },
  7875. "suggest": {
  7876. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7877. },
  7878. "type": "library",
  7879. "autoload": {
  7880. "psr-4": {
  7881. "voku\\": "src/voku/"
  7882. }
  7883. },
  7884. "notification-url": "https://packagist.org/downloads/",
  7885. "license": [
  7886. "MIT"
  7887. ],
  7888. "authors": [
  7889. {
  7890. "name": "Lars Moelleken",
  7891. "homepage": "http://www.moelleken.org/"
  7892. }
  7893. ],
  7894. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7895. "homepage": "https://github.com/voku/portable-ascii",
  7896. "keywords": [
  7897. "ascii",
  7898. "clean",
  7899. "php"
  7900. ],
  7901. "support": {
  7902. "issues": "https://github.com/voku/portable-ascii/issues",
  7903. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7904. },
  7905. "funding": [
  7906. {
  7907. "url": "https://www.paypal.me/moelleken",
  7908. "type": "custom"
  7909. },
  7910. {
  7911. "url": "https://github.com/voku",
  7912. "type": "github"
  7913. },
  7914. {
  7915. "url": "https://opencollective.com/portable-ascii",
  7916. "type": "open_collective"
  7917. },
  7918. {
  7919. "url": "https://www.patreon.com/voku",
  7920. "type": "patreon"
  7921. },
  7922. {
  7923. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7924. "type": "tidelift"
  7925. }
  7926. ],
  7927. "time": "2022-01-24T18:55:24+00:00"
  7928. },
  7929. {
  7930. "name": "yansongda/artful",
  7931. "version": "v1.1.3",
  7932. "source": {
  7933. "type": "git",
  7934. "url": "https://github.com/yansongda/artful.git",
  7935. "reference": "734b97a6a03aa9702d1ce1f396d2e2c9bea845b3"
  7936. },
  7937. "dist": {
  7938. "type": "zip",
  7939. "url": "https://api.github.com/repos/yansongda/artful/zipball/734b97a6a03aa9702d1ce1f396d2e2c9bea845b3",
  7940. "reference": "734b97a6a03aa9702d1ce1f396d2e2c9bea845b3",
  7941. "shasum": "",
  7942. "mirrors": [
  7943. {
  7944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7945. "preferred": true
  7946. }
  7947. ]
  7948. },
  7949. "require": {
  7950. "guzzlehttp/psr7": "^2.6",
  7951. "php": ">=8.0",
  7952. "psr/container": "^1.1 || ^2.0",
  7953. "psr/event-dispatcher": "^1.0",
  7954. "psr/http-client": "^1.0",
  7955. "psr/http-message": "^1.1 || ^2.0",
  7956. "psr/log": "^1.1 || ^2.0 || ^3.0",
  7957. "yansongda/supports": "~4.0.10"
  7958. },
  7959. "require-dev": {
  7960. "friendsofphp/php-cs-fixer": "^3.44",
  7961. "guzzlehttp/guzzle": "^7.0",
  7962. "hyperf/pimple": "^2.2",
  7963. "mockery/mockery": "^1.4",
  7964. "monolog/monolog": "^2.2",
  7965. "phpstan/phpstan": "^1.0.0 || ^2.0.0",
  7966. "phpunit/phpunit": "^9.0",
  7967. "symfony/event-dispatcher": "^5.2.0",
  7968. "symfony/http-foundation": "^5.2.0",
  7969. "symfony/psr-http-message-bridge": "^2.1",
  7970. "symfony/var-dumper": "^5.1"
  7971. },
  7972. "suggest": {
  7973. "hyperf/pimple": "其它/无框架下使用 SDK,请安装,任选其一",
  7974. "illuminate/container": "其它/无框架下使用 SDK,请安装,任选其一"
  7975. },
  7976. "type": "library",
  7977. "autoload": {
  7978. "files": [
  7979. "src/Functions.php"
  7980. ],
  7981. "psr-4": {
  7982. "Yansongda\\Artful\\": "src"
  7983. }
  7984. },
  7985. "notification-url": "https://packagist.org/downloads/",
  7986. "license": [
  7987. "MIT"
  7988. ],
  7989. "authors": [
  7990. {
  7991. "name": "yansongda",
  7992. "email": "me@yansongda.cn"
  7993. }
  7994. ],
  7995. "description": "Artful 是一个简单易用的 API 请求框架 PHP Api RequesT Framwork U Like。",
  7996. "keywords": [
  7997. "api",
  7998. "artful",
  7999. "framework",
  8000. "request"
  8001. ],
  8002. "support": {
  8003. "homepage": "https://artful.yansongda.cn",
  8004. "issues": "https://github.com/yansongda/artful/issues",
  8005. "source": "https://github.com/yansongda/artful"
  8006. },
  8007. "time": "2025-07-24T09:03:04+00:00"
  8008. },
  8009. {
  8010. "name": "yansongda/pay",
  8011. "version": "v3.7.16",
  8012. "source": {
  8013. "type": "git",
  8014. "url": "https://github.com/yansongda/pay.git",
  8015. "reference": "f24aea15bbfc2ec23b1201168d81f73a99433a8f"
  8016. },
  8017. "dist": {
  8018. "type": "zip",
  8019. "url": "https://api.github.com/repos/yansongda/pay/zipball/f24aea15bbfc2ec23b1201168d81f73a99433a8f",
  8020. "reference": "f24aea15bbfc2ec23b1201168d81f73a99433a8f",
  8021. "shasum": "",
  8022. "mirrors": [
  8023. {
  8024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8025. "preferred": true
  8026. }
  8027. ]
  8028. },
  8029. "require": {
  8030. "ext-bcmath": "*",
  8031. "ext-json": "*",
  8032. "ext-libxml": "*",
  8033. "ext-openssl": "*",
  8034. "ext-simplexml": "*",
  8035. "php": ">=8.0",
  8036. "yansongda/artful": "~1.1.1",
  8037. "yansongda/supports": "~4.0.10"
  8038. },
  8039. "conflict": {
  8040. "hyperf/framework": "<3.0"
  8041. },
  8042. "require-dev": {
  8043. "friendsofphp/php-cs-fixer": "^3.44",
  8044. "guzzlehttp/guzzle": "^7.0",
  8045. "hyperf/pimple": "^2.2",
  8046. "jetbrains/phpstorm-attributes": "^1.1",
  8047. "mockery/mockery": "^1.4",
  8048. "monolog/monolog": "^2.2",
  8049. "phpstan/phpstan": "^1.0.0 || ^2.0.0",
  8050. "phpunit/phpunit": "^9.0",
  8051. "symfony/event-dispatcher": "^5.2.0",
  8052. "symfony/http-foundation": "^5.2.0",
  8053. "symfony/psr-http-message-bridge": "^2.1",
  8054. "symfony/var-dumper": "^5.1"
  8055. },
  8056. "type": "library",
  8057. "autoload": {
  8058. "files": [
  8059. "src/Functions.php"
  8060. ],
  8061. "psr-4": {
  8062. "Yansongda\\Pay\\": "src"
  8063. }
  8064. },
  8065. "notification-url": "https://packagist.org/downloads/",
  8066. "license": [
  8067. "MIT"
  8068. ],
  8069. "authors": [
  8070. {
  8071. "name": "yansongda",
  8072. "email": "me@yansongda.cn"
  8073. }
  8074. ],
  8075. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  8076. "keywords": [
  8077. "alipay",
  8078. "pay",
  8079. "wechat"
  8080. ],
  8081. "support": {
  8082. "homepage": "https://pay.yansongda.cn",
  8083. "issues": "https://github.com/yansongda/pay/issues",
  8084. "source": "https://github.com/yansongda/pay"
  8085. },
  8086. "time": "2025-06-12T05:51:47+00:00"
  8087. },
  8088. {
  8089. "name": "yansongda/supports",
  8090. "version": "v4.0.10",
  8091. "source": {
  8092. "type": "git",
  8093. "url": "https://github.com/yansongda/supports.git",
  8094. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5"
  8095. },
  8096. "dist": {
  8097. "type": "zip",
  8098. "url": "https://api.github.com/repos/yansongda/supports/zipball/11cc73776e6d4d763a84c8c733f64820abdc44e5",
  8099. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5",
  8100. "shasum": "",
  8101. "mirrors": [
  8102. {
  8103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8104. "preferred": true
  8105. }
  8106. ]
  8107. },
  8108. "require": {
  8109. "php": ">=8.0"
  8110. },
  8111. "require-dev": {
  8112. "friendsofphp/php-cs-fixer": "^3.0",
  8113. "mockery/mockery": "^1.4",
  8114. "phpstan/phpstan": "^1.1.0",
  8115. "phpunit/phpunit": "^9.0"
  8116. },
  8117. "suggest": {
  8118. "monolog/monolog": "Use logger",
  8119. "symfony/console": "Use stdout logger"
  8120. },
  8121. "type": "library",
  8122. "autoload": {
  8123. "files": [
  8124. "src/Functions.php"
  8125. ],
  8126. "psr-4": {
  8127. "Yansongda\\Supports\\": "src/"
  8128. }
  8129. },
  8130. "notification-url": "https://packagist.org/downloads/",
  8131. "license": [
  8132. "MIT"
  8133. ],
  8134. "authors": [
  8135. {
  8136. "name": "yansongda",
  8137. "email": "me@yansongda.cn"
  8138. }
  8139. ],
  8140. "description": "common components",
  8141. "keywords": [
  8142. "array",
  8143. "collection",
  8144. "config",
  8145. "support"
  8146. ],
  8147. "support": {
  8148. "issues": "https://github.com/yansongda/supports/issues",
  8149. "source": "https://github.com/yansongda/supports"
  8150. },
  8151. "time": "2024-06-09T15:49:21+00:00"
  8152. }
  8153. ],
  8154. "packages-dev": [
  8155. {
  8156. "name": "doctrine/instantiator",
  8157. "version": "1.5.0",
  8158. "source": {
  8159. "type": "git",
  8160. "url": "https://github.com/doctrine/instantiator.git",
  8161. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8162. },
  8163. "dist": {
  8164. "type": "zip",
  8165. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8166. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8167. "shasum": "",
  8168. "mirrors": [
  8169. {
  8170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8171. "preferred": true
  8172. }
  8173. ]
  8174. },
  8175. "require": {
  8176. "php": "^7.1 || ^8.0"
  8177. },
  8178. "require-dev": {
  8179. "doctrine/coding-standard": "^9 || ^11",
  8180. "ext-pdo": "*",
  8181. "ext-phar": "*",
  8182. "phpbench/phpbench": "^0.16 || ^1",
  8183. "phpstan/phpstan": "^1.4",
  8184. "phpstan/phpstan-phpunit": "^1",
  8185. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8186. "vimeo/psalm": "^4.30 || ^5.4"
  8187. },
  8188. "type": "library",
  8189. "autoload": {
  8190. "psr-4": {
  8191. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8192. }
  8193. },
  8194. "notification-url": "https://packagist.org/downloads/",
  8195. "license": [
  8196. "MIT"
  8197. ],
  8198. "authors": [
  8199. {
  8200. "name": "Marco Pivetta",
  8201. "email": "ocramius@gmail.com",
  8202. "homepage": "https://ocramius.github.io/"
  8203. }
  8204. ],
  8205. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8206. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8207. "keywords": [
  8208. "constructor",
  8209. "instantiate"
  8210. ],
  8211. "support": {
  8212. "issues": "https://github.com/doctrine/instantiator/issues",
  8213. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8214. },
  8215. "funding": [
  8216. {
  8217. "url": "https://www.doctrine-project.org/sponsorship.html",
  8218. "type": "custom"
  8219. },
  8220. {
  8221. "url": "https://www.patreon.com/phpdoctrine",
  8222. "type": "patreon"
  8223. },
  8224. {
  8225. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8226. "type": "tidelift"
  8227. }
  8228. ],
  8229. "time": "2022-12-30T00:15:36+00:00"
  8230. },
  8231. {
  8232. "name": "facade/flare-client-php",
  8233. "version": "1.10.0",
  8234. "source": {
  8235. "type": "git",
  8236. "url": "https://github.com/facade/flare-client-php.git",
  8237. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8238. },
  8239. "dist": {
  8240. "type": "zip",
  8241. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8242. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8243. "shasum": "",
  8244. "mirrors": [
  8245. {
  8246. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8247. "preferred": true
  8248. }
  8249. ]
  8250. },
  8251. "require": {
  8252. "facade/ignition-contracts": "~1.0",
  8253. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8254. "php": "^7.1|^8.0",
  8255. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8256. "symfony/mime": "^3.4|^4.0|^5.1",
  8257. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8258. },
  8259. "require-dev": {
  8260. "friendsofphp/php-cs-fixer": "^2.14",
  8261. "phpunit/phpunit": "^7.5",
  8262. "spatie/phpunit-snapshot-assertions": "^2.0"
  8263. },
  8264. "type": "library",
  8265. "extra": {
  8266. "branch-alias": {
  8267. "dev-master": "1.0-dev"
  8268. }
  8269. },
  8270. "autoload": {
  8271. "files": [
  8272. "src/helpers.php"
  8273. ],
  8274. "psr-4": {
  8275. "Facade\\FlareClient\\": "src"
  8276. }
  8277. },
  8278. "notification-url": "https://packagist.org/downloads/",
  8279. "license": [
  8280. "MIT"
  8281. ],
  8282. "description": "Send PHP errors to Flare",
  8283. "homepage": "https://github.com/facade/flare-client-php",
  8284. "keywords": [
  8285. "exception",
  8286. "facade",
  8287. "flare",
  8288. "reporting"
  8289. ],
  8290. "support": {
  8291. "issues": "https://github.com/facade/flare-client-php/issues",
  8292. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8293. },
  8294. "funding": [
  8295. {
  8296. "url": "https://github.com/spatie",
  8297. "type": "github"
  8298. }
  8299. ],
  8300. "time": "2022-08-09T11:23:57+00:00"
  8301. },
  8302. {
  8303. "name": "facade/ignition",
  8304. "version": "2.17.7",
  8305. "source": {
  8306. "type": "git",
  8307. "url": "https://github.com/facade/ignition.git",
  8308. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8309. },
  8310. "dist": {
  8311. "type": "zip",
  8312. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8313. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8314. "shasum": "",
  8315. "mirrors": [
  8316. {
  8317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8318. "preferred": true
  8319. }
  8320. ]
  8321. },
  8322. "require": {
  8323. "ext-curl": "*",
  8324. "ext-json": "*",
  8325. "ext-mbstring": "*",
  8326. "facade/flare-client-php": "^1.9.1",
  8327. "facade/ignition-contracts": "^1.0.2",
  8328. "illuminate/support": "^7.0|^8.0",
  8329. "monolog/monolog": "^2.0",
  8330. "php": "^7.2.5|^8.0",
  8331. "symfony/console": "^5.0",
  8332. "symfony/var-dumper": "^5.0"
  8333. },
  8334. "require-dev": {
  8335. "friendsofphp/php-cs-fixer": "^2.14",
  8336. "livewire/livewire": "^2.4",
  8337. "mockery/mockery": "^1.3",
  8338. "orchestra/testbench": "^5.0|^6.0",
  8339. "psalm/plugin-laravel": "^1.2"
  8340. },
  8341. "suggest": {
  8342. "laravel/telescope": "^3.1"
  8343. },
  8344. "type": "library",
  8345. "extra": {
  8346. "branch-alias": {
  8347. "dev-master": "2.x-dev"
  8348. },
  8349. "laravel": {
  8350. "providers": [
  8351. "Facade\\Ignition\\IgnitionServiceProvider"
  8352. ],
  8353. "aliases": {
  8354. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8355. }
  8356. }
  8357. },
  8358. "autoload": {
  8359. "files": [
  8360. "src/helpers.php"
  8361. ],
  8362. "psr-4": {
  8363. "Facade\\Ignition\\": "src"
  8364. }
  8365. },
  8366. "notification-url": "https://packagist.org/downloads/",
  8367. "license": [
  8368. "MIT"
  8369. ],
  8370. "description": "A beautiful error page for Laravel applications.",
  8371. "homepage": "https://github.com/facade/ignition",
  8372. "keywords": [
  8373. "error",
  8374. "flare",
  8375. "laravel",
  8376. "page"
  8377. ],
  8378. "support": {
  8379. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8380. "forum": "https://twitter.com/flareappio",
  8381. "issues": "https://github.com/facade/ignition/issues",
  8382. "source": "https://github.com/facade/ignition"
  8383. },
  8384. "time": "2023-01-26T12:34:59+00:00"
  8385. },
  8386. {
  8387. "name": "facade/ignition-contracts",
  8388. "version": "1.0.2",
  8389. "source": {
  8390. "type": "git",
  8391. "url": "https://github.com/facade/ignition-contracts.git",
  8392. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8393. },
  8394. "dist": {
  8395. "type": "zip",
  8396. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8397. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8398. "shasum": "",
  8399. "mirrors": [
  8400. {
  8401. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8402. "preferred": true
  8403. }
  8404. ]
  8405. },
  8406. "require": {
  8407. "php": "^7.3|^8.0"
  8408. },
  8409. "require-dev": {
  8410. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8411. "phpunit/phpunit": "^9.3.11",
  8412. "vimeo/psalm": "^3.17.1"
  8413. },
  8414. "type": "library",
  8415. "autoload": {
  8416. "psr-4": {
  8417. "Facade\\IgnitionContracts\\": "src"
  8418. }
  8419. },
  8420. "notification-url": "https://packagist.org/downloads/",
  8421. "license": [
  8422. "MIT"
  8423. ],
  8424. "authors": [
  8425. {
  8426. "name": "Freek Van der Herten",
  8427. "email": "freek@spatie.be",
  8428. "homepage": "https://flareapp.io",
  8429. "role": "Developer"
  8430. }
  8431. ],
  8432. "description": "Solution contracts for Ignition",
  8433. "homepage": "https://github.com/facade/ignition-contracts",
  8434. "keywords": [
  8435. "contracts",
  8436. "flare",
  8437. "ignition"
  8438. ],
  8439. "support": {
  8440. "issues": "https://github.com/facade/ignition-contracts/issues",
  8441. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8442. },
  8443. "time": "2020-10-16T08:27:54+00:00"
  8444. },
  8445. {
  8446. "name": "fakerphp/faker",
  8447. "version": "v1.23.1",
  8448. "source": {
  8449. "type": "git",
  8450. "url": "https://github.com/FakerPHP/Faker.git",
  8451. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8452. },
  8453. "dist": {
  8454. "type": "zip",
  8455. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8456. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8457. "shasum": "",
  8458. "mirrors": [
  8459. {
  8460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8461. "preferred": true
  8462. }
  8463. ]
  8464. },
  8465. "require": {
  8466. "php": "^7.4 || ^8.0",
  8467. "psr/container": "^1.0 || ^2.0",
  8468. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8469. },
  8470. "conflict": {
  8471. "fzaninotto/faker": "*"
  8472. },
  8473. "require-dev": {
  8474. "bamarni/composer-bin-plugin": "^1.4.1",
  8475. "doctrine/persistence": "^1.3 || ^2.0",
  8476. "ext-intl": "*",
  8477. "phpunit/phpunit": "^9.5.26",
  8478. "symfony/phpunit-bridge": "^5.4.16"
  8479. },
  8480. "suggest": {
  8481. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8482. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8483. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8484. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8485. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8486. },
  8487. "type": "library",
  8488. "autoload": {
  8489. "psr-4": {
  8490. "Faker\\": "src/Faker/"
  8491. }
  8492. },
  8493. "notification-url": "https://packagist.org/downloads/",
  8494. "license": [
  8495. "MIT"
  8496. ],
  8497. "authors": [
  8498. {
  8499. "name": "François Zaninotto"
  8500. }
  8501. ],
  8502. "description": "Faker is a PHP library that generates fake data for you.",
  8503. "keywords": [
  8504. "data",
  8505. "faker",
  8506. "fixtures"
  8507. ],
  8508. "support": {
  8509. "issues": "https://github.com/FakerPHP/Faker/issues",
  8510. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8511. },
  8512. "time": "2024-01-02T13:46:09+00:00"
  8513. },
  8514. {
  8515. "name": "filp/whoops",
  8516. "version": "2.16.0",
  8517. "source": {
  8518. "type": "git",
  8519. "url": "https://github.com/filp/whoops.git",
  8520. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  8521. },
  8522. "dist": {
  8523. "type": "zip",
  8524. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  8525. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  8526. "shasum": "",
  8527. "mirrors": [
  8528. {
  8529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8530. "preferred": true
  8531. }
  8532. ]
  8533. },
  8534. "require": {
  8535. "php": "^7.1 || ^8.0",
  8536. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8537. },
  8538. "require-dev": {
  8539. "mockery/mockery": "^1.0",
  8540. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8541. "symfony/var-dumper": "^4.0 || ^5.0"
  8542. },
  8543. "suggest": {
  8544. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8545. "whoops/soap": "Formats errors as SOAP responses"
  8546. },
  8547. "type": "library",
  8548. "extra": {
  8549. "branch-alias": {
  8550. "dev-master": "2.7-dev"
  8551. }
  8552. },
  8553. "autoload": {
  8554. "psr-4": {
  8555. "Whoops\\": "src/Whoops/"
  8556. }
  8557. },
  8558. "notification-url": "https://packagist.org/downloads/",
  8559. "license": [
  8560. "MIT"
  8561. ],
  8562. "authors": [
  8563. {
  8564. "name": "Filipe Dobreira",
  8565. "homepage": "https://github.com/filp",
  8566. "role": "Developer"
  8567. }
  8568. ],
  8569. "description": "php error handling for cool kids",
  8570. "homepage": "https://filp.github.io/whoops/",
  8571. "keywords": [
  8572. "error",
  8573. "exception",
  8574. "handling",
  8575. "library",
  8576. "throwable",
  8577. "whoops"
  8578. ],
  8579. "support": {
  8580. "issues": "https://github.com/filp/whoops/issues",
  8581. "source": "https://github.com/filp/whoops/tree/2.16.0"
  8582. },
  8583. "funding": [
  8584. {
  8585. "url": "https://github.com/denis-sokolov",
  8586. "type": "github"
  8587. }
  8588. ],
  8589. "time": "2024-09-25T12:00:00+00:00"
  8590. },
  8591. {
  8592. "name": "hamcrest/hamcrest-php",
  8593. "version": "v2.0.1",
  8594. "source": {
  8595. "type": "git",
  8596. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8597. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8598. },
  8599. "dist": {
  8600. "type": "zip",
  8601. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8602. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8603. "shasum": "",
  8604. "mirrors": [
  8605. {
  8606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8607. "preferred": true
  8608. }
  8609. ]
  8610. },
  8611. "require": {
  8612. "php": "^5.3|^7.0|^8.0"
  8613. },
  8614. "replace": {
  8615. "cordoval/hamcrest-php": "*",
  8616. "davedevelopment/hamcrest-php": "*",
  8617. "kodova/hamcrest-php": "*"
  8618. },
  8619. "require-dev": {
  8620. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8621. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8622. },
  8623. "type": "library",
  8624. "extra": {
  8625. "branch-alias": {
  8626. "dev-master": "2.1-dev"
  8627. }
  8628. },
  8629. "autoload": {
  8630. "classmap": [
  8631. "hamcrest"
  8632. ]
  8633. },
  8634. "notification-url": "https://packagist.org/downloads/",
  8635. "license": [
  8636. "BSD-3-Clause"
  8637. ],
  8638. "description": "This is the PHP port of Hamcrest Matchers",
  8639. "keywords": [
  8640. "test"
  8641. ],
  8642. "support": {
  8643. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8644. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8645. },
  8646. "time": "2020-07-09T08:09:16+00:00"
  8647. },
  8648. {
  8649. "name": "mockery/mockery",
  8650. "version": "1.6.12",
  8651. "source": {
  8652. "type": "git",
  8653. "url": "https://github.com/mockery/mockery.git",
  8654. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8655. },
  8656. "dist": {
  8657. "type": "zip",
  8658. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8659. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8660. "shasum": "",
  8661. "mirrors": [
  8662. {
  8663. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8664. "preferred": true
  8665. }
  8666. ]
  8667. },
  8668. "require": {
  8669. "hamcrest/hamcrest-php": "^2.0.1",
  8670. "lib-pcre": ">=7.0",
  8671. "php": ">=7.3"
  8672. },
  8673. "conflict": {
  8674. "phpunit/phpunit": "<8.0"
  8675. },
  8676. "require-dev": {
  8677. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8678. "symplify/easy-coding-standard": "^12.1.14"
  8679. },
  8680. "type": "library",
  8681. "autoload": {
  8682. "files": [
  8683. "library/helpers.php",
  8684. "library/Mockery.php"
  8685. ],
  8686. "psr-4": {
  8687. "Mockery\\": "library/Mockery"
  8688. }
  8689. },
  8690. "notification-url": "https://packagist.org/downloads/",
  8691. "license": [
  8692. "BSD-3-Clause"
  8693. ],
  8694. "authors": [
  8695. {
  8696. "name": "Pádraic Brady",
  8697. "email": "padraic.brady@gmail.com",
  8698. "homepage": "https://github.com/padraic",
  8699. "role": "Author"
  8700. },
  8701. {
  8702. "name": "Dave Marshall",
  8703. "email": "dave.marshall@atstsolutions.co.uk",
  8704. "homepage": "https://davedevelopment.co.uk",
  8705. "role": "Developer"
  8706. },
  8707. {
  8708. "name": "Nathanael Esayeas",
  8709. "email": "nathanael.esayeas@protonmail.com",
  8710. "homepage": "https://github.com/ghostwriter",
  8711. "role": "Lead Developer"
  8712. }
  8713. ],
  8714. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8715. "homepage": "https://github.com/mockery/mockery",
  8716. "keywords": [
  8717. "BDD",
  8718. "TDD",
  8719. "library",
  8720. "mock",
  8721. "mock objects",
  8722. "mockery",
  8723. "stub",
  8724. "test",
  8725. "test double",
  8726. "testing"
  8727. ],
  8728. "support": {
  8729. "docs": "https://docs.mockery.io/",
  8730. "issues": "https://github.com/mockery/mockery/issues",
  8731. "rss": "https://github.com/mockery/mockery/releases.atom",
  8732. "security": "https://github.com/mockery/mockery/security/advisories",
  8733. "source": "https://github.com/mockery/mockery"
  8734. },
  8735. "time": "2024-05-16T03:13:13+00:00"
  8736. },
  8737. {
  8738. "name": "myclabs/deep-copy",
  8739. "version": "1.x-dev",
  8740. "source": {
  8741. "type": "git",
  8742. "url": "https://github.com/myclabs/DeepCopy.git",
  8743. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8744. },
  8745. "dist": {
  8746. "type": "zip",
  8747. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8748. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8749. "shasum": "",
  8750. "mirrors": [
  8751. {
  8752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8753. "preferred": true
  8754. }
  8755. ]
  8756. },
  8757. "require": {
  8758. "php": "^7.1 || ^8.0"
  8759. },
  8760. "conflict": {
  8761. "doctrine/collections": "<1.6.8",
  8762. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8763. },
  8764. "require-dev": {
  8765. "doctrine/collections": "^1.6.8",
  8766. "doctrine/common": "^2.13.3 || ^3.2.2",
  8767. "phpspec/prophecy": "^1.10",
  8768. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8769. },
  8770. "default-branch": true,
  8771. "type": "library",
  8772. "autoload": {
  8773. "files": [
  8774. "src/DeepCopy/deep_copy.php"
  8775. ],
  8776. "psr-4": {
  8777. "DeepCopy\\": "src/DeepCopy/"
  8778. }
  8779. },
  8780. "notification-url": "https://packagist.org/downloads/",
  8781. "license": [
  8782. "MIT"
  8783. ],
  8784. "description": "Create deep copies (clones) of your objects",
  8785. "keywords": [
  8786. "clone",
  8787. "copy",
  8788. "duplicate",
  8789. "object",
  8790. "object graph"
  8791. ],
  8792. "support": {
  8793. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8794. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8795. },
  8796. "funding": [
  8797. {
  8798. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8799. "type": "tidelift"
  8800. }
  8801. ],
  8802. "time": "2025-07-05T12:25:42+00:00"
  8803. },
  8804. {
  8805. "name": "nunomaduro/collision",
  8806. "version": "v5.11.0",
  8807. "source": {
  8808. "type": "git",
  8809. "url": "https://github.com/nunomaduro/collision.git",
  8810. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8811. },
  8812. "dist": {
  8813. "type": "zip",
  8814. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8815. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8816. "shasum": "",
  8817. "mirrors": [
  8818. {
  8819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8820. "preferred": true
  8821. }
  8822. ]
  8823. },
  8824. "require": {
  8825. "facade/ignition-contracts": "^1.0",
  8826. "filp/whoops": "^2.14.3",
  8827. "php": "^7.3 || ^8.0",
  8828. "symfony/console": "^5.0"
  8829. },
  8830. "require-dev": {
  8831. "brianium/paratest": "^6.1",
  8832. "fideloper/proxy": "^4.4.1",
  8833. "fruitcake/laravel-cors": "^2.0.3",
  8834. "laravel/framework": "8.x-dev",
  8835. "nunomaduro/larastan": "^0.6.2",
  8836. "nunomaduro/mock-final-classes": "^1.0",
  8837. "orchestra/testbench": "^6.0",
  8838. "phpstan/phpstan": "^0.12.64",
  8839. "phpunit/phpunit": "^9.5.0"
  8840. },
  8841. "type": "library",
  8842. "extra": {
  8843. "laravel": {
  8844. "providers": [
  8845. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8846. ]
  8847. }
  8848. },
  8849. "autoload": {
  8850. "psr-4": {
  8851. "NunoMaduro\\Collision\\": "src/"
  8852. }
  8853. },
  8854. "notification-url": "https://packagist.org/downloads/",
  8855. "license": [
  8856. "MIT"
  8857. ],
  8858. "authors": [
  8859. {
  8860. "name": "Nuno Maduro",
  8861. "email": "enunomaduro@gmail.com"
  8862. }
  8863. ],
  8864. "description": "Cli error handling for console/command-line PHP applications.",
  8865. "keywords": [
  8866. "artisan",
  8867. "cli",
  8868. "command-line",
  8869. "console",
  8870. "error",
  8871. "handling",
  8872. "laravel",
  8873. "laravel-zero",
  8874. "php",
  8875. "symfony"
  8876. ],
  8877. "support": {
  8878. "issues": "https://github.com/nunomaduro/collision/issues",
  8879. "source": "https://github.com/nunomaduro/collision"
  8880. },
  8881. "funding": [
  8882. {
  8883. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8884. "type": "custom"
  8885. },
  8886. {
  8887. "url": "https://github.com/nunomaduro",
  8888. "type": "github"
  8889. },
  8890. {
  8891. "url": "https://www.patreon.com/nunomaduro",
  8892. "type": "patreon"
  8893. }
  8894. ],
  8895. "time": "2022-01-10T16:22:52+00:00"
  8896. },
  8897. {
  8898. "name": "phar-io/manifest",
  8899. "version": "dev-master",
  8900. "source": {
  8901. "type": "git",
  8902. "url": "https://github.com/phar-io/manifest.git",
  8903. "reference": "c581d4941e196459bf76c945a8ca922963a66708"
  8904. },
  8905. "dist": {
  8906. "type": "zip",
  8907. "url": "https://api.github.com/repos/phar-io/manifest/zipball/c581d4941e196459bf76c945a8ca922963a66708",
  8908. "reference": "c581d4941e196459bf76c945a8ca922963a66708",
  8909. "shasum": "",
  8910. "mirrors": [
  8911. {
  8912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8913. "preferred": true
  8914. }
  8915. ]
  8916. },
  8917. "require": {
  8918. "ext-dom": "*",
  8919. "ext-libxml": "*",
  8920. "ext-phar": "*",
  8921. "ext-xmlwriter": "*",
  8922. "phar-io/version": "^3.0.1",
  8923. "php": "^7.2 || ^8.0"
  8924. },
  8925. "default-branch": true,
  8926. "type": "library",
  8927. "extra": {
  8928. "branch-alias": {
  8929. "dev-master": "2.0.x-dev"
  8930. }
  8931. },
  8932. "autoload": {
  8933. "classmap": [
  8934. "src/"
  8935. ]
  8936. },
  8937. "notification-url": "https://packagist.org/downloads/",
  8938. "license": [
  8939. "BSD-3-Clause"
  8940. ],
  8941. "authors": [
  8942. {
  8943. "name": "Arne Blankerts",
  8944. "email": "arne@blankerts.de",
  8945. "role": "Developer"
  8946. },
  8947. {
  8948. "name": "Sebastian Heuer",
  8949. "email": "sebastian@phpeople.de",
  8950. "role": "Developer"
  8951. },
  8952. {
  8953. "name": "Sebastian Bergmann",
  8954. "email": "sebastian@phpunit.de",
  8955. "role": "Developer"
  8956. }
  8957. ],
  8958. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8959. "support": {
  8960. "issues": "https://github.com/phar-io/manifest/issues",
  8961. "source": "https://github.com/phar-io/manifest/tree/master"
  8962. },
  8963. "funding": [
  8964. {
  8965. "url": "https://github.com/theseer",
  8966. "type": "github"
  8967. }
  8968. ],
  8969. "time": "2025-11-27T15:23:09+00:00"
  8970. },
  8971. {
  8972. "name": "phar-io/version",
  8973. "version": "3.2.1",
  8974. "source": {
  8975. "type": "git",
  8976. "url": "https://github.com/phar-io/version.git",
  8977. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8978. },
  8979. "dist": {
  8980. "type": "zip",
  8981. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8982. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8983. "shasum": "",
  8984. "mirrors": [
  8985. {
  8986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8987. "preferred": true
  8988. }
  8989. ]
  8990. },
  8991. "require": {
  8992. "php": "^7.2 || ^8.0"
  8993. },
  8994. "type": "library",
  8995. "autoload": {
  8996. "classmap": [
  8997. "src/"
  8998. ]
  8999. },
  9000. "notification-url": "https://packagist.org/downloads/",
  9001. "license": [
  9002. "BSD-3-Clause"
  9003. ],
  9004. "authors": [
  9005. {
  9006. "name": "Arne Blankerts",
  9007. "email": "arne@blankerts.de",
  9008. "role": "Developer"
  9009. },
  9010. {
  9011. "name": "Sebastian Heuer",
  9012. "email": "sebastian@phpeople.de",
  9013. "role": "Developer"
  9014. },
  9015. {
  9016. "name": "Sebastian Bergmann",
  9017. "email": "sebastian@phpunit.de",
  9018. "role": "Developer"
  9019. }
  9020. ],
  9021. "description": "Library for handling version information and constraints",
  9022. "support": {
  9023. "issues": "https://github.com/phar-io/version/issues",
  9024. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9025. },
  9026. "time": "2022-02-21T01:04:05+00:00"
  9027. },
  9028. {
  9029. "name": "phpunit/php-code-coverage",
  9030. "version": "9.2.32",
  9031. "source": {
  9032. "type": "git",
  9033. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9034. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9035. },
  9036. "dist": {
  9037. "type": "zip",
  9038. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9039. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9040. "shasum": "",
  9041. "mirrors": [
  9042. {
  9043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9044. "preferred": true
  9045. }
  9046. ]
  9047. },
  9048. "require": {
  9049. "ext-dom": "*",
  9050. "ext-libxml": "*",
  9051. "ext-xmlwriter": "*",
  9052. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9053. "php": ">=7.3",
  9054. "phpunit/php-file-iterator": "^3.0.6",
  9055. "phpunit/php-text-template": "^2.0.4",
  9056. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9057. "sebastian/complexity": "^2.0.3",
  9058. "sebastian/environment": "^5.1.5",
  9059. "sebastian/lines-of-code": "^1.0.4",
  9060. "sebastian/version": "^3.0.2",
  9061. "theseer/tokenizer": "^1.2.3"
  9062. },
  9063. "require-dev": {
  9064. "phpunit/phpunit": "^9.6"
  9065. },
  9066. "suggest": {
  9067. "ext-pcov": "PHP extension that provides line coverage",
  9068. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9069. },
  9070. "type": "library",
  9071. "extra": {
  9072. "branch-alias": {
  9073. "dev-main": "9.2.x-dev"
  9074. }
  9075. },
  9076. "autoload": {
  9077. "classmap": [
  9078. "src/"
  9079. ]
  9080. },
  9081. "notification-url": "https://packagist.org/downloads/",
  9082. "license": [
  9083. "BSD-3-Clause"
  9084. ],
  9085. "authors": [
  9086. {
  9087. "name": "Sebastian Bergmann",
  9088. "email": "sebastian@phpunit.de",
  9089. "role": "lead"
  9090. }
  9091. ],
  9092. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9093. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9094. "keywords": [
  9095. "coverage",
  9096. "testing",
  9097. "xunit"
  9098. ],
  9099. "support": {
  9100. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9101. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9102. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9103. },
  9104. "funding": [
  9105. {
  9106. "url": "https://github.com/sebastianbergmann",
  9107. "type": "github"
  9108. }
  9109. ],
  9110. "time": "2024-08-22T04:23:01+00:00"
  9111. },
  9112. {
  9113. "name": "phpunit/php-file-iterator",
  9114. "version": "3.0.6",
  9115. "source": {
  9116. "type": "git",
  9117. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9118. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9119. },
  9120. "dist": {
  9121. "type": "zip",
  9122. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9123. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9124. "shasum": "",
  9125. "mirrors": [
  9126. {
  9127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9128. "preferred": true
  9129. }
  9130. ]
  9131. },
  9132. "require": {
  9133. "php": ">=7.3"
  9134. },
  9135. "require-dev": {
  9136. "phpunit/phpunit": "^9.3"
  9137. },
  9138. "type": "library",
  9139. "extra": {
  9140. "branch-alias": {
  9141. "dev-master": "3.0-dev"
  9142. }
  9143. },
  9144. "autoload": {
  9145. "classmap": [
  9146. "src/"
  9147. ]
  9148. },
  9149. "notification-url": "https://packagist.org/downloads/",
  9150. "license": [
  9151. "BSD-3-Clause"
  9152. ],
  9153. "authors": [
  9154. {
  9155. "name": "Sebastian Bergmann",
  9156. "email": "sebastian@phpunit.de",
  9157. "role": "lead"
  9158. }
  9159. ],
  9160. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9161. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9162. "keywords": [
  9163. "filesystem",
  9164. "iterator"
  9165. ],
  9166. "support": {
  9167. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9168. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9169. },
  9170. "funding": [
  9171. {
  9172. "url": "https://github.com/sebastianbergmann",
  9173. "type": "github"
  9174. }
  9175. ],
  9176. "time": "2021-12-02T12:48:52+00:00"
  9177. },
  9178. {
  9179. "name": "phpunit/php-invoker",
  9180. "version": "3.1.1",
  9181. "source": {
  9182. "type": "git",
  9183. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9184. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9185. },
  9186. "dist": {
  9187. "type": "zip",
  9188. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9189. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9190. "shasum": "",
  9191. "mirrors": [
  9192. {
  9193. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9194. "preferred": true
  9195. }
  9196. ]
  9197. },
  9198. "require": {
  9199. "php": ">=7.3"
  9200. },
  9201. "require-dev": {
  9202. "ext-pcntl": "*",
  9203. "phpunit/phpunit": "^9.3"
  9204. },
  9205. "suggest": {
  9206. "ext-pcntl": "*"
  9207. },
  9208. "type": "library",
  9209. "extra": {
  9210. "branch-alias": {
  9211. "dev-master": "3.1-dev"
  9212. }
  9213. },
  9214. "autoload": {
  9215. "classmap": [
  9216. "src/"
  9217. ]
  9218. },
  9219. "notification-url": "https://packagist.org/downloads/",
  9220. "license": [
  9221. "BSD-3-Clause"
  9222. ],
  9223. "authors": [
  9224. {
  9225. "name": "Sebastian Bergmann",
  9226. "email": "sebastian@phpunit.de",
  9227. "role": "lead"
  9228. }
  9229. ],
  9230. "description": "Invoke callables with a timeout",
  9231. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9232. "keywords": [
  9233. "process"
  9234. ],
  9235. "support": {
  9236. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9237. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9238. },
  9239. "funding": [
  9240. {
  9241. "url": "https://github.com/sebastianbergmann",
  9242. "type": "github"
  9243. }
  9244. ],
  9245. "time": "2020-09-28T05:58:55+00:00"
  9246. },
  9247. {
  9248. "name": "phpunit/php-text-template",
  9249. "version": "2.0.4",
  9250. "source": {
  9251. "type": "git",
  9252. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9253. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9254. },
  9255. "dist": {
  9256. "type": "zip",
  9257. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9258. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9259. "shasum": "",
  9260. "mirrors": [
  9261. {
  9262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9263. "preferred": true
  9264. }
  9265. ]
  9266. },
  9267. "require": {
  9268. "php": ">=7.3"
  9269. },
  9270. "require-dev": {
  9271. "phpunit/phpunit": "^9.3"
  9272. },
  9273. "type": "library",
  9274. "extra": {
  9275. "branch-alias": {
  9276. "dev-master": "2.0-dev"
  9277. }
  9278. },
  9279. "autoload": {
  9280. "classmap": [
  9281. "src/"
  9282. ]
  9283. },
  9284. "notification-url": "https://packagist.org/downloads/",
  9285. "license": [
  9286. "BSD-3-Clause"
  9287. ],
  9288. "authors": [
  9289. {
  9290. "name": "Sebastian Bergmann",
  9291. "email": "sebastian@phpunit.de",
  9292. "role": "lead"
  9293. }
  9294. ],
  9295. "description": "Simple template engine.",
  9296. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9297. "keywords": [
  9298. "template"
  9299. ],
  9300. "support": {
  9301. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9302. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9303. },
  9304. "funding": [
  9305. {
  9306. "url": "https://github.com/sebastianbergmann",
  9307. "type": "github"
  9308. }
  9309. ],
  9310. "time": "2020-10-26T05:33:50+00:00"
  9311. },
  9312. {
  9313. "name": "phpunit/php-timer",
  9314. "version": "5.0.3",
  9315. "source": {
  9316. "type": "git",
  9317. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9318. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9319. },
  9320. "dist": {
  9321. "type": "zip",
  9322. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9323. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9324. "shasum": "",
  9325. "mirrors": [
  9326. {
  9327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9328. "preferred": true
  9329. }
  9330. ]
  9331. },
  9332. "require": {
  9333. "php": ">=7.3"
  9334. },
  9335. "require-dev": {
  9336. "phpunit/phpunit": "^9.3"
  9337. },
  9338. "type": "library",
  9339. "extra": {
  9340. "branch-alias": {
  9341. "dev-master": "5.0-dev"
  9342. }
  9343. },
  9344. "autoload": {
  9345. "classmap": [
  9346. "src/"
  9347. ]
  9348. },
  9349. "notification-url": "https://packagist.org/downloads/",
  9350. "license": [
  9351. "BSD-3-Clause"
  9352. ],
  9353. "authors": [
  9354. {
  9355. "name": "Sebastian Bergmann",
  9356. "email": "sebastian@phpunit.de",
  9357. "role": "lead"
  9358. }
  9359. ],
  9360. "description": "Utility class for timing",
  9361. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9362. "keywords": [
  9363. "timer"
  9364. ],
  9365. "support": {
  9366. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9367. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9368. },
  9369. "funding": [
  9370. {
  9371. "url": "https://github.com/sebastianbergmann",
  9372. "type": "github"
  9373. }
  9374. ],
  9375. "time": "2020-10-26T13:16:10+00:00"
  9376. },
  9377. {
  9378. "name": "phpunit/phpunit",
  9379. "version": "9.6.30",
  9380. "source": {
  9381. "type": "git",
  9382. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9383. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4"
  9384. },
  9385. "dist": {
  9386. "type": "zip",
  9387. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9388. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9389. "shasum": "",
  9390. "mirrors": [
  9391. {
  9392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9393. "preferred": true
  9394. }
  9395. ]
  9396. },
  9397. "require": {
  9398. "doctrine/instantiator": "^1.5.0 || ^2",
  9399. "ext-dom": "*",
  9400. "ext-json": "*",
  9401. "ext-libxml": "*",
  9402. "ext-mbstring": "*",
  9403. "ext-xml": "*",
  9404. "ext-xmlwriter": "*",
  9405. "myclabs/deep-copy": "^1.13.4",
  9406. "phar-io/manifest": "^2.0.4",
  9407. "phar-io/version": "^3.2.1",
  9408. "php": ">=7.3",
  9409. "phpunit/php-code-coverage": "^9.2.32",
  9410. "phpunit/php-file-iterator": "^3.0.6",
  9411. "phpunit/php-invoker": "^3.1.1",
  9412. "phpunit/php-text-template": "^2.0.4",
  9413. "phpunit/php-timer": "^5.0.3",
  9414. "sebastian/cli-parser": "^1.0.2",
  9415. "sebastian/code-unit": "^1.0.8",
  9416. "sebastian/comparator": "^4.0.9",
  9417. "sebastian/diff": "^4.0.6",
  9418. "sebastian/environment": "^5.1.5",
  9419. "sebastian/exporter": "^4.0.8",
  9420. "sebastian/global-state": "^5.0.8",
  9421. "sebastian/object-enumerator": "^4.0.4",
  9422. "sebastian/resource-operations": "^3.0.4",
  9423. "sebastian/type": "^3.2.1",
  9424. "sebastian/version": "^3.0.2"
  9425. },
  9426. "suggest": {
  9427. "ext-soap": "To be able to generate mocks based on WSDL files",
  9428. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9429. },
  9430. "bin": [
  9431. "phpunit"
  9432. ],
  9433. "type": "library",
  9434. "extra": {
  9435. "branch-alias": {
  9436. "dev-master": "9.6-dev"
  9437. }
  9438. },
  9439. "autoload": {
  9440. "files": [
  9441. "src/Framework/Assert/Functions.php"
  9442. ],
  9443. "classmap": [
  9444. "src/"
  9445. ]
  9446. },
  9447. "notification-url": "https://packagist.org/downloads/",
  9448. "license": [
  9449. "BSD-3-Clause"
  9450. ],
  9451. "authors": [
  9452. {
  9453. "name": "Sebastian Bergmann",
  9454. "email": "sebastian@phpunit.de",
  9455. "role": "lead"
  9456. }
  9457. ],
  9458. "description": "The PHP Unit Testing framework.",
  9459. "homepage": "https://phpunit.de/",
  9460. "keywords": [
  9461. "phpunit",
  9462. "testing",
  9463. "xunit"
  9464. ],
  9465. "support": {
  9466. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9467. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9468. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.30"
  9469. },
  9470. "funding": [
  9471. {
  9472. "url": "https://phpunit.de/sponsors.html",
  9473. "type": "custom"
  9474. },
  9475. {
  9476. "url": "https://github.com/sebastianbergmann",
  9477. "type": "github"
  9478. },
  9479. {
  9480. "url": "https://liberapay.com/sebastianbergmann",
  9481. "type": "liberapay"
  9482. },
  9483. {
  9484. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9485. "type": "thanks_dev"
  9486. },
  9487. {
  9488. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9489. "type": "tidelift"
  9490. }
  9491. ],
  9492. "time": "2025-12-01T07:35:08+00:00"
  9493. },
  9494. {
  9495. "name": "sebastian/cli-parser",
  9496. "version": "1.0.2",
  9497. "source": {
  9498. "type": "git",
  9499. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9500. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9501. },
  9502. "dist": {
  9503. "type": "zip",
  9504. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9505. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9506. "shasum": "",
  9507. "mirrors": [
  9508. {
  9509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9510. "preferred": true
  9511. }
  9512. ]
  9513. },
  9514. "require": {
  9515. "php": ">=7.3"
  9516. },
  9517. "require-dev": {
  9518. "phpunit/phpunit": "^9.3"
  9519. },
  9520. "type": "library",
  9521. "extra": {
  9522. "branch-alias": {
  9523. "dev-master": "1.0-dev"
  9524. }
  9525. },
  9526. "autoload": {
  9527. "classmap": [
  9528. "src/"
  9529. ]
  9530. },
  9531. "notification-url": "https://packagist.org/downloads/",
  9532. "license": [
  9533. "BSD-3-Clause"
  9534. ],
  9535. "authors": [
  9536. {
  9537. "name": "Sebastian Bergmann",
  9538. "email": "sebastian@phpunit.de",
  9539. "role": "lead"
  9540. }
  9541. ],
  9542. "description": "Library for parsing CLI options",
  9543. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9544. "support": {
  9545. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9546. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9547. },
  9548. "funding": [
  9549. {
  9550. "url": "https://github.com/sebastianbergmann",
  9551. "type": "github"
  9552. }
  9553. ],
  9554. "time": "2024-03-02T06:27:43+00:00"
  9555. },
  9556. {
  9557. "name": "sebastian/code-unit",
  9558. "version": "1.0.8",
  9559. "source": {
  9560. "type": "git",
  9561. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9562. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9563. },
  9564. "dist": {
  9565. "type": "zip",
  9566. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9567. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9568. "shasum": "",
  9569. "mirrors": [
  9570. {
  9571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9572. "preferred": true
  9573. }
  9574. ]
  9575. },
  9576. "require": {
  9577. "php": ">=7.3"
  9578. },
  9579. "require-dev": {
  9580. "phpunit/phpunit": "^9.3"
  9581. },
  9582. "type": "library",
  9583. "extra": {
  9584. "branch-alias": {
  9585. "dev-master": "1.0-dev"
  9586. }
  9587. },
  9588. "autoload": {
  9589. "classmap": [
  9590. "src/"
  9591. ]
  9592. },
  9593. "notification-url": "https://packagist.org/downloads/",
  9594. "license": [
  9595. "BSD-3-Clause"
  9596. ],
  9597. "authors": [
  9598. {
  9599. "name": "Sebastian Bergmann",
  9600. "email": "sebastian@phpunit.de",
  9601. "role": "lead"
  9602. }
  9603. ],
  9604. "description": "Collection of value objects that represent the PHP code units",
  9605. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9606. "support": {
  9607. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9608. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9609. },
  9610. "funding": [
  9611. {
  9612. "url": "https://github.com/sebastianbergmann",
  9613. "type": "github"
  9614. }
  9615. ],
  9616. "time": "2020-10-26T13:08:54+00:00"
  9617. },
  9618. {
  9619. "name": "sebastian/code-unit-reverse-lookup",
  9620. "version": "2.0.3",
  9621. "source": {
  9622. "type": "git",
  9623. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9624. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9625. },
  9626. "dist": {
  9627. "type": "zip",
  9628. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9629. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9630. "shasum": "",
  9631. "mirrors": [
  9632. {
  9633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9634. "preferred": true
  9635. }
  9636. ]
  9637. },
  9638. "require": {
  9639. "php": ">=7.3"
  9640. },
  9641. "require-dev": {
  9642. "phpunit/phpunit": "^9.3"
  9643. },
  9644. "type": "library",
  9645. "extra": {
  9646. "branch-alias": {
  9647. "dev-master": "2.0-dev"
  9648. }
  9649. },
  9650. "autoload": {
  9651. "classmap": [
  9652. "src/"
  9653. ]
  9654. },
  9655. "notification-url": "https://packagist.org/downloads/",
  9656. "license": [
  9657. "BSD-3-Clause"
  9658. ],
  9659. "authors": [
  9660. {
  9661. "name": "Sebastian Bergmann",
  9662. "email": "sebastian@phpunit.de"
  9663. }
  9664. ],
  9665. "description": "Looks up which function or method a line of code belongs to",
  9666. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9667. "support": {
  9668. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9669. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9670. },
  9671. "funding": [
  9672. {
  9673. "url": "https://github.com/sebastianbergmann",
  9674. "type": "github"
  9675. }
  9676. ],
  9677. "time": "2020-09-28T05:30:19+00:00"
  9678. },
  9679. {
  9680. "name": "sebastian/comparator",
  9681. "version": "4.0.x-dev",
  9682. "source": {
  9683. "type": "git",
  9684. "url": "https://github.com/sebastianbergmann/comparator.git",
  9685. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5"
  9686. },
  9687. "dist": {
  9688. "type": "zip",
  9689. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9690. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9691. "shasum": "",
  9692. "mirrors": [
  9693. {
  9694. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9695. "preferred": true
  9696. }
  9697. ]
  9698. },
  9699. "require": {
  9700. "php": ">=7.3",
  9701. "sebastian/diff": "^4.0",
  9702. "sebastian/exporter": "^4.0"
  9703. },
  9704. "require-dev": {
  9705. "phpunit/phpunit": "^9.3"
  9706. },
  9707. "type": "library",
  9708. "extra": {
  9709. "branch-alias": {
  9710. "dev-master": "4.0-dev"
  9711. }
  9712. },
  9713. "autoload": {
  9714. "classmap": [
  9715. "src/"
  9716. ]
  9717. },
  9718. "notification-url": "https://packagist.org/downloads/",
  9719. "license": [
  9720. "BSD-3-Clause"
  9721. ],
  9722. "authors": [
  9723. {
  9724. "name": "Sebastian Bergmann",
  9725. "email": "sebastian@phpunit.de"
  9726. },
  9727. {
  9728. "name": "Jeff Welch",
  9729. "email": "whatthejeff@gmail.com"
  9730. },
  9731. {
  9732. "name": "Volker Dusch",
  9733. "email": "github@wallbash.com"
  9734. },
  9735. {
  9736. "name": "Bernhard Schussek",
  9737. "email": "bschussek@2bepublished.at"
  9738. }
  9739. ],
  9740. "description": "Provides the functionality to compare PHP values for equality",
  9741. "homepage": "https://github.com/sebastianbergmann/comparator",
  9742. "keywords": [
  9743. "comparator",
  9744. "compare",
  9745. "equality"
  9746. ],
  9747. "support": {
  9748. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9749. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.9"
  9750. },
  9751. "funding": [
  9752. {
  9753. "url": "https://github.com/sebastianbergmann",
  9754. "type": "github"
  9755. },
  9756. {
  9757. "url": "https://liberapay.com/sebastianbergmann",
  9758. "type": "liberapay"
  9759. },
  9760. {
  9761. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9762. "type": "thanks_dev"
  9763. },
  9764. {
  9765. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  9766. "type": "tidelift"
  9767. }
  9768. ],
  9769. "time": "2025-08-10T06:51:50+00:00"
  9770. },
  9771. {
  9772. "name": "sebastian/complexity",
  9773. "version": "2.0.3",
  9774. "source": {
  9775. "type": "git",
  9776. "url": "https://github.com/sebastianbergmann/complexity.git",
  9777. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9778. },
  9779. "dist": {
  9780. "type": "zip",
  9781. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9782. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9783. "shasum": "",
  9784. "mirrors": [
  9785. {
  9786. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9787. "preferred": true
  9788. }
  9789. ]
  9790. },
  9791. "require": {
  9792. "nikic/php-parser": "^4.18 || ^5.0",
  9793. "php": ">=7.3"
  9794. },
  9795. "require-dev": {
  9796. "phpunit/phpunit": "^9.3"
  9797. },
  9798. "type": "library",
  9799. "extra": {
  9800. "branch-alias": {
  9801. "dev-master": "2.0-dev"
  9802. }
  9803. },
  9804. "autoload": {
  9805. "classmap": [
  9806. "src/"
  9807. ]
  9808. },
  9809. "notification-url": "https://packagist.org/downloads/",
  9810. "license": [
  9811. "BSD-3-Clause"
  9812. ],
  9813. "authors": [
  9814. {
  9815. "name": "Sebastian Bergmann",
  9816. "email": "sebastian@phpunit.de",
  9817. "role": "lead"
  9818. }
  9819. ],
  9820. "description": "Library for calculating the complexity of PHP code units",
  9821. "homepage": "https://github.com/sebastianbergmann/complexity",
  9822. "support": {
  9823. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9824. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9825. },
  9826. "funding": [
  9827. {
  9828. "url": "https://github.com/sebastianbergmann",
  9829. "type": "github"
  9830. }
  9831. ],
  9832. "time": "2023-12-22T06:19:30+00:00"
  9833. },
  9834. {
  9835. "name": "sebastian/diff",
  9836. "version": "4.0.6",
  9837. "source": {
  9838. "type": "git",
  9839. "url": "https://github.com/sebastianbergmann/diff.git",
  9840. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9841. },
  9842. "dist": {
  9843. "type": "zip",
  9844. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9845. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9846. "shasum": "",
  9847. "mirrors": [
  9848. {
  9849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9850. "preferred": true
  9851. }
  9852. ]
  9853. },
  9854. "require": {
  9855. "php": ">=7.3"
  9856. },
  9857. "require-dev": {
  9858. "phpunit/phpunit": "^9.3",
  9859. "symfony/process": "^4.2 || ^5"
  9860. },
  9861. "type": "library",
  9862. "extra": {
  9863. "branch-alias": {
  9864. "dev-master": "4.0-dev"
  9865. }
  9866. },
  9867. "autoload": {
  9868. "classmap": [
  9869. "src/"
  9870. ]
  9871. },
  9872. "notification-url": "https://packagist.org/downloads/",
  9873. "license": [
  9874. "BSD-3-Clause"
  9875. ],
  9876. "authors": [
  9877. {
  9878. "name": "Sebastian Bergmann",
  9879. "email": "sebastian@phpunit.de"
  9880. },
  9881. {
  9882. "name": "Kore Nordmann",
  9883. "email": "mail@kore-nordmann.de"
  9884. }
  9885. ],
  9886. "description": "Diff implementation",
  9887. "homepage": "https://github.com/sebastianbergmann/diff",
  9888. "keywords": [
  9889. "diff",
  9890. "udiff",
  9891. "unidiff",
  9892. "unified diff"
  9893. ],
  9894. "support": {
  9895. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9896. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9897. },
  9898. "funding": [
  9899. {
  9900. "url": "https://github.com/sebastianbergmann",
  9901. "type": "github"
  9902. }
  9903. ],
  9904. "time": "2024-03-02T06:30:58+00:00"
  9905. },
  9906. {
  9907. "name": "sebastian/environment",
  9908. "version": "5.1.5",
  9909. "source": {
  9910. "type": "git",
  9911. "url": "https://github.com/sebastianbergmann/environment.git",
  9912. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9913. },
  9914. "dist": {
  9915. "type": "zip",
  9916. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9917. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9918. "shasum": "",
  9919. "mirrors": [
  9920. {
  9921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9922. "preferred": true
  9923. }
  9924. ]
  9925. },
  9926. "require": {
  9927. "php": ">=7.3"
  9928. },
  9929. "require-dev": {
  9930. "phpunit/phpunit": "^9.3"
  9931. },
  9932. "suggest": {
  9933. "ext-posix": "*"
  9934. },
  9935. "type": "library",
  9936. "extra": {
  9937. "branch-alias": {
  9938. "dev-master": "5.1-dev"
  9939. }
  9940. },
  9941. "autoload": {
  9942. "classmap": [
  9943. "src/"
  9944. ]
  9945. },
  9946. "notification-url": "https://packagist.org/downloads/",
  9947. "license": [
  9948. "BSD-3-Clause"
  9949. ],
  9950. "authors": [
  9951. {
  9952. "name": "Sebastian Bergmann",
  9953. "email": "sebastian@phpunit.de"
  9954. }
  9955. ],
  9956. "description": "Provides functionality to handle HHVM/PHP environments",
  9957. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9958. "keywords": [
  9959. "Xdebug",
  9960. "environment",
  9961. "hhvm"
  9962. ],
  9963. "support": {
  9964. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9965. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9966. },
  9967. "funding": [
  9968. {
  9969. "url": "https://github.com/sebastianbergmann",
  9970. "type": "github"
  9971. }
  9972. ],
  9973. "time": "2023-02-03T06:03:51+00:00"
  9974. },
  9975. {
  9976. "name": "sebastian/exporter",
  9977. "version": "4.0.8",
  9978. "source": {
  9979. "type": "git",
  9980. "url": "https://github.com/sebastianbergmann/exporter.git",
  9981. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
  9982. },
  9983. "dist": {
  9984. "type": "zip",
  9985. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  9986. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  9987. "shasum": "",
  9988. "mirrors": [
  9989. {
  9990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9991. "preferred": true
  9992. }
  9993. ]
  9994. },
  9995. "require": {
  9996. "php": ">=7.3",
  9997. "sebastian/recursion-context": "^4.0"
  9998. },
  9999. "require-dev": {
  10000. "ext-mbstring": "*",
  10001. "phpunit/phpunit": "^9.3"
  10002. },
  10003. "type": "library",
  10004. "extra": {
  10005. "branch-alias": {
  10006. "dev-master": "4.0-dev"
  10007. }
  10008. },
  10009. "autoload": {
  10010. "classmap": [
  10011. "src/"
  10012. ]
  10013. },
  10014. "notification-url": "https://packagist.org/downloads/",
  10015. "license": [
  10016. "BSD-3-Clause"
  10017. ],
  10018. "authors": [
  10019. {
  10020. "name": "Sebastian Bergmann",
  10021. "email": "sebastian@phpunit.de"
  10022. },
  10023. {
  10024. "name": "Jeff Welch",
  10025. "email": "whatthejeff@gmail.com"
  10026. },
  10027. {
  10028. "name": "Volker Dusch",
  10029. "email": "github@wallbash.com"
  10030. },
  10031. {
  10032. "name": "Adam Harvey",
  10033. "email": "aharvey@php.net"
  10034. },
  10035. {
  10036. "name": "Bernhard Schussek",
  10037. "email": "bschussek@gmail.com"
  10038. }
  10039. ],
  10040. "description": "Provides the functionality to export PHP variables for visualization",
  10041. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10042. "keywords": [
  10043. "export",
  10044. "exporter"
  10045. ],
  10046. "support": {
  10047. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10048. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.8"
  10049. },
  10050. "funding": [
  10051. {
  10052. "url": "https://github.com/sebastianbergmann",
  10053. "type": "github"
  10054. },
  10055. {
  10056. "url": "https://liberapay.com/sebastianbergmann",
  10057. "type": "liberapay"
  10058. },
  10059. {
  10060. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10061. "type": "thanks_dev"
  10062. },
  10063. {
  10064. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  10065. "type": "tidelift"
  10066. }
  10067. ],
  10068. "time": "2025-09-24T06:03:27+00:00"
  10069. },
  10070. {
  10071. "name": "sebastian/global-state",
  10072. "version": "5.0.8",
  10073. "source": {
  10074. "type": "git",
  10075. "url": "https://github.com/sebastianbergmann/global-state.git",
  10076. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  10077. },
  10078. "dist": {
  10079. "type": "zip",
  10080. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10081. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10082. "shasum": "",
  10083. "mirrors": [
  10084. {
  10085. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10086. "preferred": true
  10087. }
  10088. ]
  10089. },
  10090. "require": {
  10091. "php": ">=7.3",
  10092. "sebastian/object-reflector": "^2.0",
  10093. "sebastian/recursion-context": "^4.0"
  10094. },
  10095. "require-dev": {
  10096. "ext-dom": "*",
  10097. "phpunit/phpunit": "^9.3"
  10098. },
  10099. "suggest": {
  10100. "ext-uopz": "*"
  10101. },
  10102. "type": "library",
  10103. "extra": {
  10104. "branch-alias": {
  10105. "dev-master": "5.0-dev"
  10106. }
  10107. },
  10108. "autoload": {
  10109. "classmap": [
  10110. "src/"
  10111. ]
  10112. },
  10113. "notification-url": "https://packagist.org/downloads/",
  10114. "license": [
  10115. "BSD-3-Clause"
  10116. ],
  10117. "authors": [
  10118. {
  10119. "name": "Sebastian Bergmann",
  10120. "email": "sebastian@phpunit.de"
  10121. }
  10122. ],
  10123. "description": "Snapshotting of global state",
  10124. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10125. "keywords": [
  10126. "global state"
  10127. ],
  10128. "support": {
  10129. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10130. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  10131. },
  10132. "funding": [
  10133. {
  10134. "url": "https://github.com/sebastianbergmann",
  10135. "type": "github"
  10136. },
  10137. {
  10138. "url": "https://liberapay.com/sebastianbergmann",
  10139. "type": "liberapay"
  10140. },
  10141. {
  10142. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10143. "type": "thanks_dev"
  10144. },
  10145. {
  10146. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  10147. "type": "tidelift"
  10148. }
  10149. ],
  10150. "time": "2025-08-10T07:10:35+00:00"
  10151. },
  10152. {
  10153. "name": "sebastian/lines-of-code",
  10154. "version": "1.0.4",
  10155. "source": {
  10156. "type": "git",
  10157. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10158. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10159. },
  10160. "dist": {
  10161. "type": "zip",
  10162. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10163. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10164. "shasum": "",
  10165. "mirrors": [
  10166. {
  10167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10168. "preferred": true
  10169. }
  10170. ]
  10171. },
  10172. "require": {
  10173. "nikic/php-parser": "^4.18 || ^5.0",
  10174. "php": ">=7.3"
  10175. },
  10176. "require-dev": {
  10177. "phpunit/phpunit": "^9.3"
  10178. },
  10179. "type": "library",
  10180. "extra": {
  10181. "branch-alias": {
  10182. "dev-master": "1.0-dev"
  10183. }
  10184. },
  10185. "autoload": {
  10186. "classmap": [
  10187. "src/"
  10188. ]
  10189. },
  10190. "notification-url": "https://packagist.org/downloads/",
  10191. "license": [
  10192. "BSD-3-Clause"
  10193. ],
  10194. "authors": [
  10195. {
  10196. "name": "Sebastian Bergmann",
  10197. "email": "sebastian@phpunit.de",
  10198. "role": "lead"
  10199. }
  10200. ],
  10201. "description": "Library for counting the lines of code in PHP source code",
  10202. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10203. "support": {
  10204. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10205. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10206. },
  10207. "funding": [
  10208. {
  10209. "url": "https://github.com/sebastianbergmann",
  10210. "type": "github"
  10211. }
  10212. ],
  10213. "time": "2023-12-22T06:20:34+00:00"
  10214. },
  10215. {
  10216. "name": "sebastian/object-enumerator",
  10217. "version": "4.0.4",
  10218. "source": {
  10219. "type": "git",
  10220. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10221. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10222. },
  10223. "dist": {
  10224. "type": "zip",
  10225. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10226. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10227. "shasum": "",
  10228. "mirrors": [
  10229. {
  10230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10231. "preferred": true
  10232. }
  10233. ]
  10234. },
  10235. "require": {
  10236. "php": ">=7.3",
  10237. "sebastian/object-reflector": "^2.0",
  10238. "sebastian/recursion-context": "^4.0"
  10239. },
  10240. "require-dev": {
  10241. "phpunit/phpunit": "^9.3"
  10242. },
  10243. "type": "library",
  10244. "extra": {
  10245. "branch-alias": {
  10246. "dev-master": "4.0-dev"
  10247. }
  10248. },
  10249. "autoload": {
  10250. "classmap": [
  10251. "src/"
  10252. ]
  10253. },
  10254. "notification-url": "https://packagist.org/downloads/",
  10255. "license": [
  10256. "BSD-3-Clause"
  10257. ],
  10258. "authors": [
  10259. {
  10260. "name": "Sebastian Bergmann",
  10261. "email": "sebastian@phpunit.de"
  10262. }
  10263. ],
  10264. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10265. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10266. "support": {
  10267. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10268. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10269. },
  10270. "funding": [
  10271. {
  10272. "url": "https://github.com/sebastianbergmann",
  10273. "type": "github"
  10274. }
  10275. ],
  10276. "time": "2020-10-26T13:12:34+00:00"
  10277. },
  10278. {
  10279. "name": "sebastian/object-reflector",
  10280. "version": "2.0.4",
  10281. "source": {
  10282. "type": "git",
  10283. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10284. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10285. },
  10286. "dist": {
  10287. "type": "zip",
  10288. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10289. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10290. "shasum": "",
  10291. "mirrors": [
  10292. {
  10293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10294. "preferred": true
  10295. }
  10296. ]
  10297. },
  10298. "require": {
  10299. "php": ">=7.3"
  10300. },
  10301. "require-dev": {
  10302. "phpunit/phpunit": "^9.3"
  10303. },
  10304. "type": "library",
  10305. "extra": {
  10306. "branch-alias": {
  10307. "dev-master": "2.0-dev"
  10308. }
  10309. },
  10310. "autoload": {
  10311. "classmap": [
  10312. "src/"
  10313. ]
  10314. },
  10315. "notification-url": "https://packagist.org/downloads/",
  10316. "license": [
  10317. "BSD-3-Clause"
  10318. ],
  10319. "authors": [
  10320. {
  10321. "name": "Sebastian Bergmann",
  10322. "email": "sebastian@phpunit.de"
  10323. }
  10324. ],
  10325. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10326. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10327. "support": {
  10328. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10329. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10330. },
  10331. "funding": [
  10332. {
  10333. "url": "https://github.com/sebastianbergmann",
  10334. "type": "github"
  10335. }
  10336. ],
  10337. "time": "2020-10-26T13:14:26+00:00"
  10338. },
  10339. {
  10340. "name": "sebastian/recursion-context",
  10341. "version": "4.0.5",
  10342. "source": {
  10343. "type": "git",
  10344. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10345. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10346. },
  10347. "dist": {
  10348. "type": "zip",
  10349. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10350. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10351. "shasum": "",
  10352. "mirrors": [
  10353. {
  10354. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10355. "preferred": true
  10356. }
  10357. ]
  10358. },
  10359. "require": {
  10360. "php": ">=7.3"
  10361. },
  10362. "require-dev": {
  10363. "phpunit/phpunit": "^9.3"
  10364. },
  10365. "type": "library",
  10366. "extra": {
  10367. "branch-alias": {
  10368. "dev-master": "4.0-dev"
  10369. }
  10370. },
  10371. "autoload": {
  10372. "classmap": [
  10373. "src/"
  10374. ]
  10375. },
  10376. "notification-url": "https://packagist.org/downloads/",
  10377. "license": [
  10378. "BSD-3-Clause"
  10379. ],
  10380. "authors": [
  10381. {
  10382. "name": "Sebastian Bergmann",
  10383. "email": "sebastian@phpunit.de"
  10384. },
  10385. {
  10386. "name": "Jeff Welch",
  10387. "email": "whatthejeff@gmail.com"
  10388. },
  10389. {
  10390. "name": "Adam Harvey",
  10391. "email": "aharvey@php.net"
  10392. }
  10393. ],
  10394. "description": "Provides functionality to recursively process PHP variables",
  10395. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10396. "support": {
  10397. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10398. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10399. },
  10400. "funding": [
  10401. {
  10402. "url": "https://github.com/sebastianbergmann",
  10403. "type": "github"
  10404. }
  10405. ],
  10406. "time": "2023-02-03T06:07:39+00:00"
  10407. },
  10408. {
  10409. "name": "sebastian/resource-operations",
  10410. "version": "3.0.4",
  10411. "source": {
  10412. "type": "git",
  10413. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10414. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10415. },
  10416. "dist": {
  10417. "type": "zip",
  10418. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10419. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10420. "shasum": "",
  10421. "mirrors": [
  10422. {
  10423. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10424. "preferred": true
  10425. }
  10426. ]
  10427. },
  10428. "require": {
  10429. "php": ">=7.3"
  10430. },
  10431. "require-dev": {
  10432. "phpunit/phpunit": "^9.0"
  10433. },
  10434. "type": "library",
  10435. "extra": {
  10436. "branch-alias": {
  10437. "dev-main": "3.0-dev"
  10438. }
  10439. },
  10440. "autoload": {
  10441. "classmap": [
  10442. "src/"
  10443. ]
  10444. },
  10445. "notification-url": "https://packagist.org/downloads/",
  10446. "license": [
  10447. "BSD-3-Clause"
  10448. ],
  10449. "authors": [
  10450. {
  10451. "name": "Sebastian Bergmann",
  10452. "email": "sebastian@phpunit.de"
  10453. }
  10454. ],
  10455. "description": "Provides a list of PHP built-in functions that operate on resources",
  10456. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10457. "support": {
  10458. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10459. },
  10460. "funding": [
  10461. {
  10462. "url": "https://github.com/sebastianbergmann",
  10463. "type": "github"
  10464. }
  10465. ],
  10466. "abandoned": true,
  10467. "time": "2024-03-14T16:00:52+00:00"
  10468. },
  10469. {
  10470. "name": "sebastian/type",
  10471. "version": "3.2.1",
  10472. "source": {
  10473. "type": "git",
  10474. "url": "https://github.com/sebastianbergmann/type.git",
  10475. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10476. },
  10477. "dist": {
  10478. "type": "zip",
  10479. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10480. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10481. "shasum": "",
  10482. "mirrors": [
  10483. {
  10484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10485. "preferred": true
  10486. }
  10487. ]
  10488. },
  10489. "require": {
  10490. "php": ">=7.3"
  10491. },
  10492. "require-dev": {
  10493. "phpunit/phpunit": "^9.5"
  10494. },
  10495. "type": "library",
  10496. "extra": {
  10497. "branch-alias": {
  10498. "dev-master": "3.2-dev"
  10499. }
  10500. },
  10501. "autoload": {
  10502. "classmap": [
  10503. "src/"
  10504. ]
  10505. },
  10506. "notification-url": "https://packagist.org/downloads/",
  10507. "license": [
  10508. "BSD-3-Clause"
  10509. ],
  10510. "authors": [
  10511. {
  10512. "name": "Sebastian Bergmann",
  10513. "email": "sebastian@phpunit.de",
  10514. "role": "lead"
  10515. }
  10516. ],
  10517. "description": "Collection of value objects that represent the types of the PHP type system",
  10518. "homepage": "https://github.com/sebastianbergmann/type",
  10519. "support": {
  10520. "issues": "https://github.com/sebastianbergmann/type/issues",
  10521. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10522. },
  10523. "funding": [
  10524. {
  10525. "url": "https://github.com/sebastianbergmann",
  10526. "type": "github"
  10527. }
  10528. ],
  10529. "time": "2023-02-03T06:13:03+00:00"
  10530. },
  10531. {
  10532. "name": "sebastian/version",
  10533. "version": "3.0.2",
  10534. "source": {
  10535. "type": "git",
  10536. "url": "https://github.com/sebastianbergmann/version.git",
  10537. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10538. },
  10539. "dist": {
  10540. "type": "zip",
  10541. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10542. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10543. "shasum": "",
  10544. "mirrors": [
  10545. {
  10546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10547. "preferred": true
  10548. }
  10549. ]
  10550. },
  10551. "require": {
  10552. "php": ">=7.3"
  10553. },
  10554. "type": "library",
  10555. "extra": {
  10556. "branch-alias": {
  10557. "dev-master": "3.0-dev"
  10558. }
  10559. },
  10560. "autoload": {
  10561. "classmap": [
  10562. "src/"
  10563. ]
  10564. },
  10565. "notification-url": "https://packagist.org/downloads/",
  10566. "license": [
  10567. "BSD-3-Clause"
  10568. ],
  10569. "authors": [
  10570. {
  10571. "name": "Sebastian Bergmann",
  10572. "email": "sebastian@phpunit.de",
  10573. "role": "lead"
  10574. }
  10575. ],
  10576. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10577. "homepage": "https://github.com/sebastianbergmann/version",
  10578. "support": {
  10579. "issues": "https://github.com/sebastianbergmann/version/issues",
  10580. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10581. },
  10582. "funding": [
  10583. {
  10584. "url": "https://github.com/sebastianbergmann",
  10585. "type": "github"
  10586. }
  10587. ],
  10588. "time": "2020-09-28T06:39:44+00:00"
  10589. },
  10590. {
  10591. "name": "theseer/tokenizer",
  10592. "version": "1.3.1",
  10593. "source": {
  10594. "type": "git",
  10595. "url": "https://github.com/theseer/tokenizer.git",
  10596. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  10597. },
  10598. "dist": {
  10599. "type": "zip",
  10600. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  10601. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  10602. "shasum": "",
  10603. "mirrors": [
  10604. {
  10605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10606. "preferred": true
  10607. }
  10608. ]
  10609. },
  10610. "require": {
  10611. "ext-dom": "*",
  10612. "ext-tokenizer": "*",
  10613. "ext-xmlwriter": "*",
  10614. "php": "^7.2 || ^8.0"
  10615. },
  10616. "type": "library",
  10617. "autoload": {
  10618. "classmap": [
  10619. "src/"
  10620. ]
  10621. },
  10622. "notification-url": "https://packagist.org/downloads/",
  10623. "license": [
  10624. "BSD-3-Clause"
  10625. ],
  10626. "authors": [
  10627. {
  10628. "name": "Arne Blankerts",
  10629. "email": "arne@blankerts.de",
  10630. "role": "Developer"
  10631. }
  10632. ],
  10633. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10634. "support": {
  10635. "issues": "https://github.com/theseer/tokenizer/issues",
  10636. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  10637. },
  10638. "funding": [
  10639. {
  10640. "url": "https://github.com/theseer",
  10641. "type": "github"
  10642. }
  10643. ],
  10644. "time": "2025-11-17T20:03:58+00:00"
  10645. }
  10646. ],
  10647. "aliases": [],
  10648. "minimum-stability": "dev",
  10649. "stability-flags": {
  10650. "fukuball/jieba-php": 20
  10651. },
  10652. "prefer-stable": true,
  10653. "prefer-lowest": false,
  10654. "platform": {
  10655. "php": "^8.0",
  10656. "ext-json": "*"
  10657. },
  10658. "platform-dev": {},
  10659. "plugin-api-version": "2.6.0"
  10660. }