composer.lock 380 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522
  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": "a694da65a01e777afed5c1da9e22bc05",
  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.4.0",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/dragonmantank/cron-expression.git",
  714. "reference": "8c784d071debd117328803d86b2097615b457500"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  719. "reference": "8c784d071debd117328803d86b2097615b457500",
  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. "webmozart/assert": "^1.0"
  731. },
  732. "replace": {
  733. "mtdowling/cron-expression": "^1.0"
  734. },
  735. "require-dev": {
  736. "phpstan/extension-installer": "^1.0",
  737. "phpstan/phpstan": "^1.0",
  738. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  739. },
  740. "type": "library",
  741. "extra": {
  742. "branch-alias": {
  743. "dev-master": "3.x-dev"
  744. }
  745. },
  746. "autoload": {
  747. "psr-4": {
  748. "Cron\\": "src/Cron/"
  749. }
  750. },
  751. "notification-url": "https://packagist.org/downloads/",
  752. "license": [
  753. "MIT"
  754. ],
  755. "authors": [
  756. {
  757. "name": "Chris Tankersley",
  758. "email": "chris@ctankersley.com",
  759. "homepage": "https://github.com/dragonmantank"
  760. }
  761. ],
  762. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  763. "keywords": [
  764. "cron",
  765. "schedule"
  766. ],
  767. "support": {
  768. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  769. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  770. },
  771. "funding": [
  772. {
  773. "url": "https://github.com/dragonmantank",
  774. "type": "github"
  775. }
  776. ],
  777. "time": "2024-10-09T13:47:03+00:00"
  778. },
  779. {
  780. "name": "egulias/email-validator",
  781. "version": "2.1.25",
  782. "source": {
  783. "type": "git",
  784. "url": "https://github.com/egulias/EmailValidator.git",
  785. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  786. },
  787. "dist": {
  788. "type": "zip",
  789. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  790. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  791. "shasum": "",
  792. "mirrors": [
  793. {
  794. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  795. "preferred": true
  796. }
  797. ]
  798. },
  799. "require": {
  800. "doctrine/lexer": "^1.0.1",
  801. "php": ">=5.5",
  802. "symfony/polyfill-intl-idn": "^1.10"
  803. },
  804. "require-dev": {
  805. "dominicsayers/isemail": "^3.0.7",
  806. "phpunit/phpunit": "^4.8.36|^7.5.15",
  807. "satooshi/php-coveralls": "^1.0.1"
  808. },
  809. "suggest": {
  810. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  811. },
  812. "type": "library",
  813. "extra": {
  814. "branch-alias": {
  815. "dev-master": "2.1.x-dev"
  816. }
  817. },
  818. "autoload": {
  819. "psr-4": {
  820. "Egulias\\EmailValidator\\": "src"
  821. }
  822. },
  823. "notification-url": "https://packagist.org/downloads/",
  824. "license": [
  825. "MIT"
  826. ],
  827. "authors": [
  828. {
  829. "name": "Eduardo Gulias Davis"
  830. }
  831. ],
  832. "description": "A library for validating emails against several RFCs",
  833. "homepage": "https://github.com/egulias/EmailValidator",
  834. "keywords": [
  835. "email",
  836. "emailvalidation",
  837. "emailvalidator",
  838. "validation",
  839. "validator"
  840. ],
  841. "support": {
  842. "issues": "https://github.com/egulias/EmailValidator/issues",
  843. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  844. },
  845. "funding": [
  846. {
  847. "url": "https://github.com/egulias",
  848. "type": "github"
  849. }
  850. ],
  851. "time": "2020-12-29T14:50:06+00:00"
  852. },
  853. {
  854. "name": "evenement/evenement",
  855. "version": "v3.0.2",
  856. "source": {
  857. "type": "git",
  858. "url": "https://github.com/igorw/evenement.git",
  859. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  860. },
  861. "dist": {
  862. "type": "zip",
  863. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  864. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  865. "shasum": "",
  866. "mirrors": [
  867. {
  868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  869. "preferred": true
  870. }
  871. ]
  872. },
  873. "require": {
  874. "php": ">=7.0"
  875. },
  876. "require-dev": {
  877. "phpunit/phpunit": "^9 || ^6"
  878. },
  879. "type": "library",
  880. "autoload": {
  881. "psr-4": {
  882. "Evenement\\": "src/"
  883. }
  884. },
  885. "notification-url": "https://packagist.org/downloads/",
  886. "license": [
  887. "MIT"
  888. ],
  889. "authors": [
  890. {
  891. "name": "Igor Wiedler",
  892. "email": "igor@wiedler.ch"
  893. }
  894. ],
  895. "description": "Événement is a very simple event dispatching library for PHP",
  896. "keywords": [
  897. "event-dispatcher",
  898. "event-emitter"
  899. ],
  900. "support": {
  901. "issues": "https://github.com/igorw/evenement/issues",
  902. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  903. },
  904. "time": "2023-08-08T05:53:35+00:00"
  905. },
  906. {
  907. "name": "ezyang/htmlpurifier",
  908. "version": "v4.18.0",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/ezyang/htmlpurifier.git",
  912. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  917. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  918. "shasum": "",
  919. "mirrors": [
  920. {
  921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  922. "preferred": true
  923. }
  924. ]
  925. },
  926. "require": {
  927. "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"
  928. },
  929. "require-dev": {
  930. "cerdic/css-tidy": "^1.7 || ^2.0",
  931. "simpletest/simpletest": "dev-master"
  932. },
  933. "suggest": {
  934. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  935. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  936. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  937. "ext-tidy": "Used for pretty-printing HTML"
  938. },
  939. "type": "library",
  940. "autoload": {
  941. "files": [
  942. "library/HTMLPurifier.composer.php"
  943. ],
  944. "psr-0": {
  945. "HTMLPurifier": "library/"
  946. },
  947. "exclude-from-classmap": [
  948. "/library/HTMLPurifier/Language/"
  949. ]
  950. },
  951. "notification-url": "https://packagist.org/downloads/",
  952. "license": [
  953. "LGPL-2.1-or-later"
  954. ],
  955. "authors": [
  956. {
  957. "name": "Edward Z. Yang",
  958. "email": "admin@htmlpurifier.org",
  959. "homepage": "http://ezyang.com"
  960. }
  961. ],
  962. "description": "Standards compliant HTML filter written in PHP",
  963. "homepage": "http://htmlpurifier.org/",
  964. "keywords": [
  965. "html"
  966. ],
  967. "support": {
  968. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  969. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  970. },
  971. "time": "2024-11-01T03:51:45+00:00"
  972. },
  973. {
  974. "name": "fideloper/proxy",
  975. "version": "4.4.2",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/fideloper/TrustedProxy.git",
  979. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  984. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  985. "shasum": "",
  986. "mirrors": [
  987. {
  988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  989. "preferred": true
  990. }
  991. ]
  992. },
  993. "require": {
  994. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  995. "php": ">=5.4.0"
  996. },
  997. "require-dev": {
  998. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  999. "mockery/mockery": "^1.0",
  1000. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1001. },
  1002. "type": "library",
  1003. "extra": {
  1004. "laravel": {
  1005. "providers": [
  1006. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1007. ]
  1008. }
  1009. },
  1010. "autoload": {
  1011. "psr-4": {
  1012. "Fideloper\\Proxy\\": "src/"
  1013. }
  1014. },
  1015. "notification-url": "https://packagist.org/downloads/",
  1016. "license": [
  1017. "MIT"
  1018. ],
  1019. "authors": [
  1020. {
  1021. "name": "Chris Fidao",
  1022. "email": "fideloper@gmail.com"
  1023. }
  1024. ],
  1025. "description": "Set trusted proxies for Laravel",
  1026. "keywords": [
  1027. "load balancing",
  1028. "proxy",
  1029. "trusted proxy"
  1030. ],
  1031. "support": {
  1032. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1033. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1034. },
  1035. "time": "2022-02-09T13:33:34+00:00"
  1036. },
  1037. {
  1038. "name": "firebase/php-jwt",
  1039. "version": "v6.11.0",
  1040. "source": {
  1041. "type": "git",
  1042. "url": "https://github.com/firebase/php-jwt.git",
  1043. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  1044. },
  1045. "dist": {
  1046. "type": "zip",
  1047. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1048. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1049. "shasum": "",
  1050. "mirrors": [
  1051. {
  1052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1053. "preferred": true
  1054. }
  1055. ]
  1056. },
  1057. "require": {
  1058. "php": "^8.0"
  1059. },
  1060. "require-dev": {
  1061. "guzzlehttp/guzzle": "^7.4",
  1062. "phpspec/prophecy-phpunit": "^2.0",
  1063. "phpunit/phpunit": "^9.5",
  1064. "psr/cache": "^2.0||^3.0",
  1065. "psr/http-client": "^1.0",
  1066. "psr/http-factory": "^1.0"
  1067. },
  1068. "suggest": {
  1069. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1070. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1071. },
  1072. "type": "library",
  1073. "autoload": {
  1074. "psr-4": {
  1075. "Firebase\\JWT\\": "src"
  1076. }
  1077. },
  1078. "notification-url": "https://packagist.org/downloads/",
  1079. "license": [
  1080. "BSD-3-Clause"
  1081. ],
  1082. "authors": [
  1083. {
  1084. "name": "Neuman Vong",
  1085. "email": "neuman+pear@twilio.com",
  1086. "role": "Developer"
  1087. },
  1088. {
  1089. "name": "Anant Narayanan",
  1090. "email": "anant@php.net",
  1091. "role": "Developer"
  1092. }
  1093. ],
  1094. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1095. "homepage": "https://github.com/firebase/php-jwt",
  1096. "keywords": [
  1097. "jwt",
  1098. "php"
  1099. ],
  1100. "support": {
  1101. "issues": "https://github.com/firebase/php-jwt/issues",
  1102. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  1103. },
  1104. "time": "2025-01-23T05:11:06+00:00"
  1105. },
  1106. {
  1107. "name": "fruitcake/laravel-cors",
  1108. "version": "v2.2.0",
  1109. "source": {
  1110. "type": "git",
  1111. "url": "https://github.com/fruitcake/laravel-cors.git",
  1112. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1113. },
  1114. "dist": {
  1115. "type": "zip",
  1116. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1117. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1118. "shasum": "",
  1119. "mirrors": [
  1120. {
  1121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1122. "preferred": true
  1123. }
  1124. ]
  1125. },
  1126. "require": {
  1127. "asm89/stack-cors": "^2.0.1",
  1128. "illuminate/contracts": "^6|^7|^8|^9",
  1129. "illuminate/support": "^6|^7|^8|^9",
  1130. "php": ">=7.2"
  1131. },
  1132. "require-dev": {
  1133. "laravel/framework": "^6|^7.24|^8",
  1134. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1135. "phpunit/phpunit": "^6|^7|^8|^9",
  1136. "squizlabs/php_codesniffer": "^3.5"
  1137. },
  1138. "type": "library",
  1139. "extra": {
  1140. "branch-alias": {
  1141. "dev-master": "2.1-dev"
  1142. },
  1143. "laravel": {
  1144. "providers": [
  1145. "Fruitcake\\Cors\\CorsServiceProvider"
  1146. ]
  1147. }
  1148. },
  1149. "autoload": {
  1150. "psr-4": {
  1151. "Fruitcake\\Cors\\": "src/"
  1152. }
  1153. },
  1154. "notification-url": "https://packagist.org/downloads/",
  1155. "license": [
  1156. "MIT"
  1157. ],
  1158. "authors": [
  1159. {
  1160. "name": "Fruitcake",
  1161. "homepage": "https://fruitcake.nl"
  1162. },
  1163. {
  1164. "name": "Barry vd. Heuvel",
  1165. "email": "barryvdh@gmail.com"
  1166. }
  1167. ],
  1168. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1169. "keywords": [
  1170. "api",
  1171. "cors",
  1172. "crossdomain",
  1173. "laravel"
  1174. ],
  1175. "support": {
  1176. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1177. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1178. },
  1179. "funding": [
  1180. {
  1181. "url": "https://fruitcake.nl",
  1182. "type": "custom"
  1183. },
  1184. {
  1185. "url": "https://github.com/barryvdh",
  1186. "type": "github"
  1187. }
  1188. ],
  1189. "abandoned": true,
  1190. "time": "2022-02-23T14:25:13+00:00"
  1191. },
  1192. {
  1193. "name": "fukuball/jieba-php",
  1194. "version": "dev-master",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/fukuball/jieba-php.git",
  1198. "reference": "87d87c7d3f84f446af433c578661b3cd26c7b50a"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/fukuball/jieba-php/zipball/87d87c7d3f84f446af433c578661b3cd26c7b50a",
  1203. "reference": "87d87c7d3f84f446af433c578661b3cd26c7b50a",
  1204. "shasum": "",
  1205. "mirrors": [
  1206. {
  1207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1208. "preferred": true
  1209. }
  1210. ]
  1211. },
  1212. "require": {
  1213. "php": ">=7.1"
  1214. },
  1215. "require-dev": {
  1216. "doctrine/instantiator": "^1.3",
  1217. "guzzlehttp/guzzle": "^7.0",
  1218. "php-coveralls/php-coveralls": "^2.5",
  1219. "phpunit/phpunit": "^8.5 || ^9.0",
  1220. "psr/log": "^1.1",
  1221. "squizlabs/php_codesniffer": "^3.6 || ^4.0",
  1222. "symfony/config": "^5.4",
  1223. "symfony/console": "^5.4",
  1224. "symfony/deprecation-contracts": "^2.5",
  1225. "symfony/filesystem": "^5.4",
  1226. "symfony/service-contracts": "^2.5",
  1227. "symfony/stopwatch": "^5.4",
  1228. "symfony/string": "^5.4",
  1229. "symfony/yaml": "^5.4"
  1230. },
  1231. "default-branch": true,
  1232. "type": "library",
  1233. "autoload": {
  1234. "files": [
  1235. "src/vendor/multi-array/MultiArray.php",
  1236. "src/vendor/multi-array/Factory/MultiArrayFactory.php"
  1237. ],
  1238. "psr-4": {
  1239. "Fukuball\\Jieba\\": "src/class/"
  1240. }
  1241. },
  1242. "notification-url": "https://packagist.org/downloads/",
  1243. "license": [
  1244. "MIT"
  1245. ],
  1246. "authors": [
  1247. {
  1248. "name": "fukuball",
  1249. "email": "fukuball@gmail.com"
  1250. }
  1251. ],
  1252. "description": "結巴中文分詞(PHP 版本):做最好的 PHP 中文分詞、中文斷詞組件",
  1253. "keywords": [
  1254. "Jieba",
  1255. "php"
  1256. ],
  1257. "support": {
  1258. "issues": "https://github.com/fukuball/jieba-php/issues",
  1259. "source": "https://github.com/fukuball/jieba-php/tree/master"
  1260. },
  1261. "time": "2025-08-05T13:38:44+00:00"
  1262. },
  1263. {
  1264. "name": "graham-campbell/result-type",
  1265. "version": "1.1.x-dev",
  1266. "source": {
  1267. "type": "git",
  1268. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1269. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66"
  1270. },
  1271. "dist": {
  1272. "type": "zip",
  1273. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  1274. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  1275. "shasum": "",
  1276. "mirrors": [
  1277. {
  1278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1279. "preferred": true
  1280. }
  1281. ]
  1282. },
  1283. "require": {
  1284. "php": "^7.2.5 || ^8.0",
  1285. "phpoption/phpoption": "^1.9.3"
  1286. },
  1287. "require-dev": {
  1288. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  1289. },
  1290. "default-branch": true,
  1291. "type": "library",
  1292. "autoload": {
  1293. "psr-4": {
  1294. "GrahamCampbell\\ResultType\\": "src/"
  1295. }
  1296. },
  1297. "notification-url": "https://packagist.org/downloads/",
  1298. "license": [
  1299. "MIT"
  1300. ],
  1301. "authors": [
  1302. {
  1303. "name": "Graham Campbell",
  1304. "email": "hello@gjcampbell.co.uk",
  1305. "homepage": "https://github.com/GrahamCampbell"
  1306. }
  1307. ],
  1308. "description": "An Implementation Of The Result Type",
  1309. "keywords": [
  1310. "Graham Campbell",
  1311. "GrahamCampbell",
  1312. "Result Type",
  1313. "Result-Type",
  1314. "result"
  1315. ],
  1316. "support": {
  1317. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1318. "source": "https://github.com/GrahamCampbell/Result-Type/tree/1.1"
  1319. },
  1320. "funding": [
  1321. {
  1322. "url": "https://github.com/GrahamCampbell",
  1323. "type": "github"
  1324. },
  1325. {
  1326. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1327. "type": "tidelift"
  1328. }
  1329. ],
  1330. "time": "2025-02-09T22:43:44+00:00"
  1331. },
  1332. {
  1333. "name": "gregwar/captcha",
  1334. "version": "v1.2.1",
  1335. "source": {
  1336. "type": "git",
  1337. "url": "https://github.com/Gregwar/Captcha.git",
  1338. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  1339. },
  1340. "dist": {
  1341. "type": "zip",
  1342. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1343. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1344. "shasum": "",
  1345. "mirrors": [
  1346. {
  1347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1348. "preferred": true
  1349. }
  1350. ]
  1351. },
  1352. "require": {
  1353. "ext-gd": "*",
  1354. "ext-mbstring": "*",
  1355. "php": ">=5.3.0",
  1356. "symfony/finder": "*"
  1357. },
  1358. "require-dev": {
  1359. "phpunit/phpunit": "^6.4"
  1360. },
  1361. "type": "library",
  1362. "autoload": {
  1363. "psr-4": {
  1364. "Gregwar\\": "src/Gregwar"
  1365. }
  1366. },
  1367. "notification-url": "https://packagist.org/downloads/",
  1368. "license": [
  1369. "MIT"
  1370. ],
  1371. "authors": [
  1372. {
  1373. "name": "Grégoire Passault",
  1374. "email": "g.passault@gmail.com",
  1375. "homepage": "http://www.gregwar.com/"
  1376. },
  1377. {
  1378. "name": "Jeremy Livingston",
  1379. "email": "jeremy.j.livingston@gmail.com"
  1380. }
  1381. ],
  1382. "description": "Captcha generator",
  1383. "homepage": "https://github.com/Gregwar/Captcha",
  1384. "keywords": [
  1385. "bot",
  1386. "captcha",
  1387. "spam"
  1388. ],
  1389. "support": {
  1390. "issues": "https://github.com/Gregwar/Captcha/issues",
  1391. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  1392. },
  1393. "time": "2023-09-26T13:45:37+00:00"
  1394. },
  1395. {
  1396. "name": "guzzlehttp/guzzle",
  1397. "version": "7.9.2",
  1398. "source": {
  1399. "type": "git",
  1400. "url": "https://github.com/guzzle/guzzle.git",
  1401. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1402. },
  1403. "dist": {
  1404. "type": "zip",
  1405. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1406. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1407. "shasum": "",
  1408. "mirrors": [
  1409. {
  1410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1411. "preferred": true
  1412. }
  1413. ]
  1414. },
  1415. "require": {
  1416. "ext-json": "*",
  1417. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1418. "guzzlehttp/psr7": "^2.7.0",
  1419. "php": "^7.2.5 || ^8.0",
  1420. "psr/http-client": "^1.0",
  1421. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1422. },
  1423. "provide": {
  1424. "psr/http-client-implementation": "1.0"
  1425. },
  1426. "require-dev": {
  1427. "bamarni/composer-bin-plugin": "^1.8.2",
  1428. "ext-curl": "*",
  1429. "guzzle/client-integration-tests": "3.0.2",
  1430. "php-http/message-factory": "^1.1",
  1431. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1432. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1433. },
  1434. "suggest": {
  1435. "ext-curl": "Required for CURL handler support",
  1436. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1437. "psr/log": "Required for using the Log middleware"
  1438. },
  1439. "type": "library",
  1440. "extra": {
  1441. "bamarni-bin": {
  1442. "bin-links": true,
  1443. "forward-command": false
  1444. }
  1445. },
  1446. "autoload": {
  1447. "files": [
  1448. "src/functions_include.php"
  1449. ],
  1450. "psr-4": {
  1451. "GuzzleHttp\\": "src/"
  1452. }
  1453. },
  1454. "notification-url": "https://packagist.org/downloads/",
  1455. "license": [
  1456. "MIT"
  1457. ],
  1458. "authors": [
  1459. {
  1460. "name": "Graham Campbell",
  1461. "email": "hello@gjcampbell.co.uk",
  1462. "homepage": "https://github.com/GrahamCampbell"
  1463. },
  1464. {
  1465. "name": "Michael Dowling",
  1466. "email": "mtdowling@gmail.com",
  1467. "homepage": "https://github.com/mtdowling"
  1468. },
  1469. {
  1470. "name": "Jeremy Lindblom",
  1471. "email": "jeremeamia@gmail.com",
  1472. "homepage": "https://github.com/jeremeamia"
  1473. },
  1474. {
  1475. "name": "George Mponos",
  1476. "email": "gmponos@gmail.com",
  1477. "homepage": "https://github.com/gmponos"
  1478. },
  1479. {
  1480. "name": "Tobias Nyholm",
  1481. "email": "tobias.nyholm@gmail.com",
  1482. "homepage": "https://github.com/Nyholm"
  1483. },
  1484. {
  1485. "name": "Márk Sági-Kazár",
  1486. "email": "mark.sagikazar@gmail.com",
  1487. "homepage": "https://github.com/sagikazarmark"
  1488. },
  1489. {
  1490. "name": "Tobias Schultze",
  1491. "email": "webmaster@tubo-world.de",
  1492. "homepage": "https://github.com/Tobion"
  1493. }
  1494. ],
  1495. "description": "Guzzle is a PHP HTTP client library",
  1496. "keywords": [
  1497. "client",
  1498. "curl",
  1499. "framework",
  1500. "http",
  1501. "http client",
  1502. "psr-18",
  1503. "psr-7",
  1504. "rest",
  1505. "web service"
  1506. ],
  1507. "support": {
  1508. "issues": "https://github.com/guzzle/guzzle/issues",
  1509. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1510. },
  1511. "funding": [
  1512. {
  1513. "url": "https://github.com/GrahamCampbell",
  1514. "type": "github"
  1515. },
  1516. {
  1517. "url": "https://github.com/Nyholm",
  1518. "type": "github"
  1519. },
  1520. {
  1521. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1522. "type": "tidelift"
  1523. }
  1524. ],
  1525. "time": "2024-07-24T11:22:20+00:00"
  1526. },
  1527. {
  1528. "name": "guzzlehttp/promises",
  1529. "version": "2.3.0",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/guzzle/promises.git",
  1533. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1538. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1539. "shasum": "",
  1540. "mirrors": [
  1541. {
  1542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1543. "preferred": true
  1544. }
  1545. ]
  1546. },
  1547. "require": {
  1548. "php": "^7.2.5 || ^8.0"
  1549. },
  1550. "require-dev": {
  1551. "bamarni/composer-bin-plugin": "^1.8.2",
  1552. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1553. },
  1554. "type": "library",
  1555. "extra": {
  1556. "bamarni-bin": {
  1557. "bin-links": true,
  1558. "forward-command": false
  1559. }
  1560. },
  1561. "autoload": {
  1562. "psr-4": {
  1563. "GuzzleHttp\\Promise\\": "src/"
  1564. }
  1565. },
  1566. "notification-url": "https://packagist.org/downloads/",
  1567. "license": [
  1568. "MIT"
  1569. ],
  1570. "authors": [
  1571. {
  1572. "name": "Graham Campbell",
  1573. "email": "hello@gjcampbell.co.uk",
  1574. "homepage": "https://github.com/GrahamCampbell"
  1575. },
  1576. {
  1577. "name": "Michael Dowling",
  1578. "email": "mtdowling@gmail.com",
  1579. "homepage": "https://github.com/mtdowling"
  1580. },
  1581. {
  1582. "name": "Tobias Nyholm",
  1583. "email": "tobias.nyholm@gmail.com",
  1584. "homepage": "https://github.com/Nyholm"
  1585. },
  1586. {
  1587. "name": "Tobias Schultze",
  1588. "email": "webmaster@tubo-world.de",
  1589. "homepage": "https://github.com/Tobion"
  1590. }
  1591. ],
  1592. "description": "Guzzle promises library",
  1593. "keywords": [
  1594. "promise"
  1595. ],
  1596. "support": {
  1597. "issues": "https://github.com/guzzle/promises/issues",
  1598. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1599. },
  1600. "funding": [
  1601. {
  1602. "url": "https://github.com/GrahamCampbell",
  1603. "type": "github"
  1604. },
  1605. {
  1606. "url": "https://github.com/Nyholm",
  1607. "type": "github"
  1608. },
  1609. {
  1610. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1611. "type": "tidelift"
  1612. }
  1613. ],
  1614. "time": "2025-08-22T14:34:08+00:00"
  1615. },
  1616. {
  1617. "name": "guzzlehttp/psr7",
  1618. "version": "2.8.0",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/guzzle/psr7.git",
  1622. "reference": "21dc724a0583619cd1652f673303492272778051"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  1627. "reference": "21dc724a0583619cd1652f673303492272778051",
  1628. "shasum": "",
  1629. "mirrors": [
  1630. {
  1631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1632. "preferred": true
  1633. }
  1634. ]
  1635. },
  1636. "require": {
  1637. "php": "^7.2.5 || ^8.0",
  1638. "psr/http-factory": "^1.0",
  1639. "psr/http-message": "^1.1 || ^2.0",
  1640. "ralouphie/getallheaders": "^3.0"
  1641. },
  1642. "provide": {
  1643. "psr/http-factory-implementation": "1.0",
  1644. "psr/http-message-implementation": "1.0"
  1645. },
  1646. "require-dev": {
  1647. "bamarni/composer-bin-plugin": "^1.8.2",
  1648. "http-interop/http-factory-tests": "0.9.0",
  1649. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1650. },
  1651. "suggest": {
  1652. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1653. },
  1654. "type": "library",
  1655. "extra": {
  1656. "bamarni-bin": {
  1657. "bin-links": true,
  1658. "forward-command": false
  1659. }
  1660. },
  1661. "autoload": {
  1662. "psr-4": {
  1663. "GuzzleHttp\\Psr7\\": "src/"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Graham Campbell",
  1673. "email": "hello@gjcampbell.co.uk",
  1674. "homepage": "https://github.com/GrahamCampbell"
  1675. },
  1676. {
  1677. "name": "Michael Dowling",
  1678. "email": "mtdowling@gmail.com",
  1679. "homepage": "https://github.com/mtdowling"
  1680. },
  1681. {
  1682. "name": "George Mponos",
  1683. "email": "gmponos@gmail.com",
  1684. "homepage": "https://github.com/gmponos"
  1685. },
  1686. {
  1687. "name": "Tobias Nyholm",
  1688. "email": "tobias.nyholm@gmail.com",
  1689. "homepage": "https://github.com/Nyholm"
  1690. },
  1691. {
  1692. "name": "Márk Sági-Kazár",
  1693. "email": "mark.sagikazar@gmail.com",
  1694. "homepage": "https://github.com/sagikazarmark"
  1695. },
  1696. {
  1697. "name": "Tobias Schultze",
  1698. "email": "webmaster@tubo-world.de",
  1699. "homepage": "https://github.com/Tobion"
  1700. },
  1701. {
  1702. "name": "Márk Sági-Kazár",
  1703. "email": "mark.sagikazar@gmail.com",
  1704. "homepage": "https://sagikazarmark.hu"
  1705. }
  1706. ],
  1707. "description": "PSR-7 message implementation that also provides common utility methods",
  1708. "keywords": [
  1709. "http",
  1710. "message",
  1711. "psr-7",
  1712. "request",
  1713. "response",
  1714. "stream",
  1715. "uri",
  1716. "url"
  1717. ],
  1718. "support": {
  1719. "issues": "https://github.com/guzzle/psr7/issues",
  1720. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  1721. },
  1722. "funding": [
  1723. {
  1724. "url": "https://github.com/GrahamCampbell",
  1725. "type": "github"
  1726. },
  1727. {
  1728. "url": "https://github.com/Nyholm",
  1729. "type": "github"
  1730. },
  1731. {
  1732. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1733. "type": "tidelift"
  1734. }
  1735. ],
  1736. "time": "2025-08-23T21:21:41+00:00"
  1737. },
  1738. {
  1739. "name": "laravel/framework",
  1740. "version": "v8.83.29",
  1741. "source": {
  1742. "type": "git",
  1743. "url": "https://github.com/laravel/framework.git",
  1744. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4"
  1745. },
  1746. "dist": {
  1747. "type": "zip",
  1748. "url": "https://api.github.com/repos/laravel/framework/zipball/d841a226a50c715431952a10260ba4fac9e91cc4",
  1749. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4",
  1750. "shasum": "",
  1751. "mirrors": [
  1752. {
  1753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1754. "preferred": true
  1755. }
  1756. ]
  1757. },
  1758. "require": {
  1759. "doctrine/inflector": "^1.4|^2.0",
  1760. "dragonmantank/cron-expression": "^3.0.2",
  1761. "egulias/email-validator": "^2.1.10",
  1762. "ext-json": "*",
  1763. "ext-mbstring": "*",
  1764. "ext-openssl": "*",
  1765. "laravel/serializable-closure": "^1.0",
  1766. "league/commonmark": "^1.3|^2.0.2",
  1767. "league/flysystem": "^1.1",
  1768. "monolog/monolog": "^2.0",
  1769. "nesbot/carbon": "^2.53.1",
  1770. "opis/closure": "^3.6",
  1771. "php": "^7.3|^8.0",
  1772. "psr/container": "^1.0",
  1773. "psr/log": "^1.0|^2.0",
  1774. "psr/simple-cache": "^1.0",
  1775. "ramsey/uuid": "^4.2.2",
  1776. "swiftmailer/swiftmailer": "^6.3",
  1777. "symfony/console": "^5.4",
  1778. "symfony/error-handler": "^5.4",
  1779. "symfony/finder": "^5.4",
  1780. "symfony/http-foundation": "^5.4",
  1781. "symfony/http-kernel": "^5.4",
  1782. "symfony/mime": "^5.4",
  1783. "symfony/process": "^5.4",
  1784. "symfony/routing": "^5.4",
  1785. "symfony/var-dumper": "^5.4",
  1786. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1787. "vlucas/phpdotenv": "^5.4.1",
  1788. "voku/portable-ascii": "^1.6.1"
  1789. },
  1790. "conflict": {
  1791. "tightenco/collect": "<5.5.33"
  1792. },
  1793. "provide": {
  1794. "psr/container-implementation": "1.0",
  1795. "psr/simple-cache-implementation": "1.0"
  1796. },
  1797. "replace": {
  1798. "illuminate/auth": "self.version",
  1799. "illuminate/broadcasting": "self.version",
  1800. "illuminate/bus": "self.version",
  1801. "illuminate/cache": "self.version",
  1802. "illuminate/collections": "self.version",
  1803. "illuminate/config": "self.version",
  1804. "illuminate/console": "self.version",
  1805. "illuminate/container": "self.version",
  1806. "illuminate/contracts": "self.version",
  1807. "illuminate/cookie": "self.version",
  1808. "illuminate/database": "self.version",
  1809. "illuminate/encryption": "self.version",
  1810. "illuminate/events": "self.version",
  1811. "illuminate/filesystem": "self.version",
  1812. "illuminate/hashing": "self.version",
  1813. "illuminate/http": "self.version",
  1814. "illuminate/log": "self.version",
  1815. "illuminate/macroable": "self.version",
  1816. "illuminate/mail": "self.version",
  1817. "illuminate/notifications": "self.version",
  1818. "illuminate/pagination": "self.version",
  1819. "illuminate/pipeline": "self.version",
  1820. "illuminate/queue": "self.version",
  1821. "illuminate/redis": "self.version",
  1822. "illuminate/routing": "self.version",
  1823. "illuminate/session": "self.version",
  1824. "illuminate/support": "self.version",
  1825. "illuminate/testing": "self.version",
  1826. "illuminate/translation": "self.version",
  1827. "illuminate/validation": "self.version",
  1828. "illuminate/view": "self.version"
  1829. },
  1830. "require-dev": {
  1831. "aws/aws-sdk-php": "^3.198.1",
  1832. "doctrine/dbal": "^2.13.3|^3.1.4",
  1833. "filp/whoops": "^2.14.3",
  1834. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1835. "league/flysystem-cached-adapter": "^1.0",
  1836. "mockery/mockery": "^1.4.4",
  1837. "orchestra/testbench-core": "^6.27",
  1838. "pda/pheanstalk": "^4.0",
  1839. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1840. "predis/predis": "^1.1.9",
  1841. "symfony/cache": "^5.4"
  1842. },
  1843. "suggest": {
  1844. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1845. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1846. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1847. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1848. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1849. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1850. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1851. "ext-memcached": "Required to use the memcache cache driver.",
  1852. "ext-pcntl": "Required to use all features of the queue worker.",
  1853. "ext-posix": "Required to use all features of the queue worker.",
  1854. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1855. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1856. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1857. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1858. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1859. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1860. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1861. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1862. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1863. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1864. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1865. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1866. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1867. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1868. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1869. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1870. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1871. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1872. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1873. },
  1874. "type": "library",
  1875. "extra": {
  1876. "branch-alias": {
  1877. "dev-master": "8.x-dev"
  1878. }
  1879. },
  1880. "autoload": {
  1881. "files": [
  1882. "src/Illuminate/Collections/helpers.php",
  1883. "src/Illuminate/Events/functions.php",
  1884. "src/Illuminate/Foundation/helpers.php",
  1885. "src/Illuminate/Support/helpers.php"
  1886. ],
  1887. "psr-4": {
  1888. "Illuminate\\": "src/Illuminate/",
  1889. "Illuminate\\Support\\": [
  1890. "src/Illuminate/Macroable/",
  1891. "src/Illuminate/Collections/"
  1892. ]
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Taylor Otwell",
  1902. "email": "taylor@laravel.com"
  1903. }
  1904. ],
  1905. "description": "The Laravel Framework.",
  1906. "homepage": "https://laravel.com",
  1907. "keywords": [
  1908. "framework",
  1909. "laravel"
  1910. ],
  1911. "support": {
  1912. "issues": "https://github.com/laravel/framework/issues",
  1913. "source": "https://github.com/laravel/framework"
  1914. },
  1915. "time": "2024-11-20T15:55:41+00:00"
  1916. },
  1917. {
  1918. "name": "laravel/serializable-closure",
  1919. "version": "v1.3.7",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/laravel/serializable-closure.git",
  1923. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  1928. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  1929. "shasum": "",
  1930. "mirrors": [
  1931. {
  1932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1933. "preferred": true
  1934. }
  1935. ]
  1936. },
  1937. "require": {
  1938. "php": "^7.3|^8.0"
  1939. },
  1940. "require-dev": {
  1941. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1942. "nesbot/carbon": "^2.61|^3.0",
  1943. "pestphp/pest": "^1.21.3",
  1944. "phpstan/phpstan": "^1.8.2",
  1945. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  1946. },
  1947. "type": "library",
  1948. "extra": {
  1949. "branch-alias": {
  1950. "dev-master": "1.x-dev"
  1951. }
  1952. },
  1953. "autoload": {
  1954. "psr-4": {
  1955. "Laravel\\SerializableClosure\\": "src/"
  1956. }
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "MIT"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "Taylor Otwell",
  1965. "email": "taylor@laravel.com"
  1966. },
  1967. {
  1968. "name": "Nuno Maduro",
  1969. "email": "nuno@laravel.com"
  1970. }
  1971. ],
  1972. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1973. "keywords": [
  1974. "closure",
  1975. "laravel",
  1976. "serializable"
  1977. ],
  1978. "support": {
  1979. "issues": "https://github.com/laravel/serializable-closure/issues",
  1980. "source": "https://github.com/laravel/serializable-closure"
  1981. },
  1982. "time": "2024-11-14T18:34:49+00:00"
  1983. },
  1984. {
  1985. "name": "laravel/socialite",
  1986. "version": "v5.16.0",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/laravel/socialite.git",
  1990. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/laravel/socialite/zipball/40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  1995. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  1996. "shasum": "",
  1997. "mirrors": [
  1998. {
  1999. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2000. "preferred": true
  2001. }
  2002. ]
  2003. },
  2004. "require": {
  2005. "ext-json": "*",
  2006. "firebase/php-jwt": "^6.4",
  2007. "guzzlehttp/guzzle": "^6.0|^7.0",
  2008. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2009. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2010. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2011. "league/oauth1-client": "^1.10.1",
  2012. "php": "^7.2|^8.0",
  2013. "phpseclib/phpseclib": "^3.0"
  2014. },
  2015. "require-dev": {
  2016. "mockery/mockery": "^1.0",
  2017. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  2018. "phpstan/phpstan": "^1.10",
  2019. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  2020. },
  2021. "type": "library",
  2022. "extra": {
  2023. "laravel": {
  2024. "aliases": {
  2025. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2026. },
  2027. "providers": [
  2028. "Laravel\\Socialite\\SocialiteServiceProvider"
  2029. ]
  2030. },
  2031. "branch-alias": {
  2032. "dev-master": "5.x-dev"
  2033. }
  2034. },
  2035. "autoload": {
  2036. "psr-4": {
  2037. "Laravel\\Socialite\\": "src/"
  2038. }
  2039. },
  2040. "notification-url": "https://packagist.org/downloads/",
  2041. "license": [
  2042. "MIT"
  2043. ],
  2044. "authors": [
  2045. {
  2046. "name": "Taylor Otwell",
  2047. "email": "taylor@laravel.com"
  2048. }
  2049. ],
  2050. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2051. "homepage": "https://laravel.com",
  2052. "keywords": [
  2053. "laravel",
  2054. "oauth"
  2055. ],
  2056. "support": {
  2057. "issues": "https://github.com/laravel/socialite/issues",
  2058. "source": "https://github.com/laravel/socialite"
  2059. },
  2060. "time": "2024-09-03T09:46:57+00:00"
  2061. },
  2062. {
  2063. "name": "laravel/tinker",
  2064. "version": "v2.10.0",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/laravel/tinker.git",
  2068. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2073. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2074. "shasum": "",
  2075. "mirrors": [
  2076. {
  2077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2078. "preferred": true
  2079. }
  2080. ]
  2081. },
  2082. "require": {
  2083. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2084. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2085. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2086. "php": "^7.2.5|^8.0",
  2087. "psy/psysh": "^0.11.1|^0.12.0",
  2088. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2089. },
  2090. "require-dev": {
  2091. "mockery/mockery": "~1.3.3|^1.4.2",
  2092. "phpstan/phpstan": "^1.10",
  2093. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2094. },
  2095. "suggest": {
  2096. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2097. },
  2098. "type": "library",
  2099. "extra": {
  2100. "laravel": {
  2101. "providers": [
  2102. "Laravel\\Tinker\\TinkerServiceProvider"
  2103. ]
  2104. }
  2105. },
  2106. "autoload": {
  2107. "psr-4": {
  2108. "Laravel\\Tinker\\": "src/"
  2109. }
  2110. },
  2111. "notification-url": "https://packagist.org/downloads/",
  2112. "license": [
  2113. "MIT"
  2114. ],
  2115. "authors": [
  2116. {
  2117. "name": "Taylor Otwell",
  2118. "email": "taylor@laravel.com"
  2119. }
  2120. ],
  2121. "description": "Powerful REPL for the Laravel framework.",
  2122. "keywords": [
  2123. "REPL",
  2124. "Tinker",
  2125. "laravel",
  2126. "psysh"
  2127. ],
  2128. "support": {
  2129. "issues": "https://github.com/laravel/tinker/issues",
  2130. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2131. },
  2132. "time": "2024-09-23T13:32:56+00:00"
  2133. },
  2134. {
  2135. "name": "league/commonmark",
  2136. "version": "2.6.0",
  2137. "source": {
  2138. "type": "git",
  2139. "url": "https://github.com/thephpleague/commonmark.git",
  2140. "reference": "d150f911e0079e90ae3c106734c93137c184f932"
  2141. },
  2142. "dist": {
  2143. "type": "zip",
  2144. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d150f911e0079e90ae3c106734c93137c184f932",
  2145. "reference": "d150f911e0079e90ae3c106734c93137c184f932",
  2146. "shasum": "",
  2147. "mirrors": [
  2148. {
  2149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2150. "preferred": true
  2151. }
  2152. ]
  2153. },
  2154. "require": {
  2155. "ext-mbstring": "*",
  2156. "league/config": "^1.1.1",
  2157. "php": "^7.4 || ^8.0",
  2158. "psr/event-dispatcher": "^1.0",
  2159. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2160. "symfony/polyfill-php80": "^1.16"
  2161. },
  2162. "require-dev": {
  2163. "cebe/markdown": "^1.0",
  2164. "commonmark/cmark": "0.31.1",
  2165. "commonmark/commonmark.js": "0.31.1",
  2166. "composer/package-versions-deprecated": "^1.8",
  2167. "embed/embed": "^4.4",
  2168. "erusev/parsedown": "^1.0",
  2169. "ext-json": "*",
  2170. "github/gfm": "0.29.0",
  2171. "michelf/php-markdown": "^1.4 || ^2.0",
  2172. "nyholm/psr7": "^1.5",
  2173. "phpstan/phpstan": "^1.8.2",
  2174. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2175. "scrutinizer/ocular": "^1.8.1",
  2176. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2177. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2178. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2179. "unleashedtech/php-coding-standard": "^3.1.1",
  2180. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2181. },
  2182. "suggest": {
  2183. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2184. },
  2185. "type": "library",
  2186. "extra": {
  2187. "branch-alias": {
  2188. "dev-main": "2.7-dev"
  2189. }
  2190. },
  2191. "autoload": {
  2192. "psr-4": {
  2193. "League\\CommonMark\\": "src"
  2194. }
  2195. },
  2196. "notification-url": "https://packagist.org/downloads/",
  2197. "license": [
  2198. "BSD-3-Clause"
  2199. ],
  2200. "authors": [
  2201. {
  2202. "name": "Colin O'Dell",
  2203. "email": "colinodell@gmail.com",
  2204. "homepage": "https://www.colinodell.com",
  2205. "role": "Lead Developer"
  2206. }
  2207. ],
  2208. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2209. "homepage": "https://commonmark.thephpleague.com",
  2210. "keywords": [
  2211. "commonmark",
  2212. "flavored",
  2213. "gfm",
  2214. "github",
  2215. "github-flavored",
  2216. "markdown",
  2217. "md",
  2218. "parser"
  2219. ],
  2220. "support": {
  2221. "docs": "https://commonmark.thephpleague.com/",
  2222. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2223. "issues": "https://github.com/thephpleague/commonmark/issues",
  2224. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2225. "source": "https://github.com/thephpleague/commonmark"
  2226. },
  2227. "funding": [
  2228. {
  2229. "url": "https://www.colinodell.com/sponsor",
  2230. "type": "custom"
  2231. },
  2232. {
  2233. "url": "https://www.paypal.me/colinpodell/10.00",
  2234. "type": "custom"
  2235. },
  2236. {
  2237. "url": "https://github.com/colinodell",
  2238. "type": "github"
  2239. },
  2240. {
  2241. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2242. "type": "tidelift"
  2243. }
  2244. ],
  2245. "time": "2024-12-07T15:34:16+00:00"
  2246. },
  2247. {
  2248. "name": "league/config",
  2249. "version": "v1.2.0",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/thephpleague/config.git",
  2253. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2258. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2259. "shasum": "",
  2260. "mirrors": [
  2261. {
  2262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2263. "preferred": true
  2264. }
  2265. ]
  2266. },
  2267. "require": {
  2268. "dflydev/dot-access-data": "^3.0.1",
  2269. "nette/schema": "^1.2",
  2270. "php": "^7.4 || ^8.0"
  2271. },
  2272. "require-dev": {
  2273. "phpstan/phpstan": "^1.8.2",
  2274. "phpunit/phpunit": "^9.5.5",
  2275. "scrutinizer/ocular": "^1.8.1",
  2276. "unleashedtech/php-coding-standard": "^3.1",
  2277. "vimeo/psalm": "^4.7.3"
  2278. },
  2279. "type": "library",
  2280. "extra": {
  2281. "branch-alias": {
  2282. "dev-main": "1.2-dev"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "League\\Config\\": "src"
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "BSD-3-Clause"
  2293. ],
  2294. "authors": [
  2295. {
  2296. "name": "Colin O'Dell",
  2297. "email": "colinodell@gmail.com",
  2298. "homepage": "https://www.colinodell.com",
  2299. "role": "Lead Developer"
  2300. }
  2301. ],
  2302. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2303. "homepage": "https://config.thephpleague.com",
  2304. "keywords": [
  2305. "array",
  2306. "config",
  2307. "configuration",
  2308. "dot",
  2309. "dot-access",
  2310. "nested",
  2311. "schema"
  2312. ],
  2313. "support": {
  2314. "docs": "https://config.thephpleague.com/",
  2315. "issues": "https://github.com/thephpleague/config/issues",
  2316. "rss": "https://github.com/thephpleague/config/releases.atom",
  2317. "source": "https://github.com/thephpleague/config"
  2318. },
  2319. "funding": [
  2320. {
  2321. "url": "https://www.colinodell.com/sponsor",
  2322. "type": "custom"
  2323. },
  2324. {
  2325. "url": "https://www.paypal.me/colinpodell/10.00",
  2326. "type": "custom"
  2327. },
  2328. {
  2329. "url": "https://github.com/colinodell",
  2330. "type": "github"
  2331. }
  2332. ],
  2333. "time": "2022-12-11T20:36:23+00:00"
  2334. },
  2335. {
  2336. "name": "league/flysystem",
  2337. "version": "1.1.10",
  2338. "source": {
  2339. "type": "git",
  2340. "url": "https://github.com/thephpleague/flysystem.git",
  2341. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2342. },
  2343. "dist": {
  2344. "type": "zip",
  2345. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2346. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2347. "shasum": "",
  2348. "mirrors": [
  2349. {
  2350. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2351. "preferred": true
  2352. }
  2353. ]
  2354. },
  2355. "require": {
  2356. "ext-fileinfo": "*",
  2357. "league/mime-type-detection": "^1.3",
  2358. "php": "^7.2.5 || ^8.0"
  2359. },
  2360. "conflict": {
  2361. "league/flysystem-sftp": "<1.0.6"
  2362. },
  2363. "require-dev": {
  2364. "phpspec/prophecy": "^1.11.1",
  2365. "phpunit/phpunit": "^8.5.8"
  2366. },
  2367. "suggest": {
  2368. "ext-ftp": "Allows you to use FTP server storage",
  2369. "ext-openssl": "Allows you to use FTPS server storage",
  2370. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2371. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2372. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2373. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2374. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2375. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2376. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2377. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2378. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2379. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2380. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2381. },
  2382. "type": "library",
  2383. "extra": {
  2384. "branch-alias": {
  2385. "dev-master": "1.1-dev"
  2386. }
  2387. },
  2388. "autoload": {
  2389. "psr-4": {
  2390. "League\\Flysystem\\": "src/"
  2391. }
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "Frank de Jonge",
  2400. "email": "info@frenky.net"
  2401. }
  2402. ],
  2403. "description": "Filesystem abstraction: Many filesystems, one API.",
  2404. "keywords": [
  2405. "Cloud Files",
  2406. "WebDAV",
  2407. "abstraction",
  2408. "aws",
  2409. "cloud",
  2410. "copy.com",
  2411. "dropbox",
  2412. "file systems",
  2413. "files",
  2414. "filesystem",
  2415. "filesystems",
  2416. "ftp",
  2417. "rackspace",
  2418. "remote",
  2419. "s3",
  2420. "sftp",
  2421. "storage"
  2422. ],
  2423. "support": {
  2424. "issues": "https://github.com/thephpleague/flysystem/issues",
  2425. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2426. },
  2427. "funding": [
  2428. {
  2429. "url": "https://offset.earth/frankdejonge",
  2430. "type": "other"
  2431. }
  2432. ],
  2433. "time": "2022-10-04T09:16:37+00:00"
  2434. },
  2435. {
  2436. "name": "league/mime-type-detection",
  2437. "version": "1.15.0",
  2438. "source": {
  2439. "type": "git",
  2440. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2441. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2442. },
  2443. "dist": {
  2444. "type": "zip",
  2445. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2446. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2447. "shasum": "",
  2448. "mirrors": [
  2449. {
  2450. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2451. "preferred": true
  2452. }
  2453. ]
  2454. },
  2455. "require": {
  2456. "ext-fileinfo": "*",
  2457. "php": "^7.4 || ^8.0"
  2458. },
  2459. "require-dev": {
  2460. "friendsofphp/php-cs-fixer": "^3.2",
  2461. "phpstan/phpstan": "^0.12.68",
  2462. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2463. },
  2464. "type": "library",
  2465. "autoload": {
  2466. "psr-4": {
  2467. "League\\MimeTypeDetection\\": "src"
  2468. }
  2469. },
  2470. "notification-url": "https://packagist.org/downloads/",
  2471. "license": [
  2472. "MIT"
  2473. ],
  2474. "authors": [
  2475. {
  2476. "name": "Frank de Jonge",
  2477. "email": "info@frankdejonge.nl"
  2478. }
  2479. ],
  2480. "description": "Mime-type detection for Flysystem",
  2481. "support": {
  2482. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2483. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2484. },
  2485. "funding": [
  2486. {
  2487. "url": "https://github.com/frankdejonge",
  2488. "type": "github"
  2489. },
  2490. {
  2491. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2492. "type": "tidelift"
  2493. }
  2494. ],
  2495. "time": "2024-01-28T23:22:08+00:00"
  2496. },
  2497. {
  2498. "name": "league/oauth1-client",
  2499. "version": "v1.10.1",
  2500. "source": {
  2501. "type": "git",
  2502. "url": "https://github.com/thephpleague/oauth1-client.git",
  2503. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2504. },
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2508. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2509. "shasum": "",
  2510. "mirrors": [
  2511. {
  2512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2513. "preferred": true
  2514. }
  2515. ]
  2516. },
  2517. "require": {
  2518. "ext-json": "*",
  2519. "ext-openssl": "*",
  2520. "guzzlehttp/guzzle": "^6.0|^7.0",
  2521. "guzzlehttp/psr7": "^1.7|^2.0",
  2522. "php": ">=7.1||>=8.0"
  2523. },
  2524. "require-dev": {
  2525. "ext-simplexml": "*",
  2526. "friendsofphp/php-cs-fixer": "^2.17",
  2527. "mockery/mockery": "^1.3.3",
  2528. "phpstan/phpstan": "^0.12.42",
  2529. "phpunit/phpunit": "^7.5||9.5"
  2530. },
  2531. "suggest": {
  2532. "ext-simplexml": "For decoding XML-based responses."
  2533. },
  2534. "type": "library",
  2535. "extra": {
  2536. "branch-alias": {
  2537. "dev-master": "1.0-dev",
  2538. "dev-develop": "2.0-dev"
  2539. }
  2540. },
  2541. "autoload": {
  2542. "psr-4": {
  2543. "League\\OAuth1\\Client\\": "src/"
  2544. }
  2545. },
  2546. "notification-url": "https://packagist.org/downloads/",
  2547. "license": [
  2548. "MIT"
  2549. ],
  2550. "authors": [
  2551. {
  2552. "name": "Ben Corlett",
  2553. "email": "bencorlett@me.com",
  2554. "homepage": "http://www.webcomm.com.au",
  2555. "role": "Developer"
  2556. }
  2557. ],
  2558. "description": "OAuth 1.0 Client Library",
  2559. "keywords": [
  2560. "Authentication",
  2561. "SSO",
  2562. "authorization",
  2563. "bitbucket",
  2564. "identity",
  2565. "idp",
  2566. "oauth",
  2567. "oauth1",
  2568. "single sign on",
  2569. "trello",
  2570. "tumblr",
  2571. "twitter"
  2572. ],
  2573. "support": {
  2574. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2575. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2576. },
  2577. "time": "2022-04-15T14:02:14+00:00"
  2578. },
  2579. {
  2580. "name": "maatwebsite/excel",
  2581. "version": "3.1.59",
  2582. "source": {
  2583. "type": "git",
  2584. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  2585. "reference": "b4d8b877e31998811700283d91292ab2b9a4970d"
  2586. },
  2587. "dist": {
  2588. "type": "zip",
  2589. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/b4d8b877e31998811700283d91292ab2b9a4970d",
  2590. "reference": "b4d8b877e31998811700283d91292ab2b9a4970d",
  2591. "shasum": "",
  2592. "mirrors": [
  2593. {
  2594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2595. "preferred": true
  2596. }
  2597. ]
  2598. },
  2599. "require": {
  2600. "composer/semver": "^3.3",
  2601. "ext-json": "*",
  2602. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0",
  2603. "php": "^7.0||^8.0",
  2604. "phpoffice/phpspreadsheet": "^1.29.2",
  2605. "psr/simple-cache": "^1.0||^2.0||^3.0"
  2606. },
  2607. "require-dev": {
  2608. "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
  2609. "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0",
  2610. "predis/predis": "^1.1"
  2611. },
  2612. "type": "library",
  2613. "extra": {
  2614. "laravel": {
  2615. "providers": [
  2616. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2617. ],
  2618. "aliases": {
  2619. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2620. }
  2621. }
  2622. },
  2623. "autoload": {
  2624. "psr-4": {
  2625. "Maatwebsite\\Excel\\": "src/"
  2626. }
  2627. },
  2628. "notification-url": "https://packagist.org/downloads/",
  2629. "license": [
  2630. "MIT"
  2631. ],
  2632. "authors": [
  2633. {
  2634. "name": "Patrick Brouwers",
  2635. "email": "patrick@spartner.nl"
  2636. }
  2637. ],
  2638. "description": "Supercharged Excel exports and imports in Laravel",
  2639. "keywords": [
  2640. "PHPExcel",
  2641. "batch",
  2642. "csv",
  2643. "excel",
  2644. "export",
  2645. "import",
  2646. "laravel",
  2647. "php",
  2648. "phpspreadsheet"
  2649. ],
  2650. "support": {
  2651. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  2652. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.59"
  2653. },
  2654. "funding": [
  2655. {
  2656. "url": "https://laravel-excel.com/commercial-support",
  2657. "type": "custom"
  2658. },
  2659. {
  2660. "url": "https://github.com/patrickbrouwers",
  2661. "type": "github"
  2662. }
  2663. ],
  2664. "time": "2024-10-25T15:40:14+00:00"
  2665. },
  2666. {
  2667. "name": "maennchen/zipstream-php",
  2668. "version": "2.4.0",
  2669. "source": {
  2670. "type": "git",
  2671. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2672. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  2673. },
  2674. "dist": {
  2675. "type": "zip",
  2676. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2677. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2678. "shasum": "",
  2679. "mirrors": [
  2680. {
  2681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2682. "preferred": true
  2683. }
  2684. ]
  2685. },
  2686. "require": {
  2687. "ext-mbstring": "*",
  2688. "myclabs/php-enum": "^1.5",
  2689. "php": "^8.0",
  2690. "psr/http-message": "^1.0"
  2691. },
  2692. "require-dev": {
  2693. "ext-zip": "*",
  2694. "friendsofphp/php-cs-fixer": "^3.9",
  2695. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2696. "mikey179/vfsstream": "^1.6",
  2697. "php-coveralls/php-coveralls": "^2.4",
  2698. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2699. "vimeo/psalm": "^5.0"
  2700. },
  2701. "type": "library",
  2702. "autoload": {
  2703. "psr-4": {
  2704. "ZipStream\\": "src/"
  2705. }
  2706. },
  2707. "notification-url": "https://packagist.org/downloads/",
  2708. "license": [
  2709. "MIT"
  2710. ],
  2711. "authors": [
  2712. {
  2713. "name": "Paul Duncan",
  2714. "email": "pabs@pablotron.org"
  2715. },
  2716. {
  2717. "name": "Jonatan Männchen",
  2718. "email": "jonatan@maennchen.ch"
  2719. },
  2720. {
  2721. "name": "Jesse Donat",
  2722. "email": "donatj@gmail.com"
  2723. },
  2724. {
  2725. "name": "András Kolesár",
  2726. "email": "kolesar@kolesar.hu"
  2727. }
  2728. ],
  2729. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2730. "keywords": [
  2731. "stream",
  2732. "zip"
  2733. ],
  2734. "support": {
  2735. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2736. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  2737. },
  2738. "funding": [
  2739. {
  2740. "url": "https://github.com/maennchen",
  2741. "type": "github"
  2742. },
  2743. {
  2744. "url": "https://opencollective.com/zipstream",
  2745. "type": "open_collective"
  2746. }
  2747. ],
  2748. "time": "2022-12-08T12:29:14+00:00"
  2749. },
  2750. {
  2751. "name": "markbaker/complex",
  2752. "version": "3.0.2",
  2753. "source": {
  2754. "type": "git",
  2755. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2756. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2757. },
  2758. "dist": {
  2759. "type": "zip",
  2760. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2761. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2762. "shasum": "",
  2763. "mirrors": [
  2764. {
  2765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2766. "preferred": true
  2767. }
  2768. ]
  2769. },
  2770. "require": {
  2771. "php": "^7.2 || ^8.0"
  2772. },
  2773. "require-dev": {
  2774. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2775. "phpcompatibility/php-compatibility": "^9.3",
  2776. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2777. "squizlabs/php_codesniffer": "^3.7"
  2778. },
  2779. "type": "library",
  2780. "autoload": {
  2781. "psr-4": {
  2782. "Complex\\": "classes/src/"
  2783. }
  2784. },
  2785. "notification-url": "https://packagist.org/downloads/",
  2786. "license": [
  2787. "MIT"
  2788. ],
  2789. "authors": [
  2790. {
  2791. "name": "Mark Baker",
  2792. "email": "mark@lange.demon.co.uk"
  2793. }
  2794. ],
  2795. "description": "PHP Class for working with complex numbers",
  2796. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2797. "keywords": [
  2798. "complex",
  2799. "mathematics"
  2800. ],
  2801. "support": {
  2802. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2803. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2804. },
  2805. "time": "2022-12-06T16:21:08+00:00"
  2806. },
  2807. {
  2808. "name": "markbaker/matrix",
  2809. "version": "3.0.1",
  2810. "source": {
  2811. "type": "git",
  2812. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2813. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2814. },
  2815. "dist": {
  2816. "type": "zip",
  2817. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2818. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2819. "shasum": "",
  2820. "mirrors": [
  2821. {
  2822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2823. "preferred": true
  2824. }
  2825. ]
  2826. },
  2827. "require": {
  2828. "php": "^7.1 || ^8.0"
  2829. },
  2830. "require-dev": {
  2831. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2832. "phpcompatibility/php-compatibility": "^9.3",
  2833. "phpdocumentor/phpdocumentor": "2.*",
  2834. "phploc/phploc": "^4.0",
  2835. "phpmd/phpmd": "2.*",
  2836. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2837. "sebastian/phpcpd": "^4.0",
  2838. "squizlabs/php_codesniffer": "^3.7"
  2839. },
  2840. "type": "library",
  2841. "autoload": {
  2842. "psr-4": {
  2843. "Matrix\\": "classes/src/"
  2844. }
  2845. },
  2846. "notification-url": "https://packagist.org/downloads/",
  2847. "license": [
  2848. "MIT"
  2849. ],
  2850. "authors": [
  2851. {
  2852. "name": "Mark Baker",
  2853. "email": "mark@demon-angel.eu"
  2854. }
  2855. ],
  2856. "description": "PHP Class for working with matrices",
  2857. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2858. "keywords": [
  2859. "mathematics",
  2860. "matrix",
  2861. "vector"
  2862. ],
  2863. "support": {
  2864. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2865. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2866. },
  2867. "time": "2022-12-02T22:17:43+00:00"
  2868. },
  2869. {
  2870. "name": "monolog/monolog",
  2871. "version": "2.10.0",
  2872. "source": {
  2873. "type": "git",
  2874. "url": "https://github.com/Seldaek/monolog.git",
  2875. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  2876. },
  2877. "dist": {
  2878. "type": "zip",
  2879. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  2880. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  2881. "shasum": "",
  2882. "mirrors": [
  2883. {
  2884. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2885. "preferred": true
  2886. }
  2887. ]
  2888. },
  2889. "require": {
  2890. "php": ">=7.2",
  2891. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2892. },
  2893. "provide": {
  2894. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2895. },
  2896. "require-dev": {
  2897. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2898. "doctrine/couchdb": "~1.0@dev",
  2899. "elasticsearch/elasticsearch": "^7 || ^8",
  2900. "ext-json": "*",
  2901. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2902. "guzzlehttp/guzzle": "^7.4",
  2903. "guzzlehttp/psr7": "^2.2",
  2904. "mongodb/mongodb": "^1.8",
  2905. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2906. "phpspec/prophecy": "^1.15",
  2907. "phpstan/phpstan": "^1.10",
  2908. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  2909. "predis/predis": "^1.1 || ^2.0",
  2910. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2911. "ruflin/elastica": "^7",
  2912. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2913. "symfony/mailer": "^5.4 || ^6",
  2914. "symfony/mime": "^5.4 || ^6"
  2915. },
  2916. "suggest": {
  2917. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2918. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2919. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2920. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2921. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2922. "ext-mbstring": "Allow to work properly with unicode symbols",
  2923. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2924. "ext-openssl": "Required to send log messages using SSL",
  2925. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2926. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2927. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2928. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2929. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2930. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2931. },
  2932. "type": "library",
  2933. "extra": {
  2934. "branch-alias": {
  2935. "dev-main": "2.x-dev"
  2936. }
  2937. },
  2938. "autoload": {
  2939. "psr-4": {
  2940. "Monolog\\": "src/Monolog"
  2941. }
  2942. },
  2943. "notification-url": "https://packagist.org/downloads/",
  2944. "license": [
  2945. "MIT"
  2946. ],
  2947. "authors": [
  2948. {
  2949. "name": "Jordi Boggiano",
  2950. "email": "j.boggiano@seld.be",
  2951. "homepage": "https://seld.be"
  2952. }
  2953. ],
  2954. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2955. "homepage": "https://github.com/Seldaek/monolog",
  2956. "keywords": [
  2957. "log",
  2958. "logging",
  2959. "psr-3"
  2960. ],
  2961. "support": {
  2962. "issues": "https://github.com/Seldaek/monolog/issues",
  2963. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  2964. },
  2965. "funding": [
  2966. {
  2967. "url": "https://github.com/Seldaek",
  2968. "type": "github"
  2969. },
  2970. {
  2971. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2972. "type": "tidelift"
  2973. }
  2974. ],
  2975. "time": "2024-11-12T12:43:37+00:00"
  2976. },
  2977. {
  2978. "name": "myclabs/php-enum",
  2979. "version": "1.8.4",
  2980. "source": {
  2981. "type": "git",
  2982. "url": "https://github.com/myclabs/php-enum.git",
  2983. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2984. },
  2985. "dist": {
  2986. "type": "zip",
  2987. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2988. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2989. "shasum": "",
  2990. "mirrors": [
  2991. {
  2992. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2993. "preferred": true
  2994. }
  2995. ]
  2996. },
  2997. "require": {
  2998. "ext-json": "*",
  2999. "php": "^7.3 || ^8.0"
  3000. },
  3001. "require-dev": {
  3002. "phpunit/phpunit": "^9.5",
  3003. "squizlabs/php_codesniffer": "1.*",
  3004. "vimeo/psalm": "^4.6.2"
  3005. },
  3006. "type": "library",
  3007. "autoload": {
  3008. "psr-4": {
  3009. "MyCLabs\\Enum\\": "src/"
  3010. },
  3011. "classmap": [
  3012. "stubs/Stringable.php"
  3013. ]
  3014. },
  3015. "notification-url": "https://packagist.org/downloads/",
  3016. "license": [
  3017. "MIT"
  3018. ],
  3019. "authors": [
  3020. {
  3021. "name": "PHP Enum contributors",
  3022. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3023. }
  3024. ],
  3025. "description": "PHP Enum implementation",
  3026. "homepage": "http://github.com/myclabs/php-enum",
  3027. "keywords": [
  3028. "enum"
  3029. ],
  3030. "support": {
  3031. "issues": "https://github.com/myclabs/php-enum/issues",
  3032. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3033. },
  3034. "funding": [
  3035. {
  3036. "url": "https://github.com/mnapoli",
  3037. "type": "github"
  3038. },
  3039. {
  3040. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3041. "type": "tidelift"
  3042. }
  3043. ],
  3044. "time": "2022-08-04T09:53:51+00:00"
  3045. },
  3046. {
  3047. "name": "nesbot/carbon",
  3048. "version": "2.73.0",
  3049. "source": {
  3050. "type": "git",
  3051. "url": "https://github.com/CarbonPHP/carbon.git",
  3052. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  3053. },
  3054. "dist": {
  3055. "type": "zip",
  3056. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3057. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3058. "shasum": "",
  3059. "mirrors": [
  3060. {
  3061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3062. "preferred": true
  3063. }
  3064. ]
  3065. },
  3066. "require": {
  3067. "carbonphp/carbon-doctrine-types": "*",
  3068. "ext-json": "*",
  3069. "php": "^7.1.8 || ^8.0",
  3070. "psr/clock": "^1.0",
  3071. "symfony/polyfill-mbstring": "^1.0",
  3072. "symfony/polyfill-php80": "^1.16",
  3073. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3074. },
  3075. "provide": {
  3076. "psr/clock-implementation": "1.0"
  3077. },
  3078. "require-dev": {
  3079. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3080. "doctrine/orm": "^2.7 || ^3.0",
  3081. "friendsofphp/php-cs-fixer": "^3.0",
  3082. "kylekatarnls/multi-tester": "^2.0",
  3083. "ondrejmirtes/better-reflection": "<6",
  3084. "phpmd/phpmd": "^2.9",
  3085. "phpstan/extension-installer": "^1.0",
  3086. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3087. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3088. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3089. "squizlabs/php_codesniffer": "^3.4"
  3090. },
  3091. "bin": [
  3092. "bin/carbon"
  3093. ],
  3094. "type": "library",
  3095. "extra": {
  3096. "laravel": {
  3097. "providers": [
  3098. "Carbon\\Laravel\\ServiceProvider"
  3099. ]
  3100. },
  3101. "phpstan": {
  3102. "includes": [
  3103. "extension.neon"
  3104. ]
  3105. },
  3106. "branch-alias": {
  3107. "dev-2.x": "2.x-dev",
  3108. "dev-master": "3.x-dev"
  3109. }
  3110. },
  3111. "autoload": {
  3112. "psr-4": {
  3113. "Carbon\\": "src/Carbon/"
  3114. }
  3115. },
  3116. "notification-url": "https://packagist.org/downloads/",
  3117. "license": [
  3118. "MIT"
  3119. ],
  3120. "authors": [
  3121. {
  3122. "name": "Brian Nesbitt",
  3123. "email": "brian@nesbot.com",
  3124. "homepage": "https://markido.com"
  3125. },
  3126. {
  3127. "name": "kylekatarnls",
  3128. "homepage": "https://github.com/kylekatarnls"
  3129. }
  3130. ],
  3131. "description": "An API extension for DateTime that supports 281 different languages.",
  3132. "homepage": "https://carbon.nesbot.com",
  3133. "keywords": [
  3134. "date",
  3135. "datetime",
  3136. "time"
  3137. ],
  3138. "support": {
  3139. "docs": "https://carbon.nesbot.com/docs",
  3140. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3141. "source": "https://github.com/briannesbitt/Carbon"
  3142. },
  3143. "funding": [
  3144. {
  3145. "url": "https://github.com/sponsors/kylekatarnls",
  3146. "type": "github"
  3147. },
  3148. {
  3149. "url": "https://opencollective.com/Carbon#sponsor",
  3150. "type": "opencollective"
  3151. },
  3152. {
  3153. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3154. "type": "tidelift"
  3155. }
  3156. ],
  3157. "time": "2025-01-08T20:10:23+00:00"
  3158. },
  3159. {
  3160. "name": "nette/schema",
  3161. "version": "v1.2.5",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/nette/schema.git",
  3165. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3170. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3171. "shasum": "",
  3172. "mirrors": [
  3173. {
  3174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3175. "preferred": true
  3176. }
  3177. ]
  3178. },
  3179. "require": {
  3180. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3181. "php": "7.1 - 8.3"
  3182. },
  3183. "require-dev": {
  3184. "nette/tester": "^2.3 || ^2.4",
  3185. "phpstan/phpstan-nette": "^1.0",
  3186. "tracy/tracy": "^2.7"
  3187. },
  3188. "type": "library",
  3189. "extra": {
  3190. "branch-alias": {
  3191. "dev-master": "1.2-dev"
  3192. }
  3193. },
  3194. "autoload": {
  3195. "classmap": [
  3196. "src/"
  3197. ]
  3198. },
  3199. "notification-url": "https://packagist.org/downloads/",
  3200. "license": [
  3201. "BSD-3-Clause",
  3202. "GPL-2.0-only",
  3203. "GPL-3.0-only"
  3204. ],
  3205. "authors": [
  3206. {
  3207. "name": "David Grudl",
  3208. "homepage": "https://davidgrudl.com"
  3209. },
  3210. {
  3211. "name": "Nette Community",
  3212. "homepage": "https://nette.org/contributors"
  3213. }
  3214. ],
  3215. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3216. "homepage": "https://nette.org",
  3217. "keywords": [
  3218. "config",
  3219. "nette"
  3220. ],
  3221. "support": {
  3222. "issues": "https://github.com/nette/schema/issues",
  3223. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3224. },
  3225. "time": "2023-10-05T20:37:59+00:00"
  3226. },
  3227. {
  3228. "name": "nette/utils",
  3229. "version": "v4.0.4",
  3230. "source": {
  3231. "type": "git",
  3232. "url": "https://github.com/nette/utils.git",
  3233. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  3234. },
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  3238. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  3239. "shasum": "",
  3240. "mirrors": [
  3241. {
  3242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3243. "preferred": true
  3244. }
  3245. ]
  3246. },
  3247. "require": {
  3248. "php": ">=8.0 <8.4"
  3249. },
  3250. "conflict": {
  3251. "nette/finder": "<3",
  3252. "nette/schema": "<1.2.2"
  3253. },
  3254. "require-dev": {
  3255. "jetbrains/phpstorm-attributes": "dev-master",
  3256. "nette/tester": "^2.5",
  3257. "phpstan/phpstan": "^1.0",
  3258. "tracy/tracy": "^2.9"
  3259. },
  3260. "suggest": {
  3261. "ext-gd": "to use Image",
  3262. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3263. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3264. "ext-json": "to use Nette\\Utils\\Json",
  3265. "ext-mbstring": "to use Strings::lower() etc...",
  3266. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3267. },
  3268. "type": "library",
  3269. "extra": {
  3270. "branch-alias": {
  3271. "dev-master": "4.0-dev"
  3272. }
  3273. },
  3274. "autoload": {
  3275. "classmap": [
  3276. "src/"
  3277. ]
  3278. },
  3279. "notification-url": "https://packagist.org/downloads/",
  3280. "license": [
  3281. "BSD-3-Clause",
  3282. "GPL-2.0-only",
  3283. "GPL-3.0-only"
  3284. ],
  3285. "authors": [
  3286. {
  3287. "name": "David Grudl",
  3288. "homepage": "https://davidgrudl.com"
  3289. },
  3290. {
  3291. "name": "Nette Community",
  3292. "homepage": "https://nette.org/contributors"
  3293. }
  3294. ],
  3295. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3296. "homepage": "https://nette.org",
  3297. "keywords": [
  3298. "array",
  3299. "core",
  3300. "datetime",
  3301. "images",
  3302. "json",
  3303. "nette",
  3304. "paginator",
  3305. "password",
  3306. "slugify",
  3307. "string",
  3308. "unicode",
  3309. "utf-8",
  3310. "utility",
  3311. "validation"
  3312. ],
  3313. "support": {
  3314. "issues": "https://github.com/nette/utils/issues",
  3315. "source": "https://github.com/nette/utils/tree/v4.0.4"
  3316. },
  3317. "time": "2024-01-17T16:50:36+00:00"
  3318. },
  3319. {
  3320. "name": "nikic/php-parser",
  3321. "version": "v5.3.1",
  3322. "source": {
  3323. "type": "git",
  3324. "url": "https://github.com/nikic/PHP-Parser.git",
  3325. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  3326. },
  3327. "dist": {
  3328. "type": "zip",
  3329. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  3330. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  3331. "shasum": "",
  3332. "mirrors": [
  3333. {
  3334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3335. "preferred": true
  3336. }
  3337. ]
  3338. },
  3339. "require": {
  3340. "ext-ctype": "*",
  3341. "ext-json": "*",
  3342. "ext-tokenizer": "*",
  3343. "php": ">=7.4"
  3344. },
  3345. "require-dev": {
  3346. "ircmaxell/php-yacc": "^0.0.7",
  3347. "phpunit/phpunit": "^9.0"
  3348. },
  3349. "bin": [
  3350. "bin/php-parse"
  3351. ],
  3352. "type": "library",
  3353. "extra": {
  3354. "branch-alias": {
  3355. "dev-master": "5.0-dev"
  3356. }
  3357. },
  3358. "autoload": {
  3359. "psr-4": {
  3360. "PhpParser\\": "lib/PhpParser"
  3361. }
  3362. },
  3363. "notification-url": "https://packagist.org/downloads/",
  3364. "license": [
  3365. "BSD-3-Clause"
  3366. ],
  3367. "authors": [
  3368. {
  3369. "name": "Nikita Popov"
  3370. }
  3371. ],
  3372. "description": "A PHP parser written in PHP",
  3373. "keywords": [
  3374. "parser",
  3375. "php"
  3376. ],
  3377. "support": {
  3378. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3379. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  3380. },
  3381. "time": "2024-10-08T18:51:32+00:00"
  3382. },
  3383. {
  3384. "name": "opis/closure",
  3385. "version": "3.6.3",
  3386. "source": {
  3387. "type": "git",
  3388. "url": "https://github.com/opis/closure.git",
  3389. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3390. },
  3391. "dist": {
  3392. "type": "zip",
  3393. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3394. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3395. "shasum": "",
  3396. "mirrors": [
  3397. {
  3398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3399. "preferred": true
  3400. }
  3401. ]
  3402. },
  3403. "require": {
  3404. "php": "^5.4 || ^7.0 || ^8.0"
  3405. },
  3406. "require-dev": {
  3407. "jeremeamia/superclosure": "^2.0",
  3408. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3409. },
  3410. "type": "library",
  3411. "extra": {
  3412. "branch-alias": {
  3413. "dev-master": "3.6.x-dev"
  3414. }
  3415. },
  3416. "autoload": {
  3417. "files": [
  3418. "functions.php"
  3419. ],
  3420. "psr-4": {
  3421. "Opis\\Closure\\": "src/"
  3422. }
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Marius Sarca",
  3431. "email": "marius.sarca@gmail.com"
  3432. },
  3433. {
  3434. "name": "Sorin Sarca",
  3435. "email": "sarca_sorin@hotmail.com"
  3436. }
  3437. ],
  3438. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3439. "homepage": "https://opis.io/closure",
  3440. "keywords": [
  3441. "anonymous functions",
  3442. "closure",
  3443. "function",
  3444. "serializable",
  3445. "serialization",
  3446. "serialize"
  3447. ],
  3448. "support": {
  3449. "issues": "https://github.com/opis/closure/issues",
  3450. "source": "https://github.com/opis/closure/tree/3.6.3"
  3451. },
  3452. "time": "2022-01-27T09:35:39+00:00"
  3453. },
  3454. {
  3455. "name": "paragonie/constant_time_encoding",
  3456. "version": "v3.0.0",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3460. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  3461. },
  3462. "dist": {
  3463. "type": "zip",
  3464. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  3465. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  3466. "shasum": "",
  3467. "mirrors": [
  3468. {
  3469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3470. "preferred": true
  3471. }
  3472. ]
  3473. },
  3474. "require": {
  3475. "php": "^8"
  3476. },
  3477. "require-dev": {
  3478. "phpunit/phpunit": "^9",
  3479. "vimeo/psalm": "^4|^5"
  3480. },
  3481. "type": "library",
  3482. "autoload": {
  3483. "psr-4": {
  3484. "ParagonIE\\ConstantTime\\": "src/"
  3485. }
  3486. },
  3487. "notification-url": "https://packagist.org/downloads/",
  3488. "license": [
  3489. "MIT"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Paragon Initiative Enterprises",
  3494. "email": "security@paragonie.com",
  3495. "homepage": "https://paragonie.com",
  3496. "role": "Maintainer"
  3497. },
  3498. {
  3499. "name": "Steve 'Sc00bz' Thomas",
  3500. "email": "steve@tobtu.com",
  3501. "homepage": "https://www.tobtu.com",
  3502. "role": "Original Developer"
  3503. }
  3504. ],
  3505. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3506. "keywords": [
  3507. "base16",
  3508. "base32",
  3509. "base32_decode",
  3510. "base32_encode",
  3511. "base64",
  3512. "base64_decode",
  3513. "base64_encode",
  3514. "bin2hex",
  3515. "encoding",
  3516. "hex",
  3517. "hex2bin",
  3518. "rfc4648"
  3519. ],
  3520. "support": {
  3521. "email": "info@paragonie.com",
  3522. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3523. "source": "https://github.com/paragonie/constant_time_encoding"
  3524. },
  3525. "time": "2024-05-08T12:36:18+00:00"
  3526. },
  3527. {
  3528. "name": "paragonie/random_compat",
  3529. "version": "v9.99.100",
  3530. "source": {
  3531. "type": "git",
  3532. "url": "https://github.com/paragonie/random_compat.git",
  3533. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3534. },
  3535. "dist": {
  3536. "type": "zip",
  3537. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3538. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3539. "shasum": "",
  3540. "mirrors": [
  3541. {
  3542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3543. "preferred": true
  3544. }
  3545. ]
  3546. },
  3547. "require": {
  3548. "php": ">= 7"
  3549. },
  3550. "require-dev": {
  3551. "phpunit/phpunit": "4.*|5.*",
  3552. "vimeo/psalm": "^1"
  3553. },
  3554. "suggest": {
  3555. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3556. },
  3557. "type": "library",
  3558. "notification-url": "https://packagist.org/downloads/",
  3559. "license": [
  3560. "MIT"
  3561. ],
  3562. "authors": [
  3563. {
  3564. "name": "Paragon Initiative Enterprises",
  3565. "email": "security@paragonie.com",
  3566. "homepage": "https://paragonie.com"
  3567. }
  3568. ],
  3569. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3570. "keywords": [
  3571. "csprng",
  3572. "polyfill",
  3573. "pseudorandom",
  3574. "random"
  3575. ],
  3576. "support": {
  3577. "email": "info@paragonie.com",
  3578. "issues": "https://github.com/paragonie/random_compat/issues",
  3579. "source": "https://github.com/paragonie/random_compat"
  3580. },
  3581. "time": "2020-10-15T08:29:30+00:00"
  3582. },
  3583. {
  3584. "name": "phpoffice/phpspreadsheet",
  3585. "version": "1.30.0",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3589. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2f39286e0136673778b7a142b3f0d141e43d1714",
  3594. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714",
  3595. "shasum": "",
  3596. "mirrors": [
  3597. {
  3598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3599. "preferred": true
  3600. }
  3601. ]
  3602. },
  3603. "require": {
  3604. "composer/pcre": "^1||^2||^3",
  3605. "ext-ctype": "*",
  3606. "ext-dom": "*",
  3607. "ext-fileinfo": "*",
  3608. "ext-gd": "*",
  3609. "ext-iconv": "*",
  3610. "ext-libxml": "*",
  3611. "ext-mbstring": "*",
  3612. "ext-simplexml": "*",
  3613. "ext-xml": "*",
  3614. "ext-xmlreader": "*",
  3615. "ext-xmlwriter": "*",
  3616. "ext-zip": "*",
  3617. "ext-zlib": "*",
  3618. "ezyang/htmlpurifier": "^4.15",
  3619. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3620. "markbaker/complex": "^3.0",
  3621. "markbaker/matrix": "^3.0",
  3622. "php": "^7.4 || ^8.0",
  3623. "psr/http-client": "^1.0",
  3624. "psr/http-factory": "^1.0",
  3625. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3626. },
  3627. "require-dev": {
  3628. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3629. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  3630. "friendsofphp/php-cs-fixer": "^3.2",
  3631. "mitoteam/jpgraph": "^10.3",
  3632. "mpdf/mpdf": "^8.1.1",
  3633. "phpcompatibility/php-compatibility": "^9.3",
  3634. "phpstan/phpstan": "^1.1",
  3635. "phpstan/phpstan-phpunit": "^1.0",
  3636. "phpunit/phpunit": "^8.5 || ^9.0",
  3637. "squizlabs/php_codesniffer": "^3.7",
  3638. "tecnickcom/tcpdf": "^6.5"
  3639. },
  3640. "suggest": {
  3641. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3642. "ext-intl": "PHP Internationalization Functions",
  3643. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3644. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3645. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3646. },
  3647. "type": "library",
  3648. "autoload": {
  3649. "psr-4": {
  3650. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3651. }
  3652. },
  3653. "notification-url": "https://packagist.org/downloads/",
  3654. "license": [
  3655. "MIT"
  3656. ],
  3657. "authors": [
  3658. {
  3659. "name": "Maarten Balliauw",
  3660. "homepage": "https://blog.maartenballiauw.be"
  3661. },
  3662. {
  3663. "name": "Mark Baker",
  3664. "homepage": "https://markbakeruk.net"
  3665. },
  3666. {
  3667. "name": "Franck Lefevre",
  3668. "homepage": "https://rootslabs.net"
  3669. },
  3670. {
  3671. "name": "Erik Tilt"
  3672. },
  3673. {
  3674. "name": "Adrien Crivelli"
  3675. }
  3676. ],
  3677. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3678. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3679. "keywords": [
  3680. "OpenXML",
  3681. "excel",
  3682. "gnumeric",
  3683. "ods",
  3684. "php",
  3685. "spreadsheet",
  3686. "xls",
  3687. "xlsx"
  3688. ],
  3689. "support": {
  3690. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3691. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.0"
  3692. },
  3693. "time": "2025-08-10T06:28:02+00:00"
  3694. },
  3695. {
  3696. "name": "phpoption/phpoption",
  3697. "version": "1.9.3",
  3698. "source": {
  3699. "type": "git",
  3700. "url": "https://github.com/schmittjoh/php-option.git",
  3701. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3702. },
  3703. "dist": {
  3704. "type": "zip",
  3705. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3706. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3707. "shasum": "",
  3708. "mirrors": [
  3709. {
  3710. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3711. "preferred": true
  3712. }
  3713. ]
  3714. },
  3715. "require": {
  3716. "php": "^7.2.5 || ^8.0"
  3717. },
  3718. "require-dev": {
  3719. "bamarni/composer-bin-plugin": "^1.8.2",
  3720. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3721. },
  3722. "type": "library",
  3723. "extra": {
  3724. "bamarni-bin": {
  3725. "bin-links": true,
  3726. "forward-command": false
  3727. },
  3728. "branch-alias": {
  3729. "dev-master": "1.9-dev"
  3730. }
  3731. },
  3732. "autoload": {
  3733. "psr-4": {
  3734. "PhpOption\\": "src/PhpOption/"
  3735. }
  3736. },
  3737. "notification-url": "https://packagist.org/downloads/",
  3738. "license": [
  3739. "Apache-2.0"
  3740. ],
  3741. "authors": [
  3742. {
  3743. "name": "Johannes M. Schmitt",
  3744. "email": "schmittjoh@gmail.com",
  3745. "homepage": "https://github.com/schmittjoh"
  3746. },
  3747. {
  3748. "name": "Graham Campbell",
  3749. "email": "hello@gjcampbell.co.uk",
  3750. "homepage": "https://github.com/GrahamCampbell"
  3751. }
  3752. ],
  3753. "description": "Option Type for PHP",
  3754. "keywords": [
  3755. "language",
  3756. "option",
  3757. "php",
  3758. "type"
  3759. ],
  3760. "support": {
  3761. "issues": "https://github.com/schmittjoh/php-option/issues",
  3762. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3763. },
  3764. "funding": [
  3765. {
  3766. "url": "https://github.com/GrahamCampbell",
  3767. "type": "github"
  3768. },
  3769. {
  3770. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3771. "type": "tidelift"
  3772. }
  3773. ],
  3774. "time": "2024-07-20T21:41:07+00:00"
  3775. },
  3776. {
  3777. "name": "phpseclib/phpseclib",
  3778. "version": "3.0.43",
  3779. "source": {
  3780. "type": "git",
  3781. "url": "https://github.com/phpseclib/phpseclib.git",
  3782. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  3783. },
  3784. "dist": {
  3785. "type": "zip",
  3786. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  3787. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  3788. "shasum": "",
  3789. "mirrors": [
  3790. {
  3791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3792. "preferred": true
  3793. }
  3794. ]
  3795. },
  3796. "require": {
  3797. "paragonie/constant_time_encoding": "^1|^2|^3",
  3798. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  3799. "php": ">=5.6.1"
  3800. },
  3801. "require-dev": {
  3802. "phpunit/phpunit": "*"
  3803. },
  3804. "suggest": {
  3805. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  3806. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3807. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3808. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3809. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3810. },
  3811. "type": "library",
  3812. "autoload": {
  3813. "files": [
  3814. "phpseclib/bootstrap.php"
  3815. ],
  3816. "psr-4": {
  3817. "phpseclib3\\": "phpseclib/"
  3818. }
  3819. },
  3820. "notification-url": "https://packagist.org/downloads/",
  3821. "license": [
  3822. "MIT"
  3823. ],
  3824. "authors": [
  3825. {
  3826. "name": "Jim Wigginton",
  3827. "email": "terrafrost@php.net",
  3828. "role": "Lead Developer"
  3829. },
  3830. {
  3831. "name": "Patrick Monnerat",
  3832. "email": "pm@datasphere.ch",
  3833. "role": "Developer"
  3834. },
  3835. {
  3836. "name": "Andreas Fischer",
  3837. "email": "bantu@phpbb.com",
  3838. "role": "Developer"
  3839. },
  3840. {
  3841. "name": "Hans-Jürgen Petrich",
  3842. "email": "petrich@tronic-media.com",
  3843. "role": "Developer"
  3844. },
  3845. {
  3846. "name": "Graham Campbell",
  3847. "email": "graham@alt-three.com",
  3848. "role": "Developer"
  3849. }
  3850. ],
  3851. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3852. "homepage": "http://phpseclib.sourceforge.net",
  3853. "keywords": [
  3854. "BigInteger",
  3855. "aes",
  3856. "asn.1",
  3857. "asn1",
  3858. "blowfish",
  3859. "crypto",
  3860. "cryptography",
  3861. "encryption",
  3862. "rsa",
  3863. "security",
  3864. "sftp",
  3865. "signature",
  3866. "signing",
  3867. "ssh",
  3868. "twofish",
  3869. "x.509",
  3870. "x509"
  3871. ],
  3872. "support": {
  3873. "issues": "https://github.com/phpseclib/phpseclib/issues",
  3874. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  3875. },
  3876. "funding": [
  3877. {
  3878. "url": "https://github.com/terrafrost",
  3879. "type": "github"
  3880. },
  3881. {
  3882. "url": "https://www.patreon.com/phpseclib",
  3883. "type": "patreon"
  3884. },
  3885. {
  3886. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  3887. "type": "tidelift"
  3888. }
  3889. ],
  3890. "time": "2024-12-14T21:12:59+00:00"
  3891. },
  3892. {
  3893. "name": "psr/clock",
  3894. "version": "1.0.0",
  3895. "source": {
  3896. "type": "git",
  3897. "url": "https://github.com/php-fig/clock.git",
  3898. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3899. },
  3900. "dist": {
  3901. "type": "zip",
  3902. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3903. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3904. "shasum": "",
  3905. "mirrors": [
  3906. {
  3907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3908. "preferred": true
  3909. }
  3910. ]
  3911. },
  3912. "require": {
  3913. "php": "^7.0 || ^8.0"
  3914. },
  3915. "type": "library",
  3916. "autoload": {
  3917. "psr-4": {
  3918. "Psr\\Clock\\": "src/"
  3919. }
  3920. },
  3921. "notification-url": "https://packagist.org/downloads/",
  3922. "license": [
  3923. "MIT"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "PHP-FIG",
  3928. "homepage": "https://www.php-fig.org/"
  3929. }
  3930. ],
  3931. "description": "Common interface for reading the clock.",
  3932. "homepage": "https://github.com/php-fig/clock",
  3933. "keywords": [
  3934. "clock",
  3935. "now",
  3936. "psr",
  3937. "psr-20",
  3938. "time"
  3939. ],
  3940. "support": {
  3941. "issues": "https://github.com/php-fig/clock/issues",
  3942. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3943. },
  3944. "time": "2022-11-25T14:36:26+00:00"
  3945. },
  3946. {
  3947. "name": "psr/container",
  3948. "version": "1.1.2",
  3949. "source": {
  3950. "type": "git",
  3951. "url": "https://github.com/php-fig/container.git",
  3952. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  3953. },
  3954. "dist": {
  3955. "type": "zip",
  3956. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  3957. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  3958. "shasum": "",
  3959. "mirrors": [
  3960. {
  3961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3962. "preferred": true
  3963. }
  3964. ]
  3965. },
  3966. "require": {
  3967. "php": ">=7.4.0"
  3968. },
  3969. "type": "library",
  3970. "autoload": {
  3971. "psr-4": {
  3972. "Psr\\Container\\": "src/"
  3973. }
  3974. },
  3975. "notification-url": "https://packagist.org/downloads/",
  3976. "license": [
  3977. "MIT"
  3978. ],
  3979. "authors": [
  3980. {
  3981. "name": "PHP-FIG",
  3982. "homepage": "https://www.php-fig.org/"
  3983. }
  3984. ],
  3985. "description": "Common Container Interface (PHP FIG PSR-11)",
  3986. "homepage": "https://github.com/php-fig/container",
  3987. "keywords": [
  3988. "PSR-11",
  3989. "container",
  3990. "container-interface",
  3991. "container-interop",
  3992. "psr"
  3993. ],
  3994. "support": {
  3995. "issues": "https://github.com/php-fig/container/issues",
  3996. "source": "https://github.com/php-fig/container/tree/1.1.2"
  3997. },
  3998. "time": "2021-11-05T16:50:12+00:00"
  3999. },
  4000. {
  4001. "name": "psr/event-dispatcher",
  4002. "version": "1.0.0",
  4003. "source": {
  4004. "type": "git",
  4005. "url": "https://github.com/php-fig/event-dispatcher.git",
  4006. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4007. },
  4008. "dist": {
  4009. "type": "zip",
  4010. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4011. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4012. "shasum": "",
  4013. "mirrors": [
  4014. {
  4015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4016. "preferred": true
  4017. }
  4018. ]
  4019. },
  4020. "require": {
  4021. "php": ">=7.2.0"
  4022. },
  4023. "type": "library",
  4024. "extra": {
  4025. "branch-alias": {
  4026. "dev-master": "1.0.x-dev"
  4027. }
  4028. },
  4029. "autoload": {
  4030. "psr-4": {
  4031. "Psr\\EventDispatcher\\": "src/"
  4032. }
  4033. },
  4034. "notification-url": "https://packagist.org/downloads/",
  4035. "license": [
  4036. "MIT"
  4037. ],
  4038. "authors": [
  4039. {
  4040. "name": "PHP-FIG",
  4041. "homepage": "http://www.php-fig.org/"
  4042. }
  4043. ],
  4044. "description": "Standard interfaces for event handling.",
  4045. "keywords": [
  4046. "events",
  4047. "psr",
  4048. "psr-14"
  4049. ],
  4050. "support": {
  4051. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4052. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4053. },
  4054. "time": "2019-01-08T18:20:26+00:00"
  4055. },
  4056. {
  4057. "name": "psr/http-client",
  4058. "version": "1.0.3",
  4059. "source": {
  4060. "type": "git",
  4061. "url": "https://github.com/php-fig/http-client.git",
  4062. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4063. },
  4064. "dist": {
  4065. "type": "zip",
  4066. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4067. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4068. "shasum": "",
  4069. "mirrors": [
  4070. {
  4071. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4072. "preferred": true
  4073. }
  4074. ]
  4075. },
  4076. "require": {
  4077. "php": "^7.0 || ^8.0",
  4078. "psr/http-message": "^1.0 || ^2.0"
  4079. },
  4080. "type": "library",
  4081. "extra": {
  4082. "branch-alias": {
  4083. "dev-master": "1.0.x-dev"
  4084. }
  4085. },
  4086. "autoload": {
  4087. "psr-4": {
  4088. "Psr\\Http\\Client\\": "src/"
  4089. }
  4090. },
  4091. "notification-url": "https://packagist.org/downloads/",
  4092. "license": [
  4093. "MIT"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "PHP-FIG",
  4098. "homepage": "https://www.php-fig.org/"
  4099. }
  4100. ],
  4101. "description": "Common interface for HTTP clients",
  4102. "homepage": "https://github.com/php-fig/http-client",
  4103. "keywords": [
  4104. "http",
  4105. "http-client",
  4106. "psr",
  4107. "psr-18"
  4108. ],
  4109. "support": {
  4110. "source": "https://github.com/php-fig/http-client"
  4111. },
  4112. "time": "2023-09-23T14:17:50+00:00"
  4113. },
  4114. {
  4115. "name": "psr/http-factory",
  4116. "version": "1.0.2",
  4117. "source": {
  4118. "type": "git",
  4119. "url": "https://github.com/php-fig/http-factory.git",
  4120. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4121. },
  4122. "dist": {
  4123. "type": "zip",
  4124. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4125. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4126. "shasum": "",
  4127. "mirrors": [
  4128. {
  4129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4130. "preferred": true
  4131. }
  4132. ]
  4133. },
  4134. "require": {
  4135. "php": ">=7.0.0",
  4136. "psr/http-message": "^1.0 || ^2.0"
  4137. },
  4138. "type": "library",
  4139. "extra": {
  4140. "branch-alias": {
  4141. "dev-master": "1.0.x-dev"
  4142. }
  4143. },
  4144. "autoload": {
  4145. "psr-4": {
  4146. "Psr\\Http\\Message\\": "src/"
  4147. }
  4148. },
  4149. "notification-url": "https://packagist.org/downloads/",
  4150. "license": [
  4151. "MIT"
  4152. ],
  4153. "authors": [
  4154. {
  4155. "name": "PHP-FIG",
  4156. "homepage": "https://www.php-fig.org/"
  4157. }
  4158. ],
  4159. "description": "Common interfaces for PSR-7 HTTP message factories",
  4160. "keywords": [
  4161. "factory",
  4162. "http",
  4163. "message",
  4164. "psr",
  4165. "psr-17",
  4166. "psr-7",
  4167. "request",
  4168. "response"
  4169. ],
  4170. "support": {
  4171. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4172. },
  4173. "time": "2023-04-10T20:10:41+00:00"
  4174. },
  4175. {
  4176. "name": "psr/http-message",
  4177. "version": "1.1",
  4178. "source": {
  4179. "type": "git",
  4180. "url": "https://github.com/php-fig/http-message.git",
  4181. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4182. },
  4183. "dist": {
  4184. "type": "zip",
  4185. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4186. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4187. "shasum": "",
  4188. "mirrors": [
  4189. {
  4190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4191. "preferred": true
  4192. }
  4193. ]
  4194. },
  4195. "require": {
  4196. "php": "^7.2 || ^8.0"
  4197. },
  4198. "type": "library",
  4199. "extra": {
  4200. "branch-alias": {
  4201. "dev-master": "1.1.x-dev"
  4202. }
  4203. },
  4204. "autoload": {
  4205. "psr-4": {
  4206. "Psr\\Http\\Message\\": "src/"
  4207. }
  4208. },
  4209. "notification-url": "https://packagist.org/downloads/",
  4210. "license": [
  4211. "MIT"
  4212. ],
  4213. "authors": [
  4214. {
  4215. "name": "PHP-FIG",
  4216. "homepage": "http://www.php-fig.org/"
  4217. }
  4218. ],
  4219. "description": "Common interface for HTTP messages",
  4220. "homepage": "https://github.com/php-fig/http-message",
  4221. "keywords": [
  4222. "http",
  4223. "http-message",
  4224. "psr",
  4225. "psr-7",
  4226. "request",
  4227. "response"
  4228. ],
  4229. "support": {
  4230. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4231. },
  4232. "time": "2023-04-04T09:50:52+00:00"
  4233. },
  4234. {
  4235. "name": "psr/log",
  4236. "version": "2.0.0",
  4237. "source": {
  4238. "type": "git",
  4239. "url": "https://github.com/php-fig/log.git",
  4240. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4241. },
  4242. "dist": {
  4243. "type": "zip",
  4244. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4245. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4246. "shasum": "",
  4247. "mirrors": [
  4248. {
  4249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4250. "preferred": true
  4251. }
  4252. ]
  4253. },
  4254. "require": {
  4255. "php": ">=8.0.0"
  4256. },
  4257. "type": "library",
  4258. "extra": {
  4259. "branch-alias": {
  4260. "dev-master": "2.0.x-dev"
  4261. }
  4262. },
  4263. "autoload": {
  4264. "psr-4": {
  4265. "Psr\\Log\\": "src"
  4266. }
  4267. },
  4268. "notification-url": "https://packagist.org/downloads/",
  4269. "license": [
  4270. "MIT"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "PHP-FIG",
  4275. "homepage": "https://www.php-fig.org/"
  4276. }
  4277. ],
  4278. "description": "Common interface for logging libraries",
  4279. "homepage": "https://github.com/php-fig/log",
  4280. "keywords": [
  4281. "log",
  4282. "psr",
  4283. "psr-3"
  4284. ],
  4285. "support": {
  4286. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4287. },
  4288. "time": "2021-07-14T16:41:46+00:00"
  4289. },
  4290. {
  4291. "name": "psr/simple-cache",
  4292. "version": "1.0.1",
  4293. "source": {
  4294. "type": "git",
  4295. "url": "https://github.com/php-fig/simple-cache.git",
  4296. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4297. },
  4298. "dist": {
  4299. "type": "zip",
  4300. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4301. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4302. "shasum": "",
  4303. "mirrors": [
  4304. {
  4305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4306. "preferred": true
  4307. }
  4308. ]
  4309. },
  4310. "require": {
  4311. "php": ">=5.3.0"
  4312. },
  4313. "type": "library",
  4314. "extra": {
  4315. "branch-alias": {
  4316. "dev-master": "1.0.x-dev"
  4317. }
  4318. },
  4319. "autoload": {
  4320. "psr-4": {
  4321. "Psr\\SimpleCache\\": "src/"
  4322. }
  4323. },
  4324. "notification-url": "https://packagist.org/downloads/",
  4325. "license": [
  4326. "MIT"
  4327. ],
  4328. "authors": [
  4329. {
  4330. "name": "PHP-FIG",
  4331. "homepage": "http://www.php-fig.org/"
  4332. }
  4333. ],
  4334. "description": "Common interfaces for simple caching",
  4335. "keywords": [
  4336. "cache",
  4337. "caching",
  4338. "psr",
  4339. "psr-16",
  4340. "simple-cache"
  4341. ],
  4342. "support": {
  4343. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4344. },
  4345. "time": "2017-10-23T01:57:42+00:00"
  4346. },
  4347. {
  4348. "name": "psy/psysh",
  4349. "version": "v0.12.12",
  4350. "source": {
  4351. "type": "git",
  4352. "url": "https://github.com/bobthecow/psysh.git",
  4353. "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7"
  4354. },
  4355. "dist": {
  4356. "type": "zip",
  4357. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/cd23863404a40ccfaf733e3af4db2b459837f7e7",
  4358. "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7",
  4359. "shasum": "",
  4360. "mirrors": [
  4361. {
  4362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4363. "preferred": true
  4364. }
  4365. ]
  4366. },
  4367. "require": {
  4368. "ext-json": "*",
  4369. "ext-tokenizer": "*",
  4370. "nikic/php-parser": "^5.0 || ^4.0",
  4371. "php": "^8.0 || ^7.4",
  4372. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4373. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4374. },
  4375. "conflict": {
  4376. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4377. },
  4378. "require-dev": {
  4379. "bamarni/composer-bin-plugin": "^1.2"
  4380. },
  4381. "suggest": {
  4382. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4383. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4384. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4385. },
  4386. "bin": [
  4387. "bin/psysh"
  4388. ],
  4389. "type": "library",
  4390. "extra": {
  4391. "bamarni-bin": {
  4392. "bin-links": false,
  4393. "forward-command": false
  4394. },
  4395. "branch-alias": {
  4396. "dev-main": "0.12.x-dev"
  4397. }
  4398. },
  4399. "autoload": {
  4400. "files": [
  4401. "src/functions.php"
  4402. ],
  4403. "psr-4": {
  4404. "Psy\\": "src/"
  4405. }
  4406. },
  4407. "notification-url": "https://packagist.org/downloads/",
  4408. "license": [
  4409. "MIT"
  4410. ],
  4411. "authors": [
  4412. {
  4413. "name": "Justin Hileman",
  4414. "email": "justin@justinhileman.info"
  4415. }
  4416. ],
  4417. "description": "An interactive shell for modern PHP.",
  4418. "homepage": "https://psysh.org",
  4419. "keywords": [
  4420. "REPL",
  4421. "console",
  4422. "interactive",
  4423. "shell"
  4424. ],
  4425. "support": {
  4426. "issues": "https://github.com/bobthecow/psysh/issues",
  4427. "source": "https://github.com/bobthecow/psysh/tree/v0.12.12"
  4428. },
  4429. "time": "2025-09-20T13:46:31+00:00"
  4430. },
  4431. {
  4432. "name": "ralouphie/getallheaders",
  4433. "version": "3.0.3",
  4434. "source": {
  4435. "type": "git",
  4436. "url": "https://github.com/ralouphie/getallheaders.git",
  4437. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4438. },
  4439. "dist": {
  4440. "type": "zip",
  4441. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4442. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4443. "shasum": "",
  4444. "mirrors": [
  4445. {
  4446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4447. "preferred": true
  4448. }
  4449. ]
  4450. },
  4451. "require": {
  4452. "php": ">=5.6"
  4453. },
  4454. "require-dev": {
  4455. "php-coveralls/php-coveralls": "^2.1",
  4456. "phpunit/phpunit": "^5 || ^6.5"
  4457. },
  4458. "type": "library",
  4459. "autoload": {
  4460. "files": [
  4461. "src/getallheaders.php"
  4462. ]
  4463. },
  4464. "notification-url": "https://packagist.org/downloads/",
  4465. "license": [
  4466. "MIT"
  4467. ],
  4468. "authors": [
  4469. {
  4470. "name": "Ralph Khattar",
  4471. "email": "ralph.khattar@gmail.com"
  4472. }
  4473. ],
  4474. "description": "A polyfill for getallheaders.",
  4475. "support": {
  4476. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4477. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4478. },
  4479. "time": "2019-03-08T08:55:37+00:00"
  4480. },
  4481. {
  4482. "name": "ramsey/collection",
  4483. "version": "1.3.0",
  4484. "source": {
  4485. "type": "git",
  4486. "url": "https://github.com/ramsey/collection.git",
  4487. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4488. },
  4489. "dist": {
  4490. "type": "zip",
  4491. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4492. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4493. "shasum": "",
  4494. "mirrors": [
  4495. {
  4496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4497. "preferred": true
  4498. }
  4499. ]
  4500. },
  4501. "require": {
  4502. "php": "^7.4 || ^8.0",
  4503. "symfony/polyfill-php81": "^1.23"
  4504. },
  4505. "require-dev": {
  4506. "captainhook/plugin-composer": "^5.3",
  4507. "ergebnis/composer-normalize": "^2.28.3",
  4508. "fakerphp/faker": "^1.21",
  4509. "hamcrest/hamcrest-php": "^2.0",
  4510. "jangregor/phpstan-prophecy": "^1.0",
  4511. "mockery/mockery": "^1.5",
  4512. "php-parallel-lint/php-console-highlighter": "^1.0",
  4513. "php-parallel-lint/php-parallel-lint": "^1.3",
  4514. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4515. "phpspec/prophecy-phpunit": "^2.0",
  4516. "phpstan/extension-installer": "^1.2",
  4517. "phpstan/phpstan": "^1.9",
  4518. "phpstan/phpstan-mockery": "^1.1",
  4519. "phpstan/phpstan-phpunit": "^1.3",
  4520. "phpunit/phpunit": "^9.5",
  4521. "psalm/plugin-mockery": "^1.1",
  4522. "psalm/plugin-phpunit": "^0.18.4",
  4523. "ramsey/coding-standard": "^2.0.3",
  4524. "ramsey/conventional-commits": "^1.3",
  4525. "vimeo/psalm": "^5.4"
  4526. },
  4527. "type": "library",
  4528. "extra": {
  4529. "captainhook": {
  4530. "force-install": true
  4531. },
  4532. "ramsey/conventional-commits": {
  4533. "configFile": "conventional-commits.json"
  4534. }
  4535. },
  4536. "autoload": {
  4537. "psr-4": {
  4538. "Ramsey\\Collection\\": "src/"
  4539. }
  4540. },
  4541. "notification-url": "https://packagist.org/downloads/",
  4542. "license": [
  4543. "MIT"
  4544. ],
  4545. "authors": [
  4546. {
  4547. "name": "Ben Ramsey",
  4548. "email": "ben@benramsey.com",
  4549. "homepage": "https://benramsey.com"
  4550. }
  4551. ],
  4552. "description": "A PHP library for representing and manipulating collections.",
  4553. "keywords": [
  4554. "array",
  4555. "collection",
  4556. "hash",
  4557. "map",
  4558. "queue",
  4559. "set"
  4560. ],
  4561. "support": {
  4562. "issues": "https://github.com/ramsey/collection/issues",
  4563. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4564. },
  4565. "funding": [
  4566. {
  4567. "url": "https://github.com/ramsey",
  4568. "type": "github"
  4569. },
  4570. {
  4571. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4572. "type": "tidelift"
  4573. }
  4574. ],
  4575. "time": "2022-12-27T19:12:24+00:00"
  4576. },
  4577. {
  4578. "name": "ramsey/uuid",
  4579. "version": "4.9.0",
  4580. "source": {
  4581. "type": "git",
  4582. "url": "https://github.com/ramsey/uuid.git",
  4583. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4584. },
  4585. "dist": {
  4586. "type": "zip",
  4587. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4588. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4589. "shasum": "",
  4590. "mirrors": [
  4591. {
  4592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4593. "preferred": true
  4594. }
  4595. ]
  4596. },
  4597. "require": {
  4598. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4599. "php": "^8.0",
  4600. "ramsey/collection": "^1.2 || ^2.0"
  4601. },
  4602. "replace": {
  4603. "rhumsaa/uuid": "self.version"
  4604. },
  4605. "require-dev": {
  4606. "captainhook/captainhook": "^5.25",
  4607. "captainhook/plugin-composer": "^5.3",
  4608. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4609. "ergebnis/composer-normalize": "^2.47",
  4610. "mockery/mockery": "^1.6",
  4611. "paragonie/random-lib": "^2",
  4612. "php-mock/php-mock": "^2.6",
  4613. "php-mock/php-mock-mockery": "^1.5",
  4614. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4615. "phpbench/phpbench": "^1.2.14",
  4616. "phpstan/extension-installer": "^1.4",
  4617. "phpstan/phpstan": "^2.1",
  4618. "phpstan/phpstan-mockery": "^2.0",
  4619. "phpstan/phpstan-phpunit": "^2.0",
  4620. "phpunit/phpunit": "^9.6",
  4621. "slevomat/coding-standard": "^8.18",
  4622. "squizlabs/php_codesniffer": "^3.13"
  4623. },
  4624. "suggest": {
  4625. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4626. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4627. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4628. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4629. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4630. },
  4631. "type": "library",
  4632. "extra": {
  4633. "captainhook": {
  4634. "force-install": true
  4635. }
  4636. },
  4637. "autoload": {
  4638. "files": [
  4639. "src/functions.php"
  4640. ],
  4641. "psr-4": {
  4642. "Ramsey\\Uuid\\": "src/"
  4643. }
  4644. },
  4645. "notification-url": "https://packagist.org/downloads/",
  4646. "license": [
  4647. "MIT"
  4648. ],
  4649. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4650. "keywords": [
  4651. "guid",
  4652. "identifier",
  4653. "uuid"
  4654. ],
  4655. "support": {
  4656. "issues": "https://github.com/ramsey/uuid/issues",
  4657. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  4658. },
  4659. "time": "2025-06-25T14:20:11+00:00"
  4660. },
  4661. {
  4662. "name": "ratchet/rfc6455",
  4663. "version": "v0.3.1",
  4664. "source": {
  4665. "type": "git",
  4666. "url": "https://github.com/ratchetphp/RFC6455.git",
  4667. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  4668. },
  4669. "dist": {
  4670. "type": "zip",
  4671. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4672. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4673. "shasum": "",
  4674. "mirrors": [
  4675. {
  4676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4677. "preferred": true
  4678. }
  4679. ]
  4680. },
  4681. "require": {
  4682. "guzzlehttp/psr7": "^2 || ^1.7",
  4683. "php": ">=5.4.2"
  4684. },
  4685. "require-dev": {
  4686. "phpunit/phpunit": "^5.7",
  4687. "react/socket": "^1.3"
  4688. },
  4689. "type": "library",
  4690. "autoload": {
  4691. "psr-4": {
  4692. "Ratchet\\RFC6455\\": "src"
  4693. }
  4694. },
  4695. "notification-url": "https://packagist.org/downloads/",
  4696. "license": [
  4697. "MIT"
  4698. ],
  4699. "authors": [
  4700. {
  4701. "name": "Chris Boden",
  4702. "email": "cboden@gmail.com",
  4703. "role": "Developer"
  4704. },
  4705. {
  4706. "name": "Matt Bonneau",
  4707. "role": "Developer"
  4708. }
  4709. ],
  4710. "description": "RFC6455 WebSocket protocol handler",
  4711. "homepage": "http://socketo.me",
  4712. "keywords": [
  4713. "WebSockets",
  4714. "rfc6455",
  4715. "websocket"
  4716. ],
  4717. "support": {
  4718. "chat": "https://gitter.im/reactphp/reactphp",
  4719. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  4720. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  4721. },
  4722. "time": "2021-12-09T23:20:49+00:00"
  4723. },
  4724. {
  4725. "name": "react/cache",
  4726. "version": "v1.2.0",
  4727. "source": {
  4728. "type": "git",
  4729. "url": "https://github.com/reactphp/cache.git",
  4730. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4731. },
  4732. "dist": {
  4733. "type": "zip",
  4734. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4735. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4736. "shasum": "",
  4737. "mirrors": [
  4738. {
  4739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4740. "preferred": true
  4741. }
  4742. ]
  4743. },
  4744. "require": {
  4745. "php": ">=5.3.0",
  4746. "react/promise": "^3.0 || ^2.0 || ^1.1"
  4747. },
  4748. "require-dev": {
  4749. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  4750. },
  4751. "type": "library",
  4752. "autoload": {
  4753. "psr-4": {
  4754. "React\\Cache\\": "src/"
  4755. }
  4756. },
  4757. "notification-url": "https://packagist.org/downloads/",
  4758. "license": [
  4759. "MIT"
  4760. ],
  4761. "authors": [
  4762. {
  4763. "name": "Christian Lück",
  4764. "email": "christian@clue.engineering",
  4765. "homepage": "https://clue.engineering/"
  4766. },
  4767. {
  4768. "name": "Cees-Jan Kiewiet",
  4769. "email": "reactphp@ceesjankiewiet.nl",
  4770. "homepage": "https://wyrihaximus.net/"
  4771. },
  4772. {
  4773. "name": "Jan Sorgalla",
  4774. "email": "jsorgalla@gmail.com",
  4775. "homepage": "https://sorgalla.com/"
  4776. },
  4777. {
  4778. "name": "Chris Boden",
  4779. "email": "cboden@gmail.com",
  4780. "homepage": "https://cboden.dev/"
  4781. }
  4782. ],
  4783. "description": "Async, Promise-based cache interface for ReactPHP",
  4784. "keywords": [
  4785. "cache",
  4786. "caching",
  4787. "promise",
  4788. "reactphp"
  4789. ],
  4790. "support": {
  4791. "issues": "https://github.com/reactphp/cache/issues",
  4792. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  4793. },
  4794. "funding": [
  4795. {
  4796. "url": "https://opencollective.com/reactphp",
  4797. "type": "open_collective"
  4798. }
  4799. ],
  4800. "time": "2022-11-30T15:59:55+00:00"
  4801. },
  4802. {
  4803. "name": "react/dns",
  4804. "version": "v1.13.0",
  4805. "source": {
  4806. "type": "git",
  4807. "url": "https://github.com/reactphp/dns.git",
  4808. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  4809. },
  4810. "dist": {
  4811. "type": "zip",
  4812. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  4813. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  4814. "shasum": "",
  4815. "mirrors": [
  4816. {
  4817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4818. "preferred": true
  4819. }
  4820. ]
  4821. },
  4822. "require": {
  4823. "php": ">=5.3.0",
  4824. "react/cache": "^1.0 || ^0.6 || ^0.5",
  4825. "react/event-loop": "^1.2",
  4826. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  4827. },
  4828. "require-dev": {
  4829. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4830. "react/async": "^4.3 || ^3 || ^2",
  4831. "react/promise-timer": "^1.11"
  4832. },
  4833. "type": "library",
  4834. "autoload": {
  4835. "psr-4": {
  4836. "React\\Dns\\": "src/"
  4837. }
  4838. },
  4839. "notification-url": "https://packagist.org/downloads/",
  4840. "license": [
  4841. "MIT"
  4842. ],
  4843. "authors": [
  4844. {
  4845. "name": "Christian Lück",
  4846. "email": "christian@clue.engineering",
  4847. "homepage": "https://clue.engineering/"
  4848. },
  4849. {
  4850. "name": "Cees-Jan Kiewiet",
  4851. "email": "reactphp@ceesjankiewiet.nl",
  4852. "homepage": "https://wyrihaximus.net/"
  4853. },
  4854. {
  4855. "name": "Jan Sorgalla",
  4856. "email": "jsorgalla@gmail.com",
  4857. "homepage": "https://sorgalla.com/"
  4858. },
  4859. {
  4860. "name": "Chris Boden",
  4861. "email": "cboden@gmail.com",
  4862. "homepage": "https://cboden.dev/"
  4863. }
  4864. ],
  4865. "description": "Async DNS resolver for ReactPHP",
  4866. "keywords": [
  4867. "async",
  4868. "dns",
  4869. "dns-resolver",
  4870. "reactphp"
  4871. ],
  4872. "support": {
  4873. "issues": "https://github.com/reactphp/dns/issues",
  4874. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  4875. },
  4876. "funding": [
  4877. {
  4878. "url": "https://opencollective.com/reactphp",
  4879. "type": "open_collective"
  4880. }
  4881. ],
  4882. "time": "2024-06-13T14:18:03+00:00"
  4883. },
  4884. {
  4885. "name": "react/event-loop",
  4886. "version": "v1.5.0",
  4887. "source": {
  4888. "type": "git",
  4889. "url": "https://github.com/reactphp/event-loop.git",
  4890. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  4891. },
  4892. "dist": {
  4893. "type": "zip",
  4894. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  4895. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  4896. "shasum": "",
  4897. "mirrors": [
  4898. {
  4899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4900. "preferred": true
  4901. }
  4902. ]
  4903. },
  4904. "require": {
  4905. "php": ">=5.3.0"
  4906. },
  4907. "require-dev": {
  4908. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4909. },
  4910. "suggest": {
  4911. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  4912. },
  4913. "type": "library",
  4914. "autoload": {
  4915. "psr-4": {
  4916. "React\\EventLoop\\": "src/"
  4917. }
  4918. },
  4919. "notification-url": "https://packagist.org/downloads/",
  4920. "license": [
  4921. "MIT"
  4922. ],
  4923. "authors": [
  4924. {
  4925. "name": "Christian Lück",
  4926. "email": "christian@clue.engineering",
  4927. "homepage": "https://clue.engineering/"
  4928. },
  4929. {
  4930. "name": "Cees-Jan Kiewiet",
  4931. "email": "reactphp@ceesjankiewiet.nl",
  4932. "homepage": "https://wyrihaximus.net/"
  4933. },
  4934. {
  4935. "name": "Jan Sorgalla",
  4936. "email": "jsorgalla@gmail.com",
  4937. "homepage": "https://sorgalla.com/"
  4938. },
  4939. {
  4940. "name": "Chris Boden",
  4941. "email": "cboden@gmail.com",
  4942. "homepage": "https://cboden.dev/"
  4943. }
  4944. ],
  4945. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  4946. "keywords": [
  4947. "asynchronous",
  4948. "event-loop"
  4949. ],
  4950. "support": {
  4951. "issues": "https://github.com/reactphp/event-loop/issues",
  4952. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  4953. },
  4954. "funding": [
  4955. {
  4956. "url": "https://opencollective.com/reactphp",
  4957. "type": "open_collective"
  4958. }
  4959. ],
  4960. "time": "2023-11-13T13:48:05+00:00"
  4961. },
  4962. {
  4963. "name": "react/promise",
  4964. "version": "v3.2.0",
  4965. "source": {
  4966. "type": "git",
  4967. "url": "https://github.com/reactphp/promise.git",
  4968. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  4969. },
  4970. "dist": {
  4971. "type": "zip",
  4972. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  4973. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  4974. "shasum": "",
  4975. "mirrors": [
  4976. {
  4977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4978. "preferred": true
  4979. }
  4980. ]
  4981. },
  4982. "require": {
  4983. "php": ">=7.1.0"
  4984. },
  4985. "require-dev": {
  4986. "phpstan/phpstan": "1.10.39 || 1.4.10",
  4987. "phpunit/phpunit": "^9.6 || ^7.5"
  4988. },
  4989. "type": "library",
  4990. "autoload": {
  4991. "files": [
  4992. "src/functions_include.php"
  4993. ],
  4994. "psr-4": {
  4995. "React\\Promise\\": "src/"
  4996. }
  4997. },
  4998. "notification-url": "https://packagist.org/downloads/",
  4999. "license": [
  5000. "MIT"
  5001. ],
  5002. "authors": [
  5003. {
  5004. "name": "Jan Sorgalla",
  5005. "email": "jsorgalla@gmail.com",
  5006. "homepage": "https://sorgalla.com/"
  5007. },
  5008. {
  5009. "name": "Christian Lück",
  5010. "email": "christian@clue.engineering",
  5011. "homepage": "https://clue.engineering/"
  5012. },
  5013. {
  5014. "name": "Cees-Jan Kiewiet",
  5015. "email": "reactphp@ceesjankiewiet.nl",
  5016. "homepage": "https://wyrihaximus.net/"
  5017. },
  5018. {
  5019. "name": "Chris Boden",
  5020. "email": "cboden@gmail.com",
  5021. "homepage": "https://cboden.dev/"
  5022. }
  5023. ],
  5024. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5025. "keywords": [
  5026. "promise",
  5027. "promises"
  5028. ],
  5029. "support": {
  5030. "issues": "https://github.com/reactphp/promise/issues",
  5031. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  5032. },
  5033. "funding": [
  5034. {
  5035. "url": "https://opencollective.com/reactphp",
  5036. "type": "open_collective"
  5037. }
  5038. ],
  5039. "time": "2024-05-24T10:39:05+00:00"
  5040. },
  5041. {
  5042. "name": "react/socket",
  5043. "version": "v1.16.0",
  5044. "source": {
  5045. "type": "git",
  5046. "url": "https://github.com/reactphp/socket.git",
  5047. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  5048. },
  5049. "dist": {
  5050. "type": "zip",
  5051. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5052. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5053. "shasum": "",
  5054. "mirrors": [
  5055. {
  5056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5057. "preferred": true
  5058. }
  5059. ]
  5060. },
  5061. "require": {
  5062. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5063. "php": ">=5.3.0",
  5064. "react/dns": "^1.13",
  5065. "react/event-loop": "^1.2",
  5066. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  5067. "react/stream": "^1.4"
  5068. },
  5069. "require-dev": {
  5070. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5071. "react/async": "^4.3 || ^3.3 || ^2",
  5072. "react/promise-stream": "^1.4",
  5073. "react/promise-timer": "^1.11"
  5074. },
  5075. "type": "library",
  5076. "autoload": {
  5077. "psr-4": {
  5078. "React\\Socket\\": "src/"
  5079. }
  5080. },
  5081. "notification-url": "https://packagist.org/downloads/",
  5082. "license": [
  5083. "MIT"
  5084. ],
  5085. "authors": [
  5086. {
  5087. "name": "Christian Lück",
  5088. "email": "christian@clue.engineering",
  5089. "homepage": "https://clue.engineering/"
  5090. },
  5091. {
  5092. "name": "Cees-Jan Kiewiet",
  5093. "email": "reactphp@ceesjankiewiet.nl",
  5094. "homepage": "https://wyrihaximus.net/"
  5095. },
  5096. {
  5097. "name": "Jan Sorgalla",
  5098. "email": "jsorgalla@gmail.com",
  5099. "homepage": "https://sorgalla.com/"
  5100. },
  5101. {
  5102. "name": "Chris Boden",
  5103. "email": "cboden@gmail.com",
  5104. "homepage": "https://cboden.dev/"
  5105. }
  5106. ],
  5107. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5108. "keywords": [
  5109. "Connection",
  5110. "Socket",
  5111. "async",
  5112. "reactphp",
  5113. "stream"
  5114. ],
  5115. "support": {
  5116. "issues": "https://github.com/reactphp/socket/issues",
  5117. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  5118. },
  5119. "funding": [
  5120. {
  5121. "url": "https://opencollective.com/reactphp",
  5122. "type": "open_collective"
  5123. }
  5124. ],
  5125. "time": "2024-07-26T10:38:09+00:00"
  5126. },
  5127. {
  5128. "name": "react/stream",
  5129. "version": "1.x-dev",
  5130. "source": {
  5131. "type": "git",
  5132. "url": "https://github.com/reactphp/stream.git",
  5133. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  5134. },
  5135. "dist": {
  5136. "type": "zip",
  5137. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  5138. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  5139. "shasum": "",
  5140. "mirrors": [
  5141. {
  5142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5143. "preferred": true
  5144. }
  5145. ]
  5146. },
  5147. "require": {
  5148. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5149. "php": ">=5.3.8",
  5150. "react/event-loop": "^1.2"
  5151. },
  5152. "require-dev": {
  5153. "clue/stream-filter": "~1.2",
  5154. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5155. },
  5156. "type": "library",
  5157. "autoload": {
  5158. "psr-4": {
  5159. "React\\Stream\\": "src/"
  5160. }
  5161. },
  5162. "notification-url": "https://packagist.org/downloads/",
  5163. "license": [
  5164. "MIT"
  5165. ],
  5166. "authors": [
  5167. {
  5168. "name": "Christian Lück",
  5169. "email": "christian@clue.engineering",
  5170. "homepage": "https://clue.engineering/"
  5171. },
  5172. {
  5173. "name": "Cees-Jan Kiewiet",
  5174. "email": "reactphp@ceesjankiewiet.nl",
  5175. "homepage": "https://wyrihaximus.net/"
  5176. },
  5177. {
  5178. "name": "Jan Sorgalla",
  5179. "email": "jsorgalla@gmail.com",
  5180. "homepage": "https://sorgalla.com/"
  5181. },
  5182. {
  5183. "name": "Chris Boden",
  5184. "email": "cboden@gmail.com",
  5185. "homepage": "https://cboden.dev/"
  5186. }
  5187. ],
  5188. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5189. "keywords": [
  5190. "event-driven",
  5191. "io",
  5192. "non-blocking",
  5193. "pipe",
  5194. "reactphp",
  5195. "readable",
  5196. "stream",
  5197. "writable"
  5198. ],
  5199. "support": {
  5200. "issues": "https://github.com/reactphp/stream/issues",
  5201. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  5202. },
  5203. "funding": [
  5204. {
  5205. "url": "https://opencollective.com/reactphp",
  5206. "type": "open_collective"
  5207. }
  5208. ],
  5209. "time": "2024-06-11T12:45:25+00:00"
  5210. },
  5211. {
  5212. "name": "swiftmailer/swiftmailer",
  5213. "version": "v6.3.0",
  5214. "source": {
  5215. "type": "git",
  5216. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5217. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5218. },
  5219. "dist": {
  5220. "type": "zip",
  5221. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5222. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5223. "shasum": "",
  5224. "mirrors": [
  5225. {
  5226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5227. "preferred": true
  5228. }
  5229. ]
  5230. },
  5231. "require": {
  5232. "egulias/email-validator": "^2.0|^3.1",
  5233. "php": ">=7.0.0",
  5234. "symfony/polyfill-iconv": "^1.0",
  5235. "symfony/polyfill-intl-idn": "^1.10",
  5236. "symfony/polyfill-mbstring": "^1.0"
  5237. },
  5238. "require-dev": {
  5239. "mockery/mockery": "^1.0",
  5240. "symfony/phpunit-bridge": "^4.4|^5.4"
  5241. },
  5242. "suggest": {
  5243. "ext-intl": "Needed to support internationalized email addresses"
  5244. },
  5245. "type": "library",
  5246. "extra": {
  5247. "branch-alias": {
  5248. "dev-master": "6.2-dev"
  5249. }
  5250. },
  5251. "autoload": {
  5252. "files": [
  5253. "lib/swift_required.php"
  5254. ]
  5255. },
  5256. "notification-url": "https://packagist.org/downloads/",
  5257. "license": [
  5258. "MIT"
  5259. ],
  5260. "authors": [
  5261. {
  5262. "name": "Chris Corbyn"
  5263. },
  5264. {
  5265. "name": "Fabien Potencier",
  5266. "email": "fabien@symfony.com"
  5267. }
  5268. ],
  5269. "description": "Swiftmailer, free feature-rich PHP mailer",
  5270. "homepage": "https://swiftmailer.symfony.com",
  5271. "keywords": [
  5272. "email",
  5273. "mail",
  5274. "mailer"
  5275. ],
  5276. "support": {
  5277. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5278. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5279. },
  5280. "funding": [
  5281. {
  5282. "url": "https://github.com/fabpot",
  5283. "type": "github"
  5284. },
  5285. {
  5286. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5287. "type": "tidelift"
  5288. }
  5289. ],
  5290. "abandoned": "symfony/mailer",
  5291. "time": "2021-10-18T15:26:12+00:00"
  5292. },
  5293. {
  5294. "name": "symfony/console",
  5295. "version": "v5.4.47",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://github.com/symfony/console.git",
  5299. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5304. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5305. "shasum": "",
  5306. "mirrors": [
  5307. {
  5308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5309. "preferred": true
  5310. }
  5311. ]
  5312. },
  5313. "require": {
  5314. "php": ">=7.2.5",
  5315. "symfony/deprecation-contracts": "^2.1|^3",
  5316. "symfony/polyfill-mbstring": "~1.0",
  5317. "symfony/polyfill-php73": "^1.9",
  5318. "symfony/polyfill-php80": "^1.16",
  5319. "symfony/service-contracts": "^1.1|^2|^3",
  5320. "symfony/string": "^5.1|^6.0"
  5321. },
  5322. "conflict": {
  5323. "psr/log": ">=3",
  5324. "symfony/dependency-injection": "<4.4",
  5325. "symfony/dotenv": "<5.1",
  5326. "symfony/event-dispatcher": "<4.4",
  5327. "symfony/lock": "<4.4",
  5328. "symfony/process": "<4.4"
  5329. },
  5330. "provide": {
  5331. "psr/log-implementation": "1.0|2.0"
  5332. },
  5333. "require-dev": {
  5334. "psr/log": "^1|^2",
  5335. "symfony/config": "^4.4|^5.0|^6.0",
  5336. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5337. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5338. "symfony/lock": "^4.4|^5.0|^6.0",
  5339. "symfony/process": "^4.4|^5.0|^6.0",
  5340. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5341. },
  5342. "suggest": {
  5343. "psr/log": "For using the console logger",
  5344. "symfony/event-dispatcher": "",
  5345. "symfony/lock": "",
  5346. "symfony/process": ""
  5347. },
  5348. "type": "library",
  5349. "autoload": {
  5350. "psr-4": {
  5351. "Symfony\\Component\\Console\\": ""
  5352. },
  5353. "exclude-from-classmap": [
  5354. "/Tests/"
  5355. ]
  5356. },
  5357. "notification-url": "https://packagist.org/downloads/",
  5358. "license": [
  5359. "MIT"
  5360. ],
  5361. "authors": [
  5362. {
  5363. "name": "Fabien Potencier",
  5364. "email": "fabien@symfony.com"
  5365. },
  5366. {
  5367. "name": "Symfony Community",
  5368. "homepage": "https://symfony.com/contributors"
  5369. }
  5370. ],
  5371. "description": "Eases the creation of beautiful and testable command line interfaces",
  5372. "homepage": "https://symfony.com",
  5373. "keywords": [
  5374. "cli",
  5375. "command-line",
  5376. "console",
  5377. "terminal"
  5378. ],
  5379. "support": {
  5380. "source": "https://github.com/symfony/console/tree/v5.4.47"
  5381. },
  5382. "funding": [
  5383. {
  5384. "url": "https://symfony.com/sponsor",
  5385. "type": "custom"
  5386. },
  5387. {
  5388. "url": "https://github.com/fabpot",
  5389. "type": "github"
  5390. },
  5391. {
  5392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5393. "type": "tidelift"
  5394. }
  5395. ],
  5396. "time": "2024-11-06T11:30:55+00:00"
  5397. },
  5398. {
  5399. "name": "symfony/css-selector",
  5400. "version": "v6.0.19",
  5401. "source": {
  5402. "type": "git",
  5403. "url": "https://github.com/symfony/css-selector.git",
  5404. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5405. },
  5406. "dist": {
  5407. "type": "zip",
  5408. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5409. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5410. "shasum": "",
  5411. "mirrors": [
  5412. {
  5413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5414. "preferred": true
  5415. }
  5416. ]
  5417. },
  5418. "require": {
  5419. "php": ">=8.0.2"
  5420. },
  5421. "type": "library",
  5422. "autoload": {
  5423. "psr-4": {
  5424. "Symfony\\Component\\CssSelector\\": ""
  5425. },
  5426. "exclude-from-classmap": [
  5427. "/Tests/"
  5428. ]
  5429. },
  5430. "notification-url": "https://packagist.org/downloads/",
  5431. "license": [
  5432. "MIT"
  5433. ],
  5434. "authors": [
  5435. {
  5436. "name": "Fabien Potencier",
  5437. "email": "fabien@symfony.com"
  5438. },
  5439. {
  5440. "name": "Jean-François Simon",
  5441. "email": "jeanfrancois.simon@sensiolabs.com"
  5442. },
  5443. {
  5444. "name": "Symfony Community",
  5445. "homepage": "https://symfony.com/contributors"
  5446. }
  5447. ],
  5448. "description": "Converts CSS selectors to XPath expressions",
  5449. "homepage": "https://symfony.com",
  5450. "support": {
  5451. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5452. },
  5453. "funding": [
  5454. {
  5455. "url": "https://symfony.com/sponsor",
  5456. "type": "custom"
  5457. },
  5458. {
  5459. "url": "https://github.com/fabpot",
  5460. "type": "github"
  5461. },
  5462. {
  5463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5464. "type": "tidelift"
  5465. }
  5466. ],
  5467. "time": "2023-01-01T08:36:10+00:00"
  5468. },
  5469. {
  5470. "name": "symfony/deprecation-contracts",
  5471. "version": "v3.0.2",
  5472. "source": {
  5473. "type": "git",
  5474. "url": "https://github.com/symfony/deprecation-contracts.git",
  5475. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5476. },
  5477. "dist": {
  5478. "type": "zip",
  5479. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5480. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5481. "shasum": "",
  5482. "mirrors": [
  5483. {
  5484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5485. "preferred": true
  5486. }
  5487. ]
  5488. },
  5489. "require": {
  5490. "php": ">=8.0.2"
  5491. },
  5492. "type": "library",
  5493. "extra": {
  5494. "thanks": {
  5495. "url": "https://github.com/symfony/contracts",
  5496. "name": "symfony/contracts"
  5497. },
  5498. "branch-alias": {
  5499. "dev-main": "3.0-dev"
  5500. }
  5501. },
  5502. "autoload": {
  5503. "files": [
  5504. "function.php"
  5505. ]
  5506. },
  5507. "notification-url": "https://packagist.org/downloads/",
  5508. "license": [
  5509. "MIT"
  5510. ],
  5511. "authors": [
  5512. {
  5513. "name": "Nicolas Grekas",
  5514. "email": "p@tchwork.com"
  5515. },
  5516. {
  5517. "name": "Symfony Community",
  5518. "homepage": "https://symfony.com/contributors"
  5519. }
  5520. ],
  5521. "description": "A generic function and convention to trigger deprecation notices",
  5522. "homepage": "https://symfony.com",
  5523. "support": {
  5524. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5525. },
  5526. "funding": [
  5527. {
  5528. "url": "https://symfony.com/sponsor",
  5529. "type": "custom"
  5530. },
  5531. {
  5532. "url": "https://github.com/fabpot",
  5533. "type": "github"
  5534. },
  5535. {
  5536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5537. "type": "tidelift"
  5538. }
  5539. ],
  5540. "time": "2022-01-02T09:55:41+00:00"
  5541. },
  5542. {
  5543. "name": "symfony/error-handler",
  5544. "version": "v5.4.46",
  5545. "source": {
  5546. "type": "git",
  5547. "url": "https://github.com/symfony/error-handler.git",
  5548. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363"
  5549. },
  5550. "dist": {
  5551. "type": "zip",
  5552. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5553. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5554. "shasum": "",
  5555. "mirrors": [
  5556. {
  5557. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5558. "preferred": true
  5559. }
  5560. ]
  5561. },
  5562. "require": {
  5563. "php": ">=7.2.5",
  5564. "psr/log": "^1|^2|^3",
  5565. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5566. },
  5567. "require-dev": {
  5568. "symfony/deprecation-contracts": "^2.1|^3",
  5569. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5570. "symfony/serializer": "^4.4|^5.0|^6.0"
  5571. },
  5572. "bin": [
  5573. "Resources/bin/patch-type-declarations"
  5574. ],
  5575. "type": "library",
  5576. "autoload": {
  5577. "psr-4": {
  5578. "Symfony\\Component\\ErrorHandler\\": ""
  5579. },
  5580. "exclude-from-classmap": [
  5581. "/Tests/"
  5582. ]
  5583. },
  5584. "notification-url": "https://packagist.org/downloads/",
  5585. "license": [
  5586. "MIT"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "Fabien Potencier",
  5591. "email": "fabien@symfony.com"
  5592. },
  5593. {
  5594. "name": "Symfony Community",
  5595. "homepage": "https://symfony.com/contributors"
  5596. }
  5597. ],
  5598. "description": "Provides tools to manage errors and ease debugging PHP code",
  5599. "homepage": "https://symfony.com",
  5600. "support": {
  5601. "source": "https://github.com/symfony/error-handler/tree/v5.4.46"
  5602. },
  5603. "funding": [
  5604. {
  5605. "url": "https://symfony.com/sponsor",
  5606. "type": "custom"
  5607. },
  5608. {
  5609. "url": "https://github.com/fabpot",
  5610. "type": "github"
  5611. },
  5612. {
  5613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5614. "type": "tidelift"
  5615. }
  5616. ],
  5617. "time": "2024-11-05T14:17:06+00:00"
  5618. },
  5619. {
  5620. "name": "symfony/event-dispatcher",
  5621. "version": "v6.0.19",
  5622. "source": {
  5623. "type": "git",
  5624. "url": "https://github.com/symfony/event-dispatcher.git",
  5625. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5626. },
  5627. "dist": {
  5628. "type": "zip",
  5629. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5630. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5631. "shasum": "",
  5632. "mirrors": [
  5633. {
  5634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5635. "preferred": true
  5636. }
  5637. ]
  5638. },
  5639. "require": {
  5640. "php": ">=8.0.2",
  5641. "symfony/event-dispatcher-contracts": "^2|^3"
  5642. },
  5643. "conflict": {
  5644. "symfony/dependency-injection": "<5.4"
  5645. },
  5646. "provide": {
  5647. "psr/event-dispatcher-implementation": "1.0",
  5648. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5649. },
  5650. "require-dev": {
  5651. "psr/log": "^1|^2|^3",
  5652. "symfony/config": "^5.4|^6.0",
  5653. "symfony/dependency-injection": "^5.4|^6.0",
  5654. "symfony/error-handler": "^5.4|^6.0",
  5655. "symfony/expression-language": "^5.4|^6.0",
  5656. "symfony/http-foundation": "^5.4|^6.0",
  5657. "symfony/service-contracts": "^1.1|^2|^3",
  5658. "symfony/stopwatch": "^5.4|^6.0"
  5659. },
  5660. "suggest": {
  5661. "symfony/dependency-injection": "",
  5662. "symfony/http-kernel": ""
  5663. },
  5664. "type": "library",
  5665. "autoload": {
  5666. "psr-4": {
  5667. "Symfony\\Component\\EventDispatcher\\": ""
  5668. },
  5669. "exclude-from-classmap": [
  5670. "/Tests/"
  5671. ]
  5672. },
  5673. "notification-url": "https://packagist.org/downloads/",
  5674. "license": [
  5675. "MIT"
  5676. ],
  5677. "authors": [
  5678. {
  5679. "name": "Fabien Potencier",
  5680. "email": "fabien@symfony.com"
  5681. },
  5682. {
  5683. "name": "Symfony Community",
  5684. "homepage": "https://symfony.com/contributors"
  5685. }
  5686. ],
  5687. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5688. "homepage": "https://symfony.com",
  5689. "support": {
  5690. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5691. },
  5692. "funding": [
  5693. {
  5694. "url": "https://symfony.com/sponsor",
  5695. "type": "custom"
  5696. },
  5697. {
  5698. "url": "https://github.com/fabpot",
  5699. "type": "github"
  5700. },
  5701. {
  5702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5703. "type": "tidelift"
  5704. }
  5705. ],
  5706. "time": "2023-01-01T08:36:10+00:00"
  5707. },
  5708. {
  5709. "name": "symfony/event-dispatcher-contracts",
  5710. "version": "v3.0.2",
  5711. "source": {
  5712. "type": "git",
  5713. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5714. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5715. },
  5716. "dist": {
  5717. "type": "zip",
  5718. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5719. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5720. "shasum": "",
  5721. "mirrors": [
  5722. {
  5723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5724. "preferred": true
  5725. }
  5726. ]
  5727. },
  5728. "require": {
  5729. "php": ">=8.0.2",
  5730. "psr/event-dispatcher": "^1"
  5731. },
  5732. "suggest": {
  5733. "symfony/event-dispatcher-implementation": ""
  5734. },
  5735. "type": "library",
  5736. "extra": {
  5737. "thanks": {
  5738. "url": "https://github.com/symfony/contracts",
  5739. "name": "symfony/contracts"
  5740. },
  5741. "branch-alias": {
  5742. "dev-main": "3.0-dev"
  5743. }
  5744. },
  5745. "autoload": {
  5746. "psr-4": {
  5747. "Symfony\\Contracts\\EventDispatcher\\": ""
  5748. }
  5749. },
  5750. "notification-url": "https://packagist.org/downloads/",
  5751. "license": [
  5752. "MIT"
  5753. ],
  5754. "authors": [
  5755. {
  5756. "name": "Nicolas Grekas",
  5757. "email": "p@tchwork.com"
  5758. },
  5759. {
  5760. "name": "Symfony Community",
  5761. "homepage": "https://symfony.com/contributors"
  5762. }
  5763. ],
  5764. "description": "Generic abstractions related to dispatching event",
  5765. "homepage": "https://symfony.com",
  5766. "keywords": [
  5767. "abstractions",
  5768. "contracts",
  5769. "decoupling",
  5770. "interfaces",
  5771. "interoperability",
  5772. "standards"
  5773. ],
  5774. "support": {
  5775. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  5776. },
  5777. "funding": [
  5778. {
  5779. "url": "https://symfony.com/sponsor",
  5780. "type": "custom"
  5781. },
  5782. {
  5783. "url": "https://github.com/fabpot",
  5784. "type": "github"
  5785. },
  5786. {
  5787. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5788. "type": "tidelift"
  5789. }
  5790. ],
  5791. "time": "2022-01-02T09:55:41+00:00"
  5792. },
  5793. {
  5794. "name": "symfony/finder",
  5795. "version": "v5.4.45",
  5796. "source": {
  5797. "type": "git",
  5798. "url": "https://github.com/symfony/finder.git",
  5799. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  5800. },
  5801. "dist": {
  5802. "type": "zip",
  5803. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  5804. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  5805. "shasum": "",
  5806. "mirrors": [
  5807. {
  5808. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5809. "preferred": true
  5810. }
  5811. ]
  5812. },
  5813. "require": {
  5814. "php": ">=7.2.5",
  5815. "symfony/deprecation-contracts": "^2.1|^3",
  5816. "symfony/polyfill-php80": "^1.16"
  5817. },
  5818. "type": "library",
  5819. "autoload": {
  5820. "psr-4": {
  5821. "Symfony\\Component\\Finder\\": ""
  5822. },
  5823. "exclude-from-classmap": [
  5824. "/Tests/"
  5825. ]
  5826. },
  5827. "notification-url": "https://packagist.org/downloads/",
  5828. "license": [
  5829. "MIT"
  5830. ],
  5831. "authors": [
  5832. {
  5833. "name": "Fabien Potencier",
  5834. "email": "fabien@symfony.com"
  5835. },
  5836. {
  5837. "name": "Symfony Community",
  5838. "homepage": "https://symfony.com/contributors"
  5839. }
  5840. ],
  5841. "description": "Finds files and directories via an intuitive fluent interface",
  5842. "homepage": "https://symfony.com",
  5843. "support": {
  5844. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  5845. },
  5846. "funding": [
  5847. {
  5848. "url": "https://symfony.com/sponsor",
  5849. "type": "custom"
  5850. },
  5851. {
  5852. "url": "https://github.com/fabpot",
  5853. "type": "github"
  5854. },
  5855. {
  5856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5857. "type": "tidelift"
  5858. }
  5859. ],
  5860. "time": "2024-09-28T13:32:08+00:00"
  5861. },
  5862. {
  5863. "name": "symfony/http-foundation",
  5864. "version": "v5.4.48",
  5865. "source": {
  5866. "type": "git",
  5867. "url": "https://github.com/symfony/http-foundation.git",
  5868. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341"
  5869. },
  5870. "dist": {
  5871. "type": "zip",
  5872. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f38b8af283b830e1363acd79e5bc3412d055341",
  5873. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341",
  5874. "shasum": "",
  5875. "mirrors": [
  5876. {
  5877. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5878. "preferred": true
  5879. }
  5880. ]
  5881. },
  5882. "require": {
  5883. "php": ">=7.2.5",
  5884. "symfony/deprecation-contracts": "^2.1|^3",
  5885. "symfony/polyfill-mbstring": "~1.1",
  5886. "symfony/polyfill-php80": "^1.16"
  5887. },
  5888. "require-dev": {
  5889. "predis/predis": "^1.0|^2.0",
  5890. "symfony/cache": "^4.4|^5.0|^6.0",
  5891. "symfony/dependency-injection": "^5.4|^6.0",
  5892. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5893. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5894. "symfony/mime": "^4.4|^5.0|^6.0",
  5895. "symfony/rate-limiter": "^5.2|^6.0"
  5896. },
  5897. "suggest": {
  5898. "symfony/mime": "To use the file extension guesser"
  5899. },
  5900. "type": "library",
  5901. "autoload": {
  5902. "psr-4": {
  5903. "Symfony\\Component\\HttpFoundation\\": ""
  5904. },
  5905. "exclude-from-classmap": [
  5906. "/Tests/"
  5907. ]
  5908. },
  5909. "notification-url": "https://packagist.org/downloads/",
  5910. "license": [
  5911. "MIT"
  5912. ],
  5913. "authors": [
  5914. {
  5915. "name": "Fabien Potencier",
  5916. "email": "fabien@symfony.com"
  5917. },
  5918. {
  5919. "name": "Symfony Community",
  5920. "homepage": "https://symfony.com/contributors"
  5921. }
  5922. ],
  5923. "description": "Defines an object-oriented layer for the HTTP specification",
  5924. "homepage": "https://symfony.com",
  5925. "support": {
  5926. "source": "https://github.com/symfony/http-foundation/tree/v5.4.48"
  5927. },
  5928. "funding": [
  5929. {
  5930. "url": "https://symfony.com/sponsor",
  5931. "type": "custom"
  5932. },
  5933. {
  5934. "url": "https://github.com/fabpot",
  5935. "type": "github"
  5936. },
  5937. {
  5938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5939. "type": "tidelift"
  5940. }
  5941. ],
  5942. "time": "2024-11-13T18:58:02+00:00"
  5943. },
  5944. {
  5945. "name": "symfony/http-kernel",
  5946. "version": "v5.4.48",
  5947. "source": {
  5948. "type": "git",
  5949. "url": "https://github.com/symfony/http-kernel.git",
  5950. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0"
  5951. },
  5952. "dist": {
  5953. "type": "zip",
  5954. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  5955. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  5956. "shasum": "",
  5957. "mirrors": [
  5958. {
  5959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5960. "preferred": true
  5961. }
  5962. ]
  5963. },
  5964. "require": {
  5965. "php": ">=7.2.5",
  5966. "psr/log": "^1|^2",
  5967. "symfony/deprecation-contracts": "^2.1|^3",
  5968. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5969. "symfony/event-dispatcher": "^5.0|^6.0",
  5970. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5971. "symfony/polyfill-ctype": "^1.8",
  5972. "symfony/polyfill-php73": "^1.9",
  5973. "symfony/polyfill-php80": "^1.16"
  5974. },
  5975. "conflict": {
  5976. "symfony/browser-kit": "<5.4",
  5977. "symfony/cache": "<5.0",
  5978. "symfony/config": "<5.0",
  5979. "symfony/console": "<4.4",
  5980. "symfony/dependency-injection": "<5.3",
  5981. "symfony/doctrine-bridge": "<5.0",
  5982. "symfony/form": "<5.0",
  5983. "symfony/http-client": "<5.0",
  5984. "symfony/mailer": "<5.0",
  5985. "symfony/messenger": "<5.0",
  5986. "symfony/translation": "<5.0",
  5987. "symfony/twig-bridge": "<5.0",
  5988. "symfony/validator": "<5.0",
  5989. "twig/twig": "<2.13"
  5990. },
  5991. "provide": {
  5992. "psr/log-implementation": "1.0|2.0"
  5993. },
  5994. "require-dev": {
  5995. "psr/cache": "^1.0|^2.0|^3.0",
  5996. "symfony/browser-kit": "^5.4|^6.0",
  5997. "symfony/config": "^5.0|^6.0",
  5998. "symfony/console": "^4.4|^5.0|^6.0",
  5999. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6000. "symfony/dependency-injection": "^5.3|^6.0",
  6001. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6002. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6003. "symfony/finder": "^4.4|^5.0|^6.0",
  6004. "symfony/http-client-contracts": "^1.1|^2|^3",
  6005. "symfony/process": "^4.4|^5.0|^6.0",
  6006. "symfony/routing": "^4.4|^5.0|^6.0",
  6007. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6008. "symfony/translation": "^4.4|^5.0|^6.0",
  6009. "symfony/translation-contracts": "^1.1|^2|^3",
  6010. "symfony/var-dumper": "^4.4.31|^5.4",
  6011. "twig/twig": "^2.13|^3.0.4"
  6012. },
  6013. "suggest": {
  6014. "symfony/browser-kit": "",
  6015. "symfony/config": "",
  6016. "symfony/console": "",
  6017. "symfony/dependency-injection": ""
  6018. },
  6019. "type": "library",
  6020. "autoload": {
  6021. "psr-4": {
  6022. "Symfony\\Component\\HttpKernel\\": ""
  6023. },
  6024. "exclude-from-classmap": [
  6025. "/Tests/"
  6026. ]
  6027. },
  6028. "notification-url": "https://packagist.org/downloads/",
  6029. "license": [
  6030. "MIT"
  6031. ],
  6032. "authors": [
  6033. {
  6034. "name": "Fabien Potencier",
  6035. "email": "fabien@symfony.com"
  6036. },
  6037. {
  6038. "name": "Symfony Community",
  6039. "homepage": "https://symfony.com/contributors"
  6040. }
  6041. ],
  6042. "description": "Provides a structured process for converting a Request into a Response",
  6043. "homepage": "https://symfony.com",
  6044. "support": {
  6045. "source": "https://github.com/symfony/http-kernel/tree/v5.4.48"
  6046. },
  6047. "funding": [
  6048. {
  6049. "url": "https://symfony.com/sponsor",
  6050. "type": "custom"
  6051. },
  6052. {
  6053. "url": "https://github.com/fabpot",
  6054. "type": "github"
  6055. },
  6056. {
  6057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6058. "type": "tidelift"
  6059. }
  6060. ],
  6061. "time": "2024-11-27T12:43:17+00:00"
  6062. },
  6063. {
  6064. "name": "symfony/mime",
  6065. "version": "v5.4.45",
  6066. "source": {
  6067. "type": "git",
  6068. "url": "https://github.com/symfony/mime.git",
  6069. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
  6070. },
  6071. "dist": {
  6072. "type": "zip",
  6073. "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
  6074. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
  6075. "shasum": "",
  6076. "mirrors": [
  6077. {
  6078. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6079. "preferred": true
  6080. }
  6081. ]
  6082. },
  6083. "require": {
  6084. "php": ">=7.2.5",
  6085. "symfony/deprecation-contracts": "^2.1|^3",
  6086. "symfony/polyfill-intl-idn": "^1.10",
  6087. "symfony/polyfill-mbstring": "^1.0",
  6088. "symfony/polyfill-php80": "^1.16"
  6089. },
  6090. "conflict": {
  6091. "egulias/email-validator": "~3.0.0",
  6092. "phpdocumentor/reflection-docblock": "<3.2.2",
  6093. "phpdocumentor/type-resolver": "<1.4.0",
  6094. "symfony/mailer": "<4.4",
  6095. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  6096. },
  6097. "require-dev": {
  6098. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6099. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6100. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6101. "symfony/process": "^5.4|^6.4",
  6102. "symfony/property-access": "^4.4|^5.1|^6.0",
  6103. "symfony/property-info": "^4.4|^5.1|^6.0",
  6104. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  6105. },
  6106. "type": "library",
  6107. "autoload": {
  6108. "psr-4": {
  6109. "Symfony\\Component\\Mime\\": ""
  6110. },
  6111. "exclude-from-classmap": [
  6112. "/Tests/"
  6113. ]
  6114. },
  6115. "notification-url": "https://packagist.org/downloads/",
  6116. "license": [
  6117. "MIT"
  6118. ],
  6119. "authors": [
  6120. {
  6121. "name": "Fabien Potencier",
  6122. "email": "fabien@symfony.com"
  6123. },
  6124. {
  6125. "name": "Symfony Community",
  6126. "homepage": "https://symfony.com/contributors"
  6127. }
  6128. ],
  6129. "description": "Allows manipulating MIME messages",
  6130. "homepage": "https://symfony.com",
  6131. "keywords": [
  6132. "mime",
  6133. "mime-type"
  6134. ],
  6135. "support": {
  6136. "source": "https://github.com/symfony/mime/tree/v5.4.45"
  6137. },
  6138. "funding": [
  6139. {
  6140. "url": "https://symfony.com/sponsor",
  6141. "type": "custom"
  6142. },
  6143. {
  6144. "url": "https://github.com/fabpot",
  6145. "type": "github"
  6146. },
  6147. {
  6148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6149. "type": "tidelift"
  6150. }
  6151. ],
  6152. "time": "2024-10-23T20:18:32+00:00"
  6153. },
  6154. {
  6155. "name": "symfony/polyfill-ctype",
  6156. "version": "v1.32.0",
  6157. "source": {
  6158. "type": "git",
  6159. "url": "https://github.com/symfony/polyfill-ctype.git",
  6160. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6161. },
  6162. "dist": {
  6163. "type": "zip",
  6164. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6165. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6166. "shasum": "",
  6167. "mirrors": [
  6168. {
  6169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6170. "preferred": true
  6171. }
  6172. ]
  6173. },
  6174. "require": {
  6175. "php": ">=7.2"
  6176. },
  6177. "provide": {
  6178. "ext-ctype": "*"
  6179. },
  6180. "suggest": {
  6181. "ext-ctype": "For best performance"
  6182. },
  6183. "type": "library",
  6184. "extra": {
  6185. "thanks": {
  6186. "url": "https://github.com/symfony/polyfill",
  6187. "name": "symfony/polyfill"
  6188. }
  6189. },
  6190. "autoload": {
  6191. "files": [
  6192. "bootstrap.php"
  6193. ],
  6194. "psr-4": {
  6195. "Symfony\\Polyfill\\Ctype\\": ""
  6196. }
  6197. },
  6198. "notification-url": "https://packagist.org/downloads/",
  6199. "license": [
  6200. "MIT"
  6201. ],
  6202. "authors": [
  6203. {
  6204. "name": "Gert de Pagter",
  6205. "email": "BackEndTea@gmail.com"
  6206. },
  6207. {
  6208. "name": "Symfony Community",
  6209. "homepage": "https://symfony.com/contributors"
  6210. }
  6211. ],
  6212. "description": "Symfony polyfill for ctype functions",
  6213. "homepage": "https://symfony.com",
  6214. "keywords": [
  6215. "compatibility",
  6216. "ctype",
  6217. "polyfill",
  6218. "portable"
  6219. ],
  6220. "support": {
  6221. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  6222. },
  6223. "funding": [
  6224. {
  6225. "url": "https://symfony.com/sponsor",
  6226. "type": "custom"
  6227. },
  6228. {
  6229. "url": "https://github.com/fabpot",
  6230. "type": "github"
  6231. },
  6232. {
  6233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6234. "type": "tidelift"
  6235. }
  6236. ],
  6237. "time": "2024-09-09T11:45:10+00:00"
  6238. },
  6239. {
  6240. "name": "symfony/polyfill-iconv",
  6241. "version": "v1.32.0",
  6242. "source": {
  6243. "type": "git",
  6244. "url": "https://github.com/symfony/polyfill-iconv.git",
  6245. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  6246. },
  6247. "dist": {
  6248. "type": "zip",
  6249. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6250. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6251. "shasum": "",
  6252. "mirrors": [
  6253. {
  6254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6255. "preferred": true
  6256. }
  6257. ]
  6258. },
  6259. "require": {
  6260. "php": ">=7.2"
  6261. },
  6262. "provide": {
  6263. "ext-iconv": "*"
  6264. },
  6265. "suggest": {
  6266. "ext-iconv": "For best performance"
  6267. },
  6268. "type": "library",
  6269. "extra": {
  6270. "thanks": {
  6271. "url": "https://github.com/symfony/polyfill",
  6272. "name": "symfony/polyfill"
  6273. }
  6274. },
  6275. "autoload": {
  6276. "files": [
  6277. "bootstrap.php"
  6278. ],
  6279. "psr-4": {
  6280. "Symfony\\Polyfill\\Iconv\\": ""
  6281. }
  6282. },
  6283. "notification-url": "https://packagist.org/downloads/",
  6284. "license": [
  6285. "MIT"
  6286. ],
  6287. "authors": [
  6288. {
  6289. "name": "Nicolas Grekas",
  6290. "email": "p@tchwork.com"
  6291. },
  6292. {
  6293. "name": "Symfony Community",
  6294. "homepage": "https://symfony.com/contributors"
  6295. }
  6296. ],
  6297. "description": "Symfony polyfill for the Iconv extension",
  6298. "homepage": "https://symfony.com",
  6299. "keywords": [
  6300. "compatibility",
  6301. "iconv",
  6302. "polyfill",
  6303. "portable",
  6304. "shim"
  6305. ],
  6306. "support": {
  6307. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  6308. },
  6309. "funding": [
  6310. {
  6311. "url": "https://symfony.com/sponsor",
  6312. "type": "custom"
  6313. },
  6314. {
  6315. "url": "https://github.com/fabpot",
  6316. "type": "github"
  6317. },
  6318. {
  6319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6320. "type": "tidelift"
  6321. }
  6322. ],
  6323. "time": "2024-09-17T14:58:18+00:00"
  6324. },
  6325. {
  6326. "name": "symfony/polyfill-intl-grapheme",
  6327. "version": "v1.32.0",
  6328. "source": {
  6329. "type": "git",
  6330. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6331. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6332. },
  6333. "dist": {
  6334. "type": "zip",
  6335. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6336. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6337. "shasum": "",
  6338. "mirrors": [
  6339. {
  6340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6341. "preferred": true
  6342. }
  6343. ]
  6344. },
  6345. "require": {
  6346. "php": ">=7.2"
  6347. },
  6348. "suggest": {
  6349. "ext-intl": "For best performance"
  6350. },
  6351. "type": "library",
  6352. "extra": {
  6353. "thanks": {
  6354. "url": "https://github.com/symfony/polyfill",
  6355. "name": "symfony/polyfill"
  6356. }
  6357. },
  6358. "autoload": {
  6359. "files": [
  6360. "bootstrap.php"
  6361. ],
  6362. "psr-4": {
  6363. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6364. }
  6365. },
  6366. "notification-url": "https://packagist.org/downloads/",
  6367. "license": [
  6368. "MIT"
  6369. ],
  6370. "authors": [
  6371. {
  6372. "name": "Nicolas Grekas",
  6373. "email": "p@tchwork.com"
  6374. },
  6375. {
  6376. "name": "Symfony Community",
  6377. "homepage": "https://symfony.com/contributors"
  6378. }
  6379. ],
  6380. "description": "Symfony polyfill for intl's grapheme_* functions",
  6381. "homepage": "https://symfony.com",
  6382. "keywords": [
  6383. "compatibility",
  6384. "grapheme",
  6385. "intl",
  6386. "polyfill",
  6387. "portable",
  6388. "shim"
  6389. ],
  6390. "support": {
  6391. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  6392. },
  6393. "funding": [
  6394. {
  6395. "url": "https://symfony.com/sponsor",
  6396. "type": "custom"
  6397. },
  6398. {
  6399. "url": "https://github.com/fabpot",
  6400. "type": "github"
  6401. },
  6402. {
  6403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6404. "type": "tidelift"
  6405. }
  6406. ],
  6407. "time": "2024-09-09T11:45:10+00:00"
  6408. },
  6409. {
  6410. "name": "symfony/polyfill-intl-idn",
  6411. "version": "v1.32.0",
  6412. "source": {
  6413. "type": "git",
  6414. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6415. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6416. },
  6417. "dist": {
  6418. "type": "zip",
  6419. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6420. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6421. "shasum": "",
  6422. "mirrors": [
  6423. {
  6424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6425. "preferred": true
  6426. }
  6427. ]
  6428. },
  6429. "require": {
  6430. "php": ">=7.2",
  6431. "symfony/polyfill-intl-normalizer": "^1.10"
  6432. },
  6433. "suggest": {
  6434. "ext-intl": "For best performance"
  6435. },
  6436. "type": "library",
  6437. "extra": {
  6438. "thanks": {
  6439. "url": "https://github.com/symfony/polyfill",
  6440. "name": "symfony/polyfill"
  6441. }
  6442. },
  6443. "autoload": {
  6444. "files": [
  6445. "bootstrap.php"
  6446. ],
  6447. "psr-4": {
  6448. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6449. }
  6450. },
  6451. "notification-url": "https://packagist.org/downloads/",
  6452. "license": [
  6453. "MIT"
  6454. ],
  6455. "authors": [
  6456. {
  6457. "name": "Laurent Bassin",
  6458. "email": "laurent@bassin.info"
  6459. },
  6460. {
  6461. "name": "Trevor Rowbotham",
  6462. "email": "trevor.rowbotham@pm.me"
  6463. },
  6464. {
  6465. "name": "Symfony Community",
  6466. "homepage": "https://symfony.com/contributors"
  6467. }
  6468. ],
  6469. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6470. "homepage": "https://symfony.com",
  6471. "keywords": [
  6472. "compatibility",
  6473. "idn",
  6474. "intl",
  6475. "polyfill",
  6476. "portable",
  6477. "shim"
  6478. ],
  6479. "support": {
  6480. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6481. },
  6482. "funding": [
  6483. {
  6484. "url": "https://symfony.com/sponsor",
  6485. "type": "custom"
  6486. },
  6487. {
  6488. "url": "https://github.com/fabpot",
  6489. "type": "github"
  6490. },
  6491. {
  6492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6493. "type": "tidelift"
  6494. }
  6495. ],
  6496. "time": "2024-09-10T14:38:51+00:00"
  6497. },
  6498. {
  6499. "name": "symfony/polyfill-intl-normalizer",
  6500. "version": "v1.32.0",
  6501. "source": {
  6502. "type": "git",
  6503. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6504. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6505. },
  6506. "dist": {
  6507. "type": "zip",
  6508. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6509. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6510. "shasum": "",
  6511. "mirrors": [
  6512. {
  6513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6514. "preferred": true
  6515. }
  6516. ]
  6517. },
  6518. "require": {
  6519. "php": ">=7.2"
  6520. },
  6521. "suggest": {
  6522. "ext-intl": "For best performance"
  6523. },
  6524. "type": "library",
  6525. "extra": {
  6526. "thanks": {
  6527. "url": "https://github.com/symfony/polyfill",
  6528. "name": "symfony/polyfill"
  6529. }
  6530. },
  6531. "autoload": {
  6532. "files": [
  6533. "bootstrap.php"
  6534. ],
  6535. "psr-4": {
  6536. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6537. },
  6538. "classmap": [
  6539. "Resources/stubs"
  6540. ]
  6541. },
  6542. "notification-url": "https://packagist.org/downloads/",
  6543. "license": [
  6544. "MIT"
  6545. ],
  6546. "authors": [
  6547. {
  6548. "name": "Nicolas Grekas",
  6549. "email": "p@tchwork.com"
  6550. },
  6551. {
  6552. "name": "Symfony Community",
  6553. "homepage": "https://symfony.com/contributors"
  6554. }
  6555. ],
  6556. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6557. "homepage": "https://symfony.com",
  6558. "keywords": [
  6559. "compatibility",
  6560. "intl",
  6561. "normalizer",
  6562. "polyfill",
  6563. "portable",
  6564. "shim"
  6565. ],
  6566. "support": {
  6567. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6568. },
  6569. "funding": [
  6570. {
  6571. "url": "https://symfony.com/sponsor",
  6572. "type": "custom"
  6573. },
  6574. {
  6575. "url": "https://github.com/fabpot",
  6576. "type": "github"
  6577. },
  6578. {
  6579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6580. "type": "tidelift"
  6581. }
  6582. ],
  6583. "time": "2024-09-09T11:45:10+00:00"
  6584. },
  6585. {
  6586. "name": "symfony/polyfill-mbstring",
  6587. "version": "v1.32.0",
  6588. "source": {
  6589. "type": "git",
  6590. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6591. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6592. },
  6593. "dist": {
  6594. "type": "zip",
  6595. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6596. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6597. "shasum": "",
  6598. "mirrors": [
  6599. {
  6600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6601. "preferred": true
  6602. }
  6603. ]
  6604. },
  6605. "require": {
  6606. "ext-iconv": "*",
  6607. "php": ">=7.2"
  6608. },
  6609. "provide": {
  6610. "ext-mbstring": "*"
  6611. },
  6612. "suggest": {
  6613. "ext-mbstring": "For best performance"
  6614. },
  6615. "type": "library",
  6616. "extra": {
  6617. "thanks": {
  6618. "url": "https://github.com/symfony/polyfill",
  6619. "name": "symfony/polyfill"
  6620. }
  6621. },
  6622. "autoload": {
  6623. "files": [
  6624. "bootstrap.php"
  6625. ],
  6626. "psr-4": {
  6627. "Symfony\\Polyfill\\Mbstring\\": ""
  6628. }
  6629. },
  6630. "notification-url": "https://packagist.org/downloads/",
  6631. "license": [
  6632. "MIT"
  6633. ],
  6634. "authors": [
  6635. {
  6636. "name": "Nicolas Grekas",
  6637. "email": "p@tchwork.com"
  6638. },
  6639. {
  6640. "name": "Symfony Community",
  6641. "homepage": "https://symfony.com/contributors"
  6642. }
  6643. ],
  6644. "description": "Symfony polyfill for the Mbstring extension",
  6645. "homepage": "https://symfony.com",
  6646. "keywords": [
  6647. "compatibility",
  6648. "mbstring",
  6649. "polyfill",
  6650. "portable",
  6651. "shim"
  6652. ],
  6653. "support": {
  6654. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6655. },
  6656. "funding": [
  6657. {
  6658. "url": "https://symfony.com/sponsor",
  6659. "type": "custom"
  6660. },
  6661. {
  6662. "url": "https://github.com/fabpot",
  6663. "type": "github"
  6664. },
  6665. {
  6666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6667. "type": "tidelift"
  6668. }
  6669. ],
  6670. "time": "2024-12-23T08:48:59+00:00"
  6671. },
  6672. {
  6673. "name": "symfony/polyfill-php73",
  6674. "version": "v1.32.0",
  6675. "source": {
  6676. "type": "git",
  6677. "url": "https://github.com/symfony/polyfill-php73.git",
  6678. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6679. },
  6680. "dist": {
  6681. "type": "zip",
  6682. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6683. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6684. "shasum": "",
  6685. "mirrors": [
  6686. {
  6687. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6688. "preferred": true
  6689. }
  6690. ]
  6691. },
  6692. "require": {
  6693. "php": ">=7.2"
  6694. },
  6695. "type": "library",
  6696. "extra": {
  6697. "thanks": {
  6698. "url": "https://github.com/symfony/polyfill",
  6699. "name": "symfony/polyfill"
  6700. }
  6701. },
  6702. "autoload": {
  6703. "files": [
  6704. "bootstrap.php"
  6705. ],
  6706. "psr-4": {
  6707. "Symfony\\Polyfill\\Php73\\": ""
  6708. },
  6709. "classmap": [
  6710. "Resources/stubs"
  6711. ]
  6712. },
  6713. "notification-url": "https://packagist.org/downloads/",
  6714. "license": [
  6715. "MIT"
  6716. ],
  6717. "authors": [
  6718. {
  6719. "name": "Nicolas Grekas",
  6720. "email": "p@tchwork.com"
  6721. },
  6722. {
  6723. "name": "Symfony Community",
  6724. "homepage": "https://symfony.com/contributors"
  6725. }
  6726. ],
  6727. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6728. "homepage": "https://symfony.com",
  6729. "keywords": [
  6730. "compatibility",
  6731. "polyfill",
  6732. "portable",
  6733. "shim"
  6734. ],
  6735. "support": {
  6736. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  6737. },
  6738. "funding": [
  6739. {
  6740. "url": "https://symfony.com/sponsor",
  6741. "type": "custom"
  6742. },
  6743. {
  6744. "url": "https://github.com/fabpot",
  6745. "type": "github"
  6746. },
  6747. {
  6748. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6749. "type": "tidelift"
  6750. }
  6751. ],
  6752. "time": "2024-09-09T11:45:10+00:00"
  6753. },
  6754. {
  6755. "name": "symfony/polyfill-php80",
  6756. "version": "v1.32.0",
  6757. "source": {
  6758. "type": "git",
  6759. "url": "https://github.com/symfony/polyfill-php80.git",
  6760. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6761. },
  6762. "dist": {
  6763. "type": "zip",
  6764. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6765. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6766. "shasum": "",
  6767. "mirrors": [
  6768. {
  6769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6770. "preferred": true
  6771. }
  6772. ]
  6773. },
  6774. "require": {
  6775. "php": ">=7.2"
  6776. },
  6777. "type": "library",
  6778. "extra": {
  6779. "thanks": {
  6780. "url": "https://github.com/symfony/polyfill",
  6781. "name": "symfony/polyfill"
  6782. }
  6783. },
  6784. "autoload": {
  6785. "files": [
  6786. "bootstrap.php"
  6787. ],
  6788. "psr-4": {
  6789. "Symfony\\Polyfill\\Php80\\": ""
  6790. },
  6791. "classmap": [
  6792. "Resources/stubs"
  6793. ]
  6794. },
  6795. "notification-url": "https://packagist.org/downloads/",
  6796. "license": [
  6797. "MIT"
  6798. ],
  6799. "authors": [
  6800. {
  6801. "name": "Ion Bazan",
  6802. "email": "ion.bazan@gmail.com"
  6803. },
  6804. {
  6805. "name": "Nicolas Grekas",
  6806. "email": "p@tchwork.com"
  6807. },
  6808. {
  6809. "name": "Symfony Community",
  6810. "homepage": "https://symfony.com/contributors"
  6811. }
  6812. ],
  6813. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6814. "homepage": "https://symfony.com",
  6815. "keywords": [
  6816. "compatibility",
  6817. "polyfill",
  6818. "portable",
  6819. "shim"
  6820. ],
  6821. "support": {
  6822. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  6823. },
  6824. "funding": [
  6825. {
  6826. "url": "https://symfony.com/sponsor",
  6827. "type": "custom"
  6828. },
  6829. {
  6830. "url": "https://github.com/fabpot",
  6831. "type": "github"
  6832. },
  6833. {
  6834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6835. "type": "tidelift"
  6836. }
  6837. ],
  6838. "time": "2025-01-02T08:10:11+00:00"
  6839. },
  6840. {
  6841. "name": "symfony/polyfill-php81",
  6842. "version": "v1.32.0",
  6843. "source": {
  6844. "type": "git",
  6845. "url": "https://github.com/symfony/polyfill-php81.git",
  6846. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6847. },
  6848. "dist": {
  6849. "type": "zip",
  6850. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6851. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6852. "shasum": "",
  6853. "mirrors": [
  6854. {
  6855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6856. "preferred": true
  6857. }
  6858. ]
  6859. },
  6860. "require": {
  6861. "php": ">=7.2"
  6862. },
  6863. "type": "library",
  6864. "extra": {
  6865. "thanks": {
  6866. "url": "https://github.com/symfony/polyfill",
  6867. "name": "symfony/polyfill"
  6868. }
  6869. },
  6870. "autoload": {
  6871. "files": [
  6872. "bootstrap.php"
  6873. ],
  6874. "psr-4": {
  6875. "Symfony\\Polyfill\\Php81\\": ""
  6876. },
  6877. "classmap": [
  6878. "Resources/stubs"
  6879. ]
  6880. },
  6881. "notification-url": "https://packagist.org/downloads/",
  6882. "license": [
  6883. "MIT"
  6884. ],
  6885. "authors": [
  6886. {
  6887. "name": "Nicolas Grekas",
  6888. "email": "p@tchwork.com"
  6889. },
  6890. {
  6891. "name": "Symfony Community",
  6892. "homepage": "https://symfony.com/contributors"
  6893. }
  6894. ],
  6895. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6896. "homepage": "https://symfony.com",
  6897. "keywords": [
  6898. "compatibility",
  6899. "polyfill",
  6900. "portable",
  6901. "shim"
  6902. ],
  6903. "support": {
  6904. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  6905. },
  6906. "funding": [
  6907. {
  6908. "url": "https://symfony.com/sponsor",
  6909. "type": "custom"
  6910. },
  6911. {
  6912. "url": "https://github.com/fabpot",
  6913. "type": "github"
  6914. },
  6915. {
  6916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6917. "type": "tidelift"
  6918. }
  6919. ],
  6920. "time": "2024-09-09T11:45:10+00:00"
  6921. },
  6922. {
  6923. "name": "symfony/process",
  6924. "version": "v5.4.47",
  6925. "source": {
  6926. "type": "git",
  6927. "url": "https://github.com/symfony/process.git",
  6928. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  6929. },
  6930. "dist": {
  6931. "type": "zip",
  6932. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  6933. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  6934. "shasum": "",
  6935. "mirrors": [
  6936. {
  6937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6938. "preferred": true
  6939. }
  6940. ]
  6941. },
  6942. "require": {
  6943. "php": ">=7.2.5",
  6944. "symfony/polyfill-php80": "^1.16"
  6945. },
  6946. "type": "library",
  6947. "autoload": {
  6948. "psr-4": {
  6949. "Symfony\\Component\\Process\\": ""
  6950. },
  6951. "exclude-from-classmap": [
  6952. "/Tests/"
  6953. ]
  6954. },
  6955. "notification-url": "https://packagist.org/downloads/",
  6956. "license": [
  6957. "MIT"
  6958. ],
  6959. "authors": [
  6960. {
  6961. "name": "Fabien Potencier",
  6962. "email": "fabien@symfony.com"
  6963. },
  6964. {
  6965. "name": "Symfony Community",
  6966. "homepage": "https://symfony.com/contributors"
  6967. }
  6968. ],
  6969. "description": "Executes commands in sub-processes",
  6970. "homepage": "https://symfony.com",
  6971. "support": {
  6972. "source": "https://github.com/symfony/process/tree/v5.4.47"
  6973. },
  6974. "funding": [
  6975. {
  6976. "url": "https://symfony.com/sponsor",
  6977. "type": "custom"
  6978. },
  6979. {
  6980. "url": "https://github.com/fabpot",
  6981. "type": "github"
  6982. },
  6983. {
  6984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6985. "type": "tidelift"
  6986. }
  6987. ],
  6988. "time": "2024-11-06T11:36:42+00:00"
  6989. },
  6990. {
  6991. "name": "symfony/routing",
  6992. "version": "v5.4.48",
  6993. "source": {
  6994. "type": "git",
  6995. "url": "https://github.com/symfony/routing.git",
  6996. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1"
  6997. },
  6998. "dist": {
  6999. "type": "zip",
  7000. "url": "https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7001. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7002. "shasum": "",
  7003. "mirrors": [
  7004. {
  7005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7006. "preferred": true
  7007. }
  7008. ]
  7009. },
  7010. "require": {
  7011. "php": ">=7.2.5",
  7012. "symfony/deprecation-contracts": "^2.1|^3",
  7013. "symfony/polyfill-php80": "^1.16"
  7014. },
  7015. "conflict": {
  7016. "doctrine/annotations": "<1.12",
  7017. "symfony/config": "<5.3",
  7018. "symfony/dependency-injection": "<4.4",
  7019. "symfony/yaml": "<4.4"
  7020. },
  7021. "require-dev": {
  7022. "doctrine/annotations": "^1.12|^2",
  7023. "psr/log": "^1|^2|^3",
  7024. "symfony/config": "^5.3|^6.0",
  7025. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7026. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7027. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7028. "symfony/yaml": "^4.4|^5.0|^6.0"
  7029. },
  7030. "suggest": {
  7031. "symfony/config": "For using the all-in-one router or any loader",
  7032. "symfony/expression-language": "For using expression matching",
  7033. "symfony/http-foundation": "For using a Symfony Request object",
  7034. "symfony/yaml": "For using the YAML loader"
  7035. },
  7036. "type": "library",
  7037. "autoload": {
  7038. "psr-4": {
  7039. "Symfony\\Component\\Routing\\": ""
  7040. },
  7041. "exclude-from-classmap": [
  7042. "/Tests/"
  7043. ]
  7044. },
  7045. "notification-url": "https://packagist.org/downloads/",
  7046. "license": [
  7047. "MIT"
  7048. ],
  7049. "authors": [
  7050. {
  7051. "name": "Fabien Potencier",
  7052. "email": "fabien@symfony.com"
  7053. },
  7054. {
  7055. "name": "Symfony Community",
  7056. "homepage": "https://symfony.com/contributors"
  7057. }
  7058. ],
  7059. "description": "Maps an HTTP request to a set of configuration variables",
  7060. "homepage": "https://symfony.com",
  7061. "keywords": [
  7062. "router",
  7063. "routing",
  7064. "uri",
  7065. "url"
  7066. ],
  7067. "support": {
  7068. "source": "https://github.com/symfony/routing/tree/v5.4.48"
  7069. },
  7070. "funding": [
  7071. {
  7072. "url": "https://symfony.com/sponsor",
  7073. "type": "custom"
  7074. },
  7075. {
  7076. "url": "https://github.com/fabpot",
  7077. "type": "github"
  7078. },
  7079. {
  7080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7081. "type": "tidelift"
  7082. }
  7083. ],
  7084. "time": "2024-11-12T18:20:21+00:00"
  7085. },
  7086. {
  7087. "name": "symfony/service-contracts",
  7088. "version": "v2.5.4",
  7089. "source": {
  7090. "type": "git",
  7091. "url": "https://github.com/symfony/service-contracts.git",
  7092. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  7093. },
  7094. "dist": {
  7095. "type": "zip",
  7096. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  7097. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  7098. "shasum": "",
  7099. "mirrors": [
  7100. {
  7101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7102. "preferred": true
  7103. }
  7104. ]
  7105. },
  7106. "require": {
  7107. "php": ">=7.2.5",
  7108. "psr/container": "^1.1",
  7109. "symfony/deprecation-contracts": "^2.1|^3"
  7110. },
  7111. "conflict": {
  7112. "ext-psr": "<1.1|>=2"
  7113. },
  7114. "suggest": {
  7115. "symfony/service-implementation": ""
  7116. },
  7117. "type": "library",
  7118. "extra": {
  7119. "thanks": {
  7120. "url": "https://github.com/symfony/contracts",
  7121. "name": "symfony/contracts"
  7122. },
  7123. "branch-alias": {
  7124. "dev-main": "2.5-dev"
  7125. }
  7126. },
  7127. "autoload": {
  7128. "psr-4": {
  7129. "Symfony\\Contracts\\Service\\": ""
  7130. }
  7131. },
  7132. "notification-url": "https://packagist.org/downloads/",
  7133. "license": [
  7134. "MIT"
  7135. ],
  7136. "authors": [
  7137. {
  7138. "name": "Nicolas Grekas",
  7139. "email": "p@tchwork.com"
  7140. },
  7141. {
  7142. "name": "Symfony Community",
  7143. "homepage": "https://symfony.com/contributors"
  7144. }
  7145. ],
  7146. "description": "Generic abstractions related to writing services",
  7147. "homepage": "https://symfony.com",
  7148. "keywords": [
  7149. "abstractions",
  7150. "contracts",
  7151. "decoupling",
  7152. "interfaces",
  7153. "interoperability",
  7154. "standards"
  7155. ],
  7156. "support": {
  7157. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  7158. },
  7159. "funding": [
  7160. {
  7161. "url": "https://symfony.com/sponsor",
  7162. "type": "custom"
  7163. },
  7164. {
  7165. "url": "https://github.com/fabpot",
  7166. "type": "github"
  7167. },
  7168. {
  7169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7170. "type": "tidelift"
  7171. }
  7172. ],
  7173. "time": "2024-09-25T14:11:13+00:00"
  7174. },
  7175. {
  7176. "name": "symfony/string",
  7177. "version": "v6.0.19",
  7178. "source": {
  7179. "type": "git",
  7180. "url": "https://github.com/symfony/string.git",
  7181. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7182. },
  7183. "dist": {
  7184. "type": "zip",
  7185. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7186. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7187. "shasum": "",
  7188. "mirrors": [
  7189. {
  7190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7191. "preferred": true
  7192. }
  7193. ]
  7194. },
  7195. "require": {
  7196. "php": ">=8.0.2",
  7197. "symfony/polyfill-ctype": "~1.8",
  7198. "symfony/polyfill-intl-grapheme": "~1.0",
  7199. "symfony/polyfill-intl-normalizer": "~1.0",
  7200. "symfony/polyfill-mbstring": "~1.0"
  7201. },
  7202. "conflict": {
  7203. "symfony/translation-contracts": "<2.0"
  7204. },
  7205. "require-dev": {
  7206. "symfony/error-handler": "^5.4|^6.0",
  7207. "symfony/http-client": "^5.4|^6.0",
  7208. "symfony/translation-contracts": "^2.0|^3.0",
  7209. "symfony/var-exporter": "^5.4|^6.0"
  7210. },
  7211. "type": "library",
  7212. "autoload": {
  7213. "files": [
  7214. "Resources/functions.php"
  7215. ],
  7216. "psr-4": {
  7217. "Symfony\\Component\\String\\": ""
  7218. },
  7219. "exclude-from-classmap": [
  7220. "/Tests/"
  7221. ]
  7222. },
  7223. "notification-url": "https://packagist.org/downloads/",
  7224. "license": [
  7225. "MIT"
  7226. ],
  7227. "authors": [
  7228. {
  7229. "name": "Nicolas Grekas",
  7230. "email": "p@tchwork.com"
  7231. },
  7232. {
  7233. "name": "Symfony Community",
  7234. "homepage": "https://symfony.com/contributors"
  7235. }
  7236. ],
  7237. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7238. "homepage": "https://symfony.com",
  7239. "keywords": [
  7240. "grapheme",
  7241. "i18n",
  7242. "string",
  7243. "unicode",
  7244. "utf-8",
  7245. "utf8"
  7246. ],
  7247. "support": {
  7248. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7249. },
  7250. "funding": [
  7251. {
  7252. "url": "https://symfony.com/sponsor",
  7253. "type": "custom"
  7254. },
  7255. {
  7256. "url": "https://github.com/fabpot",
  7257. "type": "github"
  7258. },
  7259. {
  7260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7261. "type": "tidelift"
  7262. }
  7263. ],
  7264. "time": "2023-01-01T08:36:10+00:00"
  7265. },
  7266. {
  7267. "name": "symfony/translation",
  7268. "version": "v6.0.19",
  7269. "source": {
  7270. "type": "git",
  7271. "url": "https://github.com/symfony/translation.git",
  7272. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7273. },
  7274. "dist": {
  7275. "type": "zip",
  7276. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7277. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7278. "shasum": "",
  7279. "mirrors": [
  7280. {
  7281. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7282. "preferred": true
  7283. }
  7284. ]
  7285. },
  7286. "require": {
  7287. "php": ">=8.0.2",
  7288. "symfony/polyfill-mbstring": "~1.0",
  7289. "symfony/translation-contracts": "^2.3|^3.0"
  7290. },
  7291. "conflict": {
  7292. "symfony/config": "<5.4",
  7293. "symfony/console": "<5.4",
  7294. "symfony/dependency-injection": "<5.4",
  7295. "symfony/http-kernel": "<5.4",
  7296. "symfony/twig-bundle": "<5.4",
  7297. "symfony/yaml": "<5.4"
  7298. },
  7299. "provide": {
  7300. "symfony/translation-implementation": "2.3|3.0"
  7301. },
  7302. "require-dev": {
  7303. "psr/log": "^1|^2|^3",
  7304. "symfony/config": "^5.4|^6.0",
  7305. "symfony/console": "^5.4|^6.0",
  7306. "symfony/dependency-injection": "^5.4|^6.0",
  7307. "symfony/finder": "^5.4|^6.0",
  7308. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7309. "symfony/http-kernel": "^5.4|^6.0",
  7310. "symfony/intl": "^5.4|^6.0",
  7311. "symfony/polyfill-intl-icu": "^1.21",
  7312. "symfony/service-contracts": "^1.1.2|^2|^3",
  7313. "symfony/yaml": "^5.4|^6.0"
  7314. },
  7315. "suggest": {
  7316. "psr/log-implementation": "To use logging capability in translator",
  7317. "symfony/config": "",
  7318. "symfony/yaml": ""
  7319. },
  7320. "type": "library",
  7321. "autoload": {
  7322. "files": [
  7323. "Resources/functions.php"
  7324. ],
  7325. "psr-4": {
  7326. "Symfony\\Component\\Translation\\": ""
  7327. },
  7328. "exclude-from-classmap": [
  7329. "/Tests/"
  7330. ]
  7331. },
  7332. "notification-url": "https://packagist.org/downloads/",
  7333. "license": [
  7334. "MIT"
  7335. ],
  7336. "authors": [
  7337. {
  7338. "name": "Fabien Potencier",
  7339. "email": "fabien@symfony.com"
  7340. },
  7341. {
  7342. "name": "Symfony Community",
  7343. "homepage": "https://symfony.com/contributors"
  7344. }
  7345. ],
  7346. "description": "Provides tools to internationalize your application",
  7347. "homepage": "https://symfony.com",
  7348. "support": {
  7349. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7350. },
  7351. "funding": [
  7352. {
  7353. "url": "https://symfony.com/sponsor",
  7354. "type": "custom"
  7355. },
  7356. {
  7357. "url": "https://github.com/fabpot",
  7358. "type": "github"
  7359. },
  7360. {
  7361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7362. "type": "tidelift"
  7363. }
  7364. ],
  7365. "time": "2023-01-01T08:36:10+00:00"
  7366. },
  7367. {
  7368. "name": "symfony/translation-contracts",
  7369. "version": "v3.0.2",
  7370. "source": {
  7371. "type": "git",
  7372. "url": "https://github.com/symfony/translation-contracts.git",
  7373. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7374. },
  7375. "dist": {
  7376. "type": "zip",
  7377. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7378. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7379. "shasum": "",
  7380. "mirrors": [
  7381. {
  7382. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7383. "preferred": true
  7384. }
  7385. ]
  7386. },
  7387. "require": {
  7388. "php": ">=8.0.2"
  7389. },
  7390. "suggest": {
  7391. "symfony/translation-implementation": ""
  7392. },
  7393. "type": "library",
  7394. "extra": {
  7395. "thanks": {
  7396. "url": "https://github.com/symfony/contracts",
  7397. "name": "symfony/contracts"
  7398. },
  7399. "branch-alias": {
  7400. "dev-main": "3.0-dev"
  7401. }
  7402. },
  7403. "autoload": {
  7404. "psr-4": {
  7405. "Symfony\\Contracts\\Translation\\": ""
  7406. }
  7407. },
  7408. "notification-url": "https://packagist.org/downloads/",
  7409. "license": [
  7410. "MIT"
  7411. ],
  7412. "authors": [
  7413. {
  7414. "name": "Nicolas Grekas",
  7415. "email": "p@tchwork.com"
  7416. },
  7417. {
  7418. "name": "Symfony Community",
  7419. "homepage": "https://symfony.com/contributors"
  7420. }
  7421. ],
  7422. "description": "Generic abstractions related to translation",
  7423. "homepage": "https://symfony.com",
  7424. "keywords": [
  7425. "abstractions",
  7426. "contracts",
  7427. "decoupling",
  7428. "interfaces",
  7429. "interoperability",
  7430. "standards"
  7431. ],
  7432. "support": {
  7433. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7434. },
  7435. "funding": [
  7436. {
  7437. "url": "https://symfony.com/sponsor",
  7438. "type": "custom"
  7439. },
  7440. {
  7441. "url": "https://github.com/fabpot",
  7442. "type": "github"
  7443. },
  7444. {
  7445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7446. "type": "tidelift"
  7447. }
  7448. ],
  7449. "time": "2022-06-27T17:10:44+00:00"
  7450. },
  7451. {
  7452. "name": "symfony/var-dumper",
  7453. "version": "v5.4.48",
  7454. "source": {
  7455. "type": "git",
  7456. "url": "https://github.com/symfony/var-dumper.git",
  7457. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  7458. },
  7459. "dist": {
  7460. "type": "zip",
  7461. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7462. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7463. "shasum": "",
  7464. "mirrors": [
  7465. {
  7466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7467. "preferred": true
  7468. }
  7469. ]
  7470. },
  7471. "require": {
  7472. "php": ">=7.2.5",
  7473. "symfony/polyfill-mbstring": "~1.0",
  7474. "symfony/polyfill-php80": "^1.16"
  7475. },
  7476. "conflict": {
  7477. "symfony/console": "<4.4"
  7478. },
  7479. "require-dev": {
  7480. "ext-iconv": "*",
  7481. "symfony/console": "^4.4|^5.0|^6.0",
  7482. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7483. "symfony/process": "^4.4|^5.0|^6.0",
  7484. "symfony/uid": "^5.1|^6.0",
  7485. "twig/twig": "^2.13|^3.0.4"
  7486. },
  7487. "suggest": {
  7488. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7489. "ext-intl": "To show region name in time zone dump",
  7490. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7491. },
  7492. "bin": [
  7493. "Resources/bin/var-dump-server"
  7494. ],
  7495. "type": "library",
  7496. "autoload": {
  7497. "files": [
  7498. "Resources/functions/dump.php"
  7499. ],
  7500. "psr-4": {
  7501. "Symfony\\Component\\VarDumper\\": ""
  7502. },
  7503. "exclude-from-classmap": [
  7504. "/Tests/"
  7505. ]
  7506. },
  7507. "notification-url": "https://packagist.org/downloads/",
  7508. "license": [
  7509. "MIT"
  7510. ],
  7511. "authors": [
  7512. {
  7513. "name": "Nicolas Grekas",
  7514. "email": "p@tchwork.com"
  7515. },
  7516. {
  7517. "name": "Symfony Community",
  7518. "homepage": "https://symfony.com/contributors"
  7519. }
  7520. ],
  7521. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7522. "homepage": "https://symfony.com",
  7523. "keywords": [
  7524. "debug",
  7525. "dump"
  7526. ],
  7527. "support": {
  7528. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  7529. },
  7530. "funding": [
  7531. {
  7532. "url": "https://symfony.com/sponsor",
  7533. "type": "custom"
  7534. },
  7535. {
  7536. "url": "https://github.com/fabpot",
  7537. "type": "github"
  7538. },
  7539. {
  7540. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7541. "type": "tidelift"
  7542. }
  7543. ],
  7544. "time": "2024-11-08T15:21:10+00:00"
  7545. },
  7546. {
  7547. "name": "tijsverkoyen/css-to-inline-styles",
  7548. "version": "v2.3.0",
  7549. "source": {
  7550. "type": "git",
  7551. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7552. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7553. },
  7554. "dist": {
  7555. "type": "zip",
  7556. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7557. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7558. "shasum": "",
  7559. "mirrors": [
  7560. {
  7561. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7562. "preferred": true
  7563. }
  7564. ]
  7565. },
  7566. "require": {
  7567. "ext-dom": "*",
  7568. "ext-libxml": "*",
  7569. "php": "^7.4 || ^8.0",
  7570. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7571. },
  7572. "require-dev": {
  7573. "phpstan/phpstan": "^2.0",
  7574. "phpstan/phpstan-phpunit": "^2.0",
  7575. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7576. },
  7577. "type": "library",
  7578. "extra": {
  7579. "branch-alias": {
  7580. "dev-master": "2.x-dev"
  7581. }
  7582. },
  7583. "autoload": {
  7584. "psr-4": {
  7585. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7586. }
  7587. },
  7588. "notification-url": "https://packagist.org/downloads/",
  7589. "license": [
  7590. "BSD-3-Clause"
  7591. ],
  7592. "authors": [
  7593. {
  7594. "name": "Tijs Verkoyen",
  7595. "email": "css_to_inline_styles@verkoyen.eu",
  7596. "role": "Developer"
  7597. }
  7598. ],
  7599. "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.",
  7600. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7601. "support": {
  7602. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7603. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7604. },
  7605. "time": "2024-12-21T16:25:41+00:00"
  7606. },
  7607. {
  7608. "name": "vlucas/phpdotenv",
  7609. "version": "v5.6.1",
  7610. "source": {
  7611. "type": "git",
  7612. "url": "https://github.com/vlucas/phpdotenv.git",
  7613. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7614. },
  7615. "dist": {
  7616. "type": "zip",
  7617. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7618. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7619. "shasum": "",
  7620. "mirrors": [
  7621. {
  7622. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7623. "preferred": true
  7624. }
  7625. ]
  7626. },
  7627. "require": {
  7628. "ext-pcre": "*",
  7629. "graham-campbell/result-type": "^1.1.3",
  7630. "php": "^7.2.5 || ^8.0",
  7631. "phpoption/phpoption": "^1.9.3",
  7632. "symfony/polyfill-ctype": "^1.24",
  7633. "symfony/polyfill-mbstring": "^1.24",
  7634. "symfony/polyfill-php80": "^1.24"
  7635. },
  7636. "require-dev": {
  7637. "bamarni/composer-bin-plugin": "^1.8.2",
  7638. "ext-filter": "*",
  7639. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7640. },
  7641. "suggest": {
  7642. "ext-filter": "Required to use the boolean validator."
  7643. },
  7644. "type": "library",
  7645. "extra": {
  7646. "bamarni-bin": {
  7647. "bin-links": true,
  7648. "forward-command": false
  7649. },
  7650. "branch-alias": {
  7651. "dev-master": "5.6-dev"
  7652. }
  7653. },
  7654. "autoload": {
  7655. "psr-4": {
  7656. "Dotenv\\": "src/"
  7657. }
  7658. },
  7659. "notification-url": "https://packagist.org/downloads/",
  7660. "license": [
  7661. "BSD-3-Clause"
  7662. ],
  7663. "authors": [
  7664. {
  7665. "name": "Graham Campbell",
  7666. "email": "hello@gjcampbell.co.uk",
  7667. "homepage": "https://github.com/GrahamCampbell"
  7668. },
  7669. {
  7670. "name": "Vance Lucas",
  7671. "email": "vance@vancelucas.com",
  7672. "homepage": "https://github.com/vlucas"
  7673. }
  7674. ],
  7675. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7676. "keywords": [
  7677. "dotenv",
  7678. "env",
  7679. "environment"
  7680. ],
  7681. "support": {
  7682. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7683. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7684. },
  7685. "funding": [
  7686. {
  7687. "url": "https://github.com/GrahamCampbell",
  7688. "type": "github"
  7689. },
  7690. {
  7691. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7692. "type": "tidelift"
  7693. }
  7694. ],
  7695. "time": "2024-07-20T21:52:34+00:00"
  7696. },
  7697. {
  7698. "name": "voku/portable-ascii",
  7699. "version": "1.6.1",
  7700. "source": {
  7701. "type": "git",
  7702. "url": "https://github.com/voku/portable-ascii.git",
  7703. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7704. },
  7705. "dist": {
  7706. "type": "zip",
  7707. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7708. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7709. "shasum": "",
  7710. "mirrors": [
  7711. {
  7712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7713. "preferred": true
  7714. }
  7715. ]
  7716. },
  7717. "require": {
  7718. "php": ">=7.0.0"
  7719. },
  7720. "require-dev": {
  7721. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7722. },
  7723. "suggest": {
  7724. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7725. },
  7726. "type": "library",
  7727. "autoload": {
  7728. "psr-4": {
  7729. "voku\\": "src/voku/"
  7730. }
  7731. },
  7732. "notification-url": "https://packagist.org/downloads/",
  7733. "license": [
  7734. "MIT"
  7735. ],
  7736. "authors": [
  7737. {
  7738. "name": "Lars Moelleken",
  7739. "homepage": "http://www.moelleken.org/"
  7740. }
  7741. ],
  7742. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7743. "homepage": "https://github.com/voku/portable-ascii",
  7744. "keywords": [
  7745. "ascii",
  7746. "clean",
  7747. "php"
  7748. ],
  7749. "support": {
  7750. "issues": "https://github.com/voku/portable-ascii/issues",
  7751. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7752. },
  7753. "funding": [
  7754. {
  7755. "url": "https://www.paypal.me/moelleken",
  7756. "type": "custom"
  7757. },
  7758. {
  7759. "url": "https://github.com/voku",
  7760. "type": "github"
  7761. },
  7762. {
  7763. "url": "https://opencollective.com/portable-ascii",
  7764. "type": "open_collective"
  7765. },
  7766. {
  7767. "url": "https://www.patreon.com/voku",
  7768. "type": "patreon"
  7769. },
  7770. {
  7771. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7772. "type": "tidelift"
  7773. }
  7774. ],
  7775. "time": "2022-01-24T18:55:24+00:00"
  7776. },
  7777. {
  7778. "name": "webmozart/assert",
  7779. "version": "1.11.0",
  7780. "source": {
  7781. "type": "git",
  7782. "url": "https://github.com/webmozarts/assert.git",
  7783. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7784. },
  7785. "dist": {
  7786. "type": "zip",
  7787. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7788. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7789. "shasum": "",
  7790. "mirrors": [
  7791. {
  7792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7793. "preferred": true
  7794. }
  7795. ]
  7796. },
  7797. "require": {
  7798. "ext-ctype": "*",
  7799. "php": "^7.2 || ^8.0"
  7800. },
  7801. "conflict": {
  7802. "phpstan/phpstan": "<0.12.20",
  7803. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7804. },
  7805. "require-dev": {
  7806. "phpunit/phpunit": "^8.5.13"
  7807. },
  7808. "type": "library",
  7809. "extra": {
  7810. "branch-alias": {
  7811. "dev-master": "1.10-dev"
  7812. }
  7813. },
  7814. "autoload": {
  7815. "psr-4": {
  7816. "Webmozart\\Assert\\": "src/"
  7817. }
  7818. },
  7819. "notification-url": "https://packagist.org/downloads/",
  7820. "license": [
  7821. "MIT"
  7822. ],
  7823. "authors": [
  7824. {
  7825. "name": "Bernhard Schussek",
  7826. "email": "bschussek@gmail.com"
  7827. }
  7828. ],
  7829. "description": "Assertions to validate method input/output with nice error messages.",
  7830. "keywords": [
  7831. "assert",
  7832. "check",
  7833. "validate"
  7834. ],
  7835. "support": {
  7836. "issues": "https://github.com/webmozarts/assert/issues",
  7837. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7838. },
  7839. "time": "2022-06-03T18:03:27+00:00"
  7840. },
  7841. {
  7842. "name": "wxkxklmyt/pscws4",
  7843. "version": "0.0.2",
  7844. "source": {
  7845. "type": "git",
  7846. "url": "https://github.com/wxkxklmyt/pscws4.git",
  7847. "reference": "b81e40fb8b5427eb5ed410f1e0f6adaaaa660b3f"
  7848. },
  7849. "dist": {
  7850. "type": "zip",
  7851. "url": "https://api.github.com/repos/wxkxklmyt/pscws4/zipball/b81e40fb8b5427eb5ed410f1e0f6adaaaa660b3f",
  7852. "reference": "b81e40fb8b5427eb5ed410f1e0f6adaaaa660b3f",
  7853. "shasum": "",
  7854. "mirrors": [
  7855. {
  7856. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7857. "preferred": true
  7858. }
  7859. ]
  7860. },
  7861. "require": {
  7862. "php": ">=5.4.0"
  7863. },
  7864. "type": "library",
  7865. "autoload": {
  7866. "psr-4": {
  7867. "wxkxklmyt\\": "src/"
  7868. }
  7869. },
  7870. "notification-url": "https://packagist.org/downloads/",
  7871. "authors": [
  7872. {
  7873. "name": "我的梦",
  7874. "email": "519468341@qq.com"
  7875. }
  7876. ],
  7877. "description": "基于PSCWS4的中文分词工具",
  7878. "support": {
  7879. "issues": "https://github.com/wxkxklmyt/pscws4/issues",
  7880. "source": "https://github.com/wxkxklmyt/pscws4/tree/0.0.2"
  7881. },
  7882. "time": "2017-12-22T08:56:36+00:00"
  7883. },
  7884. {
  7885. "name": "yansongda/pay",
  7886. "version": "v3.4.2",
  7887. "source": {
  7888. "type": "git",
  7889. "url": "https://github.com/yansongda/pay.git",
  7890. "reference": "de827f7a594ef02432432da1f873926662b478fc"
  7891. },
  7892. "dist": {
  7893. "type": "zip",
  7894. "url": "https://api.github.com/repos/yansongda/pay/zipball/de827f7a594ef02432432da1f873926662b478fc",
  7895. "reference": "de827f7a594ef02432432da1f873926662b478fc",
  7896. "shasum": "",
  7897. "mirrors": [
  7898. {
  7899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7900. "preferred": true
  7901. }
  7902. ]
  7903. },
  7904. "require": {
  7905. "ext-bcmath": "*",
  7906. "ext-json": "*",
  7907. "ext-libxml": "*",
  7908. "ext-openssl": "*",
  7909. "ext-simplexml": "*",
  7910. "php": ">=8.0",
  7911. "psr/container": "^1.1 || ^2.0",
  7912. "psr/event-dispatcher": "^1.0",
  7913. "psr/http-client": "^1.0",
  7914. "psr/http-message": "^1.1 || ^2.0",
  7915. "psr/log": "^1.1 || ^2.0 || ^3.0",
  7916. "yansongda/supports": "~4.0.0"
  7917. },
  7918. "conflict": {
  7919. "hyperf/framework": "<3.0"
  7920. },
  7921. "require-dev": {
  7922. "friendsofphp/php-cs-fixer": "^3.0",
  7923. "guzzlehttp/guzzle": "^7.0",
  7924. "hyperf/pimple": "^2.2",
  7925. "mockery/mockery": "^1.4",
  7926. "monolog/monolog": "^2.2",
  7927. "phpstan/phpstan": "^1.0.0",
  7928. "phpunit/phpunit": "^9.0",
  7929. "symfony/event-dispatcher": "^5.2.0",
  7930. "symfony/http-foundation": "^5.2.0",
  7931. "symfony/psr-http-message-bridge": "^2.1",
  7932. "symfony/var-dumper": "^5.1"
  7933. },
  7934. "suggest": {
  7935. "hyperf/pimple": "其它/无框架下使用 SDK,请安装",
  7936. "hyperf/utils": "Hyperf 框架下使用 SDK,请安装",
  7937. "illuminate/container": "Laravel 框架下使用 SDK,请安装"
  7938. },
  7939. "type": "library",
  7940. "autoload": {
  7941. "files": [
  7942. "src/Functions.php"
  7943. ],
  7944. "psr-4": {
  7945. "Yansongda\\Pay\\": "src"
  7946. }
  7947. },
  7948. "notification-url": "https://packagist.org/downloads/",
  7949. "license": [
  7950. "MIT"
  7951. ],
  7952. "authors": [
  7953. {
  7954. "name": "yansongda",
  7955. "email": "me@yansongda.cn"
  7956. }
  7957. ],
  7958. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  7959. "keywords": [
  7960. "alipay",
  7961. "pay",
  7962. "wechat"
  7963. ],
  7964. "support": {
  7965. "homepage": "https://pay.yansongda.cn",
  7966. "issues": "https://github.com/yansongda/pay/issues",
  7967. "source": "https://github.com/yansongda/pay"
  7968. },
  7969. "time": "2023-06-27T09:54:37+00:00"
  7970. },
  7971. {
  7972. "name": "yansongda/supports",
  7973. "version": "v4.0.10",
  7974. "source": {
  7975. "type": "git",
  7976. "url": "https://github.com/yansongda/supports.git",
  7977. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5"
  7978. },
  7979. "dist": {
  7980. "type": "zip",
  7981. "url": "https://api.github.com/repos/yansongda/supports/zipball/11cc73776e6d4d763a84c8c733f64820abdc44e5",
  7982. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5",
  7983. "shasum": "",
  7984. "mirrors": [
  7985. {
  7986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7987. "preferred": true
  7988. }
  7989. ]
  7990. },
  7991. "require": {
  7992. "php": ">=8.0"
  7993. },
  7994. "require-dev": {
  7995. "friendsofphp/php-cs-fixer": "^3.0",
  7996. "mockery/mockery": "^1.4",
  7997. "phpstan/phpstan": "^1.1.0",
  7998. "phpunit/phpunit": "^9.0"
  7999. },
  8000. "suggest": {
  8001. "monolog/monolog": "Use logger",
  8002. "symfony/console": "Use stdout logger"
  8003. },
  8004. "type": "library",
  8005. "autoload": {
  8006. "files": [
  8007. "src/Functions.php"
  8008. ],
  8009. "psr-4": {
  8010. "Yansongda\\Supports\\": "src/"
  8011. }
  8012. },
  8013. "notification-url": "https://packagist.org/downloads/",
  8014. "license": [
  8015. "MIT"
  8016. ],
  8017. "authors": [
  8018. {
  8019. "name": "yansongda",
  8020. "email": "me@yansongda.cn"
  8021. }
  8022. ],
  8023. "description": "common components",
  8024. "keywords": [
  8025. "array",
  8026. "collection",
  8027. "config",
  8028. "support"
  8029. ],
  8030. "support": {
  8031. "issues": "https://github.com/yansongda/supports/issues",
  8032. "source": "https://github.com/yansongda/supports"
  8033. },
  8034. "time": "2024-06-09T15:49:21+00:00"
  8035. }
  8036. ],
  8037. "packages-dev": [
  8038. {
  8039. "name": "doctrine/instantiator",
  8040. "version": "1.5.0",
  8041. "source": {
  8042. "type": "git",
  8043. "url": "https://github.com/doctrine/instantiator.git",
  8044. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8045. },
  8046. "dist": {
  8047. "type": "zip",
  8048. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8049. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8050. "shasum": "",
  8051. "mirrors": [
  8052. {
  8053. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8054. "preferred": true
  8055. }
  8056. ]
  8057. },
  8058. "require": {
  8059. "php": "^7.1 || ^8.0"
  8060. },
  8061. "require-dev": {
  8062. "doctrine/coding-standard": "^9 || ^11",
  8063. "ext-pdo": "*",
  8064. "ext-phar": "*",
  8065. "phpbench/phpbench": "^0.16 || ^1",
  8066. "phpstan/phpstan": "^1.4",
  8067. "phpstan/phpstan-phpunit": "^1",
  8068. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8069. "vimeo/psalm": "^4.30 || ^5.4"
  8070. },
  8071. "type": "library",
  8072. "autoload": {
  8073. "psr-4": {
  8074. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8075. }
  8076. },
  8077. "notification-url": "https://packagist.org/downloads/",
  8078. "license": [
  8079. "MIT"
  8080. ],
  8081. "authors": [
  8082. {
  8083. "name": "Marco Pivetta",
  8084. "email": "ocramius@gmail.com",
  8085. "homepage": "https://ocramius.github.io/"
  8086. }
  8087. ],
  8088. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8089. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8090. "keywords": [
  8091. "constructor",
  8092. "instantiate"
  8093. ],
  8094. "support": {
  8095. "issues": "https://github.com/doctrine/instantiator/issues",
  8096. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8097. },
  8098. "funding": [
  8099. {
  8100. "url": "https://www.doctrine-project.org/sponsorship.html",
  8101. "type": "custom"
  8102. },
  8103. {
  8104. "url": "https://www.patreon.com/phpdoctrine",
  8105. "type": "patreon"
  8106. },
  8107. {
  8108. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8109. "type": "tidelift"
  8110. }
  8111. ],
  8112. "time": "2022-12-30T00:15:36+00:00"
  8113. },
  8114. {
  8115. "name": "facade/flare-client-php",
  8116. "version": "1.10.0",
  8117. "source": {
  8118. "type": "git",
  8119. "url": "https://github.com/facade/flare-client-php.git",
  8120. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8121. },
  8122. "dist": {
  8123. "type": "zip",
  8124. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8125. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8126. "shasum": "",
  8127. "mirrors": [
  8128. {
  8129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8130. "preferred": true
  8131. }
  8132. ]
  8133. },
  8134. "require": {
  8135. "facade/ignition-contracts": "~1.0",
  8136. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8137. "php": "^7.1|^8.0",
  8138. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8139. "symfony/mime": "^3.4|^4.0|^5.1",
  8140. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8141. },
  8142. "require-dev": {
  8143. "friendsofphp/php-cs-fixer": "^2.14",
  8144. "phpunit/phpunit": "^7.5",
  8145. "spatie/phpunit-snapshot-assertions": "^2.0"
  8146. },
  8147. "type": "library",
  8148. "extra": {
  8149. "branch-alias": {
  8150. "dev-master": "1.0-dev"
  8151. }
  8152. },
  8153. "autoload": {
  8154. "files": [
  8155. "src/helpers.php"
  8156. ],
  8157. "psr-4": {
  8158. "Facade\\FlareClient\\": "src"
  8159. }
  8160. },
  8161. "notification-url": "https://packagist.org/downloads/",
  8162. "license": [
  8163. "MIT"
  8164. ],
  8165. "description": "Send PHP errors to Flare",
  8166. "homepage": "https://github.com/facade/flare-client-php",
  8167. "keywords": [
  8168. "exception",
  8169. "facade",
  8170. "flare",
  8171. "reporting"
  8172. ],
  8173. "support": {
  8174. "issues": "https://github.com/facade/flare-client-php/issues",
  8175. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8176. },
  8177. "funding": [
  8178. {
  8179. "url": "https://github.com/spatie",
  8180. "type": "github"
  8181. }
  8182. ],
  8183. "time": "2022-08-09T11:23:57+00:00"
  8184. },
  8185. {
  8186. "name": "facade/ignition",
  8187. "version": "2.17.7",
  8188. "source": {
  8189. "type": "git",
  8190. "url": "https://github.com/facade/ignition.git",
  8191. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8192. },
  8193. "dist": {
  8194. "type": "zip",
  8195. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8196. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8197. "shasum": "",
  8198. "mirrors": [
  8199. {
  8200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8201. "preferred": true
  8202. }
  8203. ]
  8204. },
  8205. "require": {
  8206. "ext-curl": "*",
  8207. "ext-json": "*",
  8208. "ext-mbstring": "*",
  8209. "facade/flare-client-php": "^1.9.1",
  8210. "facade/ignition-contracts": "^1.0.2",
  8211. "illuminate/support": "^7.0|^8.0",
  8212. "monolog/monolog": "^2.0",
  8213. "php": "^7.2.5|^8.0",
  8214. "symfony/console": "^5.0",
  8215. "symfony/var-dumper": "^5.0"
  8216. },
  8217. "require-dev": {
  8218. "friendsofphp/php-cs-fixer": "^2.14",
  8219. "livewire/livewire": "^2.4",
  8220. "mockery/mockery": "^1.3",
  8221. "orchestra/testbench": "^5.0|^6.0",
  8222. "psalm/plugin-laravel": "^1.2"
  8223. },
  8224. "suggest": {
  8225. "laravel/telescope": "^3.1"
  8226. },
  8227. "type": "library",
  8228. "extra": {
  8229. "branch-alias": {
  8230. "dev-master": "2.x-dev"
  8231. },
  8232. "laravel": {
  8233. "providers": [
  8234. "Facade\\Ignition\\IgnitionServiceProvider"
  8235. ],
  8236. "aliases": {
  8237. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8238. }
  8239. }
  8240. },
  8241. "autoload": {
  8242. "files": [
  8243. "src/helpers.php"
  8244. ],
  8245. "psr-4": {
  8246. "Facade\\Ignition\\": "src"
  8247. }
  8248. },
  8249. "notification-url": "https://packagist.org/downloads/",
  8250. "license": [
  8251. "MIT"
  8252. ],
  8253. "description": "A beautiful error page for Laravel applications.",
  8254. "homepage": "https://github.com/facade/ignition",
  8255. "keywords": [
  8256. "error",
  8257. "flare",
  8258. "laravel",
  8259. "page"
  8260. ],
  8261. "support": {
  8262. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8263. "forum": "https://twitter.com/flareappio",
  8264. "issues": "https://github.com/facade/ignition/issues",
  8265. "source": "https://github.com/facade/ignition"
  8266. },
  8267. "time": "2023-01-26T12:34:59+00:00"
  8268. },
  8269. {
  8270. "name": "facade/ignition-contracts",
  8271. "version": "1.0.2",
  8272. "source": {
  8273. "type": "git",
  8274. "url": "https://github.com/facade/ignition-contracts.git",
  8275. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8276. },
  8277. "dist": {
  8278. "type": "zip",
  8279. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8280. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8281. "shasum": "",
  8282. "mirrors": [
  8283. {
  8284. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8285. "preferred": true
  8286. }
  8287. ]
  8288. },
  8289. "require": {
  8290. "php": "^7.3|^8.0"
  8291. },
  8292. "require-dev": {
  8293. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8294. "phpunit/phpunit": "^9.3.11",
  8295. "vimeo/psalm": "^3.17.1"
  8296. },
  8297. "type": "library",
  8298. "autoload": {
  8299. "psr-4": {
  8300. "Facade\\IgnitionContracts\\": "src"
  8301. }
  8302. },
  8303. "notification-url": "https://packagist.org/downloads/",
  8304. "license": [
  8305. "MIT"
  8306. ],
  8307. "authors": [
  8308. {
  8309. "name": "Freek Van der Herten",
  8310. "email": "freek@spatie.be",
  8311. "homepage": "https://flareapp.io",
  8312. "role": "Developer"
  8313. }
  8314. ],
  8315. "description": "Solution contracts for Ignition",
  8316. "homepage": "https://github.com/facade/ignition-contracts",
  8317. "keywords": [
  8318. "contracts",
  8319. "flare",
  8320. "ignition"
  8321. ],
  8322. "support": {
  8323. "issues": "https://github.com/facade/ignition-contracts/issues",
  8324. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8325. },
  8326. "time": "2020-10-16T08:27:54+00:00"
  8327. },
  8328. {
  8329. "name": "fakerphp/faker",
  8330. "version": "v1.23.1",
  8331. "source": {
  8332. "type": "git",
  8333. "url": "https://github.com/FakerPHP/Faker.git",
  8334. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8335. },
  8336. "dist": {
  8337. "type": "zip",
  8338. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8339. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8340. "shasum": "",
  8341. "mirrors": [
  8342. {
  8343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8344. "preferred": true
  8345. }
  8346. ]
  8347. },
  8348. "require": {
  8349. "php": "^7.4 || ^8.0",
  8350. "psr/container": "^1.0 || ^2.0",
  8351. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8352. },
  8353. "conflict": {
  8354. "fzaninotto/faker": "*"
  8355. },
  8356. "require-dev": {
  8357. "bamarni/composer-bin-plugin": "^1.4.1",
  8358. "doctrine/persistence": "^1.3 || ^2.0",
  8359. "ext-intl": "*",
  8360. "phpunit/phpunit": "^9.5.26",
  8361. "symfony/phpunit-bridge": "^5.4.16"
  8362. },
  8363. "suggest": {
  8364. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8365. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8366. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8367. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8368. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8369. },
  8370. "type": "library",
  8371. "autoload": {
  8372. "psr-4": {
  8373. "Faker\\": "src/Faker/"
  8374. }
  8375. },
  8376. "notification-url": "https://packagist.org/downloads/",
  8377. "license": [
  8378. "MIT"
  8379. ],
  8380. "authors": [
  8381. {
  8382. "name": "François Zaninotto"
  8383. }
  8384. ],
  8385. "description": "Faker is a PHP library that generates fake data for you.",
  8386. "keywords": [
  8387. "data",
  8388. "faker",
  8389. "fixtures"
  8390. ],
  8391. "support": {
  8392. "issues": "https://github.com/FakerPHP/Faker/issues",
  8393. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8394. },
  8395. "time": "2024-01-02T13:46:09+00:00"
  8396. },
  8397. {
  8398. "name": "filp/whoops",
  8399. "version": "2.16.0",
  8400. "source": {
  8401. "type": "git",
  8402. "url": "https://github.com/filp/whoops.git",
  8403. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  8404. },
  8405. "dist": {
  8406. "type": "zip",
  8407. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  8408. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  8409. "shasum": "",
  8410. "mirrors": [
  8411. {
  8412. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8413. "preferred": true
  8414. }
  8415. ]
  8416. },
  8417. "require": {
  8418. "php": "^7.1 || ^8.0",
  8419. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8420. },
  8421. "require-dev": {
  8422. "mockery/mockery": "^1.0",
  8423. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8424. "symfony/var-dumper": "^4.0 || ^5.0"
  8425. },
  8426. "suggest": {
  8427. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8428. "whoops/soap": "Formats errors as SOAP responses"
  8429. },
  8430. "type": "library",
  8431. "extra": {
  8432. "branch-alias": {
  8433. "dev-master": "2.7-dev"
  8434. }
  8435. },
  8436. "autoload": {
  8437. "psr-4": {
  8438. "Whoops\\": "src/Whoops/"
  8439. }
  8440. },
  8441. "notification-url": "https://packagist.org/downloads/",
  8442. "license": [
  8443. "MIT"
  8444. ],
  8445. "authors": [
  8446. {
  8447. "name": "Filipe Dobreira",
  8448. "homepage": "https://github.com/filp",
  8449. "role": "Developer"
  8450. }
  8451. ],
  8452. "description": "php error handling for cool kids",
  8453. "homepage": "https://filp.github.io/whoops/",
  8454. "keywords": [
  8455. "error",
  8456. "exception",
  8457. "handling",
  8458. "library",
  8459. "throwable",
  8460. "whoops"
  8461. ],
  8462. "support": {
  8463. "issues": "https://github.com/filp/whoops/issues",
  8464. "source": "https://github.com/filp/whoops/tree/2.16.0"
  8465. },
  8466. "funding": [
  8467. {
  8468. "url": "https://github.com/denis-sokolov",
  8469. "type": "github"
  8470. }
  8471. ],
  8472. "time": "2024-09-25T12:00:00+00:00"
  8473. },
  8474. {
  8475. "name": "hamcrest/hamcrest-php",
  8476. "version": "v2.0.1",
  8477. "source": {
  8478. "type": "git",
  8479. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8480. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8481. },
  8482. "dist": {
  8483. "type": "zip",
  8484. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8485. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8486. "shasum": "",
  8487. "mirrors": [
  8488. {
  8489. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8490. "preferred": true
  8491. }
  8492. ]
  8493. },
  8494. "require": {
  8495. "php": "^5.3|^7.0|^8.0"
  8496. },
  8497. "replace": {
  8498. "cordoval/hamcrest-php": "*",
  8499. "davedevelopment/hamcrest-php": "*",
  8500. "kodova/hamcrest-php": "*"
  8501. },
  8502. "require-dev": {
  8503. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8504. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8505. },
  8506. "type": "library",
  8507. "extra": {
  8508. "branch-alias": {
  8509. "dev-master": "2.1-dev"
  8510. }
  8511. },
  8512. "autoload": {
  8513. "classmap": [
  8514. "hamcrest"
  8515. ]
  8516. },
  8517. "notification-url": "https://packagist.org/downloads/",
  8518. "license": [
  8519. "BSD-3-Clause"
  8520. ],
  8521. "description": "This is the PHP port of Hamcrest Matchers",
  8522. "keywords": [
  8523. "test"
  8524. ],
  8525. "support": {
  8526. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8527. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8528. },
  8529. "time": "2020-07-09T08:09:16+00:00"
  8530. },
  8531. {
  8532. "name": "mockery/mockery",
  8533. "version": "1.6.12",
  8534. "source": {
  8535. "type": "git",
  8536. "url": "https://github.com/mockery/mockery.git",
  8537. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8538. },
  8539. "dist": {
  8540. "type": "zip",
  8541. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8542. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8543. "shasum": "",
  8544. "mirrors": [
  8545. {
  8546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8547. "preferred": true
  8548. }
  8549. ]
  8550. },
  8551. "require": {
  8552. "hamcrest/hamcrest-php": "^2.0.1",
  8553. "lib-pcre": ">=7.0",
  8554. "php": ">=7.3"
  8555. },
  8556. "conflict": {
  8557. "phpunit/phpunit": "<8.0"
  8558. },
  8559. "require-dev": {
  8560. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8561. "symplify/easy-coding-standard": "^12.1.14"
  8562. },
  8563. "type": "library",
  8564. "autoload": {
  8565. "files": [
  8566. "library/helpers.php",
  8567. "library/Mockery.php"
  8568. ],
  8569. "psr-4": {
  8570. "Mockery\\": "library/Mockery"
  8571. }
  8572. },
  8573. "notification-url": "https://packagist.org/downloads/",
  8574. "license": [
  8575. "BSD-3-Clause"
  8576. ],
  8577. "authors": [
  8578. {
  8579. "name": "Pádraic Brady",
  8580. "email": "padraic.brady@gmail.com",
  8581. "homepage": "https://github.com/padraic",
  8582. "role": "Author"
  8583. },
  8584. {
  8585. "name": "Dave Marshall",
  8586. "email": "dave.marshall@atstsolutions.co.uk",
  8587. "homepage": "https://davedevelopment.co.uk",
  8588. "role": "Developer"
  8589. },
  8590. {
  8591. "name": "Nathanael Esayeas",
  8592. "email": "nathanael.esayeas@protonmail.com",
  8593. "homepage": "https://github.com/ghostwriter",
  8594. "role": "Lead Developer"
  8595. }
  8596. ],
  8597. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8598. "homepage": "https://github.com/mockery/mockery",
  8599. "keywords": [
  8600. "BDD",
  8601. "TDD",
  8602. "library",
  8603. "mock",
  8604. "mock objects",
  8605. "mockery",
  8606. "stub",
  8607. "test",
  8608. "test double",
  8609. "testing"
  8610. ],
  8611. "support": {
  8612. "docs": "https://docs.mockery.io/",
  8613. "issues": "https://github.com/mockery/mockery/issues",
  8614. "rss": "https://github.com/mockery/mockery/releases.atom",
  8615. "security": "https://github.com/mockery/mockery/security/advisories",
  8616. "source": "https://github.com/mockery/mockery"
  8617. },
  8618. "time": "2024-05-16T03:13:13+00:00"
  8619. },
  8620. {
  8621. "name": "myclabs/deep-copy",
  8622. "version": "1.13.3",
  8623. "source": {
  8624. "type": "git",
  8625. "url": "https://github.com/myclabs/DeepCopy.git",
  8626. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8627. },
  8628. "dist": {
  8629. "type": "zip",
  8630. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8631. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8632. "shasum": "",
  8633. "mirrors": [
  8634. {
  8635. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8636. "preferred": true
  8637. }
  8638. ]
  8639. },
  8640. "require": {
  8641. "php": "^7.1 || ^8.0"
  8642. },
  8643. "conflict": {
  8644. "doctrine/collections": "<1.6.8",
  8645. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8646. },
  8647. "require-dev": {
  8648. "doctrine/collections": "^1.6.8",
  8649. "doctrine/common": "^2.13.3 || ^3.2.2",
  8650. "phpspec/prophecy": "^1.10",
  8651. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8652. },
  8653. "type": "library",
  8654. "autoload": {
  8655. "files": [
  8656. "src/DeepCopy/deep_copy.php"
  8657. ],
  8658. "psr-4": {
  8659. "DeepCopy\\": "src/DeepCopy/"
  8660. }
  8661. },
  8662. "notification-url": "https://packagist.org/downloads/",
  8663. "license": [
  8664. "MIT"
  8665. ],
  8666. "description": "Create deep copies (clones) of your objects",
  8667. "keywords": [
  8668. "clone",
  8669. "copy",
  8670. "duplicate",
  8671. "object",
  8672. "object graph"
  8673. ],
  8674. "support": {
  8675. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8676. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8677. },
  8678. "funding": [
  8679. {
  8680. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8681. "type": "tidelift"
  8682. }
  8683. ],
  8684. "time": "2025-07-05T12:25:42+00:00"
  8685. },
  8686. {
  8687. "name": "nunomaduro/collision",
  8688. "version": "v5.11.0",
  8689. "source": {
  8690. "type": "git",
  8691. "url": "https://github.com/nunomaduro/collision.git",
  8692. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8693. },
  8694. "dist": {
  8695. "type": "zip",
  8696. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8697. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8698. "shasum": "",
  8699. "mirrors": [
  8700. {
  8701. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8702. "preferred": true
  8703. }
  8704. ]
  8705. },
  8706. "require": {
  8707. "facade/ignition-contracts": "^1.0",
  8708. "filp/whoops": "^2.14.3",
  8709. "php": "^7.3 || ^8.0",
  8710. "symfony/console": "^5.0"
  8711. },
  8712. "require-dev": {
  8713. "brianium/paratest": "^6.1",
  8714. "fideloper/proxy": "^4.4.1",
  8715. "fruitcake/laravel-cors": "^2.0.3",
  8716. "laravel/framework": "8.x-dev",
  8717. "nunomaduro/larastan": "^0.6.2",
  8718. "nunomaduro/mock-final-classes": "^1.0",
  8719. "orchestra/testbench": "^6.0",
  8720. "phpstan/phpstan": "^0.12.64",
  8721. "phpunit/phpunit": "^9.5.0"
  8722. },
  8723. "type": "library",
  8724. "extra": {
  8725. "laravel": {
  8726. "providers": [
  8727. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8728. ]
  8729. }
  8730. },
  8731. "autoload": {
  8732. "psr-4": {
  8733. "NunoMaduro\\Collision\\": "src/"
  8734. }
  8735. },
  8736. "notification-url": "https://packagist.org/downloads/",
  8737. "license": [
  8738. "MIT"
  8739. ],
  8740. "authors": [
  8741. {
  8742. "name": "Nuno Maduro",
  8743. "email": "enunomaduro@gmail.com"
  8744. }
  8745. ],
  8746. "description": "Cli error handling for console/command-line PHP applications.",
  8747. "keywords": [
  8748. "artisan",
  8749. "cli",
  8750. "command-line",
  8751. "console",
  8752. "error",
  8753. "handling",
  8754. "laravel",
  8755. "laravel-zero",
  8756. "php",
  8757. "symfony"
  8758. ],
  8759. "support": {
  8760. "issues": "https://github.com/nunomaduro/collision/issues",
  8761. "source": "https://github.com/nunomaduro/collision"
  8762. },
  8763. "funding": [
  8764. {
  8765. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8766. "type": "custom"
  8767. },
  8768. {
  8769. "url": "https://github.com/nunomaduro",
  8770. "type": "github"
  8771. },
  8772. {
  8773. "url": "https://www.patreon.com/nunomaduro",
  8774. "type": "patreon"
  8775. }
  8776. ],
  8777. "time": "2022-01-10T16:22:52+00:00"
  8778. },
  8779. {
  8780. "name": "phar-io/manifest",
  8781. "version": "dev-master",
  8782. "source": {
  8783. "type": "git",
  8784. "url": "https://github.com/phar-io/manifest.git",
  8785. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8786. },
  8787. "dist": {
  8788. "type": "zip",
  8789. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8790. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8791. "shasum": "",
  8792. "mirrors": [
  8793. {
  8794. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8795. "preferred": true
  8796. }
  8797. ]
  8798. },
  8799. "require": {
  8800. "ext-dom": "*",
  8801. "ext-libxml": "*",
  8802. "ext-phar": "*",
  8803. "ext-xmlwriter": "*",
  8804. "phar-io/version": "^3.0.1",
  8805. "php": "^7.2 || ^8.0"
  8806. },
  8807. "default-branch": true,
  8808. "type": "library",
  8809. "extra": {
  8810. "branch-alias": {
  8811. "dev-master": "2.0.x-dev"
  8812. }
  8813. },
  8814. "autoload": {
  8815. "classmap": [
  8816. "src/"
  8817. ]
  8818. },
  8819. "notification-url": "https://packagist.org/downloads/",
  8820. "license": [
  8821. "BSD-3-Clause"
  8822. ],
  8823. "authors": [
  8824. {
  8825. "name": "Arne Blankerts",
  8826. "email": "arne@blankerts.de",
  8827. "role": "Developer"
  8828. },
  8829. {
  8830. "name": "Sebastian Heuer",
  8831. "email": "sebastian@phpeople.de",
  8832. "role": "Developer"
  8833. },
  8834. {
  8835. "name": "Sebastian Bergmann",
  8836. "email": "sebastian@phpunit.de",
  8837. "role": "Developer"
  8838. }
  8839. ],
  8840. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8841. "support": {
  8842. "issues": "https://github.com/phar-io/manifest/issues",
  8843. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8844. },
  8845. "funding": [
  8846. {
  8847. "url": "https://github.com/theseer",
  8848. "type": "github"
  8849. }
  8850. ],
  8851. "time": "2024-03-03T12:33:53+00:00"
  8852. },
  8853. {
  8854. "name": "phar-io/version",
  8855. "version": "3.2.1",
  8856. "source": {
  8857. "type": "git",
  8858. "url": "https://github.com/phar-io/version.git",
  8859. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8860. },
  8861. "dist": {
  8862. "type": "zip",
  8863. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8864. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8865. "shasum": "",
  8866. "mirrors": [
  8867. {
  8868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8869. "preferred": true
  8870. }
  8871. ]
  8872. },
  8873. "require": {
  8874. "php": "^7.2 || ^8.0"
  8875. },
  8876. "type": "library",
  8877. "autoload": {
  8878. "classmap": [
  8879. "src/"
  8880. ]
  8881. },
  8882. "notification-url": "https://packagist.org/downloads/",
  8883. "license": [
  8884. "BSD-3-Clause"
  8885. ],
  8886. "authors": [
  8887. {
  8888. "name": "Arne Blankerts",
  8889. "email": "arne@blankerts.de",
  8890. "role": "Developer"
  8891. },
  8892. {
  8893. "name": "Sebastian Heuer",
  8894. "email": "sebastian@phpeople.de",
  8895. "role": "Developer"
  8896. },
  8897. {
  8898. "name": "Sebastian Bergmann",
  8899. "email": "sebastian@phpunit.de",
  8900. "role": "Developer"
  8901. }
  8902. ],
  8903. "description": "Library for handling version information and constraints",
  8904. "support": {
  8905. "issues": "https://github.com/phar-io/version/issues",
  8906. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8907. },
  8908. "time": "2022-02-21T01:04:05+00:00"
  8909. },
  8910. {
  8911. "name": "phpunit/php-code-coverage",
  8912. "version": "9.2.32",
  8913. "source": {
  8914. "type": "git",
  8915. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8916. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  8917. },
  8918. "dist": {
  8919. "type": "zip",
  8920. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8921. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8922. "shasum": "",
  8923. "mirrors": [
  8924. {
  8925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8926. "preferred": true
  8927. }
  8928. ]
  8929. },
  8930. "require": {
  8931. "ext-dom": "*",
  8932. "ext-libxml": "*",
  8933. "ext-xmlwriter": "*",
  8934. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8935. "php": ">=7.3",
  8936. "phpunit/php-file-iterator": "^3.0.6",
  8937. "phpunit/php-text-template": "^2.0.4",
  8938. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  8939. "sebastian/complexity": "^2.0.3",
  8940. "sebastian/environment": "^5.1.5",
  8941. "sebastian/lines-of-code": "^1.0.4",
  8942. "sebastian/version": "^3.0.2",
  8943. "theseer/tokenizer": "^1.2.3"
  8944. },
  8945. "require-dev": {
  8946. "phpunit/phpunit": "^9.6"
  8947. },
  8948. "suggest": {
  8949. "ext-pcov": "PHP extension that provides line coverage",
  8950. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8951. },
  8952. "type": "library",
  8953. "extra": {
  8954. "branch-alias": {
  8955. "dev-main": "9.2.x-dev"
  8956. }
  8957. },
  8958. "autoload": {
  8959. "classmap": [
  8960. "src/"
  8961. ]
  8962. },
  8963. "notification-url": "https://packagist.org/downloads/",
  8964. "license": [
  8965. "BSD-3-Clause"
  8966. ],
  8967. "authors": [
  8968. {
  8969. "name": "Sebastian Bergmann",
  8970. "email": "sebastian@phpunit.de",
  8971. "role": "lead"
  8972. }
  8973. ],
  8974. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8975. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8976. "keywords": [
  8977. "coverage",
  8978. "testing",
  8979. "xunit"
  8980. ],
  8981. "support": {
  8982. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8983. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8984. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  8985. },
  8986. "funding": [
  8987. {
  8988. "url": "https://github.com/sebastianbergmann",
  8989. "type": "github"
  8990. }
  8991. ],
  8992. "time": "2024-08-22T04:23:01+00:00"
  8993. },
  8994. {
  8995. "name": "phpunit/php-file-iterator",
  8996. "version": "3.0.6",
  8997. "source": {
  8998. "type": "git",
  8999. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9000. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9001. },
  9002. "dist": {
  9003. "type": "zip",
  9004. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9005. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9006. "shasum": "",
  9007. "mirrors": [
  9008. {
  9009. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9010. "preferred": true
  9011. }
  9012. ]
  9013. },
  9014. "require": {
  9015. "php": ">=7.3"
  9016. },
  9017. "require-dev": {
  9018. "phpunit/phpunit": "^9.3"
  9019. },
  9020. "type": "library",
  9021. "extra": {
  9022. "branch-alias": {
  9023. "dev-master": "3.0-dev"
  9024. }
  9025. },
  9026. "autoload": {
  9027. "classmap": [
  9028. "src/"
  9029. ]
  9030. },
  9031. "notification-url": "https://packagist.org/downloads/",
  9032. "license": [
  9033. "BSD-3-Clause"
  9034. ],
  9035. "authors": [
  9036. {
  9037. "name": "Sebastian Bergmann",
  9038. "email": "sebastian@phpunit.de",
  9039. "role": "lead"
  9040. }
  9041. ],
  9042. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9043. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9044. "keywords": [
  9045. "filesystem",
  9046. "iterator"
  9047. ],
  9048. "support": {
  9049. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9050. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9051. },
  9052. "funding": [
  9053. {
  9054. "url": "https://github.com/sebastianbergmann",
  9055. "type": "github"
  9056. }
  9057. ],
  9058. "time": "2021-12-02T12:48:52+00:00"
  9059. },
  9060. {
  9061. "name": "phpunit/php-invoker",
  9062. "version": "3.1.1",
  9063. "source": {
  9064. "type": "git",
  9065. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9066. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9067. },
  9068. "dist": {
  9069. "type": "zip",
  9070. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9071. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9072. "shasum": "",
  9073. "mirrors": [
  9074. {
  9075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9076. "preferred": true
  9077. }
  9078. ]
  9079. },
  9080. "require": {
  9081. "php": ">=7.3"
  9082. },
  9083. "require-dev": {
  9084. "ext-pcntl": "*",
  9085. "phpunit/phpunit": "^9.3"
  9086. },
  9087. "suggest": {
  9088. "ext-pcntl": "*"
  9089. },
  9090. "type": "library",
  9091. "extra": {
  9092. "branch-alias": {
  9093. "dev-master": "3.1-dev"
  9094. }
  9095. },
  9096. "autoload": {
  9097. "classmap": [
  9098. "src/"
  9099. ]
  9100. },
  9101. "notification-url": "https://packagist.org/downloads/",
  9102. "license": [
  9103. "BSD-3-Clause"
  9104. ],
  9105. "authors": [
  9106. {
  9107. "name": "Sebastian Bergmann",
  9108. "email": "sebastian@phpunit.de",
  9109. "role": "lead"
  9110. }
  9111. ],
  9112. "description": "Invoke callables with a timeout",
  9113. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9114. "keywords": [
  9115. "process"
  9116. ],
  9117. "support": {
  9118. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9119. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9120. },
  9121. "funding": [
  9122. {
  9123. "url": "https://github.com/sebastianbergmann",
  9124. "type": "github"
  9125. }
  9126. ],
  9127. "time": "2020-09-28T05:58:55+00:00"
  9128. },
  9129. {
  9130. "name": "phpunit/php-text-template",
  9131. "version": "2.0.4",
  9132. "source": {
  9133. "type": "git",
  9134. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9135. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9136. },
  9137. "dist": {
  9138. "type": "zip",
  9139. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9140. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9141. "shasum": "",
  9142. "mirrors": [
  9143. {
  9144. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9145. "preferred": true
  9146. }
  9147. ]
  9148. },
  9149. "require": {
  9150. "php": ">=7.3"
  9151. },
  9152. "require-dev": {
  9153. "phpunit/phpunit": "^9.3"
  9154. },
  9155. "type": "library",
  9156. "extra": {
  9157. "branch-alias": {
  9158. "dev-master": "2.0-dev"
  9159. }
  9160. },
  9161. "autoload": {
  9162. "classmap": [
  9163. "src/"
  9164. ]
  9165. },
  9166. "notification-url": "https://packagist.org/downloads/",
  9167. "license": [
  9168. "BSD-3-Clause"
  9169. ],
  9170. "authors": [
  9171. {
  9172. "name": "Sebastian Bergmann",
  9173. "email": "sebastian@phpunit.de",
  9174. "role": "lead"
  9175. }
  9176. ],
  9177. "description": "Simple template engine.",
  9178. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9179. "keywords": [
  9180. "template"
  9181. ],
  9182. "support": {
  9183. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9184. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9185. },
  9186. "funding": [
  9187. {
  9188. "url": "https://github.com/sebastianbergmann",
  9189. "type": "github"
  9190. }
  9191. ],
  9192. "time": "2020-10-26T05:33:50+00:00"
  9193. },
  9194. {
  9195. "name": "phpunit/php-timer",
  9196. "version": "5.0.3",
  9197. "source": {
  9198. "type": "git",
  9199. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9200. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9201. },
  9202. "dist": {
  9203. "type": "zip",
  9204. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9205. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9206. "shasum": "",
  9207. "mirrors": [
  9208. {
  9209. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9210. "preferred": true
  9211. }
  9212. ]
  9213. },
  9214. "require": {
  9215. "php": ">=7.3"
  9216. },
  9217. "require-dev": {
  9218. "phpunit/phpunit": "^9.3"
  9219. },
  9220. "type": "library",
  9221. "extra": {
  9222. "branch-alias": {
  9223. "dev-master": "5.0-dev"
  9224. }
  9225. },
  9226. "autoload": {
  9227. "classmap": [
  9228. "src/"
  9229. ]
  9230. },
  9231. "notification-url": "https://packagist.org/downloads/",
  9232. "license": [
  9233. "BSD-3-Clause"
  9234. ],
  9235. "authors": [
  9236. {
  9237. "name": "Sebastian Bergmann",
  9238. "email": "sebastian@phpunit.de",
  9239. "role": "lead"
  9240. }
  9241. ],
  9242. "description": "Utility class for timing",
  9243. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9244. "keywords": [
  9245. "timer"
  9246. ],
  9247. "support": {
  9248. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9249. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9250. },
  9251. "funding": [
  9252. {
  9253. "url": "https://github.com/sebastianbergmann",
  9254. "type": "github"
  9255. }
  9256. ],
  9257. "time": "2020-10-26T13:16:10+00:00"
  9258. },
  9259. {
  9260. "name": "phpunit/phpunit",
  9261. "version": "9.6.22",
  9262. "source": {
  9263. "type": "git",
  9264. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9265. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c"
  9266. },
  9267. "dist": {
  9268. "type": "zip",
  9269. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  9270. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  9271. "shasum": "",
  9272. "mirrors": [
  9273. {
  9274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9275. "preferred": true
  9276. }
  9277. ]
  9278. },
  9279. "require": {
  9280. "doctrine/instantiator": "^1.5.0 || ^2",
  9281. "ext-dom": "*",
  9282. "ext-json": "*",
  9283. "ext-libxml": "*",
  9284. "ext-mbstring": "*",
  9285. "ext-xml": "*",
  9286. "ext-xmlwriter": "*",
  9287. "myclabs/deep-copy": "^1.12.1",
  9288. "phar-io/manifest": "^2.0.4",
  9289. "phar-io/version": "^3.2.1",
  9290. "php": ">=7.3",
  9291. "phpunit/php-code-coverage": "^9.2.32",
  9292. "phpunit/php-file-iterator": "^3.0.6",
  9293. "phpunit/php-invoker": "^3.1.1",
  9294. "phpunit/php-text-template": "^2.0.4",
  9295. "phpunit/php-timer": "^5.0.3",
  9296. "sebastian/cli-parser": "^1.0.2",
  9297. "sebastian/code-unit": "^1.0.8",
  9298. "sebastian/comparator": "^4.0.8",
  9299. "sebastian/diff": "^4.0.6",
  9300. "sebastian/environment": "^5.1.5",
  9301. "sebastian/exporter": "^4.0.6",
  9302. "sebastian/global-state": "^5.0.7",
  9303. "sebastian/object-enumerator": "^4.0.4",
  9304. "sebastian/resource-operations": "^3.0.4",
  9305. "sebastian/type": "^3.2.1",
  9306. "sebastian/version": "^3.0.2"
  9307. },
  9308. "suggest": {
  9309. "ext-soap": "To be able to generate mocks based on WSDL files",
  9310. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9311. },
  9312. "bin": [
  9313. "phpunit"
  9314. ],
  9315. "type": "library",
  9316. "extra": {
  9317. "branch-alias": {
  9318. "dev-master": "9.6-dev"
  9319. }
  9320. },
  9321. "autoload": {
  9322. "files": [
  9323. "src/Framework/Assert/Functions.php"
  9324. ],
  9325. "classmap": [
  9326. "src/"
  9327. ]
  9328. },
  9329. "notification-url": "https://packagist.org/downloads/",
  9330. "license": [
  9331. "BSD-3-Clause"
  9332. ],
  9333. "authors": [
  9334. {
  9335. "name": "Sebastian Bergmann",
  9336. "email": "sebastian@phpunit.de",
  9337. "role": "lead"
  9338. }
  9339. ],
  9340. "description": "The PHP Unit Testing framework.",
  9341. "homepage": "https://phpunit.de/",
  9342. "keywords": [
  9343. "phpunit",
  9344. "testing",
  9345. "xunit"
  9346. ],
  9347. "support": {
  9348. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9349. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9350. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.22"
  9351. },
  9352. "funding": [
  9353. {
  9354. "url": "https://phpunit.de/sponsors.html",
  9355. "type": "custom"
  9356. },
  9357. {
  9358. "url": "https://github.com/sebastianbergmann",
  9359. "type": "github"
  9360. },
  9361. {
  9362. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9363. "type": "tidelift"
  9364. }
  9365. ],
  9366. "time": "2024-12-05T13:48:26+00:00"
  9367. },
  9368. {
  9369. "name": "sebastian/cli-parser",
  9370. "version": "1.0.2",
  9371. "source": {
  9372. "type": "git",
  9373. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9374. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9375. },
  9376. "dist": {
  9377. "type": "zip",
  9378. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9379. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9380. "shasum": "",
  9381. "mirrors": [
  9382. {
  9383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9384. "preferred": true
  9385. }
  9386. ]
  9387. },
  9388. "require": {
  9389. "php": ">=7.3"
  9390. },
  9391. "require-dev": {
  9392. "phpunit/phpunit": "^9.3"
  9393. },
  9394. "type": "library",
  9395. "extra": {
  9396. "branch-alias": {
  9397. "dev-master": "1.0-dev"
  9398. }
  9399. },
  9400. "autoload": {
  9401. "classmap": [
  9402. "src/"
  9403. ]
  9404. },
  9405. "notification-url": "https://packagist.org/downloads/",
  9406. "license": [
  9407. "BSD-3-Clause"
  9408. ],
  9409. "authors": [
  9410. {
  9411. "name": "Sebastian Bergmann",
  9412. "email": "sebastian@phpunit.de",
  9413. "role": "lead"
  9414. }
  9415. ],
  9416. "description": "Library for parsing CLI options",
  9417. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9418. "support": {
  9419. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9420. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9421. },
  9422. "funding": [
  9423. {
  9424. "url": "https://github.com/sebastianbergmann",
  9425. "type": "github"
  9426. }
  9427. ],
  9428. "time": "2024-03-02T06:27:43+00:00"
  9429. },
  9430. {
  9431. "name": "sebastian/code-unit",
  9432. "version": "1.0.8",
  9433. "source": {
  9434. "type": "git",
  9435. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9436. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9437. },
  9438. "dist": {
  9439. "type": "zip",
  9440. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9441. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9442. "shasum": "",
  9443. "mirrors": [
  9444. {
  9445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9446. "preferred": true
  9447. }
  9448. ]
  9449. },
  9450. "require": {
  9451. "php": ">=7.3"
  9452. },
  9453. "require-dev": {
  9454. "phpunit/phpunit": "^9.3"
  9455. },
  9456. "type": "library",
  9457. "extra": {
  9458. "branch-alias": {
  9459. "dev-master": "1.0-dev"
  9460. }
  9461. },
  9462. "autoload": {
  9463. "classmap": [
  9464. "src/"
  9465. ]
  9466. },
  9467. "notification-url": "https://packagist.org/downloads/",
  9468. "license": [
  9469. "BSD-3-Clause"
  9470. ],
  9471. "authors": [
  9472. {
  9473. "name": "Sebastian Bergmann",
  9474. "email": "sebastian@phpunit.de",
  9475. "role": "lead"
  9476. }
  9477. ],
  9478. "description": "Collection of value objects that represent the PHP code units",
  9479. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9480. "support": {
  9481. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9482. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9483. },
  9484. "funding": [
  9485. {
  9486. "url": "https://github.com/sebastianbergmann",
  9487. "type": "github"
  9488. }
  9489. ],
  9490. "time": "2020-10-26T13:08:54+00:00"
  9491. },
  9492. {
  9493. "name": "sebastian/code-unit-reverse-lookup",
  9494. "version": "2.0.3",
  9495. "source": {
  9496. "type": "git",
  9497. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9498. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9499. },
  9500. "dist": {
  9501. "type": "zip",
  9502. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9503. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9504. "shasum": "",
  9505. "mirrors": [
  9506. {
  9507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9508. "preferred": true
  9509. }
  9510. ]
  9511. },
  9512. "require": {
  9513. "php": ">=7.3"
  9514. },
  9515. "require-dev": {
  9516. "phpunit/phpunit": "^9.3"
  9517. },
  9518. "type": "library",
  9519. "extra": {
  9520. "branch-alias": {
  9521. "dev-master": "2.0-dev"
  9522. }
  9523. },
  9524. "autoload": {
  9525. "classmap": [
  9526. "src/"
  9527. ]
  9528. },
  9529. "notification-url": "https://packagist.org/downloads/",
  9530. "license": [
  9531. "BSD-3-Clause"
  9532. ],
  9533. "authors": [
  9534. {
  9535. "name": "Sebastian Bergmann",
  9536. "email": "sebastian@phpunit.de"
  9537. }
  9538. ],
  9539. "description": "Looks up which function or method a line of code belongs to",
  9540. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9541. "support": {
  9542. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9543. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9544. },
  9545. "funding": [
  9546. {
  9547. "url": "https://github.com/sebastianbergmann",
  9548. "type": "github"
  9549. }
  9550. ],
  9551. "time": "2020-09-28T05:30:19+00:00"
  9552. },
  9553. {
  9554. "name": "sebastian/comparator",
  9555. "version": "4.0.8",
  9556. "source": {
  9557. "type": "git",
  9558. "url": "https://github.com/sebastianbergmann/comparator.git",
  9559. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9560. },
  9561. "dist": {
  9562. "type": "zip",
  9563. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9564. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9565. "shasum": "",
  9566. "mirrors": [
  9567. {
  9568. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9569. "preferred": true
  9570. }
  9571. ]
  9572. },
  9573. "require": {
  9574. "php": ">=7.3",
  9575. "sebastian/diff": "^4.0",
  9576. "sebastian/exporter": "^4.0"
  9577. },
  9578. "require-dev": {
  9579. "phpunit/phpunit": "^9.3"
  9580. },
  9581. "type": "library",
  9582. "extra": {
  9583. "branch-alias": {
  9584. "dev-master": "4.0-dev"
  9585. }
  9586. },
  9587. "autoload": {
  9588. "classmap": [
  9589. "src/"
  9590. ]
  9591. },
  9592. "notification-url": "https://packagist.org/downloads/",
  9593. "license": [
  9594. "BSD-3-Clause"
  9595. ],
  9596. "authors": [
  9597. {
  9598. "name": "Sebastian Bergmann",
  9599. "email": "sebastian@phpunit.de"
  9600. },
  9601. {
  9602. "name": "Jeff Welch",
  9603. "email": "whatthejeff@gmail.com"
  9604. },
  9605. {
  9606. "name": "Volker Dusch",
  9607. "email": "github@wallbash.com"
  9608. },
  9609. {
  9610. "name": "Bernhard Schussek",
  9611. "email": "bschussek@2bepublished.at"
  9612. }
  9613. ],
  9614. "description": "Provides the functionality to compare PHP values for equality",
  9615. "homepage": "https://github.com/sebastianbergmann/comparator",
  9616. "keywords": [
  9617. "comparator",
  9618. "compare",
  9619. "equality"
  9620. ],
  9621. "support": {
  9622. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9623. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9624. },
  9625. "funding": [
  9626. {
  9627. "url": "https://github.com/sebastianbergmann",
  9628. "type": "github"
  9629. }
  9630. ],
  9631. "time": "2022-09-14T12:41:17+00:00"
  9632. },
  9633. {
  9634. "name": "sebastian/complexity",
  9635. "version": "2.0.3",
  9636. "source": {
  9637. "type": "git",
  9638. "url": "https://github.com/sebastianbergmann/complexity.git",
  9639. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9640. },
  9641. "dist": {
  9642. "type": "zip",
  9643. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9644. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9645. "shasum": "",
  9646. "mirrors": [
  9647. {
  9648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9649. "preferred": true
  9650. }
  9651. ]
  9652. },
  9653. "require": {
  9654. "nikic/php-parser": "^4.18 || ^5.0",
  9655. "php": ">=7.3"
  9656. },
  9657. "require-dev": {
  9658. "phpunit/phpunit": "^9.3"
  9659. },
  9660. "type": "library",
  9661. "extra": {
  9662. "branch-alias": {
  9663. "dev-master": "2.0-dev"
  9664. }
  9665. },
  9666. "autoload": {
  9667. "classmap": [
  9668. "src/"
  9669. ]
  9670. },
  9671. "notification-url": "https://packagist.org/downloads/",
  9672. "license": [
  9673. "BSD-3-Clause"
  9674. ],
  9675. "authors": [
  9676. {
  9677. "name": "Sebastian Bergmann",
  9678. "email": "sebastian@phpunit.de",
  9679. "role": "lead"
  9680. }
  9681. ],
  9682. "description": "Library for calculating the complexity of PHP code units",
  9683. "homepage": "https://github.com/sebastianbergmann/complexity",
  9684. "support": {
  9685. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9686. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9687. },
  9688. "funding": [
  9689. {
  9690. "url": "https://github.com/sebastianbergmann",
  9691. "type": "github"
  9692. }
  9693. ],
  9694. "time": "2023-12-22T06:19:30+00:00"
  9695. },
  9696. {
  9697. "name": "sebastian/diff",
  9698. "version": "4.0.6",
  9699. "source": {
  9700. "type": "git",
  9701. "url": "https://github.com/sebastianbergmann/diff.git",
  9702. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9703. },
  9704. "dist": {
  9705. "type": "zip",
  9706. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9707. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9708. "shasum": "",
  9709. "mirrors": [
  9710. {
  9711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9712. "preferred": true
  9713. }
  9714. ]
  9715. },
  9716. "require": {
  9717. "php": ">=7.3"
  9718. },
  9719. "require-dev": {
  9720. "phpunit/phpunit": "^9.3",
  9721. "symfony/process": "^4.2 || ^5"
  9722. },
  9723. "type": "library",
  9724. "extra": {
  9725. "branch-alias": {
  9726. "dev-master": "4.0-dev"
  9727. }
  9728. },
  9729. "autoload": {
  9730. "classmap": [
  9731. "src/"
  9732. ]
  9733. },
  9734. "notification-url": "https://packagist.org/downloads/",
  9735. "license": [
  9736. "BSD-3-Clause"
  9737. ],
  9738. "authors": [
  9739. {
  9740. "name": "Sebastian Bergmann",
  9741. "email": "sebastian@phpunit.de"
  9742. },
  9743. {
  9744. "name": "Kore Nordmann",
  9745. "email": "mail@kore-nordmann.de"
  9746. }
  9747. ],
  9748. "description": "Diff implementation",
  9749. "homepage": "https://github.com/sebastianbergmann/diff",
  9750. "keywords": [
  9751. "diff",
  9752. "udiff",
  9753. "unidiff",
  9754. "unified diff"
  9755. ],
  9756. "support": {
  9757. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9758. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9759. },
  9760. "funding": [
  9761. {
  9762. "url": "https://github.com/sebastianbergmann",
  9763. "type": "github"
  9764. }
  9765. ],
  9766. "time": "2024-03-02T06:30:58+00:00"
  9767. },
  9768. {
  9769. "name": "sebastian/environment",
  9770. "version": "5.1.5",
  9771. "source": {
  9772. "type": "git",
  9773. "url": "https://github.com/sebastianbergmann/environment.git",
  9774. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9775. },
  9776. "dist": {
  9777. "type": "zip",
  9778. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9779. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9780. "shasum": "",
  9781. "mirrors": [
  9782. {
  9783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9784. "preferred": true
  9785. }
  9786. ]
  9787. },
  9788. "require": {
  9789. "php": ">=7.3"
  9790. },
  9791. "require-dev": {
  9792. "phpunit/phpunit": "^9.3"
  9793. },
  9794. "suggest": {
  9795. "ext-posix": "*"
  9796. },
  9797. "type": "library",
  9798. "extra": {
  9799. "branch-alias": {
  9800. "dev-master": "5.1-dev"
  9801. }
  9802. },
  9803. "autoload": {
  9804. "classmap": [
  9805. "src/"
  9806. ]
  9807. },
  9808. "notification-url": "https://packagist.org/downloads/",
  9809. "license": [
  9810. "BSD-3-Clause"
  9811. ],
  9812. "authors": [
  9813. {
  9814. "name": "Sebastian Bergmann",
  9815. "email": "sebastian@phpunit.de"
  9816. }
  9817. ],
  9818. "description": "Provides functionality to handle HHVM/PHP environments",
  9819. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9820. "keywords": [
  9821. "Xdebug",
  9822. "environment",
  9823. "hhvm"
  9824. ],
  9825. "support": {
  9826. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9827. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9828. },
  9829. "funding": [
  9830. {
  9831. "url": "https://github.com/sebastianbergmann",
  9832. "type": "github"
  9833. }
  9834. ],
  9835. "time": "2023-02-03T06:03:51+00:00"
  9836. },
  9837. {
  9838. "name": "sebastian/exporter",
  9839. "version": "4.0.7",
  9840. "source": {
  9841. "type": "git",
  9842. "url": "https://github.com/sebastianbergmann/exporter.git",
  9843. "reference": "eb49b981ef0817890129cb70f774506bebe57740"
  9844. },
  9845. "dist": {
  9846. "type": "zip",
  9847. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/eb49b981ef0817890129cb70f774506bebe57740",
  9848. "reference": "eb49b981ef0817890129cb70f774506bebe57740",
  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. "php": ">=7.3",
  9859. "sebastian/recursion-context": "^4.0"
  9860. },
  9861. "require-dev": {
  9862. "ext-mbstring": "*",
  9863. "phpunit/phpunit": "^9.3"
  9864. },
  9865. "type": "library",
  9866. "extra": {
  9867. "branch-alias": {
  9868. "dev-master": "4.0-dev"
  9869. }
  9870. },
  9871. "autoload": {
  9872. "classmap": [
  9873. "src/"
  9874. ]
  9875. },
  9876. "notification-url": "https://packagist.org/downloads/",
  9877. "license": [
  9878. "BSD-3-Clause"
  9879. ],
  9880. "authors": [
  9881. {
  9882. "name": "Sebastian Bergmann",
  9883. "email": "sebastian@phpunit.de"
  9884. },
  9885. {
  9886. "name": "Jeff Welch",
  9887. "email": "whatthejeff@gmail.com"
  9888. },
  9889. {
  9890. "name": "Volker Dusch",
  9891. "email": "github@wallbash.com"
  9892. },
  9893. {
  9894. "name": "Adam Harvey",
  9895. "email": "aharvey@php.net"
  9896. },
  9897. {
  9898. "name": "Bernhard Schussek",
  9899. "email": "bschussek@gmail.com"
  9900. }
  9901. ],
  9902. "description": "Provides the functionality to export PHP variables for visualization",
  9903. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9904. "keywords": [
  9905. "export",
  9906. "exporter"
  9907. ],
  9908. "support": {
  9909. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9910. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.7"
  9911. },
  9912. "funding": [
  9913. {
  9914. "url": "https://github.com/sebastianbergmann",
  9915. "type": "github"
  9916. },
  9917. {
  9918. "url": "https://liberapay.com/sebastianbergmann",
  9919. "type": "liberapay"
  9920. },
  9921. {
  9922. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9923. "type": "thanks_dev"
  9924. },
  9925. {
  9926. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  9927. "type": "tidelift"
  9928. }
  9929. ],
  9930. "time": "2025-09-22T05:18:21+00:00"
  9931. },
  9932. {
  9933. "name": "sebastian/global-state",
  9934. "version": "5.0.8",
  9935. "source": {
  9936. "type": "git",
  9937. "url": "https://github.com/sebastianbergmann/global-state.git",
  9938. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  9939. },
  9940. "dist": {
  9941. "type": "zip",
  9942. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  9943. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  9944. "shasum": "",
  9945. "mirrors": [
  9946. {
  9947. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9948. "preferred": true
  9949. }
  9950. ]
  9951. },
  9952. "require": {
  9953. "php": ">=7.3",
  9954. "sebastian/object-reflector": "^2.0",
  9955. "sebastian/recursion-context": "^4.0"
  9956. },
  9957. "require-dev": {
  9958. "ext-dom": "*",
  9959. "phpunit/phpunit": "^9.3"
  9960. },
  9961. "suggest": {
  9962. "ext-uopz": "*"
  9963. },
  9964. "type": "library",
  9965. "extra": {
  9966. "branch-alias": {
  9967. "dev-master": "5.0-dev"
  9968. }
  9969. },
  9970. "autoload": {
  9971. "classmap": [
  9972. "src/"
  9973. ]
  9974. },
  9975. "notification-url": "https://packagist.org/downloads/",
  9976. "license": [
  9977. "BSD-3-Clause"
  9978. ],
  9979. "authors": [
  9980. {
  9981. "name": "Sebastian Bergmann",
  9982. "email": "sebastian@phpunit.de"
  9983. }
  9984. ],
  9985. "description": "Snapshotting of global state",
  9986. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9987. "keywords": [
  9988. "global state"
  9989. ],
  9990. "support": {
  9991. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9992. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  9993. },
  9994. "funding": [
  9995. {
  9996. "url": "https://github.com/sebastianbergmann",
  9997. "type": "github"
  9998. },
  9999. {
  10000. "url": "https://liberapay.com/sebastianbergmann",
  10001. "type": "liberapay"
  10002. },
  10003. {
  10004. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10005. "type": "thanks_dev"
  10006. },
  10007. {
  10008. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  10009. "type": "tidelift"
  10010. }
  10011. ],
  10012. "time": "2025-08-10T07:10:35+00:00"
  10013. },
  10014. {
  10015. "name": "sebastian/lines-of-code",
  10016. "version": "1.0.4",
  10017. "source": {
  10018. "type": "git",
  10019. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10020. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10021. },
  10022. "dist": {
  10023. "type": "zip",
  10024. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10025. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10026. "shasum": "",
  10027. "mirrors": [
  10028. {
  10029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10030. "preferred": true
  10031. }
  10032. ]
  10033. },
  10034. "require": {
  10035. "nikic/php-parser": "^4.18 || ^5.0",
  10036. "php": ">=7.3"
  10037. },
  10038. "require-dev": {
  10039. "phpunit/phpunit": "^9.3"
  10040. },
  10041. "type": "library",
  10042. "extra": {
  10043. "branch-alias": {
  10044. "dev-master": "1.0-dev"
  10045. }
  10046. },
  10047. "autoload": {
  10048. "classmap": [
  10049. "src/"
  10050. ]
  10051. },
  10052. "notification-url": "https://packagist.org/downloads/",
  10053. "license": [
  10054. "BSD-3-Clause"
  10055. ],
  10056. "authors": [
  10057. {
  10058. "name": "Sebastian Bergmann",
  10059. "email": "sebastian@phpunit.de",
  10060. "role": "lead"
  10061. }
  10062. ],
  10063. "description": "Library for counting the lines of code in PHP source code",
  10064. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10065. "support": {
  10066. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10067. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10068. },
  10069. "funding": [
  10070. {
  10071. "url": "https://github.com/sebastianbergmann",
  10072. "type": "github"
  10073. }
  10074. ],
  10075. "time": "2023-12-22T06:20:34+00:00"
  10076. },
  10077. {
  10078. "name": "sebastian/object-enumerator",
  10079. "version": "4.0.4",
  10080. "source": {
  10081. "type": "git",
  10082. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10083. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10084. },
  10085. "dist": {
  10086. "type": "zip",
  10087. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10088. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10089. "shasum": "",
  10090. "mirrors": [
  10091. {
  10092. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10093. "preferred": true
  10094. }
  10095. ]
  10096. },
  10097. "require": {
  10098. "php": ">=7.3",
  10099. "sebastian/object-reflector": "^2.0",
  10100. "sebastian/recursion-context": "^4.0"
  10101. },
  10102. "require-dev": {
  10103. "phpunit/phpunit": "^9.3"
  10104. },
  10105. "type": "library",
  10106. "extra": {
  10107. "branch-alias": {
  10108. "dev-master": "4.0-dev"
  10109. }
  10110. },
  10111. "autoload": {
  10112. "classmap": [
  10113. "src/"
  10114. ]
  10115. },
  10116. "notification-url": "https://packagist.org/downloads/",
  10117. "license": [
  10118. "BSD-3-Clause"
  10119. ],
  10120. "authors": [
  10121. {
  10122. "name": "Sebastian Bergmann",
  10123. "email": "sebastian@phpunit.de"
  10124. }
  10125. ],
  10126. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10127. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10128. "support": {
  10129. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10130. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10131. },
  10132. "funding": [
  10133. {
  10134. "url": "https://github.com/sebastianbergmann",
  10135. "type": "github"
  10136. }
  10137. ],
  10138. "time": "2020-10-26T13:12:34+00:00"
  10139. },
  10140. {
  10141. "name": "sebastian/object-reflector",
  10142. "version": "2.0.4",
  10143. "source": {
  10144. "type": "git",
  10145. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10146. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10147. },
  10148. "dist": {
  10149. "type": "zip",
  10150. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10151. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10152. "shasum": "",
  10153. "mirrors": [
  10154. {
  10155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10156. "preferred": true
  10157. }
  10158. ]
  10159. },
  10160. "require": {
  10161. "php": ">=7.3"
  10162. },
  10163. "require-dev": {
  10164. "phpunit/phpunit": "^9.3"
  10165. },
  10166. "type": "library",
  10167. "extra": {
  10168. "branch-alias": {
  10169. "dev-master": "2.0-dev"
  10170. }
  10171. },
  10172. "autoload": {
  10173. "classmap": [
  10174. "src/"
  10175. ]
  10176. },
  10177. "notification-url": "https://packagist.org/downloads/",
  10178. "license": [
  10179. "BSD-3-Clause"
  10180. ],
  10181. "authors": [
  10182. {
  10183. "name": "Sebastian Bergmann",
  10184. "email": "sebastian@phpunit.de"
  10185. }
  10186. ],
  10187. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10188. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10189. "support": {
  10190. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10191. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10192. },
  10193. "funding": [
  10194. {
  10195. "url": "https://github.com/sebastianbergmann",
  10196. "type": "github"
  10197. }
  10198. ],
  10199. "time": "2020-10-26T13:14:26+00:00"
  10200. },
  10201. {
  10202. "name": "sebastian/recursion-context",
  10203. "version": "4.0.5",
  10204. "source": {
  10205. "type": "git",
  10206. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10207. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10208. },
  10209. "dist": {
  10210. "type": "zip",
  10211. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10212. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10213. "shasum": "",
  10214. "mirrors": [
  10215. {
  10216. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10217. "preferred": true
  10218. }
  10219. ]
  10220. },
  10221. "require": {
  10222. "php": ">=7.3"
  10223. },
  10224. "require-dev": {
  10225. "phpunit/phpunit": "^9.3"
  10226. },
  10227. "type": "library",
  10228. "extra": {
  10229. "branch-alias": {
  10230. "dev-master": "4.0-dev"
  10231. }
  10232. },
  10233. "autoload": {
  10234. "classmap": [
  10235. "src/"
  10236. ]
  10237. },
  10238. "notification-url": "https://packagist.org/downloads/",
  10239. "license": [
  10240. "BSD-3-Clause"
  10241. ],
  10242. "authors": [
  10243. {
  10244. "name": "Sebastian Bergmann",
  10245. "email": "sebastian@phpunit.de"
  10246. },
  10247. {
  10248. "name": "Jeff Welch",
  10249. "email": "whatthejeff@gmail.com"
  10250. },
  10251. {
  10252. "name": "Adam Harvey",
  10253. "email": "aharvey@php.net"
  10254. }
  10255. ],
  10256. "description": "Provides functionality to recursively process PHP variables",
  10257. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10258. "support": {
  10259. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10260. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10261. },
  10262. "funding": [
  10263. {
  10264. "url": "https://github.com/sebastianbergmann",
  10265. "type": "github"
  10266. }
  10267. ],
  10268. "time": "2023-02-03T06:07:39+00:00"
  10269. },
  10270. {
  10271. "name": "sebastian/resource-operations",
  10272. "version": "3.0.4",
  10273. "source": {
  10274. "type": "git",
  10275. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10276. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10277. },
  10278. "dist": {
  10279. "type": "zip",
  10280. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10281. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10282. "shasum": "",
  10283. "mirrors": [
  10284. {
  10285. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10286. "preferred": true
  10287. }
  10288. ]
  10289. },
  10290. "require": {
  10291. "php": ">=7.3"
  10292. },
  10293. "require-dev": {
  10294. "phpunit/phpunit": "^9.0"
  10295. },
  10296. "type": "library",
  10297. "extra": {
  10298. "branch-alias": {
  10299. "dev-main": "3.0-dev"
  10300. }
  10301. },
  10302. "autoload": {
  10303. "classmap": [
  10304. "src/"
  10305. ]
  10306. },
  10307. "notification-url": "https://packagist.org/downloads/",
  10308. "license": [
  10309. "BSD-3-Clause"
  10310. ],
  10311. "authors": [
  10312. {
  10313. "name": "Sebastian Bergmann",
  10314. "email": "sebastian@phpunit.de"
  10315. }
  10316. ],
  10317. "description": "Provides a list of PHP built-in functions that operate on resources",
  10318. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10319. "support": {
  10320. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10321. },
  10322. "funding": [
  10323. {
  10324. "url": "https://github.com/sebastianbergmann",
  10325. "type": "github"
  10326. }
  10327. ],
  10328. "abandoned": true,
  10329. "time": "2024-03-14T16:00:52+00:00"
  10330. },
  10331. {
  10332. "name": "sebastian/type",
  10333. "version": "3.2.1",
  10334. "source": {
  10335. "type": "git",
  10336. "url": "https://github.com/sebastianbergmann/type.git",
  10337. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10338. },
  10339. "dist": {
  10340. "type": "zip",
  10341. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10342. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10343. "shasum": "",
  10344. "mirrors": [
  10345. {
  10346. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10347. "preferred": true
  10348. }
  10349. ]
  10350. },
  10351. "require": {
  10352. "php": ">=7.3"
  10353. },
  10354. "require-dev": {
  10355. "phpunit/phpunit": "^9.5"
  10356. },
  10357. "type": "library",
  10358. "extra": {
  10359. "branch-alias": {
  10360. "dev-master": "3.2-dev"
  10361. }
  10362. },
  10363. "autoload": {
  10364. "classmap": [
  10365. "src/"
  10366. ]
  10367. },
  10368. "notification-url": "https://packagist.org/downloads/",
  10369. "license": [
  10370. "BSD-3-Clause"
  10371. ],
  10372. "authors": [
  10373. {
  10374. "name": "Sebastian Bergmann",
  10375. "email": "sebastian@phpunit.de",
  10376. "role": "lead"
  10377. }
  10378. ],
  10379. "description": "Collection of value objects that represent the types of the PHP type system",
  10380. "homepage": "https://github.com/sebastianbergmann/type",
  10381. "support": {
  10382. "issues": "https://github.com/sebastianbergmann/type/issues",
  10383. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10384. },
  10385. "funding": [
  10386. {
  10387. "url": "https://github.com/sebastianbergmann",
  10388. "type": "github"
  10389. }
  10390. ],
  10391. "time": "2023-02-03T06:13:03+00:00"
  10392. },
  10393. {
  10394. "name": "sebastian/version",
  10395. "version": "3.0.2",
  10396. "source": {
  10397. "type": "git",
  10398. "url": "https://github.com/sebastianbergmann/version.git",
  10399. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10400. },
  10401. "dist": {
  10402. "type": "zip",
  10403. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10404. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10405. "shasum": "",
  10406. "mirrors": [
  10407. {
  10408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10409. "preferred": true
  10410. }
  10411. ]
  10412. },
  10413. "require": {
  10414. "php": ">=7.3"
  10415. },
  10416. "type": "library",
  10417. "extra": {
  10418. "branch-alias": {
  10419. "dev-master": "3.0-dev"
  10420. }
  10421. },
  10422. "autoload": {
  10423. "classmap": [
  10424. "src/"
  10425. ]
  10426. },
  10427. "notification-url": "https://packagist.org/downloads/",
  10428. "license": [
  10429. "BSD-3-Clause"
  10430. ],
  10431. "authors": [
  10432. {
  10433. "name": "Sebastian Bergmann",
  10434. "email": "sebastian@phpunit.de",
  10435. "role": "lead"
  10436. }
  10437. ],
  10438. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10439. "homepage": "https://github.com/sebastianbergmann/version",
  10440. "support": {
  10441. "issues": "https://github.com/sebastianbergmann/version/issues",
  10442. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10443. },
  10444. "funding": [
  10445. {
  10446. "url": "https://github.com/sebastianbergmann",
  10447. "type": "github"
  10448. }
  10449. ],
  10450. "time": "2020-09-28T06:39:44+00:00"
  10451. },
  10452. {
  10453. "name": "theseer/tokenizer",
  10454. "version": "1.2.3",
  10455. "source": {
  10456. "type": "git",
  10457. "url": "https://github.com/theseer/tokenizer.git",
  10458. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10459. },
  10460. "dist": {
  10461. "type": "zip",
  10462. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10463. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10464. "shasum": "",
  10465. "mirrors": [
  10466. {
  10467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10468. "preferred": true
  10469. }
  10470. ]
  10471. },
  10472. "require": {
  10473. "ext-dom": "*",
  10474. "ext-tokenizer": "*",
  10475. "ext-xmlwriter": "*",
  10476. "php": "^7.2 || ^8.0"
  10477. },
  10478. "type": "library",
  10479. "autoload": {
  10480. "classmap": [
  10481. "src/"
  10482. ]
  10483. },
  10484. "notification-url": "https://packagist.org/downloads/",
  10485. "license": [
  10486. "BSD-3-Clause"
  10487. ],
  10488. "authors": [
  10489. {
  10490. "name": "Arne Blankerts",
  10491. "email": "arne@blankerts.de",
  10492. "role": "Developer"
  10493. }
  10494. ],
  10495. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10496. "support": {
  10497. "issues": "https://github.com/theseer/tokenizer/issues",
  10498. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10499. },
  10500. "funding": [
  10501. {
  10502. "url": "https://github.com/theseer",
  10503. "type": "github"
  10504. }
  10505. ],
  10506. "time": "2024-03-03T12:36:25+00:00"
  10507. }
  10508. ],
  10509. "aliases": [],
  10510. "minimum-stability": "dev",
  10511. "stability-flags": {
  10512. "fukuball/jieba-php": 20
  10513. },
  10514. "prefer-stable": true,
  10515. "prefer-lowest": false,
  10516. "platform": {
  10517. "php": "^8.0",
  10518. "ext-json": "*"
  10519. },
  10520. "platform-dev": {},
  10521. "plugin-api-version": "2.6.0"
  10522. }