composer.lock 388 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726
  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": "eae1738b6191cdcf82d37fe520e201e9",
  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": "8.x-dev",
  1739. "source": {
  1740. "type": "git",
  1741. "url": "https://github.com/laravel/framework.git",
  1742. "reference": "863d9289a5150e19ee8f6a09631a6ce441f701bc"
  1743. },
  1744. "dist": {
  1745. "type": "zip",
  1746. "url": "https://api.github.com/repos/laravel/framework/zipball/863d9289a5150e19ee8f6a09631a6ce441f701bc",
  1747. "reference": "863d9289a5150e19ee8f6a09631a6ce441f701bc",
  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": "2025-03-24T11:25:05+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": "qiniu/php-sdk",
  4438. "version": "v7.14.0",
  4439. "source": {
  4440. "type": "git",
  4441. "url": "https://github.com/qiniu/php-sdk.git",
  4442. "reference": "ee752ffa7263ce99fca0bd7340cf13c486a3516c"
  4443. },
  4444. "dist": {
  4445. "type": "zip",
  4446. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/ee752ffa7263ce99fca0bd7340cf13c486a3516c",
  4447. "reference": "ee752ffa7263ce99fca0bd7340cf13c486a3516c",
  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. "ext-curl": "*",
  4458. "ext-xml": "*",
  4459. "myclabs/php-enum": "~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4",
  4460. "php": ">=5.3.3"
  4461. },
  4462. "require-dev": {
  4463. "paragonie/random_compat": ">=2",
  4464. "phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4",
  4465. "squizlabs/php_codesniffer": "^2.3 || ~3.6"
  4466. },
  4467. "type": "library",
  4468. "autoload": {
  4469. "files": [
  4470. "src/Qiniu/functions.php",
  4471. "src/Qiniu/Http/Middleware/Middleware.php"
  4472. ],
  4473. "psr-4": {
  4474. "Qiniu\\": "src/Qiniu"
  4475. }
  4476. },
  4477. "notification-url": "https://packagist.org/downloads/",
  4478. "license": [
  4479. "MIT"
  4480. ],
  4481. "authors": [
  4482. {
  4483. "name": "Qiniu",
  4484. "email": "sdk@qiniu.com",
  4485. "homepage": "http://www.qiniu.com"
  4486. }
  4487. ],
  4488. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  4489. "homepage": "http://developer.qiniu.com/",
  4490. "keywords": [
  4491. "cloud",
  4492. "qiniu",
  4493. "sdk",
  4494. "storage"
  4495. ],
  4496. "support": {
  4497. "issues": "https://github.com/qiniu/php-sdk/issues",
  4498. "source": "https://github.com/qiniu/php-sdk/tree/v7.14.0"
  4499. },
  4500. "time": "2024-10-25T08:39:01+00:00"
  4501. },
  4502. {
  4503. "name": "ralouphie/getallheaders",
  4504. "version": "3.0.3",
  4505. "source": {
  4506. "type": "git",
  4507. "url": "https://github.com/ralouphie/getallheaders.git",
  4508. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4509. },
  4510. "dist": {
  4511. "type": "zip",
  4512. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4513. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4514. "shasum": "",
  4515. "mirrors": [
  4516. {
  4517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4518. "preferred": true
  4519. }
  4520. ]
  4521. },
  4522. "require": {
  4523. "php": ">=5.6"
  4524. },
  4525. "require-dev": {
  4526. "php-coveralls/php-coveralls": "^2.1",
  4527. "phpunit/phpunit": "^5 || ^6.5"
  4528. },
  4529. "type": "library",
  4530. "autoload": {
  4531. "files": [
  4532. "src/getallheaders.php"
  4533. ]
  4534. },
  4535. "notification-url": "https://packagist.org/downloads/",
  4536. "license": [
  4537. "MIT"
  4538. ],
  4539. "authors": [
  4540. {
  4541. "name": "Ralph Khattar",
  4542. "email": "ralph.khattar@gmail.com"
  4543. }
  4544. ],
  4545. "description": "A polyfill for getallheaders.",
  4546. "support": {
  4547. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4548. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4549. },
  4550. "time": "2019-03-08T08:55:37+00:00"
  4551. },
  4552. {
  4553. "name": "ramsey/collection",
  4554. "version": "1.3.0",
  4555. "source": {
  4556. "type": "git",
  4557. "url": "https://github.com/ramsey/collection.git",
  4558. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4559. },
  4560. "dist": {
  4561. "type": "zip",
  4562. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4563. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4564. "shasum": "",
  4565. "mirrors": [
  4566. {
  4567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4568. "preferred": true
  4569. }
  4570. ]
  4571. },
  4572. "require": {
  4573. "php": "^7.4 || ^8.0",
  4574. "symfony/polyfill-php81": "^1.23"
  4575. },
  4576. "require-dev": {
  4577. "captainhook/plugin-composer": "^5.3",
  4578. "ergebnis/composer-normalize": "^2.28.3",
  4579. "fakerphp/faker": "^1.21",
  4580. "hamcrest/hamcrest-php": "^2.0",
  4581. "jangregor/phpstan-prophecy": "^1.0",
  4582. "mockery/mockery": "^1.5",
  4583. "php-parallel-lint/php-console-highlighter": "^1.0",
  4584. "php-parallel-lint/php-parallel-lint": "^1.3",
  4585. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4586. "phpspec/prophecy-phpunit": "^2.0",
  4587. "phpstan/extension-installer": "^1.2",
  4588. "phpstan/phpstan": "^1.9",
  4589. "phpstan/phpstan-mockery": "^1.1",
  4590. "phpstan/phpstan-phpunit": "^1.3",
  4591. "phpunit/phpunit": "^9.5",
  4592. "psalm/plugin-mockery": "^1.1",
  4593. "psalm/plugin-phpunit": "^0.18.4",
  4594. "ramsey/coding-standard": "^2.0.3",
  4595. "ramsey/conventional-commits": "^1.3",
  4596. "vimeo/psalm": "^5.4"
  4597. },
  4598. "type": "library",
  4599. "extra": {
  4600. "captainhook": {
  4601. "force-install": true
  4602. },
  4603. "ramsey/conventional-commits": {
  4604. "configFile": "conventional-commits.json"
  4605. }
  4606. },
  4607. "autoload": {
  4608. "psr-4": {
  4609. "Ramsey\\Collection\\": "src/"
  4610. }
  4611. },
  4612. "notification-url": "https://packagist.org/downloads/",
  4613. "license": [
  4614. "MIT"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "Ben Ramsey",
  4619. "email": "ben@benramsey.com",
  4620. "homepage": "https://benramsey.com"
  4621. }
  4622. ],
  4623. "description": "A PHP library for representing and manipulating collections.",
  4624. "keywords": [
  4625. "array",
  4626. "collection",
  4627. "hash",
  4628. "map",
  4629. "queue",
  4630. "set"
  4631. ],
  4632. "support": {
  4633. "issues": "https://github.com/ramsey/collection/issues",
  4634. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4635. },
  4636. "funding": [
  4637. {
  4638. "url": "https://github.com/ramsey",
  4639. "type": "github"
  4640. },
  4641. {
  4642. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4643. "type": "tidelift"
  4644. }
  4645. ],
  4646. "time": "2022-12-27T19:12:24+00:00"
  4647. },
  4648. {
  4649. "name": "ramsey/uuid",
  4650. "version": "4.9.0",
  4651. "source": {
  4652. "type": "git",
  4653. "url": "https://github.com/ramsey/uuid.git",
  4654. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4655. },
  4656. "dist": {
  4657. "type": "zip",
  4658. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4659. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4660. "shasum": "",
  4661. "mirrors": [
  4662. {
  4663. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4664. "preferred": true
  4665. }
  4666. ]
  4667. },
  4668. "require": {
  4669. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4670. "php": "^8.0",
  4671. "ramsey/collection": "^1.2 || ^2.0"
  4672. },
  4673. "replace": {
  4674. "rhumsaa/uuid": "self.version"
  4675. },
  4676. "require-dev": {
  4677. "captainhook/captainhook": "^5.25",
  4678. "captainhook/plugin-composer": "^5.3",
  4679. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4680. "ergebnis/composer-normalize": "^2.47",
  4681. "mockery/mockery": "^1.6",
  4682. "paragonie/random-lib": "^2",
  4683. "php-mock/php-mock": "^2.6",
  4684. "php-mock/php-mock-mockery": "^1.5",
  4685. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4686. "phpbench/phpbench": "^1.2.14",
  4687. "phpstan/extension-installer": "^1.4",
  4688. "phpstan/phpstan": "^2.1",
  4689. "phpstan/phpstan-mockery": "^2.0",
  4690. "phpstan/phpstan-phpunit": "^2.0",
  4691. "phpunit/phpunit": "^9.6",
  4692. "slevomat/coding-standard": "^8.18",
  4693. "squizlabs/php_codesniffer": "^3.13"
  4694. },
  4695. "suggest": {
  4696. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4697. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4698. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4699. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4700. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4701. },
  4702. "type": "library",
  4703. "extra": {
  4704. "captainhook": {
  4705. "force-install": true
  4706. }
  4707. },
  4708. "autoload": {
  4709. "files": [
  4710. "src/functions.php"
  4711. ],
  4712. "psr-4": {
  4713. "Ramsey\\Uuid\\": "src/"
  4714. }
  4715. },
  4716. "notification-url": "https://packagist.org/downloads/",
  4717. "license": [
  4718. "MIT"
  4719. ],
  4720. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4721. "keywords": [
  4722. "guid",
  4723. "identifier",
  4724. "uuid"
  4725. ],
  4726. "support": {
  4727. "issues": "https://github.com/ramsey/uuid/issues",
  4728. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  4729. },
  4730. "time": "2025-06-25T14:20:11+00:00"
  4731. },
  4732. {
  4733. "name": "ratchet/rfc6455",
  4734. "version": "v0.3.1",
  4735. "source": {
  4736. "type": "git",
  4737. "url": "https://github.com/ratchetphp/RFC6455.git",
  4738. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  4739. },
  4740. "dist": {
  4741. "type": "zip",
  4742. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4743. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4744. "shasum": "",
  4745. "mirrors": [
  4746. {
  4747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4748. "preferred": true
  4749. }
  4750. ]
  4751. },
  4752. "require": {
  4753. "guzzlehttp/psr7": "^2 || ^1.7",
  4754. "php": ">=5.4.2"
  4755. },
  4756. "require-dev": {
  4757. "phpunit/phpunit": "^5.7",
  4758. "react/socket": "^1.3"
  4759. },
  4760. "type": "library",
  4761. "autoload": {
  4762. "psr-4": {
  4763. "Ratchet\\RFC6455\\": "src"
  4764. }
  4765. },
  4766. "notification-url": "https://packagist.org/downloads/",
  4767. "license": [
  4768. "MIT"
  4769. ],
  4770. "authors": [
  4771. {
  4772. "name": "Chris Boden",
  4773. "email": "cboden@gmail.com",
  4774. "role": "Developer"
  4775. },
  4776. {
  4777. "name": "Matt Bonneau",
  4778. "role": "Developer"
  4779. }
  4780. ],
  4781. "description": "RFC6455 WebSocket protocol handler",
  4782. "homepage": "http://socketo.me",
  4783. "keywords": [
  4784. "WebSockets",
  4785. "rfc6455",
  4786. "websocket"
  4787. ],
  4788. "support": {
  4789. "chat": "https://gitter.im/reactphp/reactphp",
  4790. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  4791. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  4792. },
  4793. "time": "2021-12-09T23:20:49+00:00"
  4794. },
  4795. {
  4796. "name": "react/cache",
  4797. "version": "v1.2.0",
  4798. "source": {
  4799. "type": "git",
  4800. "url": "https://github.com/reactphp/cache.git",
  4801. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4802. },
  4803. "dist": {
  4804. "type": "zip",
  4805. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4806. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4807. "shasum": "",
  4808. "mirrors": [
  4809. {
  4810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4811. "preferred": true
  4812. }
  4813. ]
  4814. },
  4815. "require": {
  4816. "php": ">=5.3.0",
  4817. "react/promise": "^3.0 || ^2.0 || ^1.1"
  4818. },
  4819. "require-dev": {
  4820. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  4821. },
  4822. "type": "library",
  4823. "autoload": {
  4824. "psr-4": {
  4825. "React\\Cache\\": "src/"
  4826. }
  4827. },
  4828. "notification-url": "https://packagist.org/downloads/",
  4829. "license": [
  4830. "MIT"
  4831. ],
  4832. "authors": [
  4833. {
  4834. "name": "Christian Lück",
  4835. "email": "christian@clue.engineering",
  4836. "homepage": "https://clue.engineering/"
  4837. },
  4838. {
  4839. "name": "Cees-Jan Kiewiet",
  4840. "email": "reactphp@ceesjankiewiet.nl",
  4841. "homepage": "https://wyrihaximus.net/"
  4842. },
  4843. {
  4844. "name": "Jan Sorgalla",
  4845. "email": "jsorgalla@gmail.com",
  4846. "homepage": "https://sorgalla.com/"
  4847. },
  4848. {
  4849. "name": "Chris Boden",
  4850. "email": "cboden@gmail.com",
  4851. "homepage": "https://cboden.dev/"
  4852. }
  4853. ],
  4854. "description": "Async, Promise-based cache interface for ReactPHP",
  4855. "keywords": [
  4856. "cache",
  4857. "caching",
  4858. "promise",
  4859. "reactphp"
  4860. ],
  4861. "support": {
  4862. "issues": "https://github.com/reactphp/cache/issues",
  4863. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  4864. },
  4865. "funding": [
  4866. {
  4867. "url": "https://opencollective.com/reactphp",
  4868. "type": "open_collective"
  4869. }
  4870. ],
  4871. "time": "2022-11-30T15:59:55+00:00"
  4872. },
  4873. {
  4874. "name": "react/dns",
  4875. "version": "v1.14.0",
  4876. "source": {
  4877. "type": "git",
  4878. "url": "https://github.com/reactphp/dns.git",
  4879. "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3"
  4880. },
  4881. "dist": {
  4882. "type": "zip",
  4883. "url": "https://api.github.com/repos/reactphp/dns/zipball/7562c05391f42701c1fccf189c8225fece1cd7c3",
  4884. "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3",
  4885. "shasum": "",
  4886. "mirrors": [
  4887. {
  4888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4889. "preferred": true
  4890. }
  4891. ]
  4892. },
  4893. "require": {
  4894. "php": ">=5.3.0",
  4895. "react/cache": "^1.0 || ^0.6 || ^0.5",
  4896. "react/event-loop": "^1.2",
  4897. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  4898. },
  4899. "require-dev": {
  4900. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4901. "react/async": "^4.3 || ^3 || ^2",
  4902. "react/promise-timer": "^1.11"
  4903. },
  4904. "type": "library",
  4905. "autoload": {
  4906. "psr-4": {
  4907. "React\\Dns\\": "src/"
  4908. }
  4909. },
  4910. "notification-url": "https://packagist.org/downloads/",
  4911. "license": [
  4912. "MIT"
  4913. ],
  4914. "authors": [
  4915. {
  4916. "name": "Christian Lück",
  4917. "email": "christian@clue.engineering",
  4918. "homepage": "https://clue.engineering/"
  4919. },
  4920. {
  4921. "name": "Cees-Jan Kiewiet",
  4922. "email": "reactphp@ceesjankiewiet.nl",
  4923. "homepage": "https://wyrihaximus.net/"
  4924. },
  4925. {
  4926. "name": "Jan Sorgalla",
  4927. "email": "jsorgalla@gmail.com",
  4928. "homepage": "https://sorgalla.com/"
  4929. },
  4930. {
  4931. "name": "Chris Boden",
  4932. "email": "cboden@gmail.com",
  4933. "homepage": "https://cboden.dev/"
  4934. }
  4935. ],
  4936. "description": "Async DNS resolver for ReactPHP",
  4937. "keywords": [
  4938. "async",
  4939. "dns",
  4940. "dns-resolver",
  4941. "reactphp"
  4942. ],
  4943. "support": {
  4944. "issues": "https://github.com/reactphp/dns/issues",
  4945. "source": "https://github.com/reactphp/dns/tree/v1.14.0"
  4946. },
  4947. "funding": [
  4948. {
  4949. "url": "https://opencollective.com/reactphp",
  4950. "type": "open_collective"
  4951. }
  4952. ],
  4953. "time": "2025-11-18T19:34:28+00:00"
  4954. },
  4955. {
  4956. "name": "react/event-loop",
  4957. "version": "v1.6.0",
  4958. "source": {
  4959. "type": "git",
  4960. "url": "https://github.com/reactphp/event-loop.git",
  4961. "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a"
  4962. },
  4963. "dist": {
  4964. "type": "zip",
  4965. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/ba276bda6083df7e0050fd9b33f66ad7a4ac747a",
  4966. "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a",
  4967. "shasum": "",
  4968. "mirrors": [
  4969. {
  4970. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4971. "preferred": true
  4972. }
  4973. ]
  4974. },
  4975. "require": {
  4976. "php": ">=5.3.0"
  4977. },
  4978. "require-dev": {
  4979. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4980. },
  4981. "suggest": {
  4982. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  4983. },
  4984. "type": "library",
  4985. "autoload": {
  4986. "psr-4": {
  4987. "React\\EventLoop\\": "src/"
  4988. }
  4989. },
  4990. "notification-url": "https://packagist.org/downloads/",
  4991. "license": [
  4992. "MIT"
  4993. ],
  4994. "authors": [
  4995. {
  4996. "name": "Christian Lück",
  4997. "email": "christian@clue.engineering",
  4998. "homepage": "https://clue.engineering/"
  4999. },
  5000. {
  5001. "name": "Cees-Jan Kiewiet",
  5002. "email": "reactphp@ceesjankiewiet.nl",
  5003. "homepage": "https://wyrihaximus.net/"
  5004. },
  5005. {
  5006. "name": "Jan Sorgalla",
  5007. "email": "jsorgalla@gmail.com",
  5008. "homepage": "https://sorgalla.com/"
  5009. },
  5010. {
  5011. "name": "Chris Boden",
  5012. "email": "cboden@gmail.com",
  5013. "homepage": "https://cboden.dev/"
  5014. }
  5015. ],
  5016. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  5017. "keywords": [
  5018. "asynchronous",
  5019. "event-loop"
  5020. ],
  5021. "support": {
  5022. "issues": "https://github.com/reactphp/event-loop/issues",
  5023. "source": "https://github.com/reactphp/event-loop/tree/v1.6.0"
  5024. },
  5025. "funding": [
  5026. {
  5027. "url": "https://opencollective.com/reactphp",
  5028. "type": "open_collective"
  5029. }
  5030. ],
  5031. "time": "2025-11-17T20:46:25+00:00"
  5032. },
  5033. {
  5034. "name": "react/promise",
  5035. "version": "v3.2.0",
  5036. "source": {
  5037. "type": "git",
  5038. "url": "https://github.com/reactphp/promise.git",
  5039. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  5040. },
  5041. "dist": {
  5042. "type": "zip",
  5043. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  5044. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  5045. "shasum": "",
  5046. "mirrors": [
  5047. {
  5048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5049. "preferred": true
  5050. }
  5051. ]
  5052. },
  5053. "require": {
  5054. "php": ">=7.1.0"
  5055. },
  5056. "require-dev": {
  5057. "phpstan/phpstan": "1.10.39 || 1.4.10",
  5058. "phpunit/phpunit": "^9.6 || ^7.5"
  5059. },
  5060. "type": "library",
  5061. "autoload": {
  5062. "files": [
  5063. "src/functions_include.php"
  5064. ],
  5065. "psr-4": {
  5066. "React\\Promise\\": "src/"
  5067. }
  5068. },
  5069. "notification-url": "https://packagist.org/downloads/",
  5070. "license": [
  5071. "MIT"
  5072. ],
  5073. "authors": [
  5074. {
  5075. "name": "Jan Sorgalla",
  5076. "email": "jsorgalla@gmail.com",
  5077. "homepage": "https://sorgalla.com/"
  5078. },
  5079. {
  5080. "name": "Christian Lück",
  5081. "email": "christian@clue.engineering",
  5082. "homepage": "https://clue.engineering/"
  5083. },
  5084. {
  5085. "name": "Cees-Jan Kiewiet",
  5086. "email": "reactphp@ceesjankiewiet.nl",
  5087. "homepage": "https://wyrihaximus.net/"
  5088. },
  5089. {
  5090. "name": "Chris Boden",
  5091. "email": "cboden@gmail.com",
  5092. "homepage": "https://cboden.dev/"
  5093. }
  5094. ],
  5095. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5096. "keywords": [
  5097. "promise",
  5098. "promises"
  5099. ],
  5100. "support": {
  5101. "issues": "https://github.com/reactphp/promise/issues",
  5102. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  5103. },
  5104. "funding": [
  5105. {
  5106. "url": "https://opencollective.com/reactphp",
  5107. "type": "open_collective"
  5108. }
  5109. ],
  5110. "time": "2024-05-24T10:39:05+00:00"
  5111. },
  5112. {
  5113. "name": "react/socket",
  5114. "version": "v1.16.0",
  5115. "source": {
  5116. "type": "git",
  5117. "url": "https://github.com/reactphp/socket.git",
  5118. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  5119. },
  5120. "dist": {
  5121. "type": "zip",
  5122. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5123. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5124. "shasum": "",
  5125. "mirrors": [
  5126. {
  5127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5128. "preferred": true
  5129. }
  5130. ]
  5131. },
  5132. "require": {
  5133. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5134. "php": ">=5.3.0",
  5135. "react/dns": "^1.13",
  5136. "react/event-loop": "^1.2",
  5137. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  5138. "react/stream": "^1.4"
  5139. },
  5140. "require-dev": {
  5141. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5142. "react/async": "^4.3 || ^3.3 || ^2",
  5143. "react/promise-stream": "^1.4",
  5144. "react/promise-timer": "^1.11"
  5145. },
  5146. "type": "library",
  5147. "autoload": {
  5148. "psr-4": {
  5149. "React\\Socket\\": "src/"
  5150. }
  5151. },
  5152. "notification-url": "https://packagist.org/downloads/",
  5153. "license": [
  5154. "MIT"
  5155. ],
  5156. "authors": [
  5157. {
  5158. "name": "Christian Lück",
  5159. "email": "christian@clue.engineering",
  5160. "homepage": "https://clue.engineering/"
  5161. },
  5162. {
  5163. "name": "Cees-Jan Kiewiet",
  5164. "email": "reactphp@ceesjankiewiet.nl",
  5165. "homepage": "https://wyrihaximus.net/"
  5166. },
  5167. {
  5168. "name": "Jan Sorgalla",
  5169. "email": "jsorgalla@gmail.com",
  5170. "homepage": "https://sorgalla.com/"
  5171. },
  5172. {
  5173. "name": "Chris Boden",
  5174. "email": "cboden@gmail.com",
  5175. "homepage": "https://cboden.dev/"
  5176. }
  5177. ],
  5178. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5179. "keywords": [
  5180. "Connection",
  5181. "Socket",
  5182. "async",
  5183. "reactphp",
  5184. "stream"
  5185. ],
  5186. "support": {
  5187. "issues": "https://github.com/reactphp/socket/issues",
  5188. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  5189. },
  5190. "funding": [
  5191. {
  5192. "url": "https://opencollective.com/reactphp",
  5193. "type": "open_collective"
  5194. }
  5195. ],
  5196. "time": "2024-07-26T10:38:09+00:00"
  5197. },
  5198. {
  5199. "name": "react/stream",
  5200. "version": "1.x-dev",
  5201. "source": {
  5202. "type": "git",
  5203. "url": "https://github.com/reactphp/stream.git",
  5204. "reference": "9decb8fa54f361877ba62c2d5e46bb4401779fb1"
  5205. },
  5206. "dist": {
  5207. "type": "zip",
  5208. "url": "https://api.github.com/repos/reactphp/stream/zipball/9decb8fa54f361877ba62c2d5e46bb4401779fb1",
  5209. "reference": "9decb8fa54f361877ba62c2d5e46bb4401779fb1",
  5210. "shasum": "",
  5211. "mirrors": [
  5212. {
  5213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5214. "preferred": true
  5215. }
  5216. ]
  5217. },
  5218. "require": {
  5219. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5220. "php": ">=5.3.8",
  5221. "react/event-loop": "^1.2"
  5222. },
  5223. "require-dev": {
  5224. "clue/stream-filter": "~1.2",
  5225. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5226. },
  5227. "type": "library",
  5228. "autoload": {
  5229. "psr-4": {
  5230. "React\\Stream\\": "src/"
  5231. }
  5232. },
  5233. "notification-url": "https://packagist.org/downloads/",
  5234. "license": [
  5235. "MIT"
  5236. ],
  5237. "authors": [
  5238. {
  5239. "name": "Christian Lück",
  5240. "email": "christian@clue.engineering",
  5241. "homepage": "https://clue.engineering/"
  5242. },
  5243. {
  5244. "name": "Cees-Jan Kiewiet",
  5245. "email": "reactphp@ceesjankiewiet.nl",
  5246. "homepage": "https://wyrihaximus.net/"
  5247. },
  5248. {
  5249. "name": "Jan Sorgalla",
  5250. "email": "jsorgalla@gmail.com",
  5251. "homepage": "https://sorgalla.com/"
  5252. },
  5253. {
  5254. "name": "Chris Boden",
  5255. "email": "cboden@gmail.com",
  5256. "homepage": "https://cboden.dev/"
  5257. }
  5258. ],
  5259. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5260. "keywords": [
  5261. "event-driven",
  5262. "io",
  5263. "non-blocking",
  5264. "pipe",
  5265. "reactphp",
  5266. "readable",
  5267. "stream",
  5268. "writable"
  5269. ],
  5270. "support": {
  5271. "issues": "https://github.com/reactphp/stream/issues",
  5272. "source": "https://github.com/reactphp/stream/tree/1.x"
  5273. },
  5274. "funding": [
  5275. {
  5276. "url": "https://opencollective.com/reactphp",
  5277. "type": "open_collective"
  5278. }
  5279. ],
  5280. "time": "2025-10-15T07:30:20+00:00"
  5281. },
  5282. {
  5283. "name": "socialiteproviders/manager",
  5284. "version": "v4.7.0",
  5285. "source": {
  5286. "type": "git",
  5287. "url": "https://github.com/SocialiteProviders/Manager.git",
  5288. "reference": "ab0691b82cec77efd90154c78f1854903455c82f"
  5289. },
  5290. "dist": {
  5291. "type": "zip",
  5292. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/ab0691b82cec77efd90154c78f1854903455c82f",
  5293. "reference": "ab0691b82cec77efd90154c78f1854903455c82f",
  5294. "shasum": "",
  5295. "mirrors": [
  5296. {
  5297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5298. "preferred": true
  5299. }
  5300. ]
  5301. },
  5302. "require": {
  5303. "illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0",
  5304. "laravel/socialite": "^5.5",
  5305. "php": "^8.0"
  5306. },
  5307. "require-dev": {
  5308. "mockery/mockery": "^1.2",
  5309. "phpunit/phpunit": "^9.0"
  5310. },
  5311. "type": "library",
  5312. "extra": {
  5313. "laravel": {
  5314. "providers": [
  5315. "SocialiteProviders\\Manager\\ServiceProvider"
  5316. ]
  5317. }
  5318. },
  5319. "autoload": {
  5320. "psr-4": {
  5321. "SocialiteProviders\\Manager\\": "src/"
  5322. }
  5323. },
  5324. "notification-url": "https://packagist.org/downloads/",
  5325. "license": [
  5326. "MIT"
  5327. ],
  5328. "authors": [
  5329. {
  5330. "name": "Andy Wendt",
  5331. "email": "andy@awendt.com"
  5332. },
  5333. {
  5334. "name": "Anton Komarev",
  5335. "email": "a.komarev@cybercog.su"
  5336. },
  5337. {
  5338. "name": "Miguel Piedrafita",
  5339. "email": "soy@miguelpiedrafita.com"
  5340. },
  5341. {
  5342. "name": "atymic",
  5343. "email": "atymicq@gmail.com",
  5344. "homepage": "https://atymic.dev"
  5345. }
  5346. ],
  5347. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  5348. "homepage": "https://socialiteproviders.com",
  5349. "keywords": [
  5350. "laravel",
  5351. "manager",
  5352. "oauth",
  5353. "providers",
  5354. "socialite"
  5355. ],
  5356. "support": {
  5357. "issues": "https://github.com/socialiteproviders/manager/issues",
  5358. "source": "https://github.com/socialiteproviders/manager"
  5359. },
  5360. "time": "2024-11-10T01:56:18+00:00"
  5361. },
  5362. {
  5363. "name": "socialiteproviders/weixin",
  5364. "version": "4.1.0",
  5365. "source": {
  5366. "type": "git",
  5367. "url": "https://github.com/SocialiteProviders/Weixin.git",
  5368. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  5369. },
  5370. "dist": {
  5371. "type": "zip",
  5372. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5373. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5374. "shasum": "",
  5375. "mirrors": [
  5376. {
  5377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5378. "preferred": true
  5379. }
  5380. ]
  5381. },
  5382. "require": {
  5383. "ext-json": "*",
  5384. "php": "^7.2 || ^8.0",
  5385. "socialiteproviders/manager": "~4.0"
  5386. },
  5387. "type": "library",
  5388. "autoload": {
  5389. "psr-4": {
  5390. "SocialiteProviders\\Weixin\\": ""
  5391. }
  5392. },
  5393. "notification-url": "https://packagist.org/downloads/",
  5394. "license": [
  5395. "MIT"
  5396. ],
  5397. "authors": [
  5398. {
  5399. "name": "xyxu",
  5400. "email": "techxu@gmail.com"
  5401. },
  5402. {
  5403. "name": "xiami",
  5404. "email": "jhdxr@php.net"
  5405. }
  5406. ],
  5407. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  5408. "support": {
  5409. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  5410. },
  5411. "time": "2020-12-01T23:10:59+00:00"
  5412. },
  5413. {
  5414. "name": "swiftmailer/swiftmailer",
  5415. "version": "v6.3.0",
  5416. "source": {
  5417. "type": "git",
  5418. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5419. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5420. },
  5421. "dist": {
  5422. "type": "zip",
  5423. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5424. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5425. "shasum": "",
  5426. "mirrors": [
  5427. {
  5428. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5429. "preferred": true
  5430. }
  5431. ]
  5432. },
  5433. "require": {
  5434. "egulias/email-validator": "^2.0|^3.1",
  5435. "php": ">=7.0.0",
  5436. "symfony/polyfill-iconv": "^1.0",
  5437. "symfony/polyfill-intl-idn": "^1.10",
  5438. "symfony/polyfill-mbstring": "^1.0"
  5439. },
  5440. "require-dev": {
  5441. "mockery/mockery": "^1.0",
  5442. "symfony/phpunit-bridge": "^4.4|^5.4"
  5443. },
  5444. "suggest": {
  5445. "ext-intl": "Needed to support internationalized email addresses"
  5446. },
  5447. "type": "library",
  5448. "extra": {
  5449. "branch-alias": {
  5450. "dev-master": "6.2-dev"
  5451. }
  5452. },
  5453. "autoload": {
  5454. "files": [
  5455. "lib/swift_required.php"
  5456. ]
  5457. },
  5458. "notification-url": "https://packagist.org/downloads/",
  5459. "license": [
  5460. "MIT"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Chris Corbyn"
  5465. },
  5466. {
  5467. "name": "Fabien Potencier",
  5468. "email": "fabien@symfony.com"
  5469. }
  5470. ],
  5471. "description": "Swiftmailer, free feature-rich PHP mailer",
  5472. "homepage": "https://swiftmailer.symfony.com",
  5473. "keywords": [
  5474. "email",
  5475. "mail",
  5476. "mailer"
  5477. ],
  5478. "support": {
  5479. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5480. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5481. },
  5482. "funding": [
  5483. {
  5484. "url": "https://github.com/fabpot",
  5485. "type": "github"
  5486. },
  5487. {
  5488. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5489. "type": "tidelift"
  5490. }
  5491. ],
  5492. "abandoned": "symfony/mailer",
  5493. "time": "2021-10-18T15:26:12+00:00"
  5494. },
  5495. {
  5496. "name": "symfony/console",
  5497. "version": "v5.4.47",
  5498. "source": {
  5499. "type": "git",
  5500. "url": "https://github.com/symfony/console.git",
  5501. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  5502. },
  5503. "dist": {
  5504. "type": "zip",
  5505. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5506. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5507. "shasum": "",
  5508. "mirrors": [
  5509. {
  5510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5511. "preferred": true
  5512. }
  5513. ]
  5514. },
  5515. "require": {
  5516. "php": ">=7.2.5",
  5517. "symfony/deprecation-contracts": "^2.1|^3",
  5518. "symfony/polyfill-mbstring": "~1.0",
  5519. "symfony/polyfill-php73": "^1.9",
  5520. "symfony/polyfill-php80": "^1.16",
  5521. "symfony/service-contracts": "^1.1|^2|^3",
  5522. "symfony/string": "^5.1|^6.0"
  5523. },
  5524. "conflict": {
  5525. "psr/log": ">=3",
  5526. "symfony/dependency-injection": "<4.4",
  5527. "symfony/dotenv": "<5.1",
  5528. "symfony/event-dispatcher": "<4.4",
  5529. "symfony/lock": "<4.4",
  5530. "symfony/process": "<4.4"
  5531. },
  5532. "provide": {
  5533. "psr/log-implementation": "1.0|2.0"
  5534. },
  5535. "require-dev": {
  5536. "psr/log": "^1|^2",
  5537. "symfony/config": "^4.4|^5.0|^6.0",
  5538. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5539. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5540. "symfony/lock": "^4.4|^5.0|^6.0",
  5541. "symfony/process": "^4.4|^5.0|^6.0",
  5542. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5543. },
  5544. "suggest": {
  5545. "psr/log": "For using the console logger",
  5546. "symfony/event-dispatcher": "",
  5547. "symfony/lock": "",
  5548. "symfony/process": ""
  5549. },
  5550. "type": "library",
  5551. "autoload": {
  5552. "psr-4": {
  5553. "Symfony\\Component\\Console\\": ""
  5554. },
  5555. "exclude-from-classmap": [
  5556. "/Tests/"
  5557. ]
  5558. },
  5559. "notification-url": "https://packagist.org/downloads/",
  5560. "license": [
  5561. "MIT"
  5562. ],
  5563. "authors": [
  5564. {
  5565. "name": "Fabien Potencier",
  5566. "email": "fabien@symfony.com"
  5567. },
  5568. {
  5569. "name": "Symfony Community",
  5570. "homepage": "https://symfony.com/contributors"
  5571. }
  5572. ],
  5573. "description": "Eases the creation of beautiful and testable command line interfaces",
  5574. "homepage": "https://symfony.com",
  5575. "keywords": [
  5576. "cli",
  5577. "command-line",
  5578. "console",
  5579. "terminal"
  5580. ],
  5581. "support": {
  5582. "source": "https://github.com/symfony/console/tree/v5.4.47"
  5583. },
  5584. "funding": [
  5585. {
  5586. "url": "https://symfony.com/sponsor",
  5587. "type": "custom"
  5588. },
  5589. {
  5590. "url": "https://github.com/fabpot",
  5591. "type": "github"
  5592. },
  5593. {
  5594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5595. "type": "tidelift"
  5596. }
  5597. ],
  5598. "time": "2024-11-06T11:30:55+00:00"
  5599. },
  5600. {
  5601. "name": "symfony/css-selector",
  5602. "version": "v6.0.19",
  5603. "source": {
  5604. "type": "git",
  5605. "url": "https://github.com/symfony/css-selector.git",
  5606. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5607. },
  5608. "dist": {
  5609. "type": "zip",
  5610. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5611. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5612. "shasum": "",
  5613. "mirrors": [
  5614. {
  5615. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5616. "preferred": true
  5617. }
  5618. ]
  5619. },
  5620. "require": {
  5621. "php": ">=8.0.2"
  5622. },
  5623. "type": "library",
  5624. "autoload": {
  5625. "psr-4": {
  5626. "Symfony\\Component\\CssSelector\\": ""
  5627. },
  5628. "exclude-from-classmap": [
  5629. "/Tests/"
  5630. ]
  5631. },
  5632. "notification-url": "https://packagist.org/downloads/",
  5633. "license": [
  5634. "MIT"
  5635. ],
  5636. "authors": [
  5637. {
  5638. "name": "Fabien Potencier",
  5639. "email": "fabien@symfony.com"
  5640. },
  5641. {
  5642. "name": "Jean-François Simon",
  5643. "email": "jeanfrancois.simon@sensiolabs.com"
  5644. },
  5645. {
  5646. "name": "Symfony Community",
  5647. "homepage": "https://symfony.com/contributors"
  5648. }
  5649. ],
  5650. "description": "Converts CSS selectors to XPath expressions",
  5651. "homepage": "https://symfony.com",
  5652. "support": {
  5653. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5654. },
  5655. "funding": [
  5656. {
  5657. "url": "https://symfony.com/sponsor",
  5658. "type": "custom"
  5659. },
  5660. {
  5661. "url": "https://github.com/fabpot",
  5662. "type": "github"
  5663. },
  5664. {
  5665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5666. "type": "tidelift"
  5667. }
  5668. ],
  5669. "time": "2023-01-01T08:36:10+00:00"
  5670. },
  5671. {
  5672. "name": "symfony/deprecation-contracts",
  5673. "version": "v3.0.2",
  5674. "source": {
  5675. "type": "git",
  5676. "url": "https://github.com/symfony/deprecation-contracts.git",
  5677. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5678. },
  5679. "dist": {
  5680. "type": "zip",
  5681. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5682. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5683. "shasum": "",
  5684. "mirrors": [
  5685. {
  5686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5687. "preferred": true
  5688. }
  5689. ]
  5690. },
  5691. "require": {
  5692. "php": ">=8.0.2"
  5693. },
  5694. "type": "library",
  5695. "extra": {
  5696. "thanks": {
  5697. "url": "https://github.com/symfony/contracts",
  5698. "name": "symfony/contracts"
  5699. },
  5700. "branch-alias": {
  5701. "dev-main": "3.0-dev"
  5702. }
  5703. },
  5704. "autoload": {
  5705. "files": [
  5706. "function.php"
  5707. ]
  5708. },
  5709. "notification-url": "https://packagist.org/downloads/",
  5710. "license": [
  5711. "MIT"
  5712. ],
  5713. "authors": [
  5714. {
  5715. "name": "Nicolas Grekas",
  5716. "email": "p@tchwork.com"
  5717. },
  5718. {
  5719. "name": "Symfony Community",
  5720. "homepage": "https://symfony.com/contributors"
  5721. }
  5722. ],
  5723. "description": "A generic function and convention to trigger deprecation notices",
  5724. "homepage": "https://symfony.com",
  5725. "support": {
  5726. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5727. },
  5728. "funding": [
  5729. {
  5730. "url": "https://symfony.com/sponsor",
  5731. "type": "custom"
  5732. },
  5733. {
  5734. "url": "https://github.com/fabpot",
  5735. "type": "github"
  5736. },
  5737. {
  5738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5739. "type": "tidelift"
  5740. }
  5741. ],
  5742. "time": "2022-01-02T09:55:41+00:00"
  5743. },
  5744. {
  5745. "name": "symfony/error-handler",
  5746. "version": "v5.4.46",
  5747. "source": {
  5748. "type": "git",
  5749. "url": "https://github.com/symfony/error-handler.git",
  5750. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363"
  5751. },
  5752. "dist": {
  5753. "type": "zip",
  5754. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5755. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5756. "shasum": "",
  5757. "mirrors": [
  5758. {
  5759. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5760. "preferred": true
  5761. }
  5762. ]
  5763. },
  5764. "require": {
  5765. "php": ">=7.2.5",
  5766. "psr/log": "^1|^2|^3",
  5767. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5768. },
  5769. "require-dev": {
  5770. "symfony/deprecation-contracts": "^2.1|^3",
  5771. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5772. "symfony/serializer": "^4.4|^5.0|^6.0"
  5773. },
  5774. "bin": [
  5775. "Resources/bin/patch-type-declarations"
  5776. ],
  5777. "type": "library",
  5778. "autoload": {
  5779. "psr-4": {
  5780. "Symfony\\Component\\ErrorHandler\\": ""
  5781. },
  5782. "exclude-from-classmap": [
  5783. "/Tests/"
  5784. ]
  5785. },
  5786. "notification-url": "https://packagist.org/downloads/",
  5787. "license": [
  5788. "MIT"
  5789. ],
  5790. "authors": [
  5791. {
  5792. "name": "Fabien Potencier",
  5793. "email": "fabien@symfony.com"
  5794. },
  5795. {
  5796. "name": "Symfony Community",
  5797. "homepage": "https://symfony.com/contributors"
  5798. }
  5799. ],
  5800. "description": "Provides tools to manage errors and ease debugging PHP code",
  5801. "homepage": "https://symfony.com",
  5802. "support": {
  5803. "source": "https://github.com/symfony/error-handler/tree/v5.4.46"
  5804. },
  5805. "funding": [
  5806. {
  5807. "url": "https://symfony.com/sponsor",
  5808. "type": "custom"
  5809. },
  5810. {
  5811. "url": "https://github.com/fabpot",
  5812. "type": "github"
  5813. },
  5814. {
  5815. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5816. "type": "tidelift"
  5817. }
  5818. ],
  5819. "time": "2024-11-05T14:17:06+00:00"
  5820. },
  5821. {
  5822. "name": "symfony/event-dispatcher",
  5823. "version": "v6.0.19",
  5824. "source": {
  5825. "type": "git",
  5826. "url": "https://github.com/symfony/event-dispatcher.git",
  5827. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5828. },
  5829. "dist": {
  5830. "type": "zip",
  5831. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5832. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5833. "shasum": "",
  5834. "mirrors": [
  5835. {
  5836. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5837. "preferred": true
  5838. }
  5839. ]
  5840. },
  5841. "require": {
  5842. "php": ">=8.0.2",
  5843. "symfony/event-dispatcher-contracts": "^2|^3"
  5844. },
  5845. "conflict": {
  5846. "symfony/dependency-injection": "<5.4"
  5847. },
  5848. "provide": {
  5849. "psr/event-dispatcher-implementation": "1.0",
  5850. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5851. },
  5852. "require-dev": {
  5853. "psr/log": "^1|^2|^3",
  5854. "symfony/config": "^5.4|^6.0",
  5855. "symfony/dependency-injection": "^5.4|^6.0",
  5856. "symfony/error-handler": "^5.4|^6.0",
  5857. "symfony/expression-language": "^5.4|^6.0",
  5858. "symfony/http-foundation": "^5.4|^6.0",
  5859. "symfony/service-contracts": "^1.1|^2|^3",
  5860. "symfony/stopwatch": "^5.4|^6.0"
  5861. },
  5862. "suggest": {
  5863. "symfony/dependency-injection": "",
  5864. "symfony/http-kernel": ""
  5865. },
  5866. "type": "library",
  5867. "autoload": {
  5868. "psr-4": {
  5869. "Symfony\\Component\\EventDispatcher\\": ""
  5870. },
  5871. "exclude-from-classmap": [
  5872. "/Tests/"
  5873. ]
  5874. },
  5875. "notification-url": "https://packagist.org/downloads/",
  5876. "license": [
  5877. "MIT"
  5878. ],
  5879. "authors": [
  5880. {
  5881. "name": "Fabien Potencier",
  5882. "email": "fabien@symfony.com"
  5883. },
  5884. {
  5885. "name": "Symfony Community",
  5886. "homepage": "https://symfony.com/contributors"
  5887. }
  5888. ],
  5889. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5890. "homepage": "https://symfony.com",
  5891. "support": {
  5892. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5893. },
  5894. "funding": [
  5895. {
  5896. "url": "https://symfony.com/sponsor",
  5897. "type": "custom"
  5898. },
  5899. {
  5900. "url": "https://github.com/fabpot",
  5901. "type": "github"
  5902. },
  5903. {
  5904. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5905. "type": "tidelift"
  5906. }
  5907. ],
  5908. "time": "2023-01-01T08:36:10+00:00"
  5909. },
  5910. {
  5911. "name": "symfony/event-dispatcher-contracts",
  5912. "version": "v3.0.2",
  5913. "source": {
  5914. "type": "git",
  5915. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5916. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5917. },
  5918. "dist": {
  5919. "type": "zip",
  5920. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5921. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5922. "shasum": "",
  5923. "mirrors": [
  5924. {
  5925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5926. "preferred": true
  5927. }
  5928. ]
  5929. },
  5930. "require": {
  5931. "php": ">=8.0.2",
  5932. "psr/event-dispatcher": "^1"
  5933. },
  5934. "suggest": {
  5935. "symfony/event-dispatcher-implementation": ""
  5936. },
  5937. "type": "library",
  5938. "extra": {
  5939. "thanks": {
  5940. "url": "https://github.com/symfony/contracts",
  5941. "name": "symfony/contracts"
  5942. },
  5943. "branch-alias": {
  5944. "dev-main": "3.0-dev"
  5945. }
  5946. },
  5947. "autoload": {
  5948. "psr-4": {
  5949. "Symfony\\Contracts\\EventDispatcher\\": ""
  5950. }
  5951. },
  5952. "notification-url": "https://packagist.org/downloads/",
  5953. "license": [
  5954. "MIT"
  5955. ],
  5956. "authors": [
  5957. {
  5958. "name": "Nicolas Grekas",
  5959. "email": "p@tchwork.com"
  5960. },
  5961. {
  5962. "name": "Symfony Community",
  5963. "homepage": "https://symfony.com/contributors"
  5964. }
  5965. ],
  5966. "description": "Generic abstractions related to dispatching event",
  5967. "homepage": "https://symfony.com",
  5968. "keywords": [
  5969. "abstractions",
  5970. "contracts",
  5971. "decoupling",
  5972. "interfaces",
  5973. "interoperability",
  5974. "standards"
  5975. ],
  5976. "support": {
  5977. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  5978. },
  5979. "funding": [
  5980. {
  5981. "url": "https://symfony.com/sponsor",
  5982. "type": "custom"
  5983. },
  5984. {
  5985. "url": "https://github.com/fabpot",
  5986. "type": "github"
  5987. },
  5988. {
  5989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5990. "type": "tidelift"
  5991. }
  5992. ],
  5993. "time": "2022-01-02T09:55:41+00:00"
  5994. },
  5995. {
  5996. "name": "symfony/finder",
  5997. "version": "v5.4.45",
  5998. "source": {
  5999. "type": "git",
  6000. "url": "https://github.com/symfony/finder.git",
  6001. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  6002. },
  6003. "dist": {
  6004. "type": "zip",
  6005. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  6006. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  6007. "shasum": "",
  6008. "mirrors": [
  6009. {
  6010. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6011. "preferred": true
  6012. }
  6013. ]
  6014. },
  6015. "require": {
  6016. "php": ">=7.2.5",
  6017. "symfony/deprecation-contracts": "^2.1|^3",
  6018. "symfony/polyfill-php80": "^1.16"
  6019. },
  6020. "type": "library",
  6021. "autoload": {
  6022. "psr-4": {
  6023. "Symfony\\Component\\Finder\\": ""
  6024. },
  6025. "exclude-from-classmap": [
  6026. "/Tests/"
  6027. ]
  6028. },
  6029. "notification-url": "https://packagist.org/downloads/",
  6030. "license": [
  6031. "MIT"
  6032. ],
  6033. "authors": [
  6034. {
  6035. "name": "Fabien Potencier",
  6036. "email": "fabien@symfony.com"
  6037. },
  6038. {
  6039. "name": "Symfony Community",
  6040. "homepage": "https://symfony.com/contributors"
  6041. }
  6042. ],
  6043. "description": "Finds files and directories via an intuitive fluent interface",
  6044. "homepage": "https://symfony.com",
  6045. "support": {
  6046. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  6047. },
  6048. "funding": [
  6049. {
  6050. "url": "https://symfony.com/sponsor",
  6051. "type": "custom"
  6052. },
  6053. {
  6054. "url": "https://github.com/fabpot",
  6055. "type": "github"
  6056. },
  6057. {
  6058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6059. "type": "tidelift"
  6060. }
  6061. ],
  6062. "time": "2024-09-28T13:32:08+00:00"
  6063. },
  6064. {
  6065. "name": "symfony/http-foundation",
  6066. "version": "v5.4.50",
  6067. "source": {
  6068. "type": "git",
  6069. "url": "https://github.com/symfony/http-foundation.git",
  6070. "reference": "1a0706e8b8041046052ea2695eb8aeee04f97609"
  6071. },
  6072. "dist": {
  6073. "type": "zip",
  6074. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1a0706e8b8041046052ea2695eb8aeee04f97609",
  6075. "reference": "1a0706e8b8041046052ea2695eb8aeee04f97609",
  6076. "shasum": "",
  6077. "mirrors": [
  6078. {
  6079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6080. "preferred": true
  6081. }
  6082. ]
  6083. },
  6084. "require": {
  6085. "php": ">=7.2.5",
  6086. "symfony/deprecation-contracts": "^2.1|^3",
  6087. "symfony/polyfill-mbstring": "~1.1",
  6088. "symfony/polyfill-php80": "^1.16"
  6089. },
  6090. "require-dev": {
  6091. "predis/predis": "^1.0|^2.0",
  6092. "symfony/cache": "^4.4|^5.0|^6.0",
  6093. "symfony/dependency-injection": "^5.4|^6.0",
  6094. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6095. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6096. "symfony/mime": "^4.4|^5.0|^6.0",
  6097. "symfony/rate-limiter": "^5.2|^6.0"
  6098. },
  6099. "suggest": {
  6100. "symfony/mime": "To use the file extension guesser"
  6101. },
  6102. "type": "library",
  6103. "autoload": {
  6104. "psr-4": {
  6105. "Symfony\\Component\\HttpFoundation\\": ""
  6106. },
  6107. "exclude-from-classmap": [
  6108. "/Tests/"
  6109. ]
  6110. },
  6111. "notification-url": "https://packagist.org/downloads/",
  6112. "license": [
  6113. "MIT"
  6114. ],
  6115. "authors": [
  6116. {
  6117. "name": "Fabien Potencier",
  6118. "email": "fabien@symfony.com"
  6119. },
  6120. {
  6121. "name": "Symfony Community",
  6122. "homepage": "https://symfony.com/contributors"
  6123. }
  6124. ],
  6125. "description": "Defines an object-oriented layer for the HTTP specification",
  6126. "homepage": "https://symfony.com",
  6127. "support": {
  6128. "source": "https://github.com/symfony/http-foundation/tree/v5.4.50"
  6129. },
  6130. "funding": [
  6131. {
  6132. "url": "https://symfony.com/sponsor",
  6133. "type": "custom"
  6134. },
  6135. {
  6136. "url": "https://github.com/fabpot",
  6137. "type": "github"
  6138. },
  6139. {
  6140. "url": "https://github.com/nicolas-grekas",
  6141. "type": "github"
  6142. },
  6143. {
  6144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6145. "type": "tidelift"
  6146. }
  6147. ],
  6148. "time": "2025-11-03T12:58:48+00:00"
  6149. },
  6150. {
  6151. "name": "symfony/http-kernel",
  6152. "version": "v5.4.50",
  6153. "source": {
  6154. "type": "git",
  6155. "url": "https://github.com/symfony/http-kernel.git",
  6156. "reference": "2fe5cf994d7e1e189258b7f7d3395cc5999a9762"
  6157. },
  6158. "dist": {
  6159. "type": "zip",
  6160. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2fe5cf994d7e1e189258b7f7d3395cc5999a9762",
  6161. "reference": "2fe5cf994d7e1e189258b7f7d3395cc5999a9762",
  6162. "shasum": "",
  6163. "mirrors": [
  6164. {
  6165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6166. "preferred": true
  6167. }
  6168. ]
  6169. },
  6170. "require": {
  6171. "php": ">=7.2.5",
  6172. "psr/log": "^1|^2",
  6173. "symfony/deprecation-contracts": "^2.1|^3",
  6174. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6175. "symfony/event-dispatcher": "^5.0|^6.0",
  6176. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6177. "symfony/polyfill-ctype": "^1.8",
  6178. "symfony/polyfill-php73": "^1.9",
  6179. "symfony/polyfill-php80": "^1.16"
  6180. },
  6181. "conflict": {
  6182. "symfony/browser-kit": "<5.4",
  6183. "symfony/cache": "<5.0",
  6184. "symfony/config": "<5.0",
  6185. "symfony/console": "<4.4",
  6186. "symfony/dependency-injection": "<5.3",
  6187. "symfony/doctrine-bridge": "<5.0",
  6188. "symfony/form": "<5.0",
  6189. "symfony/http-client": "<5.0",
  6190. "symfony/mailer": "<5.0",
  6191. "symfony/messenger": "<5.0",
  6192. "symfony/translation": "<5.0",
  6193. "symfony/twig-bridge": "<5.0",
  6194. "symfony/validator": "<5.0",
  6195. "twig/twig": "<2.13"
  6196. },
  6197. "provide": {
  6198. "psr/log-implementation": "1.0|2.0"
  6199. },
  6200. "require-dev": {
  6201. "psr/cache": "^1.0|^2.0|^3.0",
  6202. "symfony/browser-kit": "^5.4|^6.0",
  6203. "symfony/config": "^5.0|^6.0",
  6204. "symfony/console": "^4.4|^5.0|^6.0",
  6205. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6206. "symfony/dependency-injection": "^5.3|^6.0",
  6207. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6208. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6209. "symfony/finder": "^4.4|^5.0|^6.0",
  6210. "symfony/http-client-contracts": "^1.1|^2|^3",
  6211. "symfony/process": "^4.4|^5.0|^6.0",
  6212. "symfony/routing": "^4.4|^5.0|^6.0",
  6213. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6214. "symfony/translation": "^4.4|^5.0|^6.0",
  6215. "symfony/translation-contracts": "^1.1|^2|^3",
  6216. "symfony/var-dumper": "^4.4.31|^5.4",
  6217. "twig/twig": "^2.13|^3.0.4"
  6218. },
  6219. "suggest": {
  6220. "symfony/browser-kit": "",
  6221. "symfony/config": "",
  6222. "symfony/console": "",
  6223. "symfony/dependency-injection": ""
  6224. },
  6225. "type": "library",
  6226. "autoload": {
  6227. "psr-4": {
  6228. "Symfony\\Component\\HttpKernel\\": ""
  6229. },
  6230. "exclude-from-classmap": [
  6231. "/Tests/"
  6232. ]
  6233. },
  6234. "notification-url": "https://packagist.org/downloads/",
  6235. "license": [
  6236. "MIT"
  6237. ],
  6238. "authors": [
  6239. {
  6240. "name": "Fabien Potencier",
  6241. "email": "fabien@symfony.com"
  6242. },
  6243. {
  6244. "name": "Symfony Community",
  6245. "homepage": "https://symfony.com/contributors"
  6246. }
  6247. ],
  6248. "description": "Provides a structured process for converting a Request into a Response",
  6249. "homepage": "https://symfony.com",
  6250. "support": {
  6251. "source": "https://github.com/symfony/http-kernel/tree/v5.4.50"
  6252. },
  6253. "funding": [
  6254. {
  6255. "url": "https://symfony.com/sponsor",
  6256. "type": "custom"
  6257. },
  6258. {
  6259. "url": "https://github.com/fabpot",
  6260. "type": "github"
  6261. },
  6262. {
  6263. "url": "https://github.com/nicolas-grekas",
  6264. "type": "github"
  6265. },
  6266. {
  6267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6268. "type": "tidelift"
  6269. }
  6270. ],
  6271. "time": "2025-11-12T11:09:00+00:00"
  6272. },
  6273. {
  6274. "name": "symfony/mime",
  6275. "version": "v5.4.45",
  6276. "source": {
  6277. "type": "git",
  6278. "url": "https://github.com/symfony/mime.git",
  6279. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
  6280. },
  6281. "dist": {
  6282. "type": "zip",
  6283. "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
  6284. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
  6285. "shasum": "",
  6286. "mirrors": [
  6287. {
  6288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6289. "preferred": true
  6290. }
  6291. ]
  6292. },
  6293. "require": {
  6294. "php": ">=7.2.5",
  6295. "symfony/deprecation-contracts": "^2.1|^3",
  6296. "symfony/polyfill-intl-idn": "^1.10",
  6297. "symfony/polyfill-mbstring": "^1.0",
  6298. "symfony/polyfill-php80": "^1.16"
  6299. },
  6300. "conflict": {
  6301. "egulias/email-validator": "~3.0.0",
  6302. "phpdocumentor/reflection-docblock": "<3.2.2",
  6303. "phpdocumentor/type-resolver": "<1.4.0",
  6304. "symfony/mailer": "<4.4",
  6305. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  6306. },
  6307. "require-dev": {
  6308. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6309. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6310. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6311. "symfony/process": "^5.4|^6.4",
  6312. "symfony/property-access": "^4.4|^5.1|^6.0",
  6313. "symfony/property-info": "^4.4|^5.1|^6.0",
  6314. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  6315. },
  6316. "type": "library",
  6317. "autoload": {
  6318. "psr-4": {
  6319. "Symfony\\Component\\Mime\\": ""
  6320. },
  6321. "exclude-from-classmap": [
  6322. "/Tests/"
  6323. ]
  6324. },
  6325. "notification-url": "https://packagist.org/downloads/",
  6326. "license": [
  6327. "MIT"
  6328. ],
  6329. "authors": [
  6330. {
  6331. "name": "Fabien Potencier",
  6332. "email": "fabien@symfony.com"
  6333. },
  6334. {
  6335. "name": "Symfony Community",
  6336. "homepage": "https://symfony.com/contributors"
  6337. }
  6338. ],
  6339. "description": "Allows manipulating MIME messages",
  6340. "homepage": "https://symfony.com",
  6341. "keywords": [
  6342. "mime",
  6343. "mime-type"
  6344. ],
  6345. "support": {
  6346. "source": "https://github.com/symfony/mime/tree/v5.4.45"
  6347. },
  6348. "funding": [
  6349. {
  6350. "url": "https://symfony.com/sponsor",
  6351. "type": "custom"
  6352. },
  6353. {
  6354. "url": "https://github.com/fabpot",
  6355. "type": "github"
  6356. },
  6357. {
  6358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6359. "type": "tidelift"
  6360. }
  6361. ],
  6362. "time": "2024-10-23T20:18:32+00:00"
  6363. },
  6364. {
  6365. "name": "symfony/polyfill-ctype",
  6366. "version": "v1.32.0",
  6367. "source": {
  6368. "type": "git",
  6369. "url": "https://github.com/symfony/polyfill-ctype.git",
  6370. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6371. },
  6372. "dist": {
  6373. "type": "zip",
  6374. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6375. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6376. "shasum": "",
  6377. "mirrors": [
  6378. {
  6379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6380. "preferred": true
  6381. }
  6382. ]
  6383. },
  6384. "require": {
  6385. "php": ">=7.2"
  6386. },
  6387. "provide": {
  6388. "ext-ctype": "*"
  6389. },
  6390. "suggest": {
  6391. "ext-ctype": "For best performance"
  6392. },
  6393. "type": "library",
  6394. "extra": {
  6395. "thanks": {
  6396. "url": "https://github.com/symfony/polyfill",
  6397. "name": "symfony/polyfill"
  6398. }
  6399. },
  6400. "autoload": {
  6401. "files": [
  6402. "bootstrap.php"
  6403. ],
  6404. "psr-4": {
  6405. "Symfony\\Polyfill\\Ctype\\": ""
  6406. }
  6407. },
  6408. "notification-url": "https://packagist.org/downloads/",
  6409. "license": [
  6410. "MIT"
  6411. ],
  6412. "authors": [
  6413. {
  6414. "name": "Gert de Pagter",
  6415. "email": "BackEndTea@gmail.com"
  6416. },
  6417. {
  6418. "name": "Symfony Community",
  6419. "homepage": "https://symfony.com/contributors"
  6420. }
  6421. ],
  6422. "description": "Symfony polyfill for ctype functions",
  6423. "homepage": "https://symfony.com",
  6424. "keywords": [
  6425. "compatibility",
  6426. "ctype",
  6427. "polyfill",
  6428. "portable"
  6429. ],
  6430. "support": {
  6431. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  6432. },
  6433. "funding": [
  6434. {
  6435. "url": "https://symfony.com/sponsor",
  6436. "type": "custom"
  6437. },
  6438. {
  6439. "url": "https://github.com/fabpot",
  6440. "type": "github"
  6441. },
  6442. {
  6443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6444. "type": "tidelift"
  6445. }
  6446. ],
  6447. "time": "2024-09-09T11:45:10+00:00"
  6448. },
  6449. {
  6450. "name": "symfony/polyfill-iconv",
  6451. "version": "v1.32.0",
  6452. "source": {
  6453. "type": "git",
  6454. "url": "https://github.com/symfony/polyfill-iconv.git",
  6455. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  6456. },
  6457. "dist": {
  6458. "type": "zip",
  6459. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6460. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6461. "shasum": "",
  6462. "mirrors": [
  6463. {
  6464. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6465. "preferred": true
  6466. }
  6467. ]
  6468. },
  6469. "require": {
  6470. "php": ">=7.2"
  6471. },
  6472. "provide": {
  6473. "ext-iconv": "*"
  6474. },
  6475. "suggest": {
  6476. "ext-iconv": "For best performance"
  6477. },
  6478. "type": "library",
  6479. "extra": {
  6480. "thanks": {
  6481. "url": "https://github.com/symfony/polyfill",
  6482. "name": "symfony/polyfill"
  6483. }
  6484. },
  6485. "autoload": {
  6486. "files": [
  6487. "bootstrap.php"
  6488. ],
  6489. "psr-4": {
  6490. "Symfony\\Polyfill\\Iconv\\": ""
  6491. }
  6492. },
  6493. "notification-url": "https://packagist.org/downloads/",
  6494. "license": [
  6495. "MIT"
  6496. ],
  6497. "authors": [
  6498. {
  6499. "name": "Nicolas Grekas",
  6500. "email": "p@tchwork.com"
  6501. },
  6502. {
  6503. "name": "Symfony Community",
  6504. "homepage": "https://symfony.com/contributors"
  6505. }
  6506. ],
  6507. "description": "Symfony polyfill for the Iconv extension",
  6508. "homepage": "https://symfony.com",
  6509. "keywords": [
  6510. "compatibility",
  6511. "iconv",
  6512. "polyfill",
  6513. "portable",
  6514. "shim"
  6515. ],
  6516. "support": {
  6517. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  6518. },
  6519. "funding": [
  6520. {
  6521. "url": "https://symfony.com/sponsor",
  6522. "type": "custom"
  6523. },
  6524. {
  6525. "url": "https://github.com/fabpot",
  6526. "type": "github"
  6527. },
  6528. {
  6529. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6530. "type": "tidelift"
  6531. }
  6532. ],
  6533. "time": "2024-09-17T14:58:18+00:00"
  6534. },
  6535. {
  6536. "name": "symfony/polyfill-intl-grapheme",
  6537. "version": "v1.33.0",
  6538. "source": {
  6539. "type": "git",
  6540. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6541. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  6542. },
  6543. "dist": {
  6544. "type": "zip",
  6545. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6546. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6547. "shasum": "",
  6548. "mirrors": [
  6549. {
  6550. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6551. "preferred": true
  6552. }
  6553. ]
  6554. },
  6555. "require": {
  6556. "php": ">=7.2"
  6557. },
  6558. "suggest": {
  6559. "ext-intl": "For best performance"
  6560. },
  6561. "type": "library",
  6562. "extra": {
  6563. "thanks": {
  6564. "url": "https://github.com/symfony/polyfill",
  6565. "name": "symfony/polyfill"
  6566. }
  6567. },
  6568. "autoload": {
  6569. "files": [
  6570. "bootstrap.php"
  6571. ],
  6572. "psr-4": {
  6573. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6574. }
  6575. },
  6576. "notification-url": "https://packagist.org/downloads/",
  6577. "license": [
  6578. "MIT"
  6579. ],
  6580. "authors": [
  6581. {
  6582. "name": "Nicolas Grekas",
  6583. "email": "p@tchwork.com"
  6584. },
  6585. {
  6586. "name": "Symfony Community",
  6587. "homepage": "https://symfony.com/contributors"
  6588. }
  6589. ],
  6590. "description": "Symfony polyfill for intl's grapheme_* functions",
  6591. "homepage": "https://symfony.com",
  6592. "keywords": [
  6593. "compatibility",
  6594. "grapheme",
  6595. "intl",
  6596. "polyfill",
  6597. "portable",
  6598. "shim"
  6599. ],
  6600. "support": {
  6601. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  6602. },
  6603. "funding": [
  6604. {
  6605. "url": "https://symfony.com/sponsor",
  6606. "type": "custom"
  6607. },
  6608. {
  6609. "url": "https://github.com/fabpot",
  6610. "type": "github"
  6611. },
  6612. {
  6613. "url": "https://github.com/nicolas-grekas",
  6614. "type": "github"
  6615. },
  6616. {
  6617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6618. "type": "tidelift"
  6619. }
  6620. ],
  6621. "time": "2025-06-27T09:58:17+00:00"
  6622. },
  6623. {
  6624. "name": "symfony/polyfill-intl-idn",
  6625. "version": "v1.32.0",
  6626. "source": {
  6627. "type": "git",
  6628. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6629. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6630. },
  6631. "dist": {
  6632. "type": "zip",
  6633. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6634. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6635. "shasum": "",
  6636. "mirrors": [
  6637. {
  6638. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6639. "preferred": true
  6640. }
  6641. ]
  6642. },
  6643. "require": {
  6644. "php": ">=7.2",
  6645. "symfony/polyfill-intl-normalizer": "^1.10"
  6646. },
  6647. "suggest": {
  6648. "ext-intl": "For best performance"
  6649. },
  6650. "type": "library",
  6651. "extra": {
  6652. "thanks": {
  6653. "url": "https://github.com/symfony/polyfill",
  6654. "name": "symfony/polyfill"
  6655. }
  6656. },
  6657. "autoload": {
  6658. "files": [
  6659. "bootstrap.php"
  6660. ],
  6661. "psr-4": {
  6662. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6663. }
  6664. },
  6665. "notification-url": "https://packagist.org/downloads/",
  6666. "license": [
  6667. "MIT"
  6668. ],
  6669. "authors": [
  6670. {
  6671. "name": "Laurent Bassin",
  6672. "email": "laurent@bassin.info"
  6673. },
  6674. {
  6675. "name": "Trevor Rowbotham",
  6676. "email": "trevor.rowbotham@pm.me"
  6677. },
  6678. {
  6679. "name": "Symfony Community",
  6680. "homepage": "https://symfony.com/contributors"
  6681. }
  6682. ],
  6683. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6684. "homepage": "https://symfony.com",
  6685. "keywords": [
  6686. "compatibility",
  6687. "idn",
  6688. "intl",
  6689. "polyfill",
  6690. "portable",
  6691. "shim"
  6692. ],
  6693. "support": {
  6694. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6695. },
  6696. "funding": [
  6697. {
  6698. "url": "https://symfony.com/sponsor",
  6699. "type": "custom"
  6700. },
  6701. {
  6702. "url": "https://github.com/fabpot",
  6703. "type": "github"
  6704. },
  6705. {
  6706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6707. "type": "tidelift"
  6708. }
  6709. ],
  6710. "time": "2024-09-10T14:38:51+00:00"
  6711. },
  6712. {
  6713. "name": "symfony/polyfill-intl-normalizer",
  6714. "version": "v1.32.0",
  6715. "source": {
  6716. "type": "git",
  6717. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6718. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6719. },
  6720. "dist": {
  6721. "type": "zip",
  6722. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6723. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6724. "shasum": "",
  6725. "mirrors": [
  6726. {
  6727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6728. "preferred": true
  6729. }
  6730. ]
  6731. },
  6732. "require": {
  6733. "php": ">=7.2"
  6734. },
  6735. "suggest": {
  6736. "ext-intl": "For best performance"
  6737. },
  6738. "type": "library",
  6739. "extra": {
  6740. "thanks": {
  6741. "url": "https://github.com/symfony/polyfill",
  6742. "name": "symfony/polyfill"
  6743. }
  6744. },
  6745. "autoload": {
  6746. "files": [
  6747. "bootstrap.php"
  6748. ],
  6749. "psr-4": {
  6750. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6751. },
  6752. "classmap": [
  6753. "Resources/stubs"
  6754. ]
  6755. },
  6756. "notification-url": "https://packagist.org/downloads/",
  6757. "license": [
  6758. "MIT"
  6759. ],
  6760. "authors": [
  6761. {
  6762. "name": "Nicolas Grekas",
  6763. "email": "p@tchwork.com"
  6764. },
  6765. {
  6766. "name": "Symfony Community",
  6767. "homepage": "https://symfony.com/contributors"
  6768. }
  6769. ],
  6770. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6771. "homepage": "https://symfony.com",
  6772. "keywords": [
  6773. "compatibility",
  6774. "intl",
  6775. "normalizer",
  6776. "polyfill",
  6777. "portable",
  6778. "shim"
  6779. ],
  6780. "support": {
  6781. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6782. },
  6783. "funding": [
  6784. {
  6785. "url": "https://symfony.com/sponsor",
  6786. "type": "custom"
  6787. },
  6788. {
  6789. "url": "https://github.com/fabpot",
  6790. "type": "github"
  6791. },
  6792. {
  6793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6794. "type": "tidelift"
  6795. }
  6796. ],
  6797. "time": "2024-09-09T11:45:10+00:00"
  6798. },
  6799. {
  6800. "name": "symfony/polyfill-mbstring",
  6801. "version": "v1.32.0",
  6802. "source": {
  6803. "type": "git",
  6804. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6805. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6806. },
  6807. "dist": {
  6808. "type": "zip",
  6809. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6810. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6811. "shasum": "",
  6812. "mirrors": [
  6813. {
  6814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6815. "preferred": true
  6816. }
  6817. ]
  6818. },
  6819. "require": {
  6820. "ext-iconv": "*",
  6821. "php": ">=7.2"
  6822. },
  6823. "provide": {
  6824. "ext-mbstring": "*"
  6825. },
  6826. "suggest": {
  6827. "ext-mbstring": "For best performance"
  6828. },
  6829. "type": "library",
  6830. "extra": {
  6831. "thanks": {
  6832. "url": "https://github.com/symfony/polyfill",
  6833. "name": "symfony/polyfill"
  6834. }
  6835. },
  6836. "autoload": {
  6837. "files": [
  6838. "bootstrap.php"
  6839. ],
  6840. "psr-4": {
  6841. "Symfony\\Polyfill\\Mbstring\\": ""
  6842. }
  6843. },
  6844. "notification-url": "https://packagist.org/downloads/",
  6845. "license": [
  6846. "MIT"
  6847. ],
  6848. "authors": [
  6849. {
  6850. "name": "Nicolas Grekas",
  6851. "email": "p@tchwork.com"
  6852. },
  6853. {
  6854. "name": "Symfony Community",
  6855. "homepage": "https://symfony.com/contributors"
  6856. }
  6857. ],
  6858. "description": "Symfony polyfill for the Mbstring extension",
  6859. "homepage": "https://symfony.com",
  6860. "keywords": [
  6861. "compatibility",
  6862. "mbstring",
  6863. "polyfill",
  6864. "portable",
  6865. "shim"
  6866. ],
  6867. "support": {
  6868. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6869. },
  6870. "funding": [
  6871. {
  6872. "url": "https://symfony.com/sponsor",
  6873. "type": "custom"
  6874. },
  6875. {
  6876. "url": "https://github.com/fabpot",
  6877. "type": "github"
  6878. },
  6879. {
  6880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6881. "type": "tidelift"
  6882. }
  6883. ],
  6884. "time": "2024-12-23T08:48:59+00:00"
  6885. },
  6886. {
  6887. "name": "symfony/polyfill-php73",
  6888. "version": "v1.32.0",
  6889. "source": {
  6890. "type": "git",
  6891. "url": "https://github.com/symfony/polyfill-php73.git",
  6892. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6893. },
  6894. "dist": {
  6895. "type": "zip",
  6896. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6897. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6898. "shasum": "",
  6899. "mirrors": [
  6900. {
  6901. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6902. "preferred": true
  6903. }
  6904. ]
  6905. },
  6906. "require": {
  6907. "php": ">=7.2"
  6908. },
  6909. "type": "library",
  6910. "extra": {
  6911. "thanks": {
  6912. "url": "https://github.com/symfony/polyfill",
  6913. "name": "symfony/polyfill"
  6914. }
  6915. },
  6916. "autoload": {
  6917. "files": [
  6918. "bootstrap.php"
  6919. ],
  6920. "psr-4": {
  6921. "Symfony\\Polyfill\\Php73\\": ""
  6922. },
  6923. "classmap": [
  6924. "Resources/stubs"
  6925. ]
  6926. },
  6927. "notification-url": "https://packagist.org/downloads/",
  6928. "license": [
  6929. "MIT"
  6930. ],
  6931. "authors": [
  6932. {
  6933. "name": "Nicolas Grekas",
  6934. "email": "p@tchwork.com"
  6935. },
  6936. {
  6937. "name": "Symfony Community",
  6938. "homepage": "https://symfony.com/contributors"
  6939. }
  6940. ],
  6941. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6942. "homepage": "https://symfony.com",
  6943. "keywords": [
  6944. "compatibility",
  6945. "polyfill",
  6946. "portable",
  6947. "shim"
  6948. ],
  6949. "support": {
  6950. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  6951. },
  6952. "funding": [
  6953. {
  6954. "url": "https://symfony.com/sponsor",
  6955. "type": "custom"
  6956. },
  6957. {
  6958. "url": "https://github.com/fabpot",
  6959. "type": "github"
  6960. },
  6961. {
  6962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6963. "type": "tidelift"
  6964. }
  6965. ],
  6966. "time": "2024-09-09T11:45:10+00:00"
  6967. },
  6968. {
  6969. "name": "symfony/polyfill-php80",
  6970. "version": "v1.33.0",
  6971. "source": {
  6972. "type": "git",
  6973. "url": "https://github.com/symfony/polyfill-php80.git",
  6974. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6975. },
  6976. "dist": {
  6977. "type": "zip",
  6978. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6979. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6980. "shasum": "",
  6981. "mirrors": [
  6982. {
  6983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6984. "preferred": true
  6985. }
  6986. ]
  6987. },
  6988. "require": {
  6989. "php": ">=7.2"
  6990. },
  6991. "type": "library",
  6992. "extra": {
  6993. "thanks": {
  6994. "url": "https://github.com/symfony/polyfill",
  6995. "name": "symfony/polyfill"
  6996. }
  6997. },
  6998. "autoload": {
  6999. "files": [
  7000. "bootstrap.php"
  7001. ],
  7002. "psr-4": {
  7003. "Symfony\\Polyfill\\Php80\\": ""
  7004. },
  7005. "classmap": [
  7006. "Resources/stubs"
  7007. ]
  7008. },
  7009. "notification-url": "https://packagist.org/downloads/",
  7010. "license": [
  7011. "MIT"
  7012. ],
  7013. "authors": [
  7014. {
  7015. "name": "Ion Bazan",
  7016. "email": "ion.bazan@gmail.com"
  7017. },
  7018. {
  7019. "name": "Nicolas Grekas",
  7020. "email": "p@tchwork.com"
  7021. },
  7022. {
  7023. "name": "Symfony Community",
  7024. "homepage": "https://symfony.com/contributors"
  7025. }
  7026. ],
  7027. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7028. "homepage": "https://symfony.com",
  7029. "keywords": [
  7030. "compatibility",
  7031. "polyfill",
  7032. "portable",
  7033. "shim"
  7034. ],
  7035. "support": {
  7036. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  7037. },
  7038. "funding": [
  7039. {
  7040. "url": "https://symfony.com/sponsor",
  7041. "type": "custom"
  7042. },
  7043. {
  7044. "url": "https://github.com/fabpot",
  7045. "type": "github"
  7046. },
  7047. {
  7048. "url": "https://github.com/nicolas-grekas",
  7049. "type": "github"
  7050. },
  7051. {
  7052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7053. "type": "tidelift"
  7054. }
  7055. ],
  7056. "time": "2025-01-02T08:10:11+00:00"
  7057. },
  7058. {
  7059. "name": "symfony/polyfill-php81",
  7060. "version": "v1.32.0",
  7061. "source": {
  7062. "type": "git",
  7063. "url": "https://github.com/symfony/polyfill-php81.git",
  7064. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  7065. },
  7066. "dist": {
  7067. "type": "zip",
  7068. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7069. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7070. "shasum": "",
  7071. "mirrors": [
  7072. {
  7073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7074. "preferred": true
  7075. }
  7076. ]
  7077. },
  7078. "require": {
  7079. "php": ">=7.2"
  7080. },
  7081. "type": "library",
  7082. "extra": {
  7083. "thanks": {
  7084. "url": "https://github.com/symfony/polyfill",
  7085. "name": "symfony/polyfill"
  7086. }
  7087. },
  7088. "autoload": {
  7089. "files": [
  7090. "bootstrap.php"
  7091. ],
  7092. "psr-4": {
  7093. "Symfony\\Polyfill\\Php81\\": ""
  7094. },
  7095. "classmap": [
  7096. "Resources/stubs"
  7097. ]
  7098. },
  7099. "notification-url": "https://packagist.org/downloads/",
  7100. "license": [
  7101. "MIT"
  7102. ],
  7103. "authors": [
  7104. {
  7105. "name": "Nicolas Grekas",
  7106. "email": "p@tchwork.com"
  7107. },
  7108. {
  7109. "name": "Symfony Community",
  7110. "homepage": "https://symfony.com/contributors"
  7111. }
  7112. ],
  7113. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7114. "homepage": "https://symfony.com",
  7115. "keywords": [
  7116. "compatibility",
  7117. "polyfill",
  7118. "portable",
  7119. "shim"
  7120. ],
  7121. "support": {
  7122. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  7123. },
  7124. "funding": [
  7125. {
  7126. "url": "https://symfony.com/sponsor",
  7127. "type": "custom"
  7128. },
  7129. {
  7130. "url": "https://github.com/fabpot",
  7131. "type": "github"
  7132. },
  7133. {
  7134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7135. "type": "tidelift"
  7136. }
  7137. ],
  7138. "time": "2024-09-09T11:45:10+00:00"
  7139. },
  7140. {
  7141. "name": "symfony/process",
  7142. "version": "v5.4.47",
  7143. "source": {
  7144. "type": "git",
  7145. "url": "https://github.com/symfony/process.git",
  7146. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  7147. },
  7148. "dist": {
  7149. "type": "zip",
  7150. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  7151. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  7152. "shasum": "",
  7153. "mirrors": [
  7154. {
  7155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7156. "preferred": true
  7157. }
  7158. ]
  7159. },
  7160. "require": {
  7161. "php": ">=7.2.5",
  7162. "symfony/polyfill-php80": "^1.16"
  7163. },
  7164. "type": "library",
  7165. "autoload": {
  7166. "psr-4": {
  7167. "Symfony\\Component\\Process\\": ""
  7168. },
  7169. "exclude-from-classmap": [
  7170. "/Tests/"
  7171. ]
  7172. },
  7173. "notification-url": "https://packagist.org/downloads/",
  7174. "license": [
  7175. "MIT"
  7176. ],
  7177. "authors": [
  7178. {
  7179. "name": "Fabien Potencier",
  7180. "email": "fabien@symfony.com"
  7181. },
  7182. {
  7183. "name": "Symfony Community",
  7184. "homepage": "https://symfony.com/contributors"
  7185. }
  7186. ],
  7187. "description": "Executes commands in sub-processes",
  7188. "homepage": "https://symfony.com",
  7189. "support": {
  7190. "source": "https://github.com/symfony/process/tree/v5.4.47"
  7191. },
  7192. "funding": [
  7193. {
  7194. "url": "https://symfony.com/sponsor",
  7195. "type": "custom"
  7196. },
  7197. {
  7198. "url": "https://github.com/fabpot",
  7199. "type": "github"
  7200. },
  7201. {
  7202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7203. "type": "tidelift"
  7204. }
  7205. ],
  7206. "time": "2024-11-06T11:36:42+00:00"
  7207. },
  7208. {
  7209. "name": "symfony/routing",
  7210. "version": "v5.4.48",
  7211. "source": {
  7212. "type": "git",
  7213. "url": "https://github.com/symfony/routing.git",
  7214. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1"
  7215. },
  7216. "dist": {
  7217. "type": "zip",
  7218. "url": "https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7219. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7220. "shasum": "",
  7221. "mirrors": [
  7222. {
  7223. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7224. "preferred": true
  7225. }
  7226. ]
  7227. },
  7228. "require": {
  7229. "php": ">=7.2.5",
  7230. "symfony/deprecation-contracts": "^2.1|^3",
  7231. "symfony/polyfill-php80": "^1.16"
  7232. },
  7233. "conflict": {
  7234. "doctrine/annotations": "<1.12",
  7235. "symfony/config": "<5.3",
  7236. "symfony/dependency-injection": "<4.4",
  7237. "symfony/yaml": "<4.4"
  7238. },
  7239. "require-dev": {
  7240. "doctrine/annotations": "^1.12|^2",
  7241. "psr/log": "^1|^2|^3",
  7242. "symfony/config": "^5.3|^6.0",
  7243. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7244. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7245. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7246. "symfony/yaml": "^4.4|^5.0|^6.0"
  7247. },
  7248. "suggest": {
  7249. "symfony/config": "For using the all-in-one router or any loader",
  7250. "symfony/expression-language": "For using expression matching",
  7251. "symfony/http-foundation": "For using a Symfony Request object",
  7252. "symfony/yaml": "For using the YAML loader"
  7253. },
  7254. "type": "library",
  7255. "autoload": {
  7256. "psr-4": {
  7257. "Symfony\\Component\\Routing\\": ""
  7258. },
  7259. "exclude-from-classmap": [
  7260. "/Tests/"
  7261. ]
  7262. },
  7263. "notification-url": "https://packagist.org/downloads/",
  7264. "license": [
  7265. "MIT"
  7266. ],
  7267. "authors": [
  7268. {
  7269. "name": "Fabien Potencier",
  7270. "email": "fabien@symfony.com"
  7271. },
  7272. {
  7273. "name": "Symfony Community",
  7274. "homepage": "https://symfony.com/contributors"
  7275. }
  7276. ],
  7277. "description": "Maps an HTTP request to a set of configuration variables",
  7278. "homepage": "https://symfony.com",
  7279. "keywords": [
  7280. "router",
  7281. "routing",
  7282. "uri",
  7283. "url"
  7284. ],
  7285. "support": {
  7286. "source": "https://github.com/symfony/routing/tree/v5.4.48"
  7287. },
  7288. "funding": [
  7289. {
  7290. "url": "https://symfony.com/sponsor",
  7291. "type": "custom"
  7292. },
  7293. {
  7294. "url": "https://github.com/fabpot",
  7295. "type": "github"
  7296. },
  7297. {
  7298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7299. "type": "tidelift"
  7300. }
  7301. ],
  7302. "time": "2024-11-12T18:20:21+00:00"
  7303. },
  7304. {
  7305. "name": "symfony/service-contracts",
  7306. "version": "v2.5.4",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://github.com/symfony/service-contracts.git",
  7310. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  7315. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  7316. "shasum": "",
  7317. "mirrors": [
  7318. {
  7319. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7320. "preferred": true
  7321. }
  7322. ]
  7323. },
  7324. "require": {
  7325. "php": ">=7.2.5",
  7326. "psr/container": "^1.1",
  7327. "symfony/deprecation-contracts": "^2.1|^3"
  7328. },
  7329. "conflict": {
  7330. "ext-psr": "<1.1|>=2"
  7331. },
  7332. "suggest": {
  7333. "symfony/service-implementation": ""
  7334. },
  7335. "type": "library",
  7336. "extra": {
  7337. "thanks": {
  7338. "url": "https://github.com/symfony/contracts",
  7339. "name": "symfony/contracts"
  7340. },
  7341. "branch-alias": {
  7342. "dev-main": "2.5-dev"
  7343. }
  7344. },
  7345. "autoload": {
  7346. "psr-4": {
  7347. "Symfony\\Contracts\\Service\\": ""
  7348. }
  7349. },
  7350. "notification-url": "https://packagist.org/downloads/",
  7351. "license": [
  7352. "MIT"
  7353. ],
  7354. "authors": [
  7355. {
  7356. "name": "Nicolas Grekas",
  7357. "email": "p@tchwork.com"
  7358. },
  7359. {
  7360. "name": "Symfony Community",
  7361. "homepage": "https://symfony.com/contributors"
  7362. }
  7363. ],
  7364. "description": "Generic abstractions related to writing services",
  7365. "homepage": "https://symfony.com",
  7366. "keywords": [
  7367. "abstractions",
  7368. "contracts",
  7369. "decoupling",
  7370. "interfaces",
  7371. "interoperability",
  7372. "standards"
  7373. ],
  7374. "support": {
  7375. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  7376. },
  7377. "funding": [
  7378. {
  7379. "url": "https://symfony.com/sponsor",
  7380. "type": "custom"
  7381. },
  7382. {
  7383. "url": "https://github.com/fabpot",
  7384. "type": "github"
  7385. },
  7386. {
  7387. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7388. "type": "tidelift"
  7389. }
  7390. ],
  7391. "time": "2024-09-25T14:11:13+00:00"
  7392. },
  7393. {
  7394. "name": "symfony/string",
  7395. "version": "v6.0.19",
  7396. "source": {
  7397. "type": "git",
  7398. "url": "https://github.com/symfony/string.git",
  7399. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7400. },
  7401. "dist": {
  7402. "type": "zip",
  7403. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7404. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7405. "shasum": "",
  7406. "mirrors": [
  7407. {
  7408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7409. "preferred": true
  7410. }
  7411. ]
  7412. },
  7413. "require": {
  7414. "php": ">=8.0.2",
  7415. "symfony/polyfill-ctype": "~1.8",
  7416. "symfony/polyfill-intl-grapheme": "~1.0",
  7417. "symfony/polyfill-intl-normalizer": "~1.0",
  7418. "symfony/polyfill-mbstring": "~1.0"
  7419. },
  7420. "conflict": {
  7421. "symfony/translation-contracts": "<2.0"
  7422. },
  7423. "require-dev": {
  7424. "symfony/error-handler": "^5.4|^6.0",
  7425. "symfony/http-client": "^5.4|^6.0",
  7426. "symfony/translation-contracts": "^2.0|^3.0",
  7427. "symfony/var-exporter": "^5.4|^6.0"
  7428. },
  7429. "type": "library",
  7430. "autoload": {
  7431. "files": [
  7432. "Resources/functions.php"
  7433. ],
  7434. "psr-4": {
  7435. "Symfony\\Component\\String\\": ""
  7436. },
  7437. "exclude-from-classmap": [
  7438. "/Tests/"
  7439. ]
  7440. },
  7441. "notification-url": "https://packagist.org/downloads/",
  7442. "license": [
  7443. "MIT"
  7444. ],
  7445. "authors": [
  7446. {
  7447. "name": "Nicolas Grekas",
  7448. "email": "p@tchwork.com"
  7449. },
  7450. {
  7451. "name": "Symfony Community",
  7452. "homepage": "https://symfony.com/contributors"
  7453. }
  7454. ],
  7455. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7456. "homepage": "https://symfony.com",
  7457. "keywords": [
  7458. "grapheme",
  7459. "i18n",
  7460. "string",
  7461. "unicode",
  7462. "utf-8",
  7463. "utf8"
  7464. ],
  7465. "support": {
  7466. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7467. },
  7468. "funding": [
  7469. {
  7470. "url": "https://symfony.com/sponsor",
  7471. "type": "custom"
  7472. },
  7473. {
  7474. "url": "https://github.com/fabpot",
  7475. "type": "github"
  7476. },
  7477. {
  7478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7479. "type": "tidelift"
  7480. }
  7481. ],
  7482. "time": "2023-01-01T08:36:10+00:00"
  7483. },
  7484. {
  7485. "name": "symfony/translation",
  7486. "version": "v6.0.19",
  7487. "source": {
  7488. "type": "git",
  7489. "url": "https://github.com/symfony/translation.git",
  7490. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7491. },
  7492. "dist": {
  7493. "type": "zip",
  7494. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7495. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7496. "shasum": "",
  7497. "mirrors": [
  7498. {
  7499. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7500. "preferred": true
  7501. }
  7502. ]
  7503. },
  7504. "require": {
  7505. "php": ">=8.0.2",
  7506. "symfony/polyfill-mbstring": "~1.0",
  7507. "symfony/translation-contracts": "^2.3|^3.0"
  7508. },
  7509. "conflict": {
  7510. "symfony/config": "<5.4",
  7511. "symfony/console": "<5.4",
  7512. "symfony/dependency-injection": "<5.4",
  7513. "symfony/http-kernel": "<5.4",
  7514. "symfony/twig-bundle": "<5.4",
  7515. "symfony/yaml": "<5.4"
  7516. },
  7517. "provide": {
  7518. "symfony/translation-implementation": "2.3|3.0"
  7519. },
  7520. "require-dev": {
  7521. "psr/log": "^1|^2|^3",
  7522. "symfony/config": "^5.4|^6.0",
  7523. "symfony/console": "^5.4|^6.0",
  7524. "symfony/dependency-injection": "^5.4|^6.0",
  7525. "symfony/finder": "^5.4|^6.0",
  7526. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7527. "symfony/http-kernel": "^5.4|^6.0",
  7528. "symfony/intl": "^5.4|^6.0",
  7529. "symfony/polyfill-intl-icu": "^1.21",
  7530. "symfony/service-contracts": "^1.1.2|^2|^3",
  7531. "symfony/yaml": "^5.4|^6.0"
  7532. },
  7533. "suggest": {
  7534. "psr/log-implementation": "To use logging capability in translator",
  7535. "symfony/config": "",
  7536. "symfony/yaml": ""
  7537. },
  7538. "type": "library",
  7539. "autoload": {
  7540. "files": [
  7541. "Resources/functions.php"
  7542. ],
  7543. "psr-4": {
  7544. "Symfony\\Component\\Translation\\": ""
  7545. },
  7546. "exclude-from-classmap": [
  7547. "/Tests/"
  7548. ]
  7549. },
  7550. "notification-url": "https://packagist.org/downloads/",
  7551. "license": [
  7552. "MIT"
  7553. ],
  7554. "authors": [
  7555. {
  7556. "name": "Fabien Potencier",
  7557. "email": "fabien@symfony.com"
  7558. },
  7559. {
  7560. "name": "Symfony Community",
  7561. "homepage": "https://symfony.com/contributors"
  7562. }
  7563. ],
  7564. "description": "Provides tools to internationalize your application",
  7565. "homepage": "https://symfony.com",
  7566. "support": {
  7567. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7568. },
  7569. "funding": [
  7570. {
  7571. "url": "https://symfony.com/sponsor",
  7572. "type": "custom"
  7573. },
  7574. {
  7575. "url": "https://github.com/fabpot",
  7576. "type": "github"
  7577. },
  7578. {
  7579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7580. "type": "tidelift"
  7581. }
  7582. ],
  7583. "time": "2023-01-01T08:36:10+00:00"
  7584. },
  7585. {
  7586. "name": "symfony/translation-contracts",
  7587. "version": "v3.0.2",
  7588. "source": {
  7589. "type": "git",
  7590. "url": "https://github.com/symfony/translation-contracts.git",
  7591. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7592. },
  7593. "dist": {
  7594. "type": "zip",
  7595. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7596. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7597. "shasum": "",
  7598. "mirrors": [
  7599. {
  7600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7601. "preferred": true
  7602. }
  7603. ]
  7604. },
  7605. "require": {
  7606. "php": ">=8.0.2"
  7607. },
  7608. "suggest": {
  7609. "symfony/translation-implementation": ""
  7610. },
  7611. "type": "library",
  7612. "extra": {
  7613. "thanks": {
  7614. "url": "https://github.com/symfony/contracts",
  7615. "name": "symfony/contracts"
  7616. },
  7617. "branch-alias": {
  7618. "dev-main": "3.0-dev"
  7619. }
  7620. },
  7621. "autoload": {
  7622. "psr-4": {
  7623. "Symfony\\Contracts\\Translation\\": ""
  7624. }
  7625. },
  7626. "notification-url": "https://packagist.org/downloads/",
  7627. "license": [
  7628. "MIT"
  7629. ],
  7630. "authors": [
  7631. {
  7632. "name": "Nicolas Grekas",
  7633. "email": "p@tchwork.com"
  7634. },
  7635. {
  7636. "name": "Symfony Community",
  7637. "homepage": "https://symfony.com/contributors"
  7638. }
  7639. ],
  7640. "description": "Generic abstractions related to translation",
  7641. "homepage": "https://symfony.com",
  7642. "keywords": [
  7643. "abstractions",
  7644. "contracts",
  7645. "decoupling",
  7646. "interfaces",
  7647. "interoperability",
  7648. "standards"
  7649. ],
  7650. "support": {
  7651. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7652. },
  7653. "funding": [
  7654. {
  7655. "url": "https://symfony.com/sponsor",
  7656. "type": "custom"
  7657. },
  7658. {
  7659. "url": "https://github.com/fabpot",
  7660. "type": "github"
  7661. },
  7662. {
  7663. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7664. "type": "tidelift"
  7665. }
  7666. ],
  7667. "time": "2022-06-27T17:10:44+00:00"
  7668. },
  7669. {
  7670. "name": "symfony/var-dumper",
  7671. "version": "v5.4.48",
  7672. "source": {
  7673. "type": "git",
  7674. "url": "https://github.com/symfony/var-dumper.git",
  7675. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  7676. },
  7677. "dist": {
  7678. "type": "zip",
  7679. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7680. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7681. "shasum": "",
  7682. "mirrors": [
  7683. {
  7684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7685. "preferred": true
  7686. }
  7687. ]
  7688. },
  7689. "require": {
  7690. "php": ">=7.2.5",
  7691. "symfony/polyfill-mbstring": "~1.0",
  7692. "symfony/polyfill-php80": "^1.16"
  7693. },
  7694. "conflict": {
  7695. "symfony/console": "<4.4"
  7696. },
  7697. "require-dev": {
  7698. "ext-iconv": "*",
  7699. "symfony/console": "^4.4|^5.0|^6.0",
  7700. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7701. "symfony/process": "^4.4|^5.0|^6.0",
  7702. "symfony/uid": "^5.1|^6.0",
  7703. "twig/twig": "^2.13|^3.0.4"
  7704. },
  7705. "suggest": {
  7706. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7707. "ext-intl": "To show region name in time zone dump",
  7708. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7709. },
  7710. "bin": [
  7711. "Resources/bin/var-dump-server"
  7712. ],
  7713. "type": "library",
  7714. "autoload": {
  7715. "files": [
  7716. "Resources/functions/dump.php"
  7717. ],
  7718. "psr-4": {
  7719. "Symfony\\Component\\VarDumper\\": ""
  7720. },
  7721. "exclude-from-classmap": [
  7722. "/Tests/"
  7723. ]
  7724. },
  7725. "notification-url": "https://packagist.org/downloads/",
  7726. "license": [
  7727. "MIT"
  7728. ],
  7729. "authors": [
  7730. {
  7731. "name": "Nicolas Grekas",
  7732. "email": "p@tchwork.com"
  7733. },
  7734. {
  7735. "name": "Symfony Community",
  7736. "homepage": "https://symfony.com/contributors"
  7737. }
  7738. ],
  7739. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7740. "homepage": "https://symfony.com",
  7741. "keywords": [
  7742. "debug",
  7743. "dump"
  7744. ],
  7745. "support": {
  7746. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  7747. },
  7748. "funding": [
  7749. {
  7750. "url": "https://symfony.com/sponsor",
  7751. "type": "custom"
  7752. },
  7753. {
  7754. "url": "https://github.com/fabpot",
  7755. "type": "github"
  7756. },
  7757. {
  7758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7759. "type": "tidelift"
  7760. }
  7761. ],
  7762. "time": "2024-11-08T15:21:10+00:00"
  7763. },
  7764. {
  7765. "name": "tijsverkoyen/css-to-inline-styles",
  7766. "version": "v2.3.0",
  7767. "source": {
  7768. "type": "git",
  7769. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7770. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7771. },
  7772. "dist": {
  7773. "type": "zip",
  7774. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7775. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7776. "shasum": "",
  7777. "mirrors": [
  7778. {
  7779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7780. "preferred": true
  7781. }
  7782. ]
  7783. },
  7784. "require": {
  7785. "ext-dom": "*",
  7786. "ext-libxml": "*",
  7787. "php": "^7.4 || ^8.0",
  7788. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7789. },
  7790. "require-dev": {
  7791. "phpstan/phpstan": "^2.0",
  7792. "phpstan/phpstan-phpunit": "^2.0",
  7793. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7794. },
  7795. "type": "library",
  7796. "extra": {
  7797. "branch-alias": {
  7798. "dev-master": "2.x-dev"
  7799. }
  7800. },
  7801. "autoload": {
  7802. "psr-4": {
  7803. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7804. }
  7805. },
  7806. "notification-url": "https://packagist.org/downloads/",
  7807. "license": [
  7808. "BSD-3-Clause"
  7809. ],
  7810. "authors": [
  7811. {
  7812. "name": "Tijs Verkoyen",
  7813. "email": "css_to_inline_styles@verkoyen.eu",
  7814. "role": "Developer"
  7815. }
  7816. ],
  7817. "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.",
  7818. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7819. "support": {
  7820. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7821. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7822. },
  7823. "time": "2024-12-21T16:25:41+00:00"
  7824. },
  7825. {
  7826. "name": "vlucas/phpdotenv",
  7827. "version": "v5.6.1",
  7828. "source": {
  7829. "type": "git",
  7830. "url": "https://github.com/vlucas/phpdotenv.git",
  7831. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7832. },
  7833. "dist": {
  7834. "type": "zip",
  7835. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7836. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7837. "shasum": "",
  7838. "mirrors": [
  7839. {
  7840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7841. "preferred": true
  7842. }
  7843. ]
  7844. },
  7845. "require": {
  7846. "ext-pcre": "*",
  7847. "graham-campbell/result-type": "^1.1.3",
  7848. "php": "^7.2.5 || ^8.0",
  7849. "phpoption/phpoption": "^1.9.3",
  7850. "symfony/polyfill-ctype": "^1.24",
  7851. "symfony/polyfill-mbstring": "^1.24",
  7852. "symfony/polyfill-php80": "^1.24"
  7853. },
  7854. "require-dev": {
  7855. "bamarni/composer-bin-plugin": "^1.8.2",
  7856. "ext-filter": "*",
  7857. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7858. },
  7859. "suggest": {
  7860. "ext-filter": "Required to use the boolean validator."
  7861. },
  7862. "type": "library",
  7863. "extra": {
  7864. "bamarni-bin": {
  7865. "bin-links": true,
  7866. "forward-command": false
  7867. },
  7868. "branch-alias": {
  7869. "dev-master": "5.6-dev"
  7870. }
  7871. },
  7872. "autoload": {
  7873. "psr-4": {
  7874. "Dotenv\\": "src/"
  7875. }
  7876. },
  7877. "notification-url": "https://packagist.org/downloads/",
  7878. "license": [
  7879. "BSD-3-Clause"
  7880. ],
  7881. "authors": [
  7882. {
  7883. "name": "Graham Campbell",
  7884. "email": "hello@gjcampbell.co.uk",
  7885. "homepage": "https://github.com/GrahamCampbell"
  7886. },
  7887. {
  7888. "name": "Vance Lucas",
  7889. "email": "vance@vancelucas.com",
  7890. "homepage": "https://github.com/vlucas"
  7891. }
  7892. ],
  7893. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7894. "keywords": [
  7895. "dotenv",
  7896. "env",
  7897. "environment"
  7898. ],
  7899. "support": {
  7900. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7901. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7902. },
  7903. "funding": [
  7904. {
  7905. "url": "https://github.com/GrahamCampbell",
  7906. "type": "github"
  7907. },
  7908. {
  7909. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7910. "type": "tidelift"
  7911. }
  7912. ],
  7913. "time": "2024-07-20T21:52:34+00:00"
  7914. },
  7915. {
  7916. "name": "voku/portable-ascii",
  7917. "version": "1.6.1",
  7918. "source": {
  7919. "type": "git",
  7920. "url": "https://github.com/voku/portable-ascii.git",
  7921. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7922. },
  7923. "dist": {
  7924. "type": "zip",
  7925. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7926. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7927. "shasum": "",
  7928. "mirrors": [
  7929. {
  7930. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7931. "preferred": true
  7932. }
  7933. ]
  7934. },
  7935. "require": {
  7936. "php": ">=7.0.0"
  7937. },
  7938. "require-dev": {
  7939. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7940. },
  7941. "suggest": {
  7942. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7943. },
  7944. "type": "library",
  7945. "autoload": {
  7946. "psr-4": {
  7947. "voku\\": "src/voku/"
  7948. }
  7949. },
  7950. "notification-url": "https://packagist.org/downloads/",
  7951. "license": [
  7952. "MIT"
  7953. ],
  7954. "authors": [
  7955. {
  7956. "name": "Lars Moelleken",
  7957. "homepage": "http://www.moelleken.org/"
  7958. }
  7959. ],
  7960. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7961. "homepage": "https://github.com/voku/portable-ascii",
  7962. "keywords": [
  7963. "ascii",
  7964. "clean",
  7965. "php"
  7966. ],
  7967. "support": {
  7968. "issues": "https://github.com/voku/portable-ascii/issues",
  7969. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7970. },
  7971. "funding": [
  7972. {
  7973. "url": "https://www.paypal.me/moelleken",
  7974. "type": "custom"
  7975. },
  7976. {
  7977. "url": "https://github.com/voku",
  7978. "type": "github"
  7979. },
  7980. {
  7981. "url": "https://opencollective.com/portable-ascii",
  7982. "type": "open_collective"
  7983. },
  7984. {
  7985. "url": "https://www.patreon.com/voku",
  7986. "type": "patreon"
  7987. },
  7988. {
  7989. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7990. "type": "tidelift"
  7991. }
  7992. ],
  7993. "time": "2022-01-24T18:55:24+00:00"
  7994. },
  7995. {
  7996. "name": "yansongda/artful",
  7997. "version": "v1.1.3",
  7998. "source": {
  7999. "type": "git",
  8000. "url": "https://github.com/yansongda/artful.git",
  8001. "reference": "734b97a6a03aa9702d1ce1f396d2e2c9bea845b3"
  8002. },
  8003. "dist": {
  8004. "type": "zip",
  8005. "url": "https://api.github.com/repos/yansongda/artful/zipball/734b97a6a03aa9702d1ce1f396d2e2c9bea845b3",
  8006. "reference": "734b97a6a03aa9702d1ce1f396d2e2c9bea845b3",
  8007. "shasum": "",
  8008. "mirrors": [
  8009. {
  8010. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8011. "preferred": true
  8012. }
  8013. ]
  8014. },
  8015. "require": {
  8016. "guzzlehttp/psr7": "^2.6",
  8017. "php": ">=8.0",
  8018. "psr/container": "^1.1 || ^2.0",
  8019. "psr/event-dispatcher": "^1.0",
  8020. "psr/http-client": "^1.0",
  8021. "psr/http-message": "^1.1 || ^2.0",
  8022. "psr/log": "^1.1 || ^2.0 || ^3.0",
  8023. "yansongda/supports": "~4.0.10"
  8024. },
  8025. "require-dev": {
  8026. "friendsofphp/php-cs-fixer": "^3.44",
  8027. "guzzlehttp/guzzle": "^7.0",
  8028. "hyperf/pimple": "^2.2",
  8029. "mockery/mockery": "^1.4",
  8030. "monolog/monolog": "^2.2",
  8031. "phpstan/phpstan": "^1.0.0 || ^2.0.0",
  8032. "phpunit/phpunit": "^9.0",
  8033. "symfony/event-dispatcher": "^5.2.0",
  8034. "symfony/http-foundation": "^5.2.0",
  8035. "symfony/psr-http-message-bridge": "^2.1",
  8036. "symfony/var-dumper": "^5.1"
  8037. },
  8038. "suggest": {
  8039. "hyperf/pimple": "其它/无框架下使用 SDK,请安装,任选其一",
  8040. "illuminate/container": "其它/无框架下使用 SDK,请安装,任选其一"
  8041. },
  8042. "type": "library",
  8043. "autoload": {
  8044. "files": [
  8045. "src/Functions.php"
  8046. ],
  8047. "psr-4": {
  8048. "Yansongda\\Artful\\": "src"
  8049. }
  8050. },
  8051. "notification-url": "https://packagist.org/downloads/",
  8052. "license": [
  8053. "MIT"
  8054. ],
  8055. "authors": [
  8056. {
  8057. "name": "yansongda",
  8058. "email": "me@yansongda.cn"
  8059. }
  8060. ],
  8061. "description": "Artful 是一个简单易用的 API 请求框架 PHP Api RequesT Framwork U Like。",
  8062. "keywords": [
  8063. "api",
  8064. "artful",
  8065. "framework",
  8066. "request"
  8067. ],
  8068. "support": {
  8069. "homepage": "https://artful.yansongda.cn",
  8070. "issues": "https://github.com/yansongda/artful/issues",
  8071. "source": "https://github.com/yansongda/artful"
  8072. },
  8073. "time": "2025-07-24T09:03:04+00:00"
  8074. },
  8075. {
  8076. "name": "yansongda/pay",
  8077. "version": "v3.7.16",
  8078. "source": {
  8079. "type": "git",
  8080. "url": "https://github.com/yansongda/pay.git",
  8081. "reference": "f24aea15bbfc2ec23b1201168d81f73a99433a8f"
  8082. },
  8083. "dist": {
  8084. "type": "zip",
  8085. "url": "https://api.github.com/repos/yansongda/pay/zipball/f24aea15bbfc2ec23b1201168d81f73a99433a8f",
  8086. "reference": "f24aea15bbfc2ec23b1201168d81f73a99433a8f",
  8087. "shasum": "",
  8088. "mirrors": [
  8089. {
  8090. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8091. "preferred": true
  8092. }
  8093. ]
  8094. },
  8095. "require": {
  8096. "ext-bcmath": "*",
  8097. "ext-json": "*",
  8098. "ext-libxml": "*",
  8099. "ext-openssl": "*",
  8100. "ext-simplexml": "*",
  8101. "php": ">=8.0",
  8102. "yansongda/artful": "~1.1.1",
  8103. "yansongda/supports": "~4.0.10"
  8104. },
  8105. "conflict": {
  8106. "hyperf/framework": "<3.0"
  8107. },
  8108. "require-dev": {
  8109. "friendsofphp/php-cs-fixer": "^3.44",
  8110. "guzzlehttp/guzzle": "^7.0",
  8111. "hyperf/pimple": "^2.2",
  8112. "jetbrains/phpstorm-attributes": "^1.1",
  8113. "mockery/mockery": "^1.4",
  8114. "monolog/monolog": "^2.2",
  8115. "phpstan/phpstan": "^1.0.0 || ^2.0.0",
  8116. "phpunit/phpunit": "^9.0",
  8117. "symfony/event-dispatcher": "^5.2.0",
  8118. "symfony/http-foundation": "^5.2.0",
  8119. "symfony/psr-http-message-bridge": "^2.1",
  8120. "symfony/var-dumper": "^5.1"
  8121. },
  8122. "type": "library",
  8123. "autoload": {
  8124. "files": [
  8125. "src/Functions.php"
  8126. ],
  8127. "psr-4": {
  8128. "Yansongda\\Pay\\": "src"
  8129. }
  8130. },
  8131. "notification-url": "https://packagist.org/downloads/",
  8132. "license": [
  8133. "MIT"
  8134. ],
  8135. "authors": [
  8136. {
  8137. "name": "yansongda",
  8138. "email": "me@yansongda.cn"
  8139. }
  8140. ],
  8141. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  8142. "keywords": [
  8143. "alipay",
  8144. "pay",
  8145. "wechat"
  8146. ],
  8147. "support": {
  8148. "homepage": "https://pay.yansongda.cn",
  8149. "issues": "https://github.com/yansongda/pay/issues",
  8150. "source": "https://github.com/yansongda/pay"
  8151. },
  8152. "time": "2025-06-12T05:51:47+00:00"
  8153. },
  8154. {
  8155. "name": "yansongda/supports",
  8156. "version": "v4.0.10",
  8157. "source": {
  8158. "type": "git",
  8159. "url": "https://github.com/yansongda/supports.git",
  8160. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5"
  8161. },
  8162. "dist": {
  8163. "type": "zip",
  8164. "url": "https://api.github.com/repos/yansongda/supports/zipball/11cc73776e6d4d763a84c8c733f64820abdc44e5",
  8165. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5",
  8166. "shasum": "",
  8167. "mirrors": [
  8168. {
  8169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8170. "preferred": true
  8171. }
  8172. ]
  8173. },
  8174. "require": {
  8175. "php": ">=8.0"
  8176. },
  8177. "require-dev": {
  8178. "friendsofphp/php-cs-fixer": "^3.0",
  8179. "mockery/mockery": "^1.4",
  8180. "phpstan/phpstan": "^1.1.0",
  8181. "phpunit/phpunit": "^9.0"
  8182. },
  8183. "suggest": {
  8184. "monolog/monolog": "Use logger",
  8185. "symfony/console": "Use stdout logger"
  8186. },
  8187. "type": "library",
  8188. "autoload": {
  8189. "files": [
  8190. "src/Functions.php"
  8191. ],
  8192. "psr-4": {
  8193. "Yansongda\\Supports\\": "src/"
  8194. }
  8195. },
  8196. "notification-url": "https://packagist.org/downloads/",
  8197. "license": [
  8198. "MIT"
  8199. ],
  8200. "authors": [
  8201. {
  8202. "name": "yansongda",
  8203. "email": "me@yansongda.cn"
  8204. }
  8205. ],
  8206. "description": "common components",
  8207. "keywords": [
  8208. "array",
  8209. "collection",
  8210. "config",
  8211. "support"
  8212. ],
  8213. "support": {
  8214. "issues": "https://github.com/yansongda/supports/issues",
  8215. "source": "https://github.com/yansongda/supports"
  8216. },
  8217. "time": "2024-06-09T15:49:21+00:00"
  8218. }
  8219. ],
  8220. "packages-dev": [
  8221. {
  8222. "name": "doctrine/instantiator",
  8223. "version": "1.5.0",
  8224. "source": {
  8225. "type": "git",
  8226. "url": "https://github.com/doctrine/instantiator.git",
  8227. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8228. },
  8229. "dist": {
  8230. "type": "zip",
  8231. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8232. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8233. "shasum": "",
  8234. "mirrors": [
  8235. {
  8236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8237. "preferred": true
  8238. }
  8239. ]
  8240. },
  8241. "require": {
  8242. "php": "^7.1 || ^8.0"
  8243. },
  8244. "require-dev": {
  8245. "doctrine/coding-standard": "^9 || ^11",
  8246. "ext-pdo": "*",
  8247. "ext-phar": "*",
  8248. "phpbench/phpbench": "^0.16 || ^1",
  8249. "phpstan/phpstan": "^1.4",
  8250. "phpstan/phpstan-phpunit": "^1",
  8251. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8252. "vimeo/psalm": "^4.30 || ^5.4"
  8253. },
  8254. "type": "library",
  8255. "autoload": {
  8256. "psr-4": {
  8257. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8258. }
  8259. },
  8260. "notification-url": "https://packagist.org/downloads/",
  8261. "license": [
  8262. "MIT"
  8263. ],
  8264. "authors": [
  8265. {
  8266. "name": "Marco Pivetta",
  8267. "email": "ocramius@gmail.com",
  8268. "homepage": "https://ocramius.github.io/"
  8269. }
  8270. ],
  8271. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8272. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8273. "keywords": [
  8274. "constructor",
  8275. "instantiate"
  8276. ],
  8277. "support": {
  8278. "issues": "https://github.com/doctrine/instantiator/issues",
  8279. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8280. },
  8281. "funding": [
  8282. {
  8283. "url": "https://www.doctrine-project.org/sponsorship.html",
  8284. "type": "custom"
  8285. },
  8286. {
  8287. "url": "https://www.patreon.com/phpdoctrine",
  8288. "type": "patreon"
  8289. },
  8290. {
  8291. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8292. "type": "tidelift"
  8293. }
  8294. ],
  8295. "time": "2022-12-30T00:15:36+00:00"
  8296. },
  8297. {
  8298. "name": "facade/flare-client-php",
  8299. "version": "1.10.0",
  8300. "source": {
  8301. "type": "git",
  8302. "url": "https://github.com/facade/flare-client-php.git",
  8303. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8304. },
  8305. "dist": {
  8306. "type": "zip",
  8307. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8308. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8309. "shasum": "",
  8310. "mirrors": [
  8311. {
  8312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8313. "preferred": true
  8314. }
  8315. ]
  8316. },
  8317. "require": {
  8318. "facade/ignition-contracts": "~1.0",
  8319. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8320. "php": "^7.1|^8.0",
  8321. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8322. "symfony/mime": "^3.4|^4.0|^5.1",
  8323. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8324. },
  8325. "require-dev": {
  8326. "friendsofphp/php-cs-fixer": "^2.14",
  8327. "phpunit/phpunit": "^7.5",
  8328. "spatie/phpunit-snapshot-assertions": "^2.0"
  8329. },
  8330. "type": "library",
  8331. "extra": {
  8332. "branch-alias": {
  8333. "dev-master": "1.0-dev"
  8334. }
  8335. },
  8336. "autoload": {
  8337. "files": [
  8338. "src/helpers.php"
  8339. ],
  8340. "psr-4": {
  8341. "Facade\\FlareClient\\": "src"
  8342. }
  8343. },
  8344. "notification-url": "https://packagist.org/downloads/",
  8345. "license": [
  8346. "MIT"
  8347. ],
  8348. "description": "Send PHP errors to Flare",
  8349. "homepage": "https://github.com/facade/flare-client-php",
  8350. "keywords": [
  8351. "exception",
  8352. "facade",
  8353. "flare",
  8354. "reporting"
  8355. ],
  8356. "support": {
  8357. "issues": "https://github.com/facade/flare-client-php/issues",
  8358. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8359. },
  8360. "funding": [
  8361. {
  8362. "url": "https://github.com/spatie",
  8363. "type": "github"
  8364. }
  8365. ],
  8366. "time": "2022-08-09T11:23:57+00:00"
  8367. },
  8368. {
  8369. "name": "facade/ignition",
  8370. "version": "2.17.7",
  8371. "source": {
  8372. "type": "git",
  8373. "url": "https://github.com/facade/ignition.git",
  8374. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8375. },
  8376. "dist": {
  8377. "type": "zip",
  8378. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8379. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8380. "shasum": "",
  8381. "mirrors": [
  8382. {
  8383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8384. "preferred": true
  8385. }
  8386. ]
  8387. },
  8388. "require": {
  8389. "ext-curl": "*",
  8390. "ext-json": "*",
  8391. "ext-mbstring": "*",
  8392. "facade/flare-client-php": "^1.9.1",
  8393. "facade/ignition-contracts": "^1.0.2",
  8394. "illuminate/support": "^7.0|^8.0",
  8395. "monolog/monolog": "^2.0",
  8396. "php": "^7.2.5|^8.0",
  8397. "symfony/console": "^5.0",
  8398. "symfony/var-dumper": "^5.0"
  8399. },
  8400. "require-dev": {
  8401. "friendsofphp/php-cs-fixer": "^2.14",
  8402. "livewire/livewire": "^2.4",
  8403. "mockery/mockery": "^1.3",
  8404. "orchestra/testbench": "^5.0|^6.0",
  8405. "psalm/plugin-laravel": "^1.2"
  8406. },
  8407. "suggest": {
  8408. "laravel/telescope": "^3.1"
  8409. },
  8410. "type": "library",
  8411. "extra": {
  8412. "branch-alias": {
  8413. "dev-master": "2.x-dev"
  8414. },
  8415. "laravel": {
  8416. "providers": [
  8417. "Facade\\Ignition\\IgnitionServiceProvider"
  8418. ],
  8419. "aliases": {
  8420. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8421. }
  8422. }
  8423. },
  8424. "autoload": {
  8425. "files": [
  8426. "src/helpers.php"
  8427. ],
  8428. "psr-4": {
  8429. "Facade\\Ignition\\": "src"
  8430. }
  8431. },
  8432. "notification-url": "https://packagist.org/downloads/",
  8433. "license": [
  8434. "MIT"
  8435. ],
  8436. "description": "A beautiful error page for Laravel applications.",
  8437. "homepage": "https://github.com/facade/ignition",
  8438. "keywords": [
  8439. "error",
  8440. "flare",
  8441. "laravel",
  8442. "page"
  8443. ],
  8444. "support": {
  8445. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8446. "forum": "https://twitter.com/flareappio",
  8447. "issues": "https://github.com/facade/ignition/issues",
  8448. "source": "https://github.com/facade/ignition"
  8449. },
  8450. "time": "2023-01-26T12:34:59+00:00"
  8451. },
  8452. {
  8453. "name": "facade/ignition-contracts",
  8454. "version": "1.0.2",
  8455. "source": {
  8456. "type": "git",
  8457. "url": "https://github.com/facade/ignition-contracts.git",
  8458. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8459. },
  8460. "dist": {
  8461. "type": "zip",
  8462. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8463. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8464. "shasum": "",
  8465. "mirrors": [
  8466. {
  8467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8468. "preferred": true
  8469. }
  8470. ]
  8471. },
  8472. "require": {
  8473. "php": "^7.3|^8.0"
  8474. },
  8475. "require-dev": {
  8476. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8477. "phpunit/phpunit": "^9.3.11",
  8478. "vimeo/psalm": "^3.17.1"
  8479. },
  8480. "type": "library",
  8481. "autoload": {
  8482. "psr-4": {
  8483. "Facade\\IgnitionContracts\\": "src"
  8484. }
  8485. },
  8486. "notification-url": "https://packagist.org/downloads/",
  8487. "license": [
  8488. "MIT"
  8489. ],
  8490. "authors": [
  8491. {
  8492. "name": "Freek Van der Herten",
  8493. "email": "freek@spatie.be",
  8494. "homepage": "https://flareapp.io",
  8495. "role": "Developer"
  8496. }
  8497. ],
  8498. "description": "Solution contracts for Ignition",
  8499. "homepage": "https://github.com/facade/ignition-contracts",
  8500. "keywords": [
  8501. "contracts",
  8502. "flare",
  8503. "ignition"
  8504. ],
  8505. "support": {
  8506. "issues": "https://github.com/facade/ignition-contracts/issues",
  8507. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8508. },
  8509. "time": "2020-10-16T08:27:54+00:00"
  8510. },
  8511. {
  8512. "name": "fakerphp/faker",
  8513. "version": "v1.23.1",
  8514. "source": {
  8515. "type": "git",
  8516. "url": "https://github.com/FakerPHP/Faker.git",
  8517. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8518. },
  8519. "dist": {
  8520. "type": "zip",
  8521. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8522. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8523. "shasum": "",
  8524. "mirrors": [
  8525. {
  8526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8527. "preferred": true
  8528. }
  8529. ]
  8530. },
  8531. "require": {
  8532. "php": "^7.4 || ^8.0",
  8533. "psr/container": "^1.0 || ^2.0",
  8534. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8535. },
  8536. "conflict": {
  8537. "fzaninotto/faker": "*"
  8538. },
  8539. "require-dev": {
  8540. "bamarni/composer-bin-plugin": "^1.4.1",
  8541. "doctrine/persistence": "^1.3 || ^2.0",
  8542. "ext-intl": "*",
  8543. "phpunit/phpunit": "^9.5.26",
  8544. "symfony/phpunit-bridge": "^5.4.16"
  8545. },
  8546. "suggest": {
  8547. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8548. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8549. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8550. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8551. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8552. },
  8553. "type": "library",
  8554. "autoload": {
  8555. "psr-4": {
  8556. "Faker\\": "src/Faker/"
  8557. }
  8558. },
  8559. "notification-url": "https://packagist.org/downloads/",
  8560. "license": [
  8561. "MIT"
  8562. ],
  8563. "authors": [
  8564. {
  8565. "name": "François Zaninotto"
  8566. }
  8567. ],
  8568. "description": "Faker is a PHP library that generates fake data for you.",
  8569. "keywords": [
  8570. "data",
  8571. "faker",
  8572. "fixtures"
  8573. ],
  8574. "support": {
  8575. "issues": "https://github.com/FakerPHP/Faker/issues",
  8576. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8577. },
  8578. "time": "2024-01-02T13:46:09+00:00"
  8579. },
  8580. {
  8581. "name": "filp/whoops",
  8582. "version": "2.16.0",
  8583. "source": {
  8584. "type": "git",
  8585. "url": "https://github.com/filp/whoops.git",
  8586. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  8587. },
  8588. "dist": {
  8589. "type": "zip",
  8590. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  8591. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  8592. "shasum": "",
  8593. "mirrors": [
  8594. {
  8595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8596. "preferred": true
  8597. }
  8598. ]
  8599. },
  8600. "require": {
  8601. "php": "^7.1 || ^8.0",
  8602. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8603. },
  8604. "require-dev": {
  8605. "mockery/mockery": "^1.0",
  8606. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8607. "symfony/var-dumper": "^4.0 || ^5.0"
  8608. },
  8609. "suggest": {
  8610. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8611. "whoops/soap": "Formats errors as SOAP responses"
  8612. },
  8613. "type": "library",
  8614. "extra": {
  8615. "branch-alias": {
  8616. "dev-master": "2.7-dev"
  8617. }
  8618. },
  8619. "autoload": {
  8620. "psr-4": {
  8621. "Whoops\\": "src/Whoops/"
  8622. }
  8623. },
  8624. "notification-url": "https://packagist.org/downloads/",
  8625. "license": [
  8626. "MIT"
  8627. ],
  8628. "authors": [
  8629. {
  8630. "name": "Filipe Dobreira",
  8631. "homepage": "https://github.com/filp",
  8632. "role": "Developer"
  8633. }
  8634. ],
  8635. "description": "php error handling for cool kids",
  8636. "homepage": "https://filp.github.io/whoops/",
  8637. "keywords": [
  8638. "error",
  8639. "exception",
  8640. "handling",
  8641. "library",
  8642. "throwable",
  8643. "whoops"
  8644. ],
  8645. "support": {
  8646. "issues": "https://github.com/filp/whoops/issues",
  8647. "source": "https://github.com/filp/whoops/tree/2.16.0"
  8648. },
  8649. "funding": [
  8650. {
  8651. "url": "https://github.com/denis-sokolov",
  8652. "type": "github"
  8653. }
  8654. ],
  8655. "time": "2024-09-25T12:00:00+00:00"
  8656. },
  8657. {
  8658. "name": "hamcrest/hamcrest-php",
  8659. "version": "v2.0.1",
  8660. "source": {
  8661. "type": "git",
  8662. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8663. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8664. },
  8665. "dist": {
  8666. "type": "zip",
  8667. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8668. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8669. "shasum": "",
  8670. "mirrors": [
  8671. {
  8672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8673. "preferred": true
  8674. }
  8675. ]
  8676. },
  8677. "require": {
  8678. "php": "^5.3|^7.0|^8.0"
  8679. },
  8680. "replace": {
  8681. "cordoval/hamcrest-php": "*",
  8682. "davedevelopment/hamcrest-php": "*",
  8683. "kodova/hamcrest-php": "*"
  8684. },
  8685. "require-dev": {
  8686. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8687. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8688. },
  8689. "type": "library",
  8690. "extra": {
  8691. "branch-alias": {
  8692. "dev-master": "2.1-dev"
  8693. }
  8694. },
  8695. "autoload": {
  8696. "classmap": [
  8697. "hamcrest"
  8698. ]
  8699. },
  8700. "notification-url": "https://packagist.org/downloads/",
  8701. "license": [
  8702. "BSD-3-Clause"
  8703. ],
  8704. "description": "This is the PHP port of Hamcrest Matchers",
  8705. "keywords": [
  8706. "test"
  8707. ],
  8708. "support": {
  8709. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8710. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8711. },
  8712. "time": "2020-07-09T08:09:16+00:00"
  8713. },
  8714. {
  8715. "name": "mockery/mockery",
  8716. "version": "1.6.12",
  8717. "source": {
  8718. "type": "git",
  8719. "url": "https://github.com/mockery/mockery.git",
  8720. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8721. },
  8722. "dist": {
  8723. "type": "zip",
  8724. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8725. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8726. "shasum": "",
  8727. "mirrors": [
  8728. {
  8729. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8730. "preferred": true
  8731. }
  8732. ]
  8733. },
  8734. "require": {
  8735. "hamcrest/hamcrest-php": "^2.0.1",
  8736. "lib-pcre": ">=7.0",
  8737. "php": ">=7.3"
  8738. },
  8739. "conflict": {
  8740. "phpunit/phpunit": "<8.0"
  8741. },
  8742. "require-dev": {
  8743. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8744. "symplify/easy-coding-standard": "^12.1.14"
  8745. },
  8746. "type": "library",
  8747. "autoload": {
  8748. "files": [
  8749. "library/helpers.php",
  8750. "library/Mockery.php"
  8751. ],
  8752. "psr-4": {
  8753. "Mockery\\": "library/Mockery"
  8754. }
  8755. },
  8756. "notification-url": "https://packagist.org/downloads/",
  8757. "license": [
  8758. "BSD-3-Clause"
  8759. ],
  8760. "authors": [
  8761. {
  8762. "name": "Pádraic Brady",
  8763. "email": "padraic.brady@gmail.com",
  8764. "homepage": "https://github.com/padraic",
  8765. "role": "Author"
  8766. },
  8767. {
  8768. "name": "Dave Marshall",
  8769. "email": "dave.marshall@atstsolutions.co.uk",
  8770. "homepage": "https://davedevelopment.co.uk",
  8771. "role": "Developer"
  8772. },
  8773. {
  8774. "name": "Nathanael Esayeas",
  8775. "email": "nathanael.esayeas@protonmail.com",
  8776. "homepage": "https://github.com/ghostwriter",
  8777. "role": "Lead Developer"
  8778. }
  8779. ],
  8780. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8781. "homepage": "https://github.com/mockery/mockery",
  8782. "keywords": [
  8783. "BDD",
  8784. "TDD",
  8785. "library",
  8786. "mock",
  8787. "mock objects",
  8788. "mockery",
  8789. "stub",
  8790. "test",
  8791. "test double",
  8792. "testing"
  8793. ],
  8794. "support": {
  8795. "docs": "https://docs.mockery.io/",
  8796. "issues": "https://github.com/mockery/mockery/issues",
  8797. "rss": "https://github.com/mockery/mockery/releases.atom",
  8798. "security": "https://github.com/mockery/mockery/security/advisories",
  8799. "source": "https://github.com/mockery/mockery"
  8800. },
  8801. "time": "2024-05-16T03:13:13+00:00"
  8802. },
  8803. {
  8804. "name": "myclabs/deep-copy",
  8805. "version": "1.x-dev",
  8806. "source": {
  8807. "type": "git",
  8808. "url": "https://github.com/myclabs/DeepCopy.git",
  8809. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8810. },
  8811. "dist": {
  8812. "type": "zip",
  8813. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8814. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8815. "shasum": "",
  8816. "mirrors": [
  8817. {
  8818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8819. "preferred": true
  8820. }
  8821. ]
  8822. },
  8823. "require": {
  8824. "php": "^7.1 || ^8.0"
  8825. },
  8826. "conflict": {
  8827. "doctrine/collections": "<1.6.8",
  8828. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8829. },
  8830. "require-dev": {
  8831. "doctrine/collections": "^1.6.8",
  8832. "doctrine/common": "^2.13.3 || ^3.2.2",
  8833. "phpspec/prophecy": "^1.10",
  8834. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8835. },
  8836. "default-branch": true,
  8837. "type": "library",
  8838. "autoload": {
  8839. "files": [
  8840. "src/DeepCopy/deep_copy.php"
  8841. ],
  8842. "psr-4": {
  8843. "DeepCopy\\": "src/DeepCopy/"
  8844. }
  8845. },
  8846. "notification-url": "https://packagist.org/downloads/",
  8847. "license": [
  8848. "MIT"
  8849. ],
  8850. "description": "Create deep copies (clones) of your objects",
  8851. "keywords": [
  8852. "clone",
  8853. "copy",
  8854. "duplicate",
  8855. "object",
  8856. "object graph"
  8857. ],
  8858. "support": {
  8859. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8860. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8861. },
  8862. "funding": [
  8863. {
  8864. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8865. "type": "tidelift"
  8866. }
  8867. ],
  8868. "time": "2025-07-05T12:25:42+00:00"
  8869. },
  8870. {
  8871. "name": "nunomaduro/collision",
  8872. "version": "v5.11.0",
  8873. "source": {
  8874. "type": "git",
  8875. "url": "https://github.com/nunomaduro/collision.git",
  8876. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8877. },
  8878. "dist": {
  8879. "type": "zip",
  8880. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8881. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8882. "shasum": "",
  8883. "mirrors": [
  8884. {
  8885. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8886. "preferred": true
  8887. }
  8888. ]
  8889. },
  8890. "require": {
  8891. "facade/ignition-contracts": "^1.0",
  8892. "filp/whoops": "^2.14.3",
  8893. "php": "^7.3 || ^8.0",
  8894. "symfony/console": "^5.0"
  8895. },
  8896. "require-dev": {
  8897. "brianium/paratest": "^6.1",
  8898. "fideloper/proxy": "^4.4.1",
  8899. "fruitcake/laravel-cors": "^2.0.3",
  8900. "laravel/framework": "8.x-dev",
  8901. "nunomaduro/larastan": "^0.6.2",
  8902. "nunomaduro/mock-final-classes": "^1.0",
  8903. "orchestra/testbench": "^6.0",
  8904. "phpstan/phpstan": "^0.12.64",
  8905. "phpunit/phpunit": "^9.5.0"
  8906. },
  8907. "type": "library",
  8908. "extra": {
  8909. "laravel": {
  8910. "providers": [
  8911. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8912. ]
  8913. }
  8914. },
  8915. "autoload": {
  8916. "psr-4": {
  8917. "NunoMaduro\\Collision\\": "src/"
  8918. }
  8919. },
  8920. "notification-url": "https://packagist.org/downloads/",
  8921. "license": [
  8922. "MIT"
  8923. ],
  8924. "authors": [
  8925. {
  8926. "name": "Nuno Maduro",
  8927. "email": "enunomaduro@gmail.com"
  8928. }
  8929. ],
  8930. "description": "Cli error handling for console/command-line PHP applications.",
  8931. "keywords": [
  8932. "artisan",
  8933. "cli",
  8934. "command-line",
  8935. "console",
  8936. "error",
  8937. "handling",
  8938. "laravel",
  8939. "laravel-zero",
  8940. "php",
  8941. "symfony"
  8942. ],
  8943. "support": {
  8944. "issues": "https://github.com/nunomaduro/collision/issues",
  8945. "source": "https://github.com/nunomaduro/collision"
  8946. },
  8947. "funding": [
  8948. {
  8949. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8950. "type": "custom"
  8951. },
  8952. {
  8953. "url": "https://github.com/nunomaduro",
  8954. "type": "github"
  8955. },
  8956. {
  8957. "url": "https://www.patreon.com/nunomaduro",
  8958. "type": "patreon"
  8959. }
  8960. ],
  8961. "time": "2022-01-10T16:22:52+00:00"
  8962. },
  8963. {
  8964. "name": "phar-io/manifest",
  8965. "version": "dev-master",
  8966. "source": {
  8967. "type": "git",
  8968. "url": "https://github.com/phar-io/manifest.git",
  8969. "reference": "c581d4941e196459bf76c945a8ca922963a66708"
  8970. },
  8971. "dist": {
  8972. "type": "zip",
  8973. "url": "https://api.github.com/repos/phar-io/manifest/zipball/c581d4941e196459bf76c945a8ca922963a66708",
  8974. "reference": "c581d4941e196459bf76c945a8ca922963a66708",
  8975. "shasum": "",
  8976. "mirrors": [
  8977. {
  8978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8979. "preferred": true
  8980. }
  8981. ]
  8982. },
  8983. "require": {
  8984. "ext-dom": "*",
  8985. "ext-libxml": "*",
  8986. "ext-phar": "*",
  8987. "ext-xmlwriter": "*",
  8988. "phar-io/version": "^3.0.1",
  8989. "php": "^7.2 || ^8.0"
  8990. },
  8991. "default-branch": true,
  8992. "type": "library",
  8993. "extra": {
  8994. "branch-alias": {
  8995. "dev-master": "2.0.x-dev"
  8996. }
  8997. },
  8998. "autoload": {
  8999. "classmap": [
  9000. "src/"
  9001. ]
  9002. },
  9003. "notification-url": "https://packagist.org/downloads/",
  9004. "license": [
  9005. "BSD-3-Clause"
  9006. ],
  9007. "authors": [
  9008. {
  9009. "name": "Arne Blankerts",
  9010. "email": "arne@blankerts.de",
  9011. "role": "Developer"
  9012. },
  9013. {
  9014. "name": "Sebastian Heuer",
  9015. "email": "sebastian@phpeople.de",
  9016. "role": "Developer"
  9017. },
  9018. {
  9019. "name": "Sebastian Bergmann",
  9020. "email": "sebastian@phpunit.de",
  9021. "role": "Developer"
  9022. }
  9023. ],
  9024. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9025. "support": {
  9026. "issues": "https://github.com/phar-io/manifest/issues",
  9027. "source": "https://github.com/phar-io/manifest/tree/master"
  9028. },
  9029. "funding": [
  9030. {
  9031. "url": "https://github.com/theseer",
  9032. "type": "github"
  9033. }
  9034. ],
  9035. "time": "2025-11-27T15:23:09+00:00"
  9036. },
  9037. {
  9038. "name": "phar-io/version",
  9039. "version": "3.2.1",
  9040. "source": {
  9041. "type": "git",
  9042. "url": "https://github.com/phar-io/version.git",
  9043. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9044. },
  9045. "dist": {
  9046. "type": "zip",
  9047. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9048. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9049. "shasum": "",
  9050. "mirrors": [
  9051. {
  9052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9053. "preferred": true
  9054. }
  9055. ]
  9056. },
  9057. "require": {
  9058. "php": "^7.2 || ^8.0"
  9059. },
  9060. "type": "library",
  9061. "autoload": {
  9062. "classmap": [
  9063. "src/"
  9064. ]
  9065. },
  9066. "notification-url": "https://packagist.org/downloads/",
  9067. "license": [
  9068. "BSD-3-Clause"
  9069. ],
  9070. "authors": [
  9071. {
  9072. "name": "Arne Blankerts",
  9073. "email": "arne@blankerts.de",
  9074. "role": "Developer"
  9075. },
  9076. {
  9077. "name": "Sebastian Heuer",
  9078. "email": "sebastian@phpeople.de",
  9079. "role": "Developer"
  9080. },
  9081. {
  9082. "name": "Sebastian Bergmann",
  9083. "email": "sebastian@phpunit.de",
  9084. "role": "Developer"
  9085. }
  9086. ],
  9087. "description": "Library for handling version information and constraints",
  9088. "support": {
  9089. "issues": "https://github.com/phar-io/version/issues",
  9090. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9091. },
  9092. "time": "2022-02-21T01:04:05+00:00"
  9093. },
  9094. {
  9095. "name": "phpunit/php-code-coverage",
  9096. "version": "9.2.32",
  9097. "source": {
  9098. "type": "git",
  9099. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9100. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9101. },
  9102. "dist": {
  9103. "type": "zip",
  9104. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9105. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9106. "shasum": "",
  9107. "mirrors": [
  9108. {
  9109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9110. "preferred": true
  9111. }
  9112. ]
  9113. },
  9114. "require": {
  9115. "ext-dom": "*",
  9116. "ext-libxml": "*",
  9117. "ext-xmlwriter": "*",
  9118. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9119. "php": ">=7.3",
  9120. "phpunit/php-file-iterator": "^3.0.6",
  9121. "phpunit/php-text-template": "^2.0.4",
  9122. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9123. "sebastian/complexity": "^2.0.3",
  9124. "sebastian/environment": "^5.1.5",
  9125. "sebastian/lines-of-code": "^1.0.4",
  9126. "sebastian/version": "^3.0.2",
  9127. "theseer/tokenizer": "^1.2.3"
  9128. },
  9129. "require-dev": {
  9130. "phpunit/phpunit": "^9.6"
  9131. },
  9132. "suggest": {
  9133. "ext-pcov": "PHP extension that provides line coverage",
  9134. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9135. },
  9136. "type": "library",
  9137. "extra": {
  9138. "branch-alias": {
  9139. "dev-main": "9.2.x-dev"
  9140. }
  9141. },
  9142. "autoload": {
  9143. "classmap": [
  9144. "src/"
  9145. ]
  9146. },
  9147. "notification-url": "https://packagist.org/downloads/",
  9148. "license": [
  9149. "BSD-3-Clause"
  9150. ],
  9151. "authors": [
  9152. {
  9153. "name": "Sebastian Bergmann",
  9154. "email": "sebastian@phpunit.de",
  9155. "role": "lead"
  9156. }
  9157. ],
  9158. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9159. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9160. "keywords": [
  9161. "coverage",
  9162. "testing",
  9163. "xunit"
  9164. ],
  9165. "support": {
  9166. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9167. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9168. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9169. },
  9170. "funding": [
  9171. {
  9172. "url": "https://github.com/sebastianbergmann",
  9173. "type": "github"
  9174. }
  9175. ],
  9176. "time": "2024-08-22T04:23:01+00:00"
  9177. },
  9178. {
  9179. "name": "phpunit/php-file-iterator",
  9180. "version": "3.0.6",
  9181. "source": {
  9182. "type": "git",
  9183. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9184. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9185. },
  9186. "dist": {
  9187. "type": "zip",
  9188. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9189. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  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. "phpunit/phpunit": "^9.3"
  9203. },
  9204. "type": "library",
  9205. "extra": {
  9206. "branch-alias": {
  9207. "dev-master": "3.0-dev"
  9208. }
  9209. },
  9210. "autoload": {
  9211. "classmap": [
  9212. "src/"
  9213. ]
  9214. },
  9215. "notification-url": "https://packagist.org/downloads/",
  9216. "license": [
  9217. "BSD-3-Clause"
  9218. ],
  9219. "authors": [
  9220. {
  9221. "name": "Sebastian Bergmann",
  9222. "email": "sebastian@phpunit.de",
  9223. "role": "lead"
  9224. }
  9225. ],
  9226. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9227. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9228. "keywords": [
  9229. "filesystem",
  9230. "iterator"
  9231. ],
  9232. "support": {
  9233. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9234. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9235. },
  9236. "funding": [
  9237. {
  9238. "url": "https://github.com/sebastianbergmann",
  9239. "type": "github"
  9240. }
  9241. ],
  9242. "time": "2021-12-02T12:48:52+00:00"
  9243. },
  9244. {
  9245. "name": "phpunit/php-invoker",
  9246. "version": "3.1.1",
  9247. "source": {
  9248. "type": "git",
  9249. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9250. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9251. },
  9252. "dist": {
  9253. "type": "zip",
  9254. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9255. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9256. "shasum": "",
  9257. "mirrors": [
  9258. {
  9259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9260. "preferred": true
  9261. }
  9262. ]
  9263. },
  9264. "require": {
  9265. "php": ">=7.3"
  9266. },
  9267. "require-dev": {
  9268. "ext-pcntl": "*",
  9269. "phpunit/phpunit": "^9.3"
  9270. },
  9271. "suggest": {
  9272. "ext-pcntl": "*"
  9273. },
  9274. "type": "library",
  9275. "extra": {
  9276. "branch-alias": {
  9277. "dev-master": "3.1-dev"
  9278. }
  9279. },
  9280. "autoload": {
  9281. "classmap": [
  9282. "src/"
  9283. ]
  9284. },
  9285. "notification-url": "https://packagist.org/downloads/",
  9286. "license": [
  9287. "BSD-3-Clause"
  9288. ],
  9289. "authors": [
  9290. {
  9291. "name": "Sebastian Bergmann",
  9292. "email": "sebastian@phpunit.de",
  9293. "role": "lead"
  9294. }
  9295. ],
  9296. "description": "Invoke callables with a timeout",
  9297. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9298. "keywords": [
  9299. "process"
  9300. ],
  9301. "support": {
  9302. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9303. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9304. },
  9305. "funding": [
  9306. {
  9307. "url": "https://github.com/sebastianbergmann",
  9308. "type": "github"
  9309. }
  9310. ],
  9311. "time": "2020-09-28T05:58:55+00:00"
  9312. },
  9313. {
  9314. "name": "phpunit/php-text-template",
  9315. "version": "2.0.4",
  9316. "source": {
  9317. "type": "git",
  9318. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9319. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9320. },
  9321. "dist": {
  9322. "type": "zip",
  9323. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9324. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9325. "shasum": "",
  9326. "mirrors": [
  9327. {
  9328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9329. "preferred": true
  9330. }
  9331. ]
  9332. },
  9333. "require": {
  9334. "php": ">=7.3"
  9335. },
  9336. "require-dev": {
  9337. "phpunit/phpunit": "^9.3"
  9338. },
  9339. "type": "library",
  9340. "extra": {
  9341. "branch-alias": {
  9342. "dev-master": "2.0-dev"
  9343. }
  9344. },
  9345. "autoload": {
  9346. "classmap": [
  9347. "src/"
  9348. ]
  9349. },
  9350. "notification-url": "https://packagist.org/downloads/",
  9351. "license": [
  9352. "BSD-3-Clause"
  9353. ],
  9354. "authors": [
  9355. {
  9356. "name": "Sebastian Bergmann",
  9357. "email": "sebastian@phpunit.de",
  9358. "role": "lead"
  9359. }
  9360. ],
  9361. "description": "Simple template engine.",
  9362. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9363. "keywords": [
  9364. "template"
  9365. ],
  9366. "support": {
  9367. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9368. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9369. },
  9370. "funding": [
  9371. {
  9372. "url": "https://github.com/sebastianbergmann",
  9373. "type": "github"
  9374. }
  9375. ],
  9376. "time": "2020-10-26T05:33:50+00:00"
  9377. },
  9378. {
  9379. "name": "phpunit/php-timer",
  9380. "version": "5.0.3",
  9381. "source": {
  9382. "type": "git",
  9383. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9384. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9385. },
  9386. "dist": {
  9387. "type": "zip",
  9388. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9389. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9390. "shasum": "",
  9391. "mirrors": [
  9392. {
  9393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9394. "preferred": true
  9395. }
  9396. ]
  9397. },
  9398. "require": {
  9399. "php": ">=7.3"
  9400. },
  9401. "require-dev": {
  9402. "phpunit/phpunit": "^9.3"
  9403. },
  9404. "type": "library",
  9405. "extra": {
  9406. "branch-alias": {
  9407. "dev-master": "5.0-dev"
  9408. }
  9409. },
  9410. "autoload": {
  9411. "classmap": [
  9412. "src/"
  9413. ]
  9414. },
  9415. "notification-url": "https://packagist.org/downloads/",
  9416. "license": [
  9417. "BSD-3-Clause"
  9418. ],
  9419. "authors": [
  9420. {
  9421. "name": "Sebastian Bergmann",
  9422. "email": "sebastian@phpunit.de",
  9423. "role": "lead"
  9424. }
  9425. ],
  9426. "description": "Utility class for timing",
  9427. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9428. "keywords": [
  9429. "timer"
  9430. ],
  9431. "support": {
  9432. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9433. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9434. },
  9435. "funding": [
  9436. {
  9437. "url": "https://github.com/sebastianbergmann",
  9438. "type": "github"
  9439. }
  9440. ],
  9441. "time": "2020-10-26T13:16:10+00:00"
  9442. },
  9443. {
  9444. "name": "phpunit/phpunit",
  9445. "version": "9.6.30",
  9446. "source": {
  9447. "type": "git",
  9448. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9449. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4"
  9450. },
  9451. "dist": {
  9452. "type": "zip",
  9453. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9454. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9455. "shasum": "",
  9456. "mirrors": [
  9457. {
  9458. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9459. "preferred": true
  9460. }
  9461. ]
  9462. },
  9463. "require": {
  9464. "doctrine/instantiator": "^1.5.0 || ^2",
  9465. "ext-dom": "*",
  9466. "ext-json": "*",
  9467. "ext-libxml": "*",
  9468. "ext-mbstring": "*",
  9469. "ext-xml": "*",
  9470. "ext-xmlwriter": "*",
  9471. "myclabs/deep-copy": "^1.13.4",
  9472. "phar-io/manifest": "^2.0.4",
  9473. "phar-io/version": "^3.2.1",
  9474. "php": ">=7.3",
  9475. "phpunit/php-code-coverage": "^9.2.32",
  9476. "phpunit/php-file-iterator": "^3.0.6",
  9477. "phpunit/php-invoker": "^3.1.1",
  9478. "phpunit/php-text-template": "^2.0.4",
  9479. "phpunit/php-timer": "^5.0.3",
  9480. "sebastian/cli-parser": "^1.0.2",
  9481. "sebastian/code-unit": "^1.0.8",
  9482. "sebastian/comparator": "^4.0.9",
  9483. "sebastian/diff": "^4.0.6",
  9484. "sebastian/environment": "^5.1.5",
  9485. "sebastian/exporter": "^4.0.8",
  9486. "sebastian/global-state": "^5.0.8",
  9487. "sebastian/object-enumerator": "^4.0.4",
  9488. "sebastian/resource-operations": "^3.0.4",
  9489. "sebastian/type": "^3.2.1",
  9490. "sebastian/version": "^3.0.2"
  9491. },
  9492. "suggest": {
  9493. "ext-soap": "To be able to generate mocks based on WSDL files",
  9494. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9495. },
  9496. "bin": [
  9497. "phpunit"
  9498. ],
  9499. "type": "library",
  9500. "extra": {
  9501. "branch-alias": {
  9502. "dev-master": "9.6-dev"
  9503. }
  9504. },
  9505. "autoload": {
  9506. "files": [
  9507. "src/Framework/Assert/Functions.php"
  9508. ],
  9509. "classmap": [
  9510. "src/"
  9511. ]
  9512. },
  9513. "notification-url": "https://packagist.org/downloads/",
  9514. "license": [
  9515. "BSD-3-Clause"
  9516. ],
  9517. "authors": [
  9518. {
  9519. "name": "Sebastian Bergmann",
  9520. "email": "sebastian@phpunit.de",
  9521. "role": "lead"
  9522. }
  9523. ],
  9524. "description": "The PHP Unit Testing framework.",
  9525. "homepage": "https://phpunit.de/",
  9526. "keywords": [
  9527. "phpunit",
  9528. "testing",
  9529. "xunit"
  9530. ],
  9531. "support": {
  9532. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9533. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9534. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.30"
  9535. },
  9536. "funding": [
  9537. {
  9538. "url": "https://phpunit.de/sponsors.html",
  9539. "type": "custom"
  9540. },
  9541. {
  9542. "url": "https://github.com/sebastianbergmann",
  9543. "type": "github"
  9544. },
  9545. {
  9546. "url": "https://liberapay.com/sebastianbergmann",
  9547. "type": "liberapay"
  9548. },
  9549. {
  9550. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9551. "type": "thanks_dev"
  9552. },
  9553. {
  9554. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9555. "type": "tidelift"
  9556. }
  9557. ],
  9558. "time": "2025-12-01T07:35:08+00:00"
  9559. },
  9560. {
  9561. "name": "sebastian/cli-parser",
  9562. "version": "1.0.2",
  9563. "source": {
  9564. "type": "git",
  9565. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9566. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9567. },
  9568. "dist": {
  9569. "type": "zip",
  9570. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9571. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9572. "shasum": "",
  9573. "mirrors": [
  9574. {
  9575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9576. "preferred": true
  9577. }
  9578. ]
  9579. },
  9580. "require": {
  9581. "php": ">=7.3"
  9582. },
  9583. "require-dev": {
  9584. "phpunit/phpunit": "^9.3"
  9585. },
  9586. "type": "library",
  9587. "extra": {
  9588. "branch-alias": {
  9589. "dev-master": "1.0-dev"
  9590. }
  9591. },
  9592. "autoload": {
  9593. "classmap": [
  9594. "src/"
  9595. ]
  9596. },
  9597. "notification-url": "https://packagist.org/downloads/",
  9598. "license": [
  9599. "BSD-3-Clause"
  9600. ],
  9601. "authors": [
  9602. {
  9603. "name": "Sebastian Bergmann",
  9604. "email": "sebastian@phpunit.de",
  9605. "role": "lead"
  9606. }
  9607. ],
  9608. "description": "Library for parsing CLI options",
  9609. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9610. "support": {
  9611. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9612. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9613. },
  9614. "funding": [
  9615. {
  9616. "url": "https://github.com/sebastianbergmann",
  9617. "type": "github"
  9618. }
  9619. ],
  9620. "time": "2024-03-02T06:27:43+00:00"
  9621. },
  9622. {
  9623. "name": "sebastian/code-unit",
  9624. "version": "1.0.8",
  9625. "source": {
  9626. "type": "git",
  9627. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9628. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9629. },
  9630. "dist": {
  9631. "type": "zip",
  9632. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9633. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9634. "shasum": "",
  9635. "mirrors": [
  9636. {
  9637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9638. "preferred": true
  9639. }
  9640. ]
  9641. },
  9642. "require": {
  9643. "php": ">=7.3"
  9644. },
  9645. "require-dev": {
  9646. "phpunit/phpunit": "^9.3"
  9647. },
  9648. "type": "library",
  9649. "extra": {
  9650. "branch-alias": {
  9651. "dev-master": "1.0-dev"
  9652. }
  9653. },
  9654. "autoload": {
  9655. "classmap": [
  9656. "src/"
  9657. ]
  9658. },
  9659. "notification-url": "https://packagist.org/downloads/",
  9660. "license": [
  9661. "BSD-3-Clause"
  9662. ],
  9663. "authors": [
  9664. {
  9665. "name": "Sebastian Bergmann",
  9666. "email": "sebastian@phpunit.de",
  9667. "role": "lead"
  9668. }
  9669. ],
  9670. "description": "Collection of value objects that represent the PHP code units",
  9671. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9672. "support": {
  9673. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9674. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9675. },
  9676. "funding": [
  9677. {
  9678. "url": "https://github.com/sebastianbergmann",
  9679. "type": "github"
  9680. }
  9681. ],
  9682. "time": "2020-10-26T13:08:54+00:00"
  9683. },
  9684. {
  9685. "name": "sebastian/code-unit-reverse-lookup",
  9686. "version": "2.0.3",
  9687. "source": {
  9688. "type": "git",
  9689. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9690. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9691. },
  9692. "dist": {
  9693. "type": "zip",
  9694. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9695. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9696. "shasum": "",
  9697. "mirrors": [
  9698. {
  9699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9700. "preferred": true
  9701. }
  9702. ]
  9703. },
  9704. "require": {
  9705. "php": ">=7.3"
  9706. },
  9707. "require-dev": {
  9708. "phpunit/phpunit": "^9.3"
  9709. },
  9710. "type": "library",
  9711. "extra": {
  9712. "branch-alias": {
  9713. "dev-master": "2.0-dev"
  9714. }
  9715. },
  9716. "autoload": {
  9717. "classmap": [
  9718. "src/"
  9719. ]
  9720. },
  9721. "notification-url": "https://packagist.org/downloads/",
  9722. "license": [
  9723. "BSD-3-Clause"
  9724. ],
  9725. "authors": [
  9726. {
  9727. "name": "Sebastian Bergmann",
  9728. "email": "sebastian@phpunit.de"
  9729. }
  9730. ],
  9731. "description": "Looks up which function or method a line of code belongs to",
  9732. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9733. "support": {
  9734. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9735. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9736. },
  9737. "funding": [
  9738. {
  9739. "url": "https://github.com/sebastianbergmann",
  9740. "type": "github"
  9741. }
  9742. ],
  9743. "time": "2020-09-28T05:30:19+00:00"
  9744. },
  9745. {
  9746. "name": "sebastian/comparator",
  9747. "version": "4.0.x-dev",
  9748. "source": {
  9749. "type": "git",
  9750. "url": "https://github.com/sebastianbergmann/comparator.git",
  9751. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5"
  9752. },
  9753. "dist": {
  9754. "type": "zip",
  9755. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9756. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9757. "shasum": "",
  9758. "mirrors": [
  9759. {
  9760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9761. "preferred": true
  9762. }
  9763. ]
  9764. },
  9765. "require": {
  9766. "php": ">=7.3",
  9767. "sebastian/diff": "^4.0",
  9768. "sebastian/exporter": "^4.0"
  9769. },
  9770. "require-dev": {
  9771. "phpunit/phpunit": "^9.3"
  9772. },
  9773. "type": "library",
  9774. "extra": {
  9775. "branch-alias": {
  9776. "dev-master": "4.0-dev"
  9777. }
  9778. },
  9779. "autoload": {
  9780. "classmap": [
  9781. "src/"
  9782. ]
  9783. },
  9784. "notification-url": "https://packagist.org/downloads/",
  9785. "license": [
  9786. "BSD-3-Clause"
  9787. ],
  9788. "authors": [
  9789. {
  9790. "name": "Sebastian Bergmann",
  9791. "email": "sebastian@phpunit.de"
  9792. },
  9793. {
  9794. "name": "Jeff Welch",
  9795. "email": "whatthejeff@gmail.com"
  9796. },
  9797. {
  9798. "name": "Volker Dusch",
  9799. "email": "github@wallbash.com"
  9800. },
  9801. {
  9802. "name": "Bernhard Schussek",
  9803. "email": "bschussek@2bepublished.at"
  9804. }
  9805. ],
  9806. "description": "Provides the functionality to compare PHP values for equality",
  9807. "homepage": "https://github.com/sebastianbergmann/comparator",
  9808. "keywords": [
  9809. "comparator",
  9810. "compare",
  9811. "equality"
  9812. ],
  9813. "support": {
  9814. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9815. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.9"
  9816. },
  9817. "funding": [
  9818. {
  9819. "url": "https://github.com/sebastianbergmann",
  9820. "type": "github"
  9821. },
  9822. {
  9823. "url": "https://liberapay.com/sebastianbergmann",
  9824. "type": "liberapay"
  9825. },
  9826. {
  9827. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9828. "type": "thanks_dev"
  9829. },
  9830. {
  9831. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  9832. "type": "tidelift"
  9833. }
  9834. ],
  9835. "time": "2025-08-10T06:51:50+00:00"
  9836. },
  9837. {
  9838. "name": "sebastian/complexity",
  9839. "version": "2.0.3",
  9840. "source": {
  9841. "type": "git",
  9842. "url": "https://github.com/sebastianbergmann/complexity.git",
  9843. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9844. },
  9845. "dist": {
  9846. "type": "zip",
  9847. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9848. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9849. "shasum": "",
  9850. "mirrors": [
  9851. {
  9852. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9853. "preferred": true
  9854. }
  9855. ]
  9856. },
  9857. "require": {
  9858. "nikic/php-parser": "^4.18 || ^5.0",
  9859. "php": ">=7.3"
  9860. },
  9861. "require-dev": {
  9862. "phpunit/phpunit": "^9.3"
  9863. },
  9864. "type": "library",
  9865. "extra": {
  9866. "branch-alias": {
  9867. "dev-master": "2.0-dev"
  9868. }
  9869. },
  9870. "autoload": {
  9871. "classmap": [
  9872. "src/"
  9873. ]
  9874. },
  9875. "notification-url": "https://packagist.org/downloads/",
  9876. "license": [
  9877. "BSD-3-Clause"
  9878. ],
  9879. "authors": [
  9880. {
  9881. "name": "Sebastian Bergmann",
  9882. "email": "sebastian@phpunit.de",
  9883. "role": "lead"
  9884. }
  9885. ],
  9886. "description": "Library for calculating the complexity of PHP code units",
  9887. "homepage": "https://github.com/sebastianbergmann/complexity",
  9888. "support": {
  9889. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9890. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9891. },
  9892. "funding": [
  9893. {
  9894. "url": "https://github.com/sebastianbergmann",
  9895. "type": "github"
  9896. }
  9897. ],
  9898. "time": "2023-12-22T06:19:30+00:00"
  9899. },
  9900. {
  9901. "name": "sebastian/diff",
  9902. "version": "4.0.6",
  9903. "source": {
  9904. "type": "git",
  9905. "url": "https://github.com/sebastianbergmann/diff.git",
  9906. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9907. },
  9908. "dist": {
  9909. "type": "zip",
  9910. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9911. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9912. "shasum": "",
  9913. "mirrors": [
  9914. {
  9915. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9916. "preferred": true
  9917. }
  9918. ]
  9919. },
  9920. "require": {
  9921. "php": ">=7.3"
  9922. },
  9923. "require-dev": {
  9924. "phpunit/phpunit": "^9.3",
  9925. "symfony/process": "^4.2 || ^5"
  9926. },
  9927. "type": "library",
  9928. "extra": {
  9929. "branch-alias": {
  9930. "dev-master": "4.0-dev"
  9931. }
  9932. },
  9933. "autoload": {
  9934. "classmap": [
  9935. "src/"
  9936. ]
  9937. },
  9938. "notification-url": "https://packagist.org/downloads/",
  9939. "license": [
  9940. "BSD-3-Clause"
  9941. ],
  9942. "authors": [
  9943. {
  9944. "name": "Sebastian Bergmann",
  9945. "email": "sebastian@phpunit.de"
  9946. },
  9947. {
  9948. "name": "Kore Nordmann",
  9949. "email": "mail@kore-nordmann.de"
  9950. }
  9951. ],
  9952. "description": "Diff implementation",
  9953. "homepage": "https://github.com/sebastianbergmann/diff",
  9954. "keywords": [
  9955. "diff",
  9956. "udiff",
  9957. "unidiff",
  9958. "unified diff"
  9959. ],
  9960. "support": {
  9961. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9962. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9963. },
  9964. "funding": [
  9965. {
  9966. "url": "https://github.com/sebastianbergmann",
  9967. "type": "github"
  9968. }
  9969. ],
  9970. "time": "2024-03-02T06:30:58+00:00"
  9971. },
  9972. {
  9973. "name": "sebastian/environment",
  9974. "version": "5.1.5",
  9975. "source": {
  9976. "type": "git",
  9977. "url": "https://github.com/sebastianbergmann/environment.git",
  9978. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9979. },
  9980. "dist": {
  9981. "type": "zip",
  9982. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9983. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9984. "shasum": "",
  9985. "mirrors": [
  9986. {
  9987. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9988. "preferred": true
  9989. }
  9990. ]
  9991. },
  9992. "require": {
  9993. "php": ">=7.3"
  9994. },
  9995. "require-dev": {
  9996. "phpunit/phpunit": "^9.3"
  9997. },
  9998. "suggest": {
  9999. "ext-posix": "*"
  10000. },
  10001. "type": "library",
  10002. "extra": {
  10003. "branch-alias": {
  10004. "dev-master": "5.1-dev"
  10005. }
  10006. },
  10007. "autoload": {
  10008. "classmap": [
  10009. "src/"
  10010. ]
  10011. },
  10012. "notification-url": "https://packagist.org/downloads/",
  10013. "license": [
  10014. "BSD-3-Clause"
  10015. ],
  10016. "authors": [
  10017. {
  10018. "name": "Sebastian Bergmann",
  10019. "email": "sebastian@phpunit.de"
  10020. }
  10021. ],
  10022. "description": "Provides functionality to handle HHVM/PHP environments",
  10023. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10024. "keywords": [
  10025. "Xdebug",
  10026. "environment",
  10027. "hhvm"
  10028. ],
  10029. "support": {
  10030. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10031. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10032. },
  10033. "funding": [
  10034. {
  10035. "url": "https://github.com/sebastianbergmann",
  10036. "type": "github"
  10037. }
  10038. ],
  10039. "time": "2023-02-03T06:03:51+00:00"
  10040. },
  10041. {
  10042. "name": "sebastian/exporter",
  10043. "version": "4.0.8",
  10044. "source": {
  10045. "type": "git",
  10046. "url": "https://github.com/sebastianbergmann/exporter.git",
  10047. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
  10048. },
  10049. "dist": {
  10050. "type": "zip",
  10051. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  10052. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  10053. "shasum": "",
  10054. "mirrors": [
  10055. {
  10056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10057. "preferred": true
  10058. }
  10059. ]
  10060. },
  10061. "require": {
  10062. "php": ">=7.3",
  10063. "sebastian/recursion-context": "^4.0"
  10064. },
  10065. "require-dev": {
  10066. "ext-mbstring": "*",
  10067. "phpunit/phpunit": "^9.3"
  10068. },
  10069. "type": "library",
  10070. "extra": {
  10071. "branch-alias": {
  10072. "dev-master": "4.0-dev"
  10073. }
  10074. },
  10075. "autoload": {
  10076. "classmap": [
  10077. "src/"
  10078. ]
  10079. },
  10080. "notification-url": "https://packagist.org/downloads/",
  10081. "license": [
  10082. "BSD-3-Clause"
  10083. ],
  10084. "authors": [
  10085. {
  10086. "name": "Sebastian Bergmann",
  10087. "email": "sebastian@phpunit.de"
  10088. },
  10089. {
  10090. "name": "Jeff Welch",
  10091. "email": "whatthejeff@gmail.com"
  10092. },
  10093. {
  10094. "name": "Volker Dusch",
  10095. "email": "github@wallbash.com"
  10096. },
  10097. {
  10098. "name": "Adam Harvey",
  10099. "email": "aharvey@php.net"
  10100. },
  10101. {
  10102. "name": "Bernhard Schussek",
  10103. "email": "bschussek@gmail.com"
  10104. }
  10105. ],
  10106. "description": "Provides the functionality to export PHP variables for visualization",
  10107. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10108. "keywords": [
  10109. "export",
  10110. "exporter"
  10111. ],
  10112. "support": {
  10113. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10114. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.8"
  10115. },
  10116. "funding": [
  10117. {
  10118. "url": "https://github.com/sebastianbergmann",
  10119. "type": "github"
  10120. },
  10121. {
  10122. "url": "https://liberapay.com/sebastianbergmann",
  10123. "type": "liberapay"
  10124. },
  10125. {
  10126. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10127. "type": "thanks_dev"
  10128. },
  10129. {
  10130. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  10131. "type": "tidelift"
  10132. }
  10133. ],
  10134. "time": "2025-09-24T06:03:27+00:00"
  10135. },
  10136. {
  10137. "name": "sebastian/global-state",
  10138. "version": "5.0.8",
  10139. "source": {
  10140. "type": "git",
  10141. "url": "https://github.com/sebastianbergmann/global-state.git",
  10142. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  10143. },
  10144. "dist": {
  10145. "type": "zip",
  10146. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10147. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10148. "shasum": "",
  10149. "mirrors": [
  10150. {
  10151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10152. "preferred": true
  10153. }
  10154. ]
  10155. },
  10156. "require": {
  10157. "php": ">=7.3",
  10158. "sebastian/object-reflector": "^2.0",
  10159. "sebastian/recursion-context": "^4.0"
  10160. },
  10161. "require-dev": {
  10162. "ext-dom": "*",
  10163. "phpunit/phpunit": "^9.3"
  10164. },
  10165. "suggest": {
  10166. "ext-uopz": "*"
  10167. },
  10168. "type": "library",
  10169. "extra": {
  10170. "branch-alias": {
  10171. "dev-master": "5.0-dev"
  10172. }
  10173. },
  10174. "autoload": {
  10175. "classmap": [
  10176. "src/"
  10177. ]
  10178. },
  10179. "notification-url": "https://packagist.org/downloads/",
  10180. "license": [
  10181. "BSD-3-Clause"
  10182. ],
  10183. "authors": [
  10184. {
  10185. "name": "Sebastian Bergmann",
  10186. "email": "sebastian@phpunit.de"
  10187. }
  10188. ],
  10189. "description": "Snapshotting of global state",
  10190. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10191. "keywords": [
  10192. "global state"
  10193. ],
  10194. "support": {
  10195. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10196. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  10197. },
  10198. "funding": [
  10199. {
  10200. "url": "https://github.com/sebastianbergmann",
  10201. "type": "github"
  10202. },
  10203. {
  10204. "url": "https://liberapay.com/sebastianbergmann",
  10205. "type": "liberapay"
  10206. },
  10207. {
  10208. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10209. "type": "thanks_dev"
  10210. },
  10211. {
  10212. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  10213. "type": "tidelift"
  10214. }
  10215. ],
  10216. "time": "2025-08-10T07:10:35+00:00"
  10217. },
  10218. {
  10219. "name": "sebastian/lines-of-code",
  10220. "version": "1.0.4",
  10221. "source": {
  10222. "type": "git",
  10223. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10224. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10225. },
  10226. "dist": {
  10227. "type": "zip",
  10228. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10229. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10230. "shasum": "",
  10231. "mirrors": [
  10232. {
  10233. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10234. "preferred": true
  10235. }
  10236. ]
  10237. },
  10238. "require": {
  10239. "nikic/php-parser": "^4.18 || ^5.0",
  10240. "php": ">=7.3"
  10241. },
  10242. "require-dev": {
  10243. "phpunit/phpunit": "^9.3"
  10244. },
  10245. "type": "library",
  10246. "extra": {
  10247. "branch-alias": {
  10248. "dev-master": "1.0-dev"
  10249. }
  10250. },
  10251. "autoload": {
  10252. "classmap": [
  10253. "src/"
  10254. ]
  10255. },
  10256. "notification-url": "https://packagist.org/downloads/",
  10257. "license": [
  10258. "BSD-3-Clause"
  10259. ],
  10260. "authors": [
  10261. {
  10262. "name": "Sebastian Bergmann",
  10263. "email": "sebastian@phpunit.de",
  10264. "role": "lead"
  10265. }
  10266. ],
  10267. "description": "Library for counting the lines of code in PHP source code",
  10268. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10269. "support": {
  10270. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10271. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10272. },
  10273. "funding": [
  10274. {
  10275. "url": "https://github.com/sebastianbergmann",
  10276. "type": "github"
  10277. }
  10278. ],
  10279. "time": "2023-12-22T06:20:34+00:00"
  10280. },
  10281. {
  10282. "name": "sebastian/object-enumerator",
  10283. "version": "4.0.4",
  10284. "source": {
  10285. "type": "git",
  10286. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10287. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10288. },
  10289. "dist": {
  10290. "type": "zip",
  10291. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10292. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10293. "shasum": "",
  10294. "mirrors": [
  10295. {
  10296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10297. "preferred": true
  10298. }
  10299. ]
  10300. },
  10301. "require": {
  10302. "php": ">=7.3",
  10303. "sebastian/object-reflector": "^2.0",
  10304. "sebastian/recursion-context": "^4.0"
  10305. },
  10306. "require-dev": {
  10307. "phpunit/phpunit": "^9.3"
  10308. },
  10309. "type": "library",
  10310. "extra": {
  10311. "branch-alias": {
  10312. "dev-master": "4.0-dev"
  10313. }
  10314. },
  10315. "autoload": {
  10316. "classmap": [
  10317. "src/"
  10318. ]
  10319. },
  10320. "notification-url": "https://packagist.org/downloads/",
  10321. "license": [
  10322. "BSD-3-Clause"
  10323. ],
  10324. "authors": [
  10325. {
  10326. "name": "Sebastian Bergmann",
  10327. "email": "sebastian@phpunit.de"
  10328. }
  10329. ],
  10330. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10331. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10332. "support": {
  10333. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10334. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10335. },
  10336. "funding": [
  10337. {
  10338. "url": "https://github.com/sebastianbergmann",
  10339. "type": "github"
  10340. }
  10341. ],
  10342. "time": "2020-10-26T13:12:34+00:00"
  10343. },
  10344. {
  10345. "name": "sebastian/object-reflector",
  10346. "version": "2.0.4",
  10347. "source": {
  10348. "type": "git",
  10349. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10350. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10351. },
  10352. "dist": {
  10353. "type": "zip",
  10354. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10355. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10356. "shasum": "",
  10357. "mirrors": [
  10358. {
  10359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10360. "preferred": true
  10361. }
  10362. ]
  10363. },
  10364. "require": {
  10365. "php": ">=7.3"
  10366. },
  10367. "require-dev": {
  10368. "phpunit/phpunit": "^9.3"
  10369. },
  10370. "type": "library",
  10371. "extra": {
  10372. "branch-alias": {
  10373. "dev-master": "2.0-dev"
  10374. }
  10375. },
  10376. "autoload": {
  10377. "classmap": [
  10378. "src/"
  10379. ]
  10380. },
  10381. "notification-url": "https://packagist.org/downloads/",
  10382. "license": [
  10383. "BSD-3-Clause"
  10384. ],
  10385. "authors": [
  10386. {
  10387. "name": "Sebastian Bergmann",
  10388. "email": "sebastian@phpunit.de"
  10389. }
  10390. ],
  10391. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10392. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10393. "support": {
  10394. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10395. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10396. },
  10397. "funding": [
  10398. {
  10399. "url": "https://github.com/sebastianbergmann",
  10400. "type": "github"
  10401. }
  10402. ],
  10403. "time": "2020-10-26T13:14:26+00:00"
  10404. },
  10405. {
  10406. "name": "sebastian/recursion-context",
  10407. "version": "4.0.5",
  10408. "source": {
  10409. "type": "git",
  10410. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10411. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10412. },
  10413. "dist": {
  10414. "type": "zip",
  10415. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10416. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10417. "shasum": "",
  10418. "mirrors": [
  10419. {
  10420. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10421. "preferred": true
  10422. }
  10423. ]
  10424. },
  10425. "require": {
  10426. "php": ">=7.3"
  10427. },
  10428. "require-dev": {
  10429. "phpunit/phpunit": "^9.3"
  10430. },
  10431. "type": "library",
  10432. "extra": {
  10433. "branch-alias": {
  10434. "dev-master": "4.0-dev"
  10435. }
  10436. },
  10437. "autoload": {
  10438. "classmap": [
  10439. "src/"
  10440. ]
  10441. },
  10442. "notification-url": "https://packagist.org/downloads/",
  10443. "license": [
  10444. "BSD-3-Clause"
  10445. ],
  10446. "authors": [
  10447. {
  10448. "name": "Sebastian Bergmann",
  10449. "email": "sebastian@phpunit.de"
  10450. },
  10451. {
  10452. "name": "Jeff Welch",
  10453. "email": "whatthejeff@gmail.com"
  10454. },
  10455. {
  10456. "name": "Adam Harvey",
  10457. "email": "aharvey@php.net"
  10458. }
  10459. ],
  10460. "description": "Provides functionality to recursively process PHP variables",
  10461. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10462. "support": {
  10463. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10464. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10465. },
  10466. "funding": [
  10467. {
  10468. "url": "https://github.com/sebastianbergmann",
  10469. "type": "github"
  10470. }
  10471. ],
  10472. "time": "2023-02-03T06:07:39+00:00"
  10473. },
  10474. {
  10475. "name": "sebastian/resource-operations",
  10476. "version": "3.0.4",
  10477. "source": {
  10478. "type": "git",
  10479. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10480. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10481. },
  10482. "dist": {
  10483. "type": "zip",
  10484. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10485. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10486. "shasum": "",
  10487. "mirrors": [
  10488. {
  10489. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10490. "preferred": true
  10491. }
  10492. ]
  10493. },
  10494. "require": {
  10495. "php": ">=7.3"
  10496. },
  10497. "require-dev": {
  10498. "phpunit/phpunit": "^9.0"
  10499. },
  10500. "type": "library",
  10501. "extra": {
  10502. "branch-alias": {
  10503. "dev-main": "3.0-dev"
  10504. }
  10505. },
  10506. "autoload": {
  10507. "classmap": [
  10508. "src/"
  10509. ]
  10510. },
  10511. "notification-url": "https://packagist.org/downloads/",
  10512. "license": [
  10513. "BSD-3-Clause"
  10514. ],
  10515. "authors": [
  10516. {
  10517. "name": "Sebastian Bergmann",
  10518. "email": "sebastian@phpunit.de"
  10519. }
  10520. ],
  10521. "description": "Provides a list of PHP built-in functions that operate on resources",
  10522. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10523. "support": {
  10524. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10525. },
  10526. "funding": [
  10527. {
  10528. "url": "https://github.com/sebastianbergmann",
  10529. "type": "github"
  10530. }
  10531. ],
  10532. "abandoned": true,
  10533. "time": "2024-03-14T16:00:52+00:00"
  10534. },
  10535. {
  10536. "name": "sebastian/type",
  10537. "version": "3.2.1",
  10538. "source": {
  10539. "type": "git",
  10540. "url": "https://github.com/sebastianbergmann/type.git",
  10541. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10542. },
  10543. "dist": {
  10544. "type": "zip",
  10545. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10546. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10547. "shasum": "",
  10548. "mirrors": [
  10549. {
  10550. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10551. "preferred": true
  10552. }
  10553. ]
  10554. },
  10555. "require": {
  10556. "php": ">=7.3"
  10557. },
  10558. "require-dev": {
  10559. "phpunit/phpunit": "^9.5"
  10560. },
  10561. "type": "library",
  10562. "extra": {
  10563. "branch-alias": {
  10564. "dev-master": "3.2-dev"
  10565. }
  10566. },
  10567. "autoload": {
  10568. "classmap": [
  10569. "src/"
  10570. ]
  10571. },
  10572. "notification-url": "https://packagist.org/downloads/",
  10573. "license": [
  10574. "BSD-3-Clause"
  10575. ],
  10576. "authors": [
  10577. {
  10578. "name": "Sebastian Bergmann",
  10579. "email": "sebastian@phpunit.de",
  10580. "role": "lead"
  10581. }
  10582. ],
  10583. "description": "Collection of value objects that represent the types of the PHP type system",
  10584. "homepage": "https://github.com/sebastianbergmann/type",
  10585. "support": {
  10586. "issues": "https://github.com/sebastianbergmann/type/issues",
  10587. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10588. },
  10589. "funding": [
  10590. {
  10591. "url": "https://github.com/sebastianbergmann",
  10592. "type": "github"
  10593. }
  10594. ],
  10595. "time": "2023-02-03T06:13:03+00:00"
  10596. },
  10597. {
  10598. "name": "sebastian/version",
  10599. "version": "3.0.2",
  10600. "source": {
  10601. "type": "git",
  10602. "url": "https://github.com/sebastianbergmann/version.git",
  10603. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10604. },
  10605. "dist": {
  10606. "type": "zip",
  10607. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10608. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10609. "shasum": "",
  10610. "mirrors": [
  10611. {
  10612. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10613. "preferred": true
  10614. }
  10615. ]
  10616. },
  10617. "require": {
  10618. "php": ">=7.3"
  10619. },
  10620. "type": "library",
  10621. "extra": {
  10622. "branch-alias": {
  10623. "dev-master": "3.0-dev"
  10624. }
  10625. },
  10626. "autoload": {
  10627. "classmap": [
  10628. "src/"
  10629. ]
  10630. },
  10631. "notification-url": "https://packagist.org/downloads/",
  10632. "license": [
  10633. "BSD-3-Clause"
  10634. ],
  10635. "authors": [
  10636. {
  10637. "name": "Sebastian Bergmann",
  10638. "email": "sebastian@phpunit.de",
  10639. "role": "lead"
  10640. }
  10641. ],
  10642. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10643. "homepage": "https://github.com/sebastianbergmann/version",
  10644. "support": {
  10645. "issues": "https://github.com/sebastianbergmann/version/issues",
  10646. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10647. },
  10648. "funding": [
  10649. {
  10650. "url": "https://github.com/sebastianbergmann",
  10651. "type": "github"
  10652. }
  10653. ],
  10654. "time": "2020-09-28T06:39:44+00:00"
  10655. },
  10656. {
  10657. "name": "theseer/tokenizer",
  10658. "version": "1.3.1",
  10659. "source": {
  10660. "type": "git",
  10661. "url": "https://github.com/theseer/tokenizer.git",
  10662. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  10663. },
  10664. "dist": {
  10665. "type": "zip",
  10666. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  10667. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  10668. "shasum": "",
  10669. "mirrors": [
  10670. {
  10671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10672. "preferred": true
  10673. }
  10674. ]
  10675. },
  10676. "require": {
  10677. "ext-dom": "*",
  10678. "ext-tokenizer": "*",
  10679. "ext-xmlwriter": "*",
  10680. "php": "^7.2 || ^8.0"
  10681. },
  10682. "type": "library",
  10683. "autoload": {
  10684. "classmap": [
  10685. "src/"
  10686. ]
  10687. },
  10688. "notification-url": "https://packagist.org/downloads/",
  10689. "license": [
  10690. "BSD-3-Clause"
  10691. ],
  10692. "authors": [
  10693. {
  10694. "name": "Arne Blankerts",
  10695. "email": "arne@blankerts.de",
  10696. "role": "Developer"
  10697. }
  10698. ],
  10699. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10700. "support": {
  10701. "issues": "https://github.com/theseer/tokenizer/issues",
  10702. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  10703. },
  10704. "funding": [
  10705. {
  10706. "url": "https://github.com/theseer",
  10707. "type": "github"
  10708. }
  10709. ],
  10710. "time": "2025-11-17T20:03:58+00:00"
  10711. }
  10712. ],
  10713. "aliases": [],
  10714. "minimum-stability": "dev",
  10715. "stability-flags": {
  10716. "fukuball/jieba-php": 20
  10717. },
  10718. "prefer-stable": true,
  10719. "prefer-lowest": false,
  10720. "platform": {
  10721. "php": "^8.0",
  10722. "ext-json": "*"
  10723. },
  10724. "platform-dev": {},
  10725. "plugin-api-version": "2.9.0"
  10726. }