composer.lock 360 KB

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