composer.lock 391 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816
  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": "b0a46dcf3e2d7533be5df979f332f5ab",
  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. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "riku@adbar.io"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  59. },
  60. "time": "2022-10-14T20:31:46+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/credentials",
  64. "version": "1.2.0",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/credentials-php.git",
  68. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/ebcda2e628180b4df235b46a86e1d014c561f5d9",
  73. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.2",
  78. "alibabacloud/tea": "^3.0",
  79. "ext-curl": "*",
  80. "ext-json": "*",
  81. "ext-libxml": "*",
  82. "ext-mbstring": "*",
  83. "ext-openssl": "*",
  84. "ext-simplexml": "*",
  85. "ext-xmlwriter": "*",
  86. "guzzlehttp/guzzle": "^6.3|^7.0",
  87. "php": ">=5.6"
  88. },
  89. "require-dev": {
  90. "composer/composer": "^1.8",
  91. "drupal/coder": "^8.3",
  92. "ext-dom": "*",
  93. "ext-pcre": "*",
  94. "ext-sockets": "*",
  95. "ext-spl": "*",
  96. "mikey179/vfsstream": "^1.6",
  97. "monolog/monolog": "^1.24",
  98. "phpunit/phpunit": "^5.7|^6.6|^9.3",
  99. "psr/cache": "^1.0",
  100. "symfony/dotenv": "^3.4",
  101. "symfony/var-dumper": "^3.4"
  102. },
  103. "suggest": {
  104. "ext-sockets": "To use client-side monitoring"
  105. },
  106. "type": "library",
  107. "autoload": {
  108. "psr-4": {
  109. "AlibabaCloud\\Credentials\\": "src"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "Apache-2.0"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Alibaba Cloud SDK",
  119. "email": "sdk-team@alibabacloud.com",
  120. "homepage": "http://www.alibabacloud.com"
  121. }
  122. ],
  123. "description": "Alibaba Cloud Credentials for PHP",
  124. "homepage": "https://www.alibabacloud.com/",
  125. "keywords": [
  126. "alibaba",
  127. "alibabacloud",
  128. "aliyun",
  129. "client",
  130. "cloud",
  131. "credentials",
  132. "library",
  133. "sdk",
  134. "tool"
  135. ],
  136. "support": {
  137. "issues": "https://github.com/aliyun/credentials-php/issues",
  138. "source": "https://github.com/aliyun/credentials-php"
  139. },
  140. "time": "2024-10-16T13:29:17+00:00"
  141. },
  142. {
  143. "name": "alibabacloud/darabonba-openapi",
  144. "version": "0.2.13",
  145. "source": {
  146. "type": "git",
  147. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  148. "reference": "0213396384e2c064eefd614f3dd53636a63f987f"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/0213396384e2c064eefd614f3dd53636a63f987f",
  153. "reference": "0213396384e2c064eefd614f3dd53636a63f987f",
  154. "shasum": ""
  155. },
  156. "require": {
  157. "alibabacloud/credentials": "^1.1",
  158. "alibabacloud/gateway-spi": "^1",
  159. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  160. "alibabacloud/tea-utils": "^0.2.21",
  161. "alibabacloud/tea-xml": "^0.2",
  162. "php": ">5.5"
  163. },
  164. "type": "library",
  165. "autoload": {
  166. "psr-4": {
  167. "Darabonba\\OpenApi\\": "src"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "Apache-2.0"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Alibaba Cloud SDK",
  177. "email": "sdk-team@alibabacloud.com"
  178. }
  179. ],
  180. "description": "Alibaba Cloud OpenApi Client",
  181. "support": {
  182. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  183. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.13"
  184. },
  185. "time": "2024-07-15T13:11:36+00:00"
  186. },
  187. {
  188. "name": "alibabacloud/dysmsapi-20170525",
  189. "version": "3.1.1",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  193. "reference": "5a301a076b29449a488607cbfbb7f12b8cc50c1f"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/5a301a076b29449a488607cbfbb7f12b8cc50c1f",
  198. "reference": "5a301a076b29449a488607cbfbb7f12b8cc50c1f",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "alibabacloud/darabonba-openapi": "^0.2.13",
  203. "alibabacloud/endpoint-util": "^0.1.0",
  204. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  205. "alibabacloud/tea-utils": "^0.2.21",
  206. "php": ">5.5"
  207. },
  208. "type": "library",
  209. "autoload": {
  210. "psr-4": {
  211. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "Apache-2.0"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Alibaba Cloud SDK",
  221. "email": "sdk-team@alibabacloud.com"
  222. }
  223. ],
  224. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  225. "support": {
  226. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/3.1.1"
  227. },
  228. "time": "2025-01-03T17:14:56+00:00"
  229. },
  230. {
  231. "name": "alibabacloud/endpoint-util",
  232. "version": "0.1.1",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  236. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  241. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "php": ">5.5"
  246. },
  247. "require-dev": {
  248. "phpunit/phpunit": "^4.8.35|^5.4.3"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "AlibabaCloud\\Endpoint\\": "src"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "Apache-2.0"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Alibaba Cloud SDK",
  263. "email": "sdk-team@alibabacloud.com"
  264. }
  265. ],
  266. "description": "Alibaba Cloud Endpoint Library for PHP",
  267. "support": {
  268. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  269. },
  270. "time": "2020-06-04T10:57:15+00:00"
  271. },
  272. {
  273. "name": "alibabacloud/gateway-spi",
  274. "version": "1.0.0",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  278. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  283. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "alibabacloud/credentials": "^1.1",
  288. "php": ">5.5"
  289. },
  290. "type": "library",
  291. "autoload": {
  292. "psr-4": {
  293. "Darabonba\\GatewaySpi\\": "src"
  294. }
  295. },
  296. "notification-url": "https://packagist.org/downloads/",
  297. "license": [
  298. "Apache-2.0"
  299. ],
  300. "authors": [
  301. {
  302. "name": "Alibaba Cloud SDK",
  303. "email": "sdk-team@alibabacloud.com"
  304. }
  305. ],
  306. "description": "Alibaba Cloud Gateway SPI Client",
  307. "support": {
  308. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  309. },
  310. "time": "2022-07-14T05:31:35+00:00"
  311. },
  312. {
  313. "name": "alibabacloud/openapi-util",
  314. "version": "0.2.1",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  318. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  323. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  324. "shasum": ""
  325. },
  326. "require": {
  327. "alibabacloud/tea": "^3.1",
  328. "alibabacloud/tea-utils": "^0.2",
  329. "lizhichao/one-sm": "^1.5",
  330. "php": ">5.5"
  331. },
  332. "require-dev": {
  333. "phpunit/phpunit": "*"
  334. },
  335. "type": "library",
  336. "autoload": {
  337. "psr-4": {
  338. "AlibabaCloud\\OpenApiUtil\\": "src"
  339. }
  340. },
  341. "notification-url": "https://packagist.org/downloads/",
  342. "license": [
  343. "Apache-2.0"
  344. ],
  345. "authors": [
  346. {
  347. "name": "Alibaba Cloud SDK",
  348. "email": "sdk-team@alibabacloud.com"
  349. }
  350. ],
  351. "description": "Alibaba Cloud OpenApi Util",
  352. "support": {
  353. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  354. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  355. },
  356. "time": "2023-01-10T09:10:10+00:00"
  357. },
  358. {
  359. "name": "alibabacloud/tea",
  360. "version": "3.2.1",
  361. "source": {
  362. "type": "git",
  363. "url": "https://github.com/aliyun/tea-php.git",
  364. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  365. },
  366. "dist": {
  367. "type": "zip",
  368. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  369. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  370. "shasum": ""
  371. },
  372. "require": {
  373. "adbario/php-dot-notation": "^2.4",
  374. "ext-curl": "*",
  375. "ext-json": "*",
  376. "ext-libxml": "*",
  377. "ext-mbstring": "*",
  378. "ext-openssl": "*",
  379. "ext-simplexml": "*",
  380. "ext-xmlwriter": "*",
  381. "guzzlehttp/guzzle": "^6.3|^7.0",
  382. "php": ">=5.5"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "*",
  386. "symfony/dotenv": "^3.4",
  387. "symfony/var-dumper": "^3.4"
  388. },
  389. "suggest": {
  390. "ext-sockets": "To use client-side monitoring"
  391. },
  392. "type": "library",
  393. "autoload": {
  394. "psr-4": {
  395. "AlibabaCloud\\Tea\\": "src"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "Apache-2.0"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Alibaba Cloud SDK",
  405. "email": "sdk-team@alibabacloud.com",
  406. "homepage": "http://www.alibabacloud.com"
  407. }
  408. ],
  409. "description": "Client of Tea for PHP",
  410. "homepage": "https://www.alibabacloud.com/",
  411. "keywords": [
  412. "alibabacloud",
  413. "client",
  414. "cloud",
  415. "tea"
  416. ],
  417. "support": {
  418. "issues": "https://github.com/aliyun/tea-php/issues",
  419. "source": "https://github.com/aliyun/tea-php"
  420. },
  421. "time": "2023-05-16T06:43:41+00:00"
  422. },
  423. {
  424. "name": "alibabacloud/tea-utils",
  425. "version": "0.2.21",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  429. "reference": "5039e45714c6456186d267f5d81a4b260a652495"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/5039e45714c6456186d267f5d81a4b260a652495",
  434. "reference": "5039e45714c6456186d267f5d81a4b260a652495",
  435. "shasum": ""
  436. },
  437. "require": {
  438. "alibabacloud/tea": "^3.1",
  439. "php": ">5.5"
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "AlibabaCloud\\Tea\\Utils\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "Apache-2.0"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Alibaba Cloud SDK",
  454. "email": "sdk-team@alibabacloud.com"
  455. }
  456. ],
  457. "description": "Alibaba Cloud Tea Utils for PHP",
  458. "support": {
  459. "issues": "https://github.com/aliyun/tea-util/issues",
  460. "source": "https://github.com/aliyun/tea-util"
  461. },
  462. "time": "2024-07-05T06:05:54+00:00"
  463. },
  464. {
  465. "name": "alibabacloud/tea-xml",
  466. "version": "0.2.4",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  470. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  475. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": ">5.5"
  480. },
  481. "require-dev": {
  482. "phpunit/phpunit": "*",
  483. "symfony/var-dumper": "*"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-4": {
  488. "AlibabaCloud\\Tea\\XML\\": "src"
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "Apache-2.0"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Alibaba Cloud SDK",
  498. "email": "sdk-team@alibabacloud.com"
  499. }
  500. ],
  501. "description": "Alibaba Cloud Tea XML Library for PHP",
  502. "support": {
  503. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  504. },
  505. "time": "2022-08-02T04:12:58+00:00"
  506. },
  507. {
  508. "name": "asm89/stack-cors",
  509. "version": "v2.1.1",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/asm89/stack-cors.git",
  513. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  518. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  519. "shasum": "",
  520. "mirrors": [
  521. {
  522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  523. "preferred": true
  524. }
  525. ]
  526. },
  527. "require": {
  528. "php": "^7.2|^8.0",
  529. "symfony/http-foundation": "^4|^5|^6",
  530. "symfony/http-kernel": "^4|^5|^6"
  531. },
  532. "require-dev": {
  533. "phpunit/phpunit": "^7|^9",
  534. "squizlabs/php_codesniffer": "^3.5"
  535. },
  536. "type": "library",
  537. "extra": {
  538. "branch-alias": {
  539. "dev-master": "2.1-dev"
  540. }
  541. },
  542. "autoload": {
  543. "psr-4": {
  544. "Asm89\\Stack\\": "src/"
  545. }
  546. },
  547. "notification-url": "https://packagist.org/downloads/",
  548. "license": [
  549. "MIT"
  550. ],
  551. "authors": [
  552. {
  553. "name": "Alexander",
  554. "email": "iam.asm89@gmail.com"
  555. }
  556. ],
  557. "description": "Cross-origin resource sharing library and stack middleware",
  558. "homepage": "https://github.com/asm89/stack-cors",
  559. "keywords": [
  560. "cors",
  561. "stack"
  562. ],
  563. "support": {
  564. "issues": "https://github.com/asm89/stack-cors/issues",
  565. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  566. },
  567. "time": "2022-01-18T09:12:03+00:00"
  568. },
  569. {
  570. "name": "brick/math",
  571. "version": "0.9.3",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/brick/math.git",
  575. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  580. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  581. "shasum": "",
  582. "mirrors": [
  583. {
  584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  585. "preferred": true
  586. }
  587. ]
  588. },
  589. "require": {
  590. "ext-json": "*",
  591. "php": "^7.1 || ^8.0"
  592. },
  593. "require-dev": {
  594. "php-coveralls/php-coveralls": "^2.2",
  595. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  596. "vimeo/psalm": "4.9.2"
  597. },
  598. "type": "library",
  599. "autoload": {
  600. "psr-4": {
  601. "Brick\\Math\\": "src/"
  602. }
  603. },
  604. "notification-url": "https://packagist.org/downloads/",
  605. "license": [
  606. "MIT"
  607. ],
  608. "description": "Arbitrary-precision arithmetic library",
  609. "keywords": [
  610. "Arbitrary-precision",
  611. "BigInteger",
  612. "BigRational",
  613. "arithmetic",
  614. "bigdecimal",
  615. "bignum",
  616. "brick",
  617. "math"
  618. ],
  619. "support": {
  620. "issues": "https://github.com/brick/math/issues",
  621. "source": "https://github.com/brick/math/tree/0.9.3"
  622. },
  623. "funding": [
  624. {
  625. "url": "https://github.com/BenMorel",
  626. "type": "github"
  627. },
  628. {
  629. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  630. "type": "tidelift"
  631. }
  632. ],
  633. "time": "2021-08-15T20:50:18+00:00"
  634. },
  635. {
  636. "name": "carbonphp/carbon-doctrine-types",
  637. "version": "2.1.0",
  638. "source": {
  639. "type": "git",
  640. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  641. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  642. },
  643. "dist": {
  644. "type": "zip",
  645. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  646. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  647. "shasum": "",
  648. "mirrors": [
  649. {
  650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  651. "preferred": true
  652. }
  653. ]
  654. },
  655. "require": {
  656. "php": "^7.4 || ^8.0"
  657. },
  658. "conflict": {
  659. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  660. },
  661. "require-dev": {
  662. "doctrine/dbal": "^3.7.0",
  663. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  664. "phpunit/phpunit": "^10.3"
  665. },
  666. "type": "library",
  667. "autoload": {
  668. "psr-4": {
  669. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "MIT"
  675. ],
  676. "authors": [
  677. {
  678. "name": "KyleKatarn",
  679. "email": "kylekatarnls@gmail.com"
  680. }
  681. ],
  682. "description": "Types to use Carbon in Doctrine",
  683. "keywords": [
  684. "carbon",
  685. "date",
  686. "datetime",
  687. "doctrine",
  688. "time"
  689. ],
  690. "support": {
  691. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  692. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  693. },
  694. "funding": [
  695. {
  696. "url": "https://github.com/kylekatarnls",
  697. "type": "github"
  698. },
  699. {
  700. "url": "https://opencollective.com/Carbon",
  701. "type": "open_collective"
  702. },
  703. {
  704. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  705. "type": "tidelift"
  706. }
  707. ],
  708. "time": "2023-12-11T17:09:12+00:00"
  709. },
  710. {
  711. "name": "dflydev/dot-access-data",
  712. "version": "v3.0.2",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  716. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  721. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  722. "shasum": "",
  723. "mirrors": [
  724. {
  725. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  726. "preferred": true
  727. }
  728. ]
  729. },
  730. "require": {
  731. "php": "^7.1 || ^8.0"
  732. },
  733. "require-dev": {
  734. "phpstan/phpstan": "^0.12.42",
  735. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  736. "scrutinizer/ocular": "1.6.0",
  737. "squizlabs/php_codesniffer": "^3.5",
  738. "vimeo/psalm": "^4.0.0"
  739. },
  740. "type": "library",
  741. "extra": {
  742. "branch-alias": {
  743. "dev-main": "3.x-dev"
  744. }
  745. },
  746. "autoload": {
  747. "psr-4": {
  748. "Dflydev\\DotAccessData\\": "src/"
  749. }
  750. },
  751. "notification-url": "https://packagist.org/downloads/",
  752. "license": [
  753. "MIT"
  754. ],
  755. "authors": [
  756. {
  757. "name": "Dragonfly Development Inc.",
  758. "email": "info@dflydev.com",
  759. "homepage": "http://dflydev.com"
  760. },
  761. {
  762. "name": "Beau Simensen",
  763. "email": "beau@dflydev.com",
  764. "homepage": "http://beausimensen.com"
  765. },
  766. {
  767. "name": "Carlos Frutos",
  768. "email": "carlos@kiwing.it",
  769. "homepage": "https://github.com/cfrutos"
  770. },
  771. {
  772. "name": "Colin O'Dell",
  773. "email": "colinodell@gmail.com",
  774. "homepage": "https://www.colinodell.com"
  775. }
  776. ],
  777. "description": "Given a deep data structure, access data by dot notation.",
  778. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  779. "keywords": [
  780. "access",
  781. "data",
  782. "dot",
  783. "notation"
  784. ],
  785. "support": {
  786. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  787. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  788. },
  789. "time": "2022-10-27T11:44:00+00:00"
  790. },
  791. {
  792. "name": "doctrine/inflector",
  793. "version": "2.0.8",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/doctrine/inflector.git",
  797. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  802. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  803. "shasum": "",
  804. "mirrors": [
  805. {
  806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  807. "preferred": true
  808. }
  809. ]
  810. },
  811. "require": {
  812. "php": "^7.2 || ^8.0"
  813. },
  814. "require-dev": {
  815. "doctrine/coding-standard": "^11.0",
  816. "phpstan/phpstan": "^1.8",
  817. "phpstan/phpstan-phpunit": "^1.1",
  818. "phpstan/phpstan-strict-rules": "^1.3",
  819. "phpunit/phpunit": "^8.5 || ^9.5",
  820. "vimeo/psalm": "^4.25 || ^5.4"
  821. },
  822. "type": "library",
  823. "autoload": {
  824. "psr-4": {
  825. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  826. }
  827. },
  828. "notification-url": "https://packagist.org/downloads/",
  829. "license": [
  830. "MIT"
  831. ],
  832. "authors": [
  833. {
  834. "name": "Guilherme Blanco",
  835. "email": "guilhermeblanco@gmail.com"
  836. },
  837. {
  838. "name": "Roman Borschel",
  839. "email": "roman@code-factory.org"
  840. },
  841. {
  842. "name": "Benjamin Eberlei",
  843. "email": "kontakt@beberlei.de"
  844. },
  845. {
  846. "name": "Jonathan Wage",
  847. "email": "jonwage@gmail.com"
  848. },
  849. {
  850. "name": "Johannes Schmitt",
  851. "email": "schmittjoh@gmail.com"
  852. }
  853. ],
  854. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  855. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  856. "keywords": [
  857. "inflection",
  858. "inflector",
  859. "lowercase",
  860. "manipulation",
  861. "php",
  862. "plural",
  863. "singular",
  864. "strings",
  865. "uppercase",
  866. "words"
  867. ],
  868. "support": {
  869. "issues": "https://github.com/doctrine/inflector/issues",
  870. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  871. },
  872. "funding": [
  873. {
  874. "url": "https://www.doctrine-project.org/sponsorship.html",
  875. "type": "custom"
  876. },
  877. {
  878. "url": "https://www.patreon.com/phpdoctrine",
  879. "type": "patreon"
  880. },
  881. {
  882. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  883. "type": "tidelift"
  884. }
  885. ],
  886. "time": "2023-06-16T13:40:37+00:00"
  887. },
  888. {
  889. "name": "doctrine/lexer",
  890. "version": "1.2.3",
  891. "source": {
  892. "type": "git",
  893. "url": "https://github.com/doctrine/lexer.git",
  894. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  895. },
  896. "dist": {
  897. "type": "zip",
  898. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  899. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  900. "shasum": ""
  901. },
  902. "require": {
  903. "php": "^7.1 || ^8.0"
  904. },
  905. "require-dev": {
  906. "doctrine/coding-standard": "^9.0",
  907. "phpstan/phpstan": "^1.3",
  908. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  909. "vimeo/psalm": "^4.11"
  910. },
  911. "type": "library",
  912. "autoload": {
  913. "psr-4": {
  914. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  915. }
  916. },
  917. "notification-url": "https://packagist.org/downloads/",
  918. "license": [
  919. "MIT"
  920. ],
  921. "authors": [
  922. {
  923. "name": "Guilherme Blanco",
  924. "email": "guilhermeblanco@gmail.com"
  925. },
  926. {
  927. "name": "Roman Borschel",
  928. "email": "roman@code-factory.org"
  929. },
  930. {
  931. "name": "Johannes Schmitt",
  932. "email": "schmittjoh@gmail.com"
  933. }
  934. ],
  935. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  936. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  937. "keywords": [
  938. "annotations",
  939. "docblock",
  940. "lexer",
  941. "parser",
  942. "php"
  943. ],
  944. "support": {
  945. "issues": "https://github.com/doctrine/lexer/issues",
  946. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  947. },
  948. "funding": [
  949. {
  950. "url": "https://www.doctrine-project.org/sponsorship.html",
  951. "type": "custom"
  952. },
  953. {
  954. "url": "https://www.patreon.com/phpdoctrine",
  955. "type": "patreon"
  956. },
  957. {
  958. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  959. "type": "tidelift"
  960. }
  961. ],
  962. "time": "2022-02-28T11:07:21+00:00"
  963. },
  964. {
  965. "name": "dragonmantank/cron-expression",
  966. "version": "v3.3.3",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/dragonmantank/cron-expression.git",
  970. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  975. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  976. "shasum": "",
  977. "mirrors": [
  978. {
  979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  980. "preferred": true
  981. }
  982. ]
  983. },
  984. "require": {
  985. "php": "^7.2|^8.0",
  986. "webmozart/assert": "^1.0"
  987. },
  988. "replace": {
  989. "mtdowling/cron-expression": "^1.0"
  990. },
  991. "require-dev": {
  992. "phpstan/extension-installer": "^1.0",
  993. "phpstan/phpstan": "^1.0",
  994. "phpstan/phpstan-webmozart-assert": "^1.0",
  995. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  996. },
  997. "type": "library",
  998. "autoload": {
  999. "psr-4": {
  1000. "Cron\\": "src/Cron/"
  1001. }
  1002. },
  1003. "notification-url": "https://packagist.org/downloads/",
  1004. "license": [
  1005. "MIT"
  1006. ],
  1007. "authors": [
  1008. {
  1009. "name": "Chris Tankersley",
  1010. "email": "chris@ctankersley.com",
  1011. "homepage": "https://github.com/dragonmantank"
  1012. }
  1013. ],
  1014. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1015. "keywords": [
  1016. "cron",
  1017. "schedule"
  1018. ],
  1019. "support": {
  1020. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1021. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1022. },
  1023. "funding": [
  1024. {
  1025. "url": "https://github.com/dragonmantank",
  1026. "type": "github"
  1027. }
  1028. ],
  1029. "time": "2023-08-10T19:36:49+00:00"
  1030. },
  1031. {
  1032. "name": "easywechat-composer/easywechat-composer",
  1033. "version": "1.4.1",
  1034. "source": {
  1035. "type": "git",
  1036. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1037. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1038. },
  1039. "dist": {
  1040. "type": "zip",
  1041. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1042. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1043. "shasum": ""
  1044. },
  1045. "require": {
  1046. "composer-plugin-api": "^1.0 || ^2.0",
  1047. "php": ">=7.0"
  1048. },
  1049. "require-dev": {
  1050. "composer/composer": "^1.0 || ^2.0",
  1051. "phpunit/phpunit": "^6.5 || ^7.0"
  1052. },
  1053. "type": "composer-plugin",
  1054. "extra": {
  1055. "class": "EasyWeChatComposer\\Plugin"
  1056. },
  1057. "autoload": {
  1058. "psr-4": {
  1059. "EasyWeChatComposer\\": "src/"
  1060. }
  1061. },
  1062. "notification-url": "https://packagist.org/downloads/",
  1063. "license": [
  1064. "MIT"
  1065. ],
  1066. "authors": [
  1067. {
  1068. "name": "张铭阳",
  1069. "email": "mingyoungcheung@gmail.com"
  1070. }
  1071. ],
  1072. "description": "The composer plugin for EasyWeChat",
  1073. "support": {
  1074. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1075. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1076. },
  1077. "time": "2021-07-05T04:03:22+00:00"
  1078. },
  1079. {
  1080. "name": "egulias/email-validator",
  1081. "version": "2.1.25",
  1082. "source": {
  1083. "type": "git",
  1084. "url": "https://github.com/egulias/EmailValidator.git",
  1085. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1086. },
  1087. "dist": {
  1088. "type": "zip",
  1089. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1090. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1091. "shasum": ""
  1092. },
  1093. "require": {
  1094. "doctrine/lexer": "^1.0.1",
  1095. "php": ">=5.5",
  1096. "symfony/polyfill-intl-idn": "^1.10"
  1097. },
  1098. "require-dev": {
  1099. "dominicsayers/isemail": "^3.0.7",
  1100. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1101. "satooshi/php-coveralls": "^1.0.1"
  1102. },
  1103. "suggest": {
  1104. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1105. },
  1106. "type": "library",
  1107. "extra": {
  1108. "branch-alias": {
  1109. "dev-master": "2.1.x-dev"
  1110. }
  1111. },
  1112. "autoload": {
  1113. "psr-4": {
  1114. "Egulias\\EmailValidator\\": "src"
  1115. }
  1116. },
  1117. "notification-url": "https://packagist.org/downloads/",
  1118. "license": [
  1119. "MIT"
  1120. ],
  1121. "authors": [
  1122. {
  1123. "name": "Eduardo Gulias Davis"
  1124. }
  1125. ],
  1126. "description": "A library for validating emails against several RFCs",
  1127. "homepage": "https://github.com/egulias/EmailValidator",
  1128. "keywords": [
  1129. "email",
  1130. "emailvalidation",
  1131. "emailvalidator",
  1132. "validation",
  1133. "validator"
  1134. ],
  1135. "support": {
  1136. "issues": "https://github.com/egulias/EmailValidator/issues",
  1137. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1138. },
  1139. "funding": [
  1140. {
  1141. "url": "https://github.com/egulias",
  1142. "type": "github"
  1143. }
  1144. ],
  1145. "time": "2020-12-29T14:50:06+00:00"
  1146. },
  1147. {
  1148. "name": "ezyang/htmlpurifier",
  1149. "version": "v4.16.0",
  1150. "source": {
  1151. "type": "git",
  1152. "url": "https://github.com/ezyang/htmlpurifier.git",
  1153. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  1154. },
  1155. "dist": {
  1156. "type": "zip",
  1157. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1158. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1159. "shasum": "",
  1160. "mirrors": [
  1161. {
  1162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1163. "preferred": true
  1164. }
  1165. ]
  1166. },
  1167. "require": {
  1168. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  1169. },
  1170. "require-dev": {
  1171. "cerdic/css-tidy": "^1.7 || ^2.0",
  1172. "simpletest/simpletest": "dev-master"
  1173. },
  1174. "suggest": {
  1175. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1176. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1177. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1178. "ext-tidy": "Used for pretty-printing HTML"
  1179. },
  1180. "type": "library",
  1181. "autoload": {
  1182. "files": [
  1183. "library/HTMLPurifier.composer.php"
  1184. ],
  1185. "psr-0": {
  1186. "HTMLPurifier": "library/"
  1187. },
  1188. "exclude-from-classmap": [
  1189. "/library/HTMLPurifier/Language/"
  1190. ]
  1191. },
  1192. "notification-url": "https://packagist.org/downloads/",
  1193. "license": [
  1194. "LGPL-2.1-or-later"
  1195. ],
  1196. "authors": [
  1197. {
  1198. "name": "Edward Z. Yang",
  1199. "email": "admin@htmlpurifier.org",
  1200. "homepage": "http://ezyang.com"
  1201. }
  1202. ],
  1203. "description": "Standards compliant HTML filter written in PHP",
  1204. "homepage": "http://htmlpurifier.org/",
  1205. "keywords": [
  1206. "html"
  1207. ],
  1208. "support": {
  1209. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1210. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  1211. },
  1212. "time": "2022-09-18T07:06:19+00:00"
  1213. },
  1214. {
  1215. "name": "fideloper/proxy",
  1216. "version": "4.4.2",
  1217. "source": {
  1218. "type": "git",
  1219. "url": "https://github.com/fideloper/TrustedProxy.git",
  1220. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1221. },
  1222. "dist": {
  1223. "type": "zip",
  1224. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1225. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1226. "shasum": "",
  1227. "mirrors": [
  1228. {
  1229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1230. "preferred": true
  1231. }
  1232. ]
  1233. },
  1234. "require": {
  1235. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1236. "php": ">=5.4.0"
  1237. },
  1238. "require-dev": {
  1239. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1240. "mockery/mockery": "^1.0",
  1241. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1242. },
  1243. "type": "library",
  1244. "extra": {
  1245. "laravel": {
  1246. "providers": [
  1247. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1248. ]
  1249. }
  1250. },
  1251. "autoload": {
  1252. "psr-4": {
  1253. "Fideloper\\Proxy\\": "src/"
  1254. }
  1255. },
  1256. "notification-url": "https://packagist.org/downloads/",
  1257. "license": [
  1258. "MIT"
  1259. ],
  1260. "authors": [
  1261. {
  1262. "name": "Chris Fidao",
  1263. "email": "fideloper@gmail.com"
  1264. }
  1265. ],
  1266. "description": "Set trusted proxies for Laravel",
  1267. "keywords": [
  1268. "load balancing",
  1269. "proxy",
  1270. "trusted proxy"
  1271. ],
  1272. "support": {
  1273. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1274. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1275. },
  1276. "time": "2022-02-09T13:33:34+00:00"
  1277. },
  1278. {
  1279. "name": "firebase/php-jwt",
  1280. "version": "v6.10.0",
  1281. "source": {
  1282. "type": "git",
  1283. "url": "https://github.com/firebase/php-jwt.git",
  1284. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
  1285. },
  1286. "dist": {
  1287. "type": "zip",
  1288. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
  1289. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
  1290. "shasum": ""
  1291. },
  1292. "require": {
  1293. "php": "^7.4||^8.0"
  1294. },
  1295. "require-dev": {
  1296. "guzzlehttp/guzzle": "^6.5||^7.4",
  1297. "phpspec/prophecy-phpunit": "^2.0",
  1298. "phpunit/phpunit": "^9.5",
  1299. "psr/cache": "^1.0||^2.0",
  1300. "psr/http-client": "^1.0",
  1301. "psr/http-factory": "^1.0"
  1302. },
  1303. "suggest": {
  1304. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1305. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1306. },
  1307. "type": "library",
  1308. "autoload": {
  1309. "psr-4": {
  1310. "Firebase\\JWT\\": "src"
  1311. }
  1312. },
  1313. "notification-url": "https://packagist.org/downloads/",
  1314. "license": [
  1315. "BSD-3-Clause"
  1316. ],
  1317. "authors": [
  1318. {
  1319. "name": "Neuman Vong",
  1320. "email": "neuman+pear@twilio.com",
  1321. "role": "Developer"
  1322. },
  1323. {
  1324. "name": "Anant Narayanan",
  1325. "email": "anant@php.net",
  1326. "role": "Developer"
  1327. }
  1328. ],
  1329. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1330. "homepage": "https://github.com/firebase/php-jwt",
  1331. "keywords": [
  1332. "jwt",
  1333. "php"
  1334. ],
  1335. "support": {
  1336. "issues": "https://github.com/firebase/php-jwt/issues",
  1337. "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
  1338. },
  1339. "time": "2023-12-01T16:26:39+00:00"
  1340. },
  1341. {
  1342. "name": "fruitcake/laravel-cors",
  1343. "version": "v2.2.0",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/fruitcake/laravel-cors.git",
  1347. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1352. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1353. "shasum": "",
  1354. "mirrors": [
  1355. {
  1356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1357. "preferred": true
  1358. }
  1359. ]
  1360. },
  1361. "require": {
  1362. "asm89/stack-cors": "^2.0.1",
  1363. "illuminate/contracts": "^6|^7|^8|^9",
  1364. "illuminate/support": "^6|^7|^8|^9",
  1365. "php": ">=7.2"
  1366. },
  1367. "require-dev": {
  1368. "laravel/framework": "^6|^7.24|^8",
  1369. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1370. "phpunit/phpunit": "^6|^7|^8|^9",
  1371. "squizlabs/php_codesniffer": "^3.5"
  1372. },
  1373. "type": "library",
  1374. "extra": {
  1375. "branch-alias": {
  1376. "dev-master": "2.1-dev"
  1377. },
  1378. "laravel": {
  1379. "providers": [
  1380. "Fruitcake\\Cors\\CorsServiceProvider"
  1381. ]
  1382. }
  1383. },
  1384. "autoload": {
  1385. "psr-4": {
  1386. "Fruitcake\\Cors\\": "src/"
  1387. }
  1388. },
  1389. "notification-url": "https://packagist.org/downloads/",
  1390. "license": [
  1391. "MIT"
  1392. ],
  1393. "authors": [
  1394. {
  1395. "name": "Fruitcake",
  1396. "homepage": "https://fruitcake.nl"
  1397. },
  1398. {
  1399. "name": "Barry vd. Heuvel",
  1400. "email": "barryvdh@gmail.com"
  1401. }
  1402. ],
  1403. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1404. "keywords": [
  1405. "api",
  1406. "cors",
  1407. "crossdomain",
  1408. "laravel"
  1409. ],
  1410. "support": {
  1411. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1412. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1413. },
  1414. "funding": [
  1415. {
  1416. "url": "https://fruitcake.nl",
  1417. "type": "custom"
  1418. },
  1419. {
  1420. "url": "https://github.com/barryvdh",
  1421. "type": "github"
  1422. }
  1423. ],
  1424. "abandoned": true,
  1425. "time": "2022-02-23T14:25:13+00:00"
  1426. },
  1427. {
  1428. "name": "graham-campbell/manager",
  1429. "version": "v4.7.0",
  1430. "source": {
  1431. "type": "git",
  1432. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  1433. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308"
  1434. },
  1435. "dist": {
  1436. "type": "zip",
  1437. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1438. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1439. "shasum": "",
  1440. "mirrors": [
  1441. {
  1442. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1443. "preferred": true
  1444. }
  1445. ]
  1446. },
  1447. "require": {
  1448. "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1449. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1450. "php": "^7.1.3 || ^8.0"
  1451. },
  1452. "require-dev": {
  1453. "graham-campbell/analyzer": "^2.4 || ^3.0",
  1454. "graham-campbell/testbench-core": "^3.4",
  1455. "mockery/mockery": "^1.3.1",
  1456. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7"
  1457. },
  1458. "type": "library",
  1459. "autoload": {
  1460. "psr-4": {
  1461. "GrahamCampbell\\Manager\\": "src/"
  1462. }
  1463. },
  1464. "notification-url": "https://packagist.org/downloads/",
  1465. "license": [
  1466. "MIT"
  1467. ],
  1468. "authors": [
  1469. {
  1470. "name": "Graham Campbell",
  1471. "email": "hello@gjcampbell.co.uk",
  1472. "homepage": "https://github.com/GrahamCampbell"
  1473. }
  1474. ],
  1475. "description": "Manager Provides Some Manager Functionality For Laravel",
  1476. "keywords": [
  1477. "Graham Campbell",
  1478. "GrahamCampbell",
  1479. "Laravel Manager",
  1480. "Laravel-Manager",
  1481. "connector",
  1482. "framework",
  1483. "interface",
  1484. "laravel",
  1485. "manager"
  1486. ],
  1487. "support": {
  1488. "issues": "https://github.com/GrahamCampbell/Laravel-Manager/issues",
  1489. "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/v4.7.0"
  1490. },
  1491. "funding": [
  1492. {
  1493. "url": "https://github.com/GrahamCampbell",
  1494. "type": "github"
  1495. },
  1496. {
  1497. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/manager",
  1498. "type": "tidelift"
  1499. }
  1500. ],
  1501. "time": "2022-01-24T01:59:19+00:00"
  1502. },
  1503. {
  1504. "name": "graham-campbell/result-type",
  1505. "version": "v1.1.2",
  1506. "source": {
  1507. "type": "git",
  1508. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1509. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  1510. },
  1511. "dist": {
  1512. "type": "zip",
  1513. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1514. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1515. "shasum": "",
  1516. "mirrors": [
  1517. {
  1518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1519. "preferred": true
  1520. }
  1521. ]
  1522. },
  1523. "require": {
  1524. "php": "^7.2.5 || ^8.0",
  1525. "phpoption/phpoption": "^1.9.2"
  1526. },
  1527. "require-dev": {
  1528. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1529. },
  1530. "type": "library",
  1531. "autoload": {
  1532. "psr-4": {
  1533. "GrahamCampbell\\ResultType\\": "src/"
  1534. }
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "MIT"
  1539. ],
  1540. "authors": [
  1541. {
  1542. "name": "Graham Campbell",
  1543. "email": "hello@gjcampbell.co.uk",
  1544. "homepage": "https://github.com/GrahamCampbell"
  1545. }
  1546. ],
  1547. "description": "An Implementation Of The Result Type",
  1548. "keywords": [
  1549. "Graham Campbell",
  1550. "GrahamCampbell",
  1551. "Result Type",
  1552. "Result-Type",
  1553. "result"
  1554. ],
  1555. "support": {
  1556. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1557. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  1558. },
  1559. "funding": [
  1560. {
  1561. "url": "https://github.com/GrahamCampbell",
  1562. "type": "github"
  1563. },
  1564. {
  1565. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1566. "type": "tidelift"
  1567. }
  1568. ],
  1569. "time": "2023-11-12T22:16:48+00:00"
  1570. },
  1571. {
  1572. "name": "guzzlehttp/guzzle",
  1573. "version": "7.8.1",
  1574. "source": {
  1575. "type": "git",
  1576. "url": "https://github.com/guzzle/guzzle.git",
  1577. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1578. },
  1579. "dist": {
  1580. "type": "zip",
  1581. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1582. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1583. "shasum": "",
  1584. "mirrors": [
  1585. {
  1586. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1587. "preferred": true
  1588. }
  1589. ]
  1590. },
  1591. "require": {
  1592. "ext-json": "*",
  1593. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1594. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1595. "php": "^7.2.5 || ^8.0",
  1596. "psr/http-client": "^1.0",
  1597. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1598. },
  1599. "provide": {
  1600. "psr/http-client-implementation": "1.0"
  1601. },
  1602. "require-dev": {
  1603. "bamarni/composer-bin-plugin": "^1.8.2",
  1604. "ext-curl": "*",
  1605. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1606. "php-http/message-factory": "^1.1",
  1607. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1608. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1609. },
  1610. "suggest": {
  1611. "ext-curl": "Required for CURL handler support",
  1612. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1613. "psr/log": "Required for using the Log middleware"
  1614. },
  1615. "type": "library",
  1616. "extra": {
  1617. "bamarni-bin": {
  1618. "bin-links": true,
  1619. "forward-command": false
  1620. }
  1621. },
  1622. "autoload": {
  1623. "files": [
  1624. "src/functions_include.php"
  1625. ],
  1626. "psr-4": {
  1627. "GuzzleHttp\\": "src/"
  1628. }
  1629. },
  1630. "notification-url": "https://packagist.org/downloads/",
  1631. "license": [
  1632. "MIT"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "Graham Campbell",
  1637. "email": "hello@gjcampbell.co.uk",
  1638. "homepage": "https://github.com/GrahamCampbell"
  1639. },
  1640. {
  1641. "name": "Michael Dowling",
  1642. "email": "mtdowling@gmail.com",
  1643. "homepage": "https://github.com/mtdowling"
  1644. },
  1645. {
  1646. "name": "Jeremy Lindblom",
  1647. "email": "jeremeamia@gmail.com",
  1648. "homepage": "https://github.com/jeremeamia"
  1649. },
  1650. {
  1651. "name": "George Mponos",
  1652. "email": "gmponos@gmail.com",
  1653. "homepage": "https://github.com/gmponos"
  1654. },
  1655. {
  1656. "name": "Tobias Nyholm",
  1657. "email": "tobias.nyholm@gmail.com",
  1658. "homepage": "https://github.com/Nyholm"
  1659. },
  1660. {
  1661. "name": "Márk Sági-Kazár",
  1662. "email": "mark.sagikazar@gmail.com",
  1663. "homepage": "https://github.com/sagikazarmark"
  1664. },
  1665. {
  1666. "name": "Tobias Schultze",
  1667. "email": "webmaster@tubo-world.de",
  1668. "homepage": "https://github.com/Tobion"
  1669. }
  1670. ],
  1671. "description": "Guzzle is a PHP HTTP client library",
  1672. "keywords": [
  1673. "client",
  1674. "curl",
  1675. "framework",
  1676. "http",
  1677. "http client",
  1678. "psr-18",
  1679. "psr-7",
  1680. "rest",
  1681. "web service"
  1682. ],
  1683. "support": {
  1684. "issues": "https://github.com/guzzle/guzzle/issues",
  1685. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1686. },
  1687. "funding": [
  1688. {
  1689. "url": "https://github.com/GrahamCampbell",
  1690. "type": "github"
  1691. },
  1692. {
  1693. "url": "https://github.com/Nyholm",
  1694. "type": "github"
  1695. },
  1696. {
  1697. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1698. "type": "tidelift"
  1699. }
  1700. ],
  1701. "time": "2023-12-03T20:35:24+00:00"
  1702. },
  1703. {
  1704. "name": "guzzlehttp/promises",
  1705. "version": "2.0.1",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/guzzle/promises.git",
  1709. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  1714. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  1715. "shasum": "",
  1716. "mirrors": [
  1717. {
  1718. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1719. "preferred": true
  1720. }
  1721. ]
  1722. },
  1723. "require": {
  1724. "php": "^7.2.5 || ^8.0"
  1725. },
  1726. "require-dev": {
  1727. "bamarni/composer-bin-plugin": "^1.8.1",
  1728. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1729. },
  1730. "type": "library",
  1731. "extra": {
  1732. "bamarni-bin": {
  1733. "bin-links": true,
  1734. "forward-command": false
  1735. }
  1736. },
  1737. "autoload": {
  1738. "psr-4": {
  1739. "GuzzleHttp\\Promise\\": "src/"
  1740. }
  1741. },
  1742. "notification-url": "https://packagist.org/downloads/",
  1743. "license": [
  1744. "MIT"
  1745. ],
  1746. "authors": [
  1747. {
  1748. "name": "Graham Campbell",
  1749. "email": "hello@gjcampbell.co.uk",
  1750. "homepage": "https://github.com/GrahamCampbell"
  1751. },
  1752. {
  1753. "name": "Michael Dowling",
  1754. "email": "mtdowling@gmail.com",
  1755. "homepage": "https://github.com/mtdowling"
  1756. },
  1757. {
  1758. "name": "Tobias Nyholm",
  1759. "email": "tobias.nyholm@gmail.com",
  1760. "homepage": "https://github.com/Nyholm"
  1761. },
  1762. {
  1763. "name": "Tobias Schultze",
  1764. "email": "webmaster@tubo-world.de",
  1765. "homepage": "https://github.com/Tobion"
  1766. }
  1767. ],
  1768. "description": "Guzzle promises library",
  1769. "keywords": [
  1770. "promise"
  1771. ],
  1772. "support": {
  1773. "issues": "https://github.com/guzzle/promises/issues",
  1774. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  1775. },
  1776. "funding": [
  1777. {
  1778. "url": "https://github.com/GrahamCampbell",
  1779. "type": "github"
  1780. },
  1781. {
  1782. "url": "https://github.com/Nyholm",
  1783. "type": "github"
  1784. },
  1785. {
  1786. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1787. "type": "tidelift"
  1788. }
  1789. ],
  1790. "time": "2023-08-03T15:11:55+00:00"
  1791. },
  1792. {
  1793. "name": "guzzlehttp/psr7",
  1794. "version": "2.6.2",
  1795. "source": {
  1796. "type": "git",
  1797. "url": "https://github.com/guzzle/psr7.git",
  1798. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1799. },
  1800. "dist": {
  1801. "type": "zip",
  1802. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1803. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1804. "shasum": "",
  1805. "mirrors": [
  1806. {
  1807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1808. "preferred": true
  1809. }
  1810. ]
  1811. },
  1812. "require": {
  1813. "php": "^7.2.5 || ^8.0",
  1814. "psr/http-factory": "^1.0",
  1815. "psr/http-message": "^1.1 || ^2.0",
  1816. "ralouphie/getallheaders": "^3.0"
  1817. },
  1818. "provide": {
  1819. "psr/http-factory-implementation": "1.0",
  1820. "psr/http-message-implementation": "1.0"
  1821. },
  1822. "require-dev": {
  1823. "bamarni/composer-bin-plugin": "^1.8.2",
  1824. "http-interop/http-factory-tests": "^0.9",
  1825. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1826. },
  1827. "suggest": {
  1828. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1829. },
  1830. "type": "library",
  1831. "extra": {
  1832. "bamarni-bin": {
  1833. "bin-links": true,
  1834. "forward-command": false
  1835. }
  1836. },
  1837. "autoload": {
  1838. "psr-4": {
  1839. "GuzzleHttp\\Psr7\\": "src/"
  1840. }
  1841. },
  1842. "notification-url": "https://packagist.org/downloads/",
  1843. "license": [
  1844. "MIT"
  1845. ],
  1846. "authors": [
  1847. {
  1848. "name": "Graham Campbell",
  1849. "email": "hello@gjcampbell.co.uk",
  1850. "homepage": "https://github.com/GrahamCampbell"
  1851. },
  1852. {
  1853. "name": "Michael Dowling",
  1854. "email": "mtdowling@gmail.com",
  1855. "homepage": "https://github.com/mtdowling"
  1856. },
  1857. {
  1858. "name": "George Mponos",
  1859. "email": "gmponos@gmail.com",
  1860. "homepage": "https://github.com/gmponos"
  1861. },
  1862. {
  1863. "name": "Tobias Nyholm",
  1864. "email": "tobias.nyholm@gmail.com",
  1865. "homepage": "https://github.com/Nyholm"
  1866. },
  1867. {
  1868. "name": "Márk Sági-Kazár",
  1869. "email": "mark.sagikazar@gmail.com",
  1870. "homepage": "https://github.com/sagikazarmark"
  1871. },
  1872. {
  1873. "name": "Tobias Schultze",
  1874. "email": "webmaster@tubo-world.de",
  1875. "homepage": "https://github.com/Tobion"
  1876. },
  1877. {
  1878. "name": "Márk Sági-Kazár",
  1879. "email": "mark.sagikazar@gmail.com",
  1880. "homepage": "https://sagikazarmark.hu"
  1881. }
  1882. ],
  1883. "description": "PSR-7 message implementation that also provides common utility methods",
  1884. "keywords": [
  1885. "http",
  1886. "message",
  1887. "psr-7",
  1888. "request",
  1889. "response",
  1890. "stream",
  1891. "uri",
  1892. "url"
  1893. ],
  1894. "support": {
  1895. "issues": "https://github.com/guzzle/psr7/issues",
  1896. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1897. },
  1898. "funding": [
  1899. {
  1900. "url": "https://github.com/GrahamCampbell",
  1901. "type": "github"
  1902. },
  1903. {
  1904. "url": "https://github.com/Nyholm",
  1905. "type": "github"
  1906. },
  1907. {
  1908. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1909. "type": "tidelift"
  1910. }
  1911. ],
  1912. "time": "2023-12-03T20:05:35+00:00"
  1913. },
  1914. {
  1915. "name": "hashids/hashids",
  1916. "version": "4.1.0",
  1917. "source": {
  1918. "type": "git",
  1919. "url": "https://github.com/vinkla/hashids.git",
  1920. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1921. },
  1922. "dist": {
  1923. "type": "zip",
  1924. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  1925. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1926. "shasum": "",
  1927. "mirrors": [
  1928. {
  1929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1930. "preferred": true
  1931. }
  1932. ]
  1933. },
  1934. "require": {
  1935. "ext-mbstring": "*",
  1936. "php": "^7.2 || ^8.0"
  1937. },
  1938. "require-dev": {
  1939. "phpunit/phpunit": "^8.0 || ^9.4",
  1940. "squizlabs/php_codesniffer": "^3.5"
  1941. },
  1942. "suggest": {
  1943. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1944. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1945. },
  1946. "type": "library",
  1947. "extra": {
  1948. "branch-alias": {
  1949. "dev-master": "4.1-dev"
  1950. }
  1951. },
  1952. "autoload": {
  1953. "psr-4": {
  1954. "Hashids\\": "src/"
  1955. }
  1956. },
  1957. "notification-url": "https://packagist.org/downloads/",
  1958. "license": [
  1959. "MIT"
  1960. ],
  1961. "authors": [
  1962. {
  1963. "name": "Ivan Akimov",
  1964. "email": "ivan@barreleye.com"
  1965. },
  1966. {
  1967. "name": "Vincent Klaiber",
  1968. "email": "hello@doubledip.se"
  1969. }
  1970. ],
  1971. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1972. "homepage": "https://hashids.org/php",
  1973. "keywords": [
  1974. "bitly",
  1975. "decode",
  1976. "encode",
  1977. "hash",
  1978. "hashid",
  1979. "hashids",
  1980. "ids",
  1981. "obfuscate",
  1982. "youtube"
  1983. ],
  1984. "support": {
  1985. "issues": "https://github.com/vinkla/hashids/issues",
  1986. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  1987. },
  1988. "time": "2020-11-26T19:24:33+00:00"
  1989. },
  1990. {
  1991. "name": "intervention/image",
  1992. "version": "2.7.2",
  1993. "source": {
  1994. "type": "git",
  1995. "url": "https://github.com/Intervention/image.git",
  1996. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1997. },
  1998. "dist": {
  1999. "type": "zip",
  2000. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2001. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2002. "shasum": "",
  2003. "mirrors": [
  2004. {
  2005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2006. "preferred": true
  2007. }
  2008. ]
  2009. },
  2010. "require": {
  2011. "ext-fileinfo": "*",
  2012. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2013. "php": ">=5.4.0"
  2014. },
  2015. "require-dev": {
  2016. "mockery/mockery": "~0.9.2",
  2017. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2018. },
  2019. "suggest": {
  2020. "ext-gd": "to use GD library based image processing.",
  2021. "ext-imagick": "to use Imagick based image processing.",
  2022. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2023. },
  2024. "type": "library",
  2025. "extra": {
  2026. "branch-alias": {
  2027. "dev-master": "2.4-dev"
  2028. },
  2029. "laravel": {
  2030. "providers": [
  2031. "Intervention\\Image\\ImageServiceProvider"
  2032. ],
  2033. "aliases": {
  2034. "Image": "Intervention\\Image\\Facades\\Image"
  2035. }
  2036. }
  2037. },
  2038. "autoload": {
  2039. "psr-4": {
  2040. "Intervention\\Image\\": "src/Intervention/Image"
  2041. }
  2042. },
  2043. "notification-url": "https://packagist.org/downloads/",
  2044. "license": [
  2045. "MIT"
  2046. ],
  2047. "authors": [
  2048. {
  2049. "name": "Oliver Vogel",
  2050. "email": "oliver@intervention.io",
  2051. "homepage": "https://intervention.io/"
  2052. }
  2053. ],
  2054. "description": "Image handling and manipulation library with support for Laravel integration",
  2055. "homepage": "http://image.intervention.io/",
  2056. "keywords": [
  2057. "gd",
  2058. "image",
  2059. "imagick",
  2060. "laravel",
  2061. "thumbnail",
  2062. "watermark"
  2063. ],
  2064. "support": {
  2065. "issues": "https://github.com/Intervention/image/issues",
  2066. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2067. },
  2068. "funding": [
  2069. {
  2070. "url": "https://paypal.me/interventionio",
  2071. "type": "custom"
  2072. },
  2073. {
  2074. "url": "https://github.com/Intervention",
  2075. "type": "github"
  2076. }
  2077. ],
  2078. "time": "2022-05-21T17:30:32+00:00"
  2079. },
  2080. {
  2081. "name": "ixudra/curl",
  2082. "version": "6.22.1",
  2083. "source": {
  2084. "type": "git",
  2085. "url": "https://github.com/ixudra/curl.git",
  2086. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180"
  2087. },
  2088. "dist": {
  2089. "type": "zip",
  2090. "url": "https://api.github.com/repos/ixudra/curl/zipball/0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2091. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2092. "shasum": "",
  2093. "mirrors": [
  2094. {
  2095. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2096. "preferred": true
  2097. }
  2098. ]
  2099. },
  2100. "require": {
  2101. "ext-curl": "*",
  2102. "illuminate/support": ">=4.0",
  2103. "php": ">=5.4.0"
  2104. },
  2105. "type": "library",
  2106. "extra": {
  2107. "laravel": {
  2108. "providers": [
  2109. "Ixudra\\Curl\\CurlServiceProvider"
  2110. ],
  2111. "aliases": {
  2112. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  2113. }
  2114. }
  2115. },
  2116. "autoload": {
  2117. "psr-4": {
  2118. "Ixudra\\Curl\\": "src/"
  2119. }
  2120. },
  2121. "notification-url": "https://packagist.org/downloads/",
  2122. "license": [
  2123. "MIT"
  2124. ],
  2125. "authors": [
  2126. {
  2127. "name": "Jan Oris",
  2128. "email": "jan.oris@ixudra.be"
  2129. }
  2130. ],
  2131. "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra",
  2132. "homepage": "http://ixudra.be",
  2133. "keywords": [
  2134. "Ixudra",
  2135. "curl",
  2136. "laravel"
  2137. ],
  2138. "support": {
  2139. "issues": "https://github.com/ixudra/curl/issues",
  2140. "source": "https://github.com/ixudra/curl/tree/6.22.1"
  2141. },
  2142. "time": "2022-07-31T09:58:52+00:00"
  2143. },
  2144. {
  2145. "name": "laravel/framework",
  2146. "version": "v8.83.27",
  2147. "source": {
  2148. "type": "git",
  2149. "url": "https://github.com/laravel/framework.git",
  2150. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  2151. },
  2152. "dist": {
  2153. "type": "zip",
  2154. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2155. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2156. "shasum": ""
  2157. },
  2158. "require": {
  2159. "doctrine/inflector": "^1.4|^2.0",
  2160. "dragonmantank/cron-expression": "^3.0.2",
  2161. "egulias/email-validator": "^2.1.10",
  2162. "ext-json": "*",
  2163. "ext-mbstring": "*",
  2164. "ext-openssl": "*",
  2165. "laravel/serializable-closure": "^1.0",
  2166. "league/commonmark": "^1.3|^2.0.2",
  2167. "league/flysystem": "^1.1",
  2168. "monolog/monolog": "^2.0",
  2169. "nesbot/carbon": "^2.53.1",
  2170. "opis/closure": "^3.6",
  2171. "php": "^7.3|^8.0",
  2172. "psr/container": "^1.0",
  2173. "psr/log": "^1.0|^2.0",
  2174. "psr/simple-cache": "^1.0",
  2175. "ramsey/uuid": "^4.2.2",
  2176. "swiftmailer/swiftmailer": "^6.3",
  2177. "symfony/console": "^5.4",
  2178. "symfony/error-handler": "^5.4",
  2179. "symfony/finder": "^5.4",
  2180. "symfony/http-foundation": "^5.4",
  2181. "symfony/http-kernel": "^5.4",
  2182. "symfony/mime": "^5.4",
  2183. "symfony/process": "^5.4",
  2184. "symfony/routing": "^5.4",
  2185. "symfony/var-dumper": "^5.4",
  2186. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2187. "vlucas/phpdotenv": "^5.4.1",
  2188. "voku/portable-ascii": "^1.6.1"
  2189. },
  2190. "conflict": {
  2191. "tightenco/collect": "<5.5.33"
  2192. },
  2193. "provide": {
  2194. "psr/container-implementation": "1.0",
  2195. "psr/simple-cache-implementation": "1.0"
  2196. },
  2197. "replace": {
  2198. "illuminate/auth": "self.version",
  2199. "illuminate/broadcasting": "self.version",
  2200. "illuminate/bus": "self.version",
  2201. "illuminate/cache": "self.version",
  2202. "illuminate/collections": "self.version",
  2203. "illuminate/config": "self.version",
  2204. "illuminate/console": "self.version",
  2205. "illuminate/container": "self.version",
  2206. "illuminate/contracts": "self.version",
  2207. "illuminate/cookie": "self.version",
  2208. "illuminate/database": "self.version",
  2209. "illuminate/encryption": "self.version",
  2210. "illuminate/events": "self.version",
  2211. "illuminate/filesystem": "self.version",
  2212. "illuminate/hashing": "self.version",
  2213. "illuminate/http": "self.version",
  2214. "illuminate/log": "self.version",
  2215. "illuminate/macroable": "self.version",
  2216. "illuminate/mail": "self.version",
  2217. "illuminate/notifications": "self.version",
  2218. "illuminate/pagination": "self.version",
  2219. "illuminate/pipeline": "self.version",
  2220. "illuminate/queue": "self.version",
  2221. "illuminate/redis": "self.version",
  2222. "illuminate/routing": "self.version",
  2223. "illuminate/session": "self.version",
  2224. "illuminate/support": "self.version",
  2225. "illuminate/testing": "self.version",
  2226. "illuminate/translation": "self.version",
  2227. "illuminate/validation": "self.version",
  2228. "illuminate/view": "self.version"
  2229. },
  2230. "require-dev": {
  2231. "aws/aws-sdk-php": "^3.198.1",
  2232. "doctrine/dbal": "^2.13.3|^3.1.4",
  2233. "filp/whoops": "^2.14.3",
  2234. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2235. "league/flysystem-cached-adapter": "^1.0",
  2236. "mockery/mockery": "^1.4.4",
  2237. "orchestra/testbench-core": "^6.27",
  2238. "pda/pheanstalk": "^4.0",
  2239. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2240. "predis/predis": "^1.1.9",
  2241. "symfony/cache": "^5.4"
  2242. },
  2243. "suggest": {
  2244. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2245. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2246. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2247. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2248. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2249. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2250. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2251. "ext-memcached": "Required to use the memcache cache driver.",
  2252. "ext-pcntl": "Required to use all features of the queue worker.",
  2253. "ext-posix": "Required to use all features of the queue worker.",
  2254. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2255. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2256. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2257. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2258. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2259. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2260. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2261. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2262. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2263. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2264. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2265. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2266. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2267. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2268. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2269. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2270. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2271. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2272. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2273. },
  2274. "type": "library",
  2275. "extra": {
  2276. "branch-alias": {
  2277. "dev-master": "8.x-dev"
  2278. }
  2279. },
  2280. "autoload": {
  2281. "files": [
  2282. "src/Illuminate/Collections/helpers.php",
  2283. "src/Illuminate/Events/functions.php",
  2284. "src/Illuminate/Foundation/helpers.php",
  2285. "src/Illuminate/Support/helpers.php"
  2286. ],
  2287. "psr-4": {
  2288. "Illuminate\\": "src/Illuminate/",
  2289. "Illuminate\\Support\\": [
  2290. "src/Illuminate/Macroable/",
  2291. "src/Illuminate/Collections/"
  2292. ]
  2293. }
  2294. },
  2295. "notification-url": "https://packagist.org/downloads/",
  2296. "license": [
  2297. "MIT"
  2298. ],
  2299. "authors": [
  2300. {
  2301. "name": "Taylor Otwell",
  2302. "email": "taylor@laravel.com"
  2303. }
  2304. ],
  2305. "description": "The Laravel Framework.",
  2306. "homepage": "https://laravel.com",
  2307. "keywords": [
  2308. "framework",
  2309. "laravel"
  2310. ],
  2311. "support": {
  2312. "issues": "https://github.com/laravel/framework/issues",
  2313. "source": "https://github.com/laravel/framework"
  2314. },
  2315. "time": "2022-12-08T15:28:55+00:00"
  2316. },
  2317. {
  2318. "name": "laravel/serializable-closure",
  2319. "version": "v1.3.3",
  2320. "source": {
  2321. "type": "git",
  2322. "url": "https://github.com/laravel/serializable-closure.git",
  2323. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  2324. },
  2325. "dist": {
  2326. "type": "zip",
  2327. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  2328. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  2329. "shasum": "",
  2330. "mirrors": [
  2331. {
  2332. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2333. "preferred": true
  2334. }
  2335. ]
  2336. },
  2337. "require": {
  2338. "php": "^7.3|^8.0"
  2339. },
  2340. "require-dev": {
  2341. "nesbot/carbon": "^2.61",
  2342. "pestphp/pest": "^1.21.3",
  2343. "phpstan/phpstan": "^1.8.2",
  2344. "symfony/var-dumper": "^5.4.11"
  2345. },
  2346. "type": "library",
  2347. "extra": {
  2348. "branch-alias": {
  2349. "dev-master": "1.x-dev"
  2350. }
  2351. },
  2352. "autoload": {
  2353. "psr-4": {
  2354. "Laravel\\SerializableClosure\\": "src/"
  2355. }
  2356. },
  2357. "notification-url": "https://packagist.org/downloads/",
  2358. "license": [
  2359. "MIT"
  2360. ],
  2361. "authors": [
  2362. {
  2363. "name": "Taylor Otwell",
  2364. "email": "taylor@laravel.com"
  2365. },
  2366. {
  2367. "name": "Nuno Maduro",
  2368. "email": "nuno@laravel.com"
  2369. }
  2370. ],
  2371. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2372. "keywords": [
  2373. "closure",
  2374. "laravel",
  2375. "serializable"
  2376. ],
  2377. "support": {
  2378. "issues": "https://github.com/laravel/serializable-closure/issues",
  2379. "source": "https://github.com/laravel/serializable-closure"
  2380. },
  2381. "time": "2023-11-08T14:08:06+00:00"
  2382. },
  2383. {
  2384. "name": "laravel/tinker",
  2385. "version": "v2.9.0",
  2386. "source": {
  2387. "type": "git",
  2388. "url": "https://github.com/laravel/tinker.git",
  2389. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  2390. },
  2391. "dist": {
  2392. "type": "zip",
  2393. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2394. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2395. "shasum": "",
  2396. "mirrors": [
  2397. {
  2398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2399. "preferred": true
  2400. }
  2401. ]
  2402. },
  2403. "require": {
  2404. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2405. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2406. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2407. "php": "^7.2.5|^8.0",
  2408. "psy/psysh": "^0.11.1|^0.12.0",
  2409. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2410. },
  2411. "require-dev": {
  2412. "mockery/mockery": "~1.3.3|^1.4.2",
  2413. "phpstan/phpstan": "^1.10",
  2414. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2415. },
  2416. "suggest": {
  2417. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2418. },
  2419. "type": "library",
  2420. "extra": {
  2421. "laravel": {
  2422. "providers": [
  2423. "Laravel\\Tinker\\TinkerServiceProvider"
  2424. ]
  2425. }
  2426. },
  2427. "autoload": {
  2428. "psr-4": {
  2429. "Laravel\\Tinker\\": "src/"
  2430. }
  2431. },
  2432. "notification-url": "https://packagist.org/downloads/",
  2433. "license": [
  2434. "MIT"
  2435. ],
  2436. "authors": [
  2437. {
  2438. "name": "Taylor Otwell",
  2439. "email": "taylor@laravel.com"
  2440. }
  2441. ],
  2442. "description": "Powerful REPL for the Laravel framework.",
  2443. "keywords": [
  2444. "REPL",
  2445. "Tinker",
  2446. "laravel",
  2447. "psysh"
  2448. ],
  2449. "support": {
  2450. "issues": "https://github.com/laravel/tinker/issues",
  2451. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  2452. },
  2453. "time": "2024-01-04T16:10:04+00:00"
  2454. },
  2455. {
  2456. "name": "league/commonmark",
  2457. "version": "2.4.1",
  2458. "source": {
  2459. "type": "git",
  2460. "url": "https://github.com/thephpleague/commonmark.git",
  2461. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  2462. },
  2463. "dist": {
  2464. "type": "zip",
  2465. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2466. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2467. "shasum": "",
  2468. "mirrors": [
  2469. {
  2470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2471. "preferred": true
  2472. }
  2473. ]
  2474. },
  2475. "require": {
  2476. "ext-mbstring": "*",
  2477. "league/config": "^1.1.1",
  2478. "php": "^7.4 || ^8.0",
  2479. "psr/event-dispatcher": "^1.0",
  2480. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2481. "symfony/polyfill-php80": "^1.16"
  2482. },
  2483. "require-dev": {
  2484. "cebe/markdown": "^1.0",
  2485. "commonmark/cmark": "0.30.0",
  2486. "commonmark/commonmark.js": "0.30.0",
  2487. "composer/package-versions-deprecated": "^1.8",
  2488. "embed/embed": "^4.4",
  2489. "erusev/parsedown": "^1.0",
  2490. "ext-json": "*",
  2491. "github/gfm": "0.29.0",
  2492. "michelf/php-markdown": "^1.4 || ^2.0",
  2493. "nyholm/psr7": "^1.5",
  2494. "phpstan/phpstan": "^1.8.2",
  2495. "phpunit/phpunit": "^9.5.21",
  2496. "scrutinizer/ocular": "^1.8.1",
  2497. "symfony/finder": "^5.3 | ^6.0",
  2498. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2499. "unleashedtech/php-coding-standard": "^3.1.1",
  2500. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2501. },
  2502. "suggest": {
  2503. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2504. },
  2505. "type": "library",
  2506. "extra": {
  2507. "branch-alias": {
  2508. "dev-main": "2.5-dev"
  2509. }
  2510. },
  2511. "autoload": {
  2512. "psr-4": {
  2513. "League\\CommonMark\\": "src"
  2514. }
  2515. },
  2516. "notification-url": "https://packagist.org/downloads/",
  2517. "license": [
  2518. "BSD-3-Clause"
  2519. ],
  2520. "authors": [
  2521. {
  2522. "name": "Colin O'Dell",
  2523. "email": "colinodell@gmail.com",
  2524. "homepage": "https://www.colinodell.com",
  2525. "role": "Lead Developer"
  2526. }
  2527. ],
  2528. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2529. "homepage": "https://commonmark.thephpleague.com",
  2530. "keywords": [
  2531. "commonmark",
  2532. "flavored",
  2533. "gfm",
  2534. "github",
  2535. "github-flavored",
  2536. "markdown",
  2537. "md",
  2538. "parser"
  2539. ],
  2540. "support": {
  2541. "docs": "https://commonmark.thephpleague.com/",
  2542. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2543. "issues": "https://github.com/thephpleague/commonmark/issues",
  2544. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2545. "source": "https://github.com/thephpleague/commonmark"
  2546. },
  2547. "funding": [
  2548. {
  2549. "url": "https://www.colinodell.com/sponsor",
  2550. "type": "custom"
  2551. },
  2552. {
  2553. "url": "https://www.paypal.me/colinpodell/10.00",
  2554. "type": "custom"
  2555. },
  2556. {
  2557. "url": "https://github.com/colinodell",
  2558. "type": "github"
  2559. },
  2560. {
  2561. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2562. "type": "tidelift"
  2563. }
  2564. ],
  2565. "time": "2023-08-30T16:55:00+00:00"
  2566. },
  2567. {
  2568. "name": "league/config",
  2569. "version": "v1.2.0",
  2570. "source": {
  2571. "type": "git",
  2572. "url": "https://github.com/thephpleague/config.git",
  2573. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2574. },
  2575. "dist": {
  2576. "type": "zip",
  2577. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2578. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2579. "shasum": "",
  2580. "mirrors": [
  2581. {
  2582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2583. "preferred": true
  2584. }
  2585. ]
  2586. },
  2587. "require": {
  2588. "dflydev/dot-access-data": "^3.0.1",
  2589. "nette/schema": "^1.2",
  2590. "php": "^7.4 || ^8.0"
  2591. },
  2592. "require-dev": {
  2593. "phpstan/phpstan": "^1.8.2",
  2594. "phpunit/phpunit": "^9.5.5",
  2595. "scrutinizer/ocular": "^1.8.1",
  2596. "unleashedtech/php-coding-standard": "^3.1",
  2597. "vimeo/psalm": "^4.7.3"
  2598. },
  2599. "type": "library",
  2600. "extra": {
  2601. "branch-alias": {
  2602. "dev-main": "1.2-dev"
  2603. }
  2604. },
  2605. "autoload": {
  2606. "psr-4": {
  2607. "League\\Config\\": "src"
  2608. }
  2609. },
  2610. "notification-url": "https://packagist.org/downloads/",
  2611. "license": [
  2612. "BSD-3-Clause"
  2613. ],
  2614. "authors": [
  2615. {
  2616. "name": "Colin O'Dell",
  2617. "email": "colinodell@gmail.com",
  2618. "homepage": "https://www.colinodell.com",
  2619. "role": "Lead Developer"
  2620. }
  2621. ],
  2622. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2623. "homepage": "https://config.thephpleague.com",
  2624. "keywords": [
  2625. "array",
  2626. "config",
  2627. "configuration",
  2628. "dot",
  2629. "dot-access",
  2630. "nested",
  2631. "schema"
  2632. ],
  2633. "support": {
  2634. "docs": "https://config.thephpleague.com/",
  2635. "issues": "https://github.com/thephpleague/config/issues",
  2636. "rss": "https://github.com/thephpleague/config/releases.atom",
  2637. "source": "https://github.com/thephpleague/config"
  2638. },
  2639. "funding": [
  2640. {
  2641. "url": "https://www.colinodell.com/sponsor",
  2642. "type": "custom"
  2643. },
  2644. {
  2645. "url": "https://www.paypal.me/colinpodell/10.00",
  2646. "type": "custom"
  2647. },
  2648. {
  2649. "url": "https://github.com/colinodell",
  2650. "type": "github"
  2651. }
  2652. ],
  2653. "time": "2022-12-11T20:36:23+00:00"
  2654. },
  2655. {
  2656. "name": "league/flysystem",
  2657. "version": "1.1.10",
  2658. "source": {
  2659. "type": "git",
  2660. "url": "https://github.com/thephpleague/flysystem.git",
  2661. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2662. },
  2663. "dist": {
  2664. "type": "zip",
  2665. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2666. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2667. "shasum": "",
  2668. "mirrors": [
  2669. {
  2670. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2671. "preferred": true
  2672. }
  2673. ]
  2674. },
  2675. "require": {
  2676. "ext-fileinfo": "*",
  2677. "league/mime-type-detection": "^1.3",
  2678. "php": "^7.2.5 || ^8.0"
  2679. },
  2680. "conflict": {
  2681. "league/flysystem-sftp": "<1.0.6"
  2682. },
  2683. "require-dev": {
  2684. "phpspec/prophecy": "^1.11.1",
  2685. "phpunit/phpunit": "^8.5.8"
  2686. },
  2687. "suggest": {
  2688. "ext-ftp": "Allows you to use FTP server storage",
  2689. "ext-openssl": "Allows you to use FTPS server storage",
  2690. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2691. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2692. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2693. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2694. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2695. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2696. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2697. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2698. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2699. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2700. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2701. },
  2702. "type": "library",
  2703. "extra": {
  2704. "branch-alias": {
  2705. "dev-master": "1.1-dev"
  2706. }
  2707. },
  2708. "autoload": {
  2709. "psr-4": {
  2710. "League\\Flysystem\\": "src/"
  2711. }
  2712. },
  2713. "notification-url": "https://packagist.org/downloads/",
  2714. "license": [
  2715. "MIT"
  2716. ],
  2717. "authors": [
  2718. {
  2719. "name": "Frank de Jonge",
  2720. "email": "info@frenky.net"
  2721. }
  2722. ],
  2723. "description": "Filesystem abstraction: Many filesystems, one API.",
  2724. "keywords": [
  2725. "Cloud Files",
  2726. "WebDAV",
  2727. "abstraction",
  2728. "aws",
  2729. "cloud",
  2730. "copy.com",
  2731. "dropbox",
  2732. "file systems",
  2733. "files",
  2734. "filesystem",
  2735. "filesystems",
  2736. "ftp",
  2737. "rackspace",
  2738. "remote",
  2739. "s3",
  2740. "sftp",
  2741. "storage"
  2742. ],
  2743. "support": {
  2744. "issues": "https://github.com/thephpleague/flysystem/issues",
  2745. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2746. },
  2747. "funding": [
  2748. {
  2749. "url": "https://offset.earth/frankdejonge",
  2750. "type": "other"
  2751. }
  2752. ],
  2753. "time": "2022-10-04T09:16:37+00:00"
  2754. },
  2755. {
  2756. "name": "league/mime-type-detection",
  2757. "version": "1.13.0",
  2758. "source": {
  2759. "type": "git",
  2760. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2761. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
  2762. },
  2763. "dist": {
  2764. "type": "zip",
  2765. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2766. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2767. "shasum": "",
  2768. "mirrors": [
  2769. {
  2770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2771. "preferred": true
  2772. }
  2773. ]
  2774. },
  2775. "require": {
  2776. "ext-fileinfo": "*",
  2777. "php": "^7.4 || ^8.0"
  2778. },
  2779. "require-dev": {
  2780. "friendsofphp/php-cs-fixer": "^3.2",
  2781. "phpstan/phpstan": "^0.12.68",
  2782. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2783. },
  2784. "type": "library",
  2785. "autoload": {
  2786. "psr-4": {
  2787. "League\\MimeTypeDetection\\": "src"
  2788. }
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "Frank de Jonge",
  2797. "email": "info@frankdejonge.nl"
  2798. }
  2799. ],
  2800. "description": "Mime-type detection for Flysystem",
  2801. "support": {
  2802. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2803. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
  2804. },
  2805. "funding": [
  2806. {
  2807. "url": "https://github.com/frankdejonge",
  2808. "type": "github"
  2809. },
  2810. {
  2811. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2812. "type": "tidelift"
  2813. }
  2814. ],
  2815. "time": "2023-08-05T12:09:49+00:00"
  2816. },
  2817. {
  2818. "name": "lizhichao/one-sm",
  2819. "version": "1.10",
  2820. "source": {
  2821. "type": "git",
  2822. "url": "https://github.com/lizhichao/sm.git",
  2823. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2824. },
  2825. "dist": {
  2826. "type": "zip",
  2827. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2828. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2829. "shasum": ""
  2830. },
  2831. "require": {
  2832. "php": ">=5.6"
  2833. },
  2834. "type": "library",
  2835. "autoload": {
  2836. "psr-4": {
  2837. "OneSm\\": "src/"
  2838. }
  2839. },
  2840. "notification-url": "https://packagist.org/downloads/",
  2841. "license": [
  2842. "Apache-2.0"
  2843. ],
  2844. "authors": [
  2845. {
  2846. "name": "tanszhe",
  2847. "email": "1018595261@qq.com"
  2848. }
  2849. ],
  2850. "description": "国密sm3",
  2851. "keywords": [
  2852. "php",
  2853. "sm3"
  2854. ],
  2855. "support": {
  2856. "issues": "https://github.com/lizhichao/sm/issues",
  2857. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2858. },
  2859. "funding": [
  2860. {
  2861. "url": "https://www.vicsdf.com/img/w.jpg",
  2862. "type": "custom"
  2863. },
  2864. {
  2865. "url": "https://www.vicsdf.com/img/z.jpg",
  2866. "type": "custom"
  2867. }
  2868. ],
  2869. "time": "2021-05-26T06:19:22+00:00"
  2870. },
  2871. {
  2872. "name": "maennchen/zipstream-php",
  2873. "version": "2.2.6",
  2874. "source": {
  2875. "type": "git",
  2876. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2877. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  2878. },
  2879. "dist": {
  2880. "type": "zip",
  2881. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2882. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2883. "shasum": "",
  2884. "mirrors": [
  2885. {
  2886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2887. "preferred": true
  2888. }
  2889. ]
  2890. },
  2891. "require": {
  2892. "myclabs/php-enum": "^1.5",
  2893. "php": "^7.4 || ^8.0",
  2894. "psr/http-message": "^1.0",
  2895. "symfony/polyfill-mbstring": "^1.0"
  2896. },
  2897. "require-dev": {
  2898. "ext-zip": "*",
  2899. "friendsofphp/php-cs-fixer": "^3.9",
  2900. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2901. "mikey179/vfsstream": "^1.6",
  2902. "php-coveralls/php-coveralls": "^2.4",
  2903. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2904. "vimeo/psalm": "^4.1"
  2905. },
  2906. "type": "library",
  2907. "autoload": {
  2908. "psr-4": {
  2909. "ZipStream\\": "src/"
  2910. }
  2911. },
  2912. "notification-url": "https://packagist.org/downloads/",
  2913. "license": [
  2914. "MIT"
  2915. ],
  2916. "authors": [
  2917. {
  2918. "name": "Paul Duncan",
  2919. "email": "pabs@pablotron.org"
  2920. },
  2921. {
  2922. "name": "Jonatan Männchen",
  2923. "email": "jonatan@maennchen.ch"
  2924. },
  2925. {
  2926. "name": "Jesse Donat",
  2927. "email": "donatj@gmail.com"
  2928. },
  2929. {
  2930. "name": "András Kolesár",
  2931. "email": "kolesar@kolesar.hu"
  2932. }
  2933. ],
  2934. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2935. "keywords": [
  2936. "stream",
  2937. "zip"
  2938. ],
  2939. "support": {
  2940. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2941. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  2942. },
  2943. "funding": [
  2944. {
  2945. "url": "https://github.com/maennchen",
  2946. "type": "github"
  2947. },
  2948. {
  2949. "url": "https://opencollective.com/zipstream",
  2950. "type": "open_collective"
  2951. }
  2952. ],
  2953. "time": "2022-11-25T18:57:19+00:00"
  2954. },
  2955. {
  2956. "name": "markbaker/complex",
  2957. "version": "3.0.2",
  2958. "source": {
  2959. "type": "git",
  2960. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2961. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2962. },
  2963. "dist": {
  2964. "type": "zip",
  2965. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2966. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2967. "shasum": "",
  2968. "mirrors": [
  2969. {
  2970. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2971. "preferred": true
  2972. }
  2973. ]
  2974. },
  2975. "require": {
  2976. "php": "^7.2 || ^8.0"
  2977. },
  2978. "require-dev": {
  2979. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2980. "phpcompatibility/php-compatibility": "^9.3",
  2981. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2982. "squizlabs/php_codesniffer": "^3.7"
  2983. },
  2984. "type": "library",
  2985. "autoload": {
  2986. "psr-4": {
  2987. "Complex\\": "classes/src/"
  2988. }
  2989. },
  2990. "notification-url": "https://packagist.org/downloads/",
  2991. "license": [
  2992. "MIT"
  2993. ],
  2994. "authors": [
  2995. {
  2996. "name": "Mark Baker",
  2997. "email": "mark@lange.demon.co.uk"
  2998. }
  2999. ],
  3000. "description": "PHP Class for working with complex numbers",
  3001. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3002. "keywords": [
  3003. "complex",
  3004. "mathematics"
  3005. ],
  3006. "support": {
  3007. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3008. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3009. },
  3010. "time": "2022-12-06T16:21:08+00:00"
  3011. },
  3012. {
  3013. "name": "markbaker/matrix",
  3014. "version": "3.0.1",
  3015. "source": {
  3016. "type": "git",
  3017. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3018. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3019. },
  3020. "dist": {
  3021. "type": "zip",
  3022. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3023. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3024. "shasum": "",
  3025. "mirrors": [
  3026. {
  3027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3028. "preferred": true
  3029. }
  3030. ]
  3031. },
  3032. "require": {
  3033. "php": "^7.1 || ^8.0"
  3034. },
  3035. "require-dev": {
  3036. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3037. "phpcompatibility/php-compatibility": "^9.3",
  3038. "phpdocumentor/phpdocumentor": "2.*",
  3039. "phploc/phploc": "^4.0",
  3040. "phpmd/phpmd": "2.*",
  3041. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3042. "sebastian/phpcpd": "^4.0",
  3043. "squizlabs/php_codesniffer": "^3.7"
  3044. },
  3045. "type": "library",
  3046. "autoload": {
  3047. "psr-4": {
  3048. "Matrix\\": "classes/src/"
  3049. }
  3050. },
  3051. "notification-url": "https://packagist.org/downloads/",
  3052. "license": [
  3053. "MIT"
  3054. ],
  3055. "authors": [
  3056. {
  3057. "name": "Mark Baker",
  3058. "email": "mark@demon-angel.eu"
  3059. }
  3060. ],
  3061. "description": "PHP Class for working with matrices",
  3062. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3063. "keywords": [
  3064. "mathematics",
  3065. "matrix",
  3066. "vector"
  3067. ],
  3068. "support": {
  3069. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3070. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3071. },
  3072. "time": "2022-12-02T22:17:43+00:00"
  3073. },
  3074. {
  3075. "name": "monolog/monolog",
  3076. "version": "2.9.2",
  3077. "source": {
  3078. "type": "git",
  3079. "url": "https://github.com/Seldaek/monolog.git",
  3080. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  3081. },
  3082. "dist": {
  3083. "type": "zip",
  3084. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3085. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3086. "shasum": "",
  3087. "mirrors": [
  3088. {
  3089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3090. "preferred": true
  3091. }
  3092. ]
  3093. },
  3094. "require": {
  3095. "php": ">=7.2",
  3096. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3097. },
  3098. "provide": {
  3099. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3100. },
  3101. "require-dev": {
  3102. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3103. "doctrine/couchdb": "~1.0@dev",
  3104. "elasticsearch/elasticsearch": "^7 || ^8",
  3105. "ext-json": "*",
  3106. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3107. "guzzlehttp/guzzle": "^7.4",
  3108. "guzzlehttp/psr7": "^2.2",
  3109. "mongodb/mongodb": "^1.8",
  3110. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3111. "phpspec/prophecy": "^1.15",
  3112. "phpstan/phpstan": "^0.12.91",
  3113. "phpunit/phpunit": "^8.5.14",
  3114. "predis/predis": "^1.1 || ^2.0",
  3115. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3116. "ruflin/elastica": "^7",
  3117. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3118. "symfony/mailer": "^5.4 || ^6",
  3119. "symfony/mime": "^5.4 || ^6"
  3120. },
  3121. "suggest": {
  3122. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3123. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3124. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3125. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3126. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3127. "ext-mbstring": "Allow to work properly with unicode symbols",
  3128. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3129. "ext-openssl": "Required to send log messages using SSL",
  3130. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3131. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3132. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3133. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3134. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3135. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3136. },
  3137. "type": "library",
  3138. "extra": {
  3139. "branch-alias": {
  3140. "dev-main": "2.x-dev"
  3141. }
  3142. },
  3143. "autoload": {
  3144. "psr-4": {
  3145. "Monolog\\": "src/Monolog"
  3146. }
  3147. },
  3148. "notification-url": "https://packagist.org/downloads/",
  3149. "license": [
  3150. "MIT"
  3151. ],
  3152. "authors": [
  3153. {
  3154. "name": "Jordi Boggiano",
  3155. "email": "j.boggiano@seld.be",
  3156. "homepage": "https://seld.be"
  3157. }
  3158. ],
  3159. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3160. "homepage": "https://github.com/Seldaek/monolog",
  3161. "keywords": [
  3162. "log",
  3163. "logging",
  3164. "psr-3"
  3165. ],
  3166. "support": {
  3167. "issues": "https://github.com/Seldaek/monolog/issues",
  3168. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  3169. },
  3170. "funding": [
  3171. {
  3172. "url": "https://github.com/Seldaek",
  3173. "type": "github"
  3174. },
  3175. {
  3176. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3177. "type": "tidelift"
  3178. }
  3179. ],
  3180. "time": "2023-10-27T15:25:26+00:00"
  3181. },
  3182. {
  3183. "name": "myclabs/php-enum",
  3184. "version": "1.8.4",
  3185. "source": {
  3186. "type": "git",
  3187. "url": "https://github.com/myclabs/php-enum.git",
  3188. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3189. },
  3190. "dist": {
  3191. "type": "zip",
  3192. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3193. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3194. "shasum": "",
  3195. "mirrors": [
  3196. {
  3197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3198. "preferred": true
  3199. }
  3200. ]
  3201. },
  3202. "require": {
  3203. "ext-json": "*",
  3204. "php": "^7.3 || ^8.0"
  3205. },
  3206. "require-dev": {
  3207. "phpunit/phpunit": "^9.5",
  3208. "squizlabs/php_codesniffer": "1.*",
  3209. "vimeo/psalm": "^4.6.2"
  3210. },
  3211. "type": "library",
  3212. "autoload": {
  3213. "psr-4": {
  3214. "MyCLabs\\Enum\\": "src/"
  3215. },
  3216. "classmap": [
  3217. "stubs/Stringable.php"
  3218. ]
  3219. },
  3220. "notification-url": "https://packagist.org/downloads/",
  3221. "license": [
  3222. "MIT"
  3223. ],
  3224. "authors": [
  3225. {
  3226. "name": "PHP Enum contributors",
  3227. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3228. }
  3229. ],
  3230. "description": "PHP Enum implementation",
  3231. "homepage": "http://github.com/myclabs/php-enum",
  3232. "keywords": [
  3233. "enum"
  3234. ],
  3235. "support": {
  3236. "issues": "https://github.com/myclabs/php-enum/issues",
  3237. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3238. },
  3239. "funding": [
  3240. {
  3241. "url": "https://github.com/mnapoli",
  3242. "type": "github"
  3243. },
  3244. {
  3245. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3246. "type": "tidelift"
  3247. }
  3248. ],
  3249. "time": "2022-08-04T09:53:51+00:00"
  3250. },
  3251. {
  3252. "name": "nesbot/carbon",
  3253. "version": "2.72.1",
  3254. "source": {
  3255. "type": "git",
  3256. "url": "https://github.com/briannesbitt/Carbon.git",
  3257. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  3258. },
  3259. "dist": {
  3260. "type": "zip",
  3261. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3262. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  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": "*",
  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. "branch-alias": {
  3302. "dev-3.x": "3.x-dev",
  3303. "dev-master": "2.x-dev"
  3304. },
  3305. "laravel": {
  3306. "providers": [
  3307. "Carbon\\Laravel\\ServiceProvider"
  3308. ]
  3309. },
  3310. "phpstan": {
  3311. "includes": [
  3312. "extension.neon"
  3313. ]
  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": "2023-12-08T23:47:49+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.0.0",
  3527. "source": {
  3528. "type": "git",
  3529. "url": "https://github.com/nikic/PHP-Parser.git",
  3530. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc"
  3531. },
  3532. "dist": {
  3533. "type": "zip",
  3534. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  3535. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  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": "^7.0 || ^8.0 || ^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.0.0"
  3585. },
  3586. "time": "2024-01-07T17:17:35+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": "overtrue/qcloud-cos-client",
  3661. "version": "1.0.4",
  3662. "source": {
  3663. "type": "git",
  3664. "url": "https://github.com/overtrue/qcloud-cos-client.git",
  3665. "reference": "64ca47881afe4fd0961958f85674dcae71421913"
  3666. },
  3667. "dist": {
  3668. "type": "zip",
  3669. "url": "https://api.github.com/repos/overtrue/qcloud-cos-client/zipball/64ca47881afe4fd0961958f85674dcae71421913",
  3670. "reference": "64ca47881afe4fd0961958f85674dcae71421913",
  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-dom": "*",
  3681. "ext-json": "*",
  3682. "ext-libxml": "*",
  3683. "ext-simplexml": "*",
  3684. "guzzlehttp/guzzle": "^7.2",
  3685. "php": ">=7.4",
  3686. "psr/http-message": "^1.0"
  3687. },
  3688. "require-dev": {
  3689. "brainmaestro/composer-git-hooks": "^2.7",
  3690. "friendsofphp/php-cs-fixer": "^3.4.0",
  3691. "mockery/mockery": "^1.0",
  3692. "monolog/monolog": "^2.1",
  3693. "phpunit/phpunit": "^9.0"
  3694. },
  3695. "type": "library",
  3696. "extra": {
  3697. "hooks": {
  3698. "pre-commit": [
  3699. "composer test",
  3700. "composer check-style"
  3701. ],
  3702. "pre-push": [
  3703. "composer test",
  3704. "composer check-style"
  3705. ]
  3706. }
  3707. },
  3708. "autoload": {
  3709. "psr-4": {
  3710. "Overtrue\\CosClient\\": "src"
  3711. }
  3712. },
  3713. "notification-url": "https://packagist.org/downloads/",
  3714. "license": [
  3715. "MIT"
  3716. ],
  3717. "authors": [
  3718. {
  3719. "name": "overtrue",
  3720. "email": "anzhengchao@gmail.com"
  3721. }
  3722. ],
  3723. "description": "Client of QCloud.com COS",
  3724. "support": {
  3725. "issues": "https://github.com/overtrue/qcloud-cos-client/issues",
  3726. "source": "https://github.com/overtrue/qcloud-cos-client/tree/1.0.4"
  3727. },
  3728. "funding": [
  3729. {
  3730. "url": "https://github.com/overtrue",
  3731. "type": "github"
  3732. }
  3733. ],
  3734. "time": "2022-11-07T00:18:25+00:00"
  3735. },
  3736. {
  3737. "name": "overtrue/socialite",
  3738. "version": "3.5.5",
  3739. "source": {
  3740. "type": "git",
  3741. "url": "https://github.com/overtrue/socialite.git",
  3742. "reference": "3cf32be7ae0fd86f83e41ca7239aa10e04b8b401"
  3743. },
  3744. "dist": {
  3745. "type": "zip",
  3746. "url": "https://api.github.com/repos/overtrue/socialite/zipball/3cf32be7ae0fd86f83e41ca7239aa10e04b8b401",
  3747. "reference": "3cf32be7ae0fd86f83e41ca7239aa10e04b8b401",
  3748. "shasum": ""
  3749. },
  3750. "require": {
  3751. "ext-json": "*",
  3752. "ext-openssl": "*",
  3753. "guzzlehttp/guzzle": "~6.0|~7.0",
  3754. "php": ">=7.4",
  3755. "symfony/psr-http-message-bridge": "^2.0"
  3756. },
  3757. "require-dev": {
  3758. "friendsofphp/php-cs-fixer": "^3.0",
  3759. "mockery/mockery": "~1.2",
  3760. "phpunit/phpunit": "~9.0"
  3761. },
  3762. "type": "library",
  3763. "autoload": {
  3764. "psr-4": {
  3765. "Overtrue\\Socialite\\": "src/"
  3766. }
  3767. },
  3768. "notification-url": "https://packagist.org/downloads/",
  3769. "license": [
  3770. "MIT"
  3771. ],
  3772. "authors": [
  3773. {
  3774. "name": "overtrue",
  3775. "email": "anzhengchao@gmail.com"
  3776. }
  3777. ],
  3778. "description": "A collection of OAuth 2 packages.",
  3779. "keywords": [
  3780. "Feishu",
  3781. "login",
  3782. "oauth",
  3783. "qcloud",
  3784. "qq",
  3785. "social",
  3786. "wechat",
  3787. "weibo"
  3788. ],
  3789. "support": {
  3790. "issues": "https://github.com/overtrue/socialite/issues",
  3791. "source": "https://github.com/overtrue/socialite/tree/3.5.5"
  3792. },
  3793. "funding": [
  3794. {
  3795. "url": "https://github.com/overtrue",
  3796. "type": "github"
  3797. }
  3798. ],
  3799. "time": "2024-06-24T09:26:56+00:00"
  3800. },
  3801. {
  3802. "name": "phpoffice/phpspreadsheet",
  3803. "version": "1.29.0",
  3804. "source": {
  3805. "type": "git",
  3806. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3807. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  3808. },
  3809. "dist": {
  3810. "type": "zip",
  3811. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3812. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3813. "shasum": ""
  3814. },
  3815. "require": {
  3816. "ext-ctype": "*",
  3817. "ext-dom": "*",
  3818. "ext-fileinfo": "*",
  3819. "ext-gd": "*",
  3820. "ext-iconv": "*",
  3821. "ext-libxml": "*",
  3822. "ext-mbstring": "*",
  3823. "ext-simplexml": "*",
  3824. "ext-xml": "*",
  3825. "ext-xmlreader": "*",
  3826. "ext-xmlwriter": "*",
  3827. "ext-zip": "*",
  3828. "ext-zlib": "*",
  3829. "ezyang/htmlpurifier": "^4.15",
  3830. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3831. "markbaker/complex": "^3.0",
  3832. "markbaker/matrix": "^3.0",
  3833. "php": "^7.4 || ^8.0",
  3834. "psr/http-client": "^1.0",
  3835. "psr/http-factory": "^1.0",
  3836. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3837. },
  3838. "require-dev": {
  3839. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3840. "dompdf/dompdf": "^1.0 || ^2.0",
  3841. "friendsofphp/php-cs-fixer": "^3.2",
  3842. "mitoteam/jpgraph": "^10.3",
  3843. "mpdf/mpdf": "^8.1.1",
  3844. "phpcompatibility/php-compatibility": "^9.3",
  3845. "phpstan/phpstan": "^1.1",
  3846. "phpstan/phpstan-phpunit": "^1.0",
  3847. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  3848. "squizlabs/php_codesniffer": "^3.7",
  3849. "tecnickcom/tcpdf": "^6.5"
  3850. },
  3851. "suggest": {
  3852. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3853. "ext-intl": "PHP Internationalization Functions",
  3854. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3855. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3856. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3857. },
  3858. "type": "library",
  3859. "autoload": {
  3860. "psr-4": {
  3861. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3862. }
  3863. },
  3864. "notification-url": "https://packagist.org/downloads/",
  3865. "license": [
  3866. "MIT"
  3867. ],
  3868. "authors": [
  3869. {
  3870. "name": "Maarten Balliauw",
  3871. "homepage": "https://blog.maartenballiauw.be"
  3872. },
  3873. {
  3874. "name": "Mark Baker",
  3875. "homepage": "https://markbakeruk.net"
  3876. },
  3877. {
  3878. "name": "Franck Lefevre",
  3879. "homepage": "https://rootslabs.net"
  3880. },
  3881. {
  3882. "name": "Erik Tilt"
  3883. },
  3884. {
  3885. "name": "Adrien Crivelli"
  3886. }
  3887. ],
  3888. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3889. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3890. "keywords": [
  3891. "OpenXML",
  3892. "excel",
  3893. "gnumeric",
  3894. "ods",
  3895. "php",
  3896. "spreadsheet",
  3897. "xls",
  3898. "xlsx"
  3899. ],
  3900. "support": {
  3901. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3902. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  3903. },
  3904. "time": "2023-06-14T22:48:31+00:00"
  3905. },
  3906. {
  3907. "name": "phpoption/phpoption",
  3908. "version": "1.9.2",
  3909. "source": {
  3910. "type": "git",
  3911. "url": "https://github.com/schmittjoh/php-option.git",
  3912. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  3913. },
  3914. "dist": {
  3915. "type": "zip",
  3916. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  3917. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  3918. "shasum": "",
  3919. "mirrors": [
  3920. {
  3921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3922. "preferred": true
  3923. }
  3924. ]
  3925. },
  3926. "require": {
  3927. "php": "^7.2.5 || ^8.0"
  3928. },
  3929. "require-dev": {
  3930. "bamarni/composer-bin-plugin": "^1.8.2",
  3931. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  3932. },
  3933. "type": "library",
  3934. "extra": {
  3935. "bamarni-bin": {
  3936. "bin-links": true,
  3937. "forward-command": true
  3938. },
  3939. "branch-alias": {
  3940. "dev-master": "1.9-dev"
  3941. }
  3942. },
  3943. "autoload": {
  3944. "psr-4": {
  3945. "PhpOption\\": "src/PhpOption/"
  3946. }
  3947. },
  3948. "notification-url": "https://packagist.org/downloads/",
  3949. "license": [
  3950. "Apache-2.0"
  3951. ],
  3952. "authors": [
  3953. {
  3954. "name": "Johannes M. Schmitt",
  3955. "email": "schmittjoh@gmail.com",
  3956. "homepage": "https://github.com/schmittjoh"
  3957. },
  3958. {
  3959. "name": "Graham Campbell",
  3960. "email": "hello@gjcampbell.co.uk",
  3961. "homepage": "https://github.com/GrahamCampbell"
  3962. }
  3963. ],
  3964. "description": "Option Type for PHP",
  3965. "keywords": [
  3966. "language",
  3967. "option",
  3968. "php",
  3969. "type"
  3970. ],
  3971. "support": {
  3972. "issues": "https://github.com/schmittjoh/php-option/issues",
  3973. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  3974. },
  3975. "funding": [
  3976. {
  3977. "url": "https://github.com/GrahamCampbell",
  3978. "type": "github"
  3979. },
  3980. {
  3981. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3982. "type": "tidelift"
  3983. }
  3984. ],
  3985. "time": "2023-11-12T21:59:55+00:00"
  3986. },
  3987. {
  3988. "name": "pimple/pimple",
  3989. "version": "v3.5.0",
  3990. "source": {
  3991. "type": "git",
  3992. "url": "https://github.com/silexphp/Pimple.git",
  3993. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  3994. },
  3995. "dist": {
  3996. "type": "zip",
  3997. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3998. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3999. "shasum": ""
  4000. },
  4001. "require": {
  4002. "php": ">=7.2.5",
  4003. "psr/container": "^1.1 || ^2.0"
  4004. },
  4005. "require-dev": {
  4006. "symfony/phpunit-bridge": "^5.4@dev"
  4007. },
  4008. "type": "library",
  4009. "extra": {
  4010. "branch-alias": {
  4011. "dev-master": "3.4.x-dev"
  4012. }
  4013. },
  4014. "autoload": {
  4015. "psr-0": {
  4016. "Pimple": "src/"
  4017. }
  4018. },
  4019. "notification-url": "https://packagist.org/downloads/",
  4020. "license": [
  4021. "MIT"
  4022. ],
  4023. "authors": [
  4024. {
  4025. "name": "Fabien Potencier",
  4026. "email": "fabien@symfony.com"
  4027. }
  4028. ],
  4029. "description": "Pimple, a simple Dependency Injection Container",
  4030. "homepage": "https://pimple.symfony.com",
  4031. "keywords": [
  4032. "container",
  4033. "dependency injection"
  4034. ],
  4035. "support": {
  4036. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  4037. },
  4038. "time": "2021-10-28T11:13:42+00:00"
  4039. },
  4040. {
  4041. "name": "predis/predis",
  4042. "version": "v1.1.10",
  4043. "source": {
  4044. "type": "git",
  4045. "url": "https://github.com/predis/predis.git",
  4046. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  4047. },
  4048. "dist": {
  4049. "type": "zip",
  4050. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  4051. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  4052. "shasum": "",
  4053. "mirrors": [
  4054. {
  4055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4056. "preferred": true
  4057. }
  4058. ]
  4059. },
  4060. "require": {
  4061. "php": ">=5.3.9"
  4062. },
  4063. "require-dev": {
  4064. "phpunit/phpunit": "~4.8"
  4065. },
  4066. "suggest": {
  4067. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  4068. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  4069. },
  4070. "type": "library",
  4071. "autoload": {
  4072. "psr-4": {
  4073. "Predis\\": "src/"
  4074. }
  4075. },
  4076. "notification-url": "https://packagist.org/downloads/",
  4077. "license": [
  4078. "MIT"
  4079. ],
  4080. "authors": [
  4081. {
  4082. "name": "Daniele Alessandri",
  4083. "email": "suppakilla@gmail.com",
  4084. "homepage": "http://clorophilla.net",
  4085. "role": "Creator & Maintainer"
  4086. },
  4087. {
  4088. "name": "Till Krüss",
  4089. "homepage": "https://till.im",
  4090. "role": "Maintainer"
  4091. }
  4092. ],
  4093. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  4094. "homepage": "http://github.com/predis/predis",
  4095. "keywords": [
  4096. "nosql",
  4097. "predis",
  4098. "redis"
  4099. ],
  4100. "support": {
  4101. "issues": "https://github.com/predis/predis/issues",
  4102. "source": "https://github.com/predis/predis/tree/v1.1.10"
  4103. },
  4104. "funding": [
  4105. {
  4106. "url": "https://github.com/sponsors/tillkruss",
  4107. "type": "github"
  4108. }
  4109. ],
  4110. "time": "2022-01-05T17:46:08+00:00"
  4111. },
  4112. {
  4113. "name": "psr/cache",
  4114. "version": "1.0.1",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/php-fig/cache.git",
  4118. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4123. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4124. "shasum": ""
  4125. },
  4126. "require": {
  4127. "php": ">=5.3.0"
  4128. },
  4129. "type": "library",
  4130. "extra": {
  4131. "branch-alias": {
  4132. "dev-master": "1.0.x-dev"
  4133. }
  4134. },
  4135. "autoload": {
  4136. "psr-4": {
  4137. "Psr\\Cache\\": "src/"
  4138. }
  4139. },
  4140. "notification-url": "https://packagist.org/downloads/",
  4141. "license": [
  4142. "MIT"
  4143. ],
  4144. "authors": [
  4145. {
  4146. "name": "PHP-FIG",
  4147. "homepage": "http://www.php-fig.org/"
  4148. }
  4149. ],
  4150. "description": "Common interface for caching libraries",
  4151. "keywords": [
  4152. "cache",
  4153. "psr",
  4154. "psr-6"
  4155. ],
  4156. "support": {
  4157. "source": "https://github.com/php-fig/cache/tree/master"
  4158. },
  4159. "time": "2016-08-06T20:24:11+00:00"
  4160. },
  4161. {
  4162. "name": "psr/clock",
  4163. "version": "1.0.0",
  4164. "source": {
  4165. "type": "git",
  4166. "url": "https://github.com/php-fig/clock.git",
  4167. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4168. },
  4169. "dist": {
  4170. "type": "zip",
  4171. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4172. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4173. "shasum": "",
  4174. "mirrors": [
  4175. {
  4176. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4177. "preferred": true
  4178. }
  4179. ]
  4180. },
  4181. "require": {
  4182. "php": "^7.0 || ^8.0"
  4183. },
  4184. "type": "library",
  4185. "autoload": {
  4186. "psr-4": {
  4187. "Psr\\Clock\\": "src/"
  4188. }
  4189. },
  4190. "notification-url": "https://packagist.org/downloads/",
  4191. "license": [
  4192. "MIT"
  4193. ],
  4194. "authors": [
  4195. {
  4196. "name": "PHP-FIG",
  4197. "homepage": "https://www.php-fig.org/"
  4198. }
  4199. ],
  4200. "description": "Common interface for reading the clock.",
  4201. "homepage": "https://github.com/php-fig/clock",
  4202. "keywords": [
  4203. "clock",
  4204. "now",
  4205. "psr",
  4206. "psr-20",
  4207. "time"
  4208. ],
  4209. "support": {
  4210. "issues": "https://github.com/php-fig/clock/issues",
  4211. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4212. },
  4213. "time": "2022-11-25T14:36:26+00:00"
  4214. },
  4215. {
  4216. "name": "psr/container",
  4217. "version": "1.1.2",
  4218. "source": {
  4219. "type": "git",
  4220. "url": "https://github.com/php-fig/container.git",
  4221. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4222. },
  4223. "dist": {
  4224. "type": "zip",
  4225. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4226. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4227. "shasum": "",
  4228. "mirrors": [
  4229. {
  4230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4231. "preferred": true
  4232. }
  4233. ]
  4234. },
  4235. "require": {
  4236. "php": ">=7.4.0"
  4237. },
  4238. "type": "library",
  4239. "autoload": {
  4240. "psr-4": {
  4241. "Psr\\Container\\": "src/"
  4242. }
  4243. },
  4244. "notification-url": "https://packagist.org/downloads/",
  4245. "license": [
  4246. "MIT"
  4247. ],
  4248. "authors": [
  4249. {
  4250. "name": "PHP-FIG",
  4251. "homepage": "https://www.php-fig.org/"
  4252. }
  4253. ],
  4254. "description": "Common Container Interface (PHP FIG PSR-11)",
  4255. "homepage": "https://github.com/php-fig/container",
  4256. "keywords": [
  4257. "PSR-11",
  4258. "container",
  4259. "container-interface",
  4260. "container-interop",
  4261. "psr"
  4262. ],
  4263. "support": {
  4264. "issues": "https://github.com/php-fig/container/issues",
  4265. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4266. },
  4267. "time": "2021-11-05T16:50:12+00:00"
  4268. },
  4269. {
  4270. "name": "psr/event-dispatcher",
  4271. "version": "1.0.0",
  4272. "source": {
  4273. "type": "git",
  4274. "url": "https://github.com/php-fig/event-dispatcher.git",
  4275. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4276. },
  4277. "dist": {
  4278. "type": "zip",
  4279. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4280. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4281. "shasum": "",
  4282. "mirrors": [
  4283. {
  4284. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4285. "preferred": true
  4286. }
  4287. ]
  4288. },
  4289. "require": {
  4290. "php": ">=7.2.0"
  4291. },
  4292. "type": "library",
  4293. "extra": {
  4294. "branch-alias": {
  4295. "dev-master": "1.0.x-dev"
  4296. }
  4297. },
  4298. "autoload": {
  4299. "psr-4": {
  4300. "Psr\\EventDispatcher\\": "src/"
  4301. }
  4302. },
  4303. "notification-url": "https://packagist.org/downloads/",
  4304. "license": [
  4305. "MIT"
  4306. ],
  4307. "authors": [
  4308. {
  4309. "name": "PHP-FIG",
  4310. "homepage": "http://www.php-fig.org/"
  4311. }
  4312. ],
  4313. "description": "Standard interfaces for event handling.",
  4314. "keywords": [
  4315. "events",
  4316. "psr",
  4317. "psr-14"
  4318. ],
  4319. "support": {
  4320. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4321. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4322. },
  4323. "time": "2019-01-08T18:20:26+00:00"
  4324. },
  4325. {
  4326. "name": "psr/http-client",
  4327. "version": "1.0.3",
  4328. "source": {
  4329. "type": "git",
  4330. "url": "https://github.com/php-fig/http-client.git",
  4331. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4332. },
  4333. "dist": {
  4334. "type": "zip",
  4335. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4336. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4337. "shasum": "",
  4338. "mirrors": [
  4339. {
  4340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4341. "preferred": true
  4342. }
  4343. ]
  4344. },
  4345. "require": {
  4346. "php": "^7.0 || ^8.0",
  4347. "psr/http-message": "^1.0 || ^2.0"
  4348. },
  4349. "type": "library",
  4350. "extra": {
  4351. "branch-alias": {
  4352. "dev-master": "1.0.x-dev"
  4353. }
  4354. },
  4355. "autoload": {
  4356. "psr-4": {
  4357. "Psr\\Http\\Client\\": "src/"
  4358. }
  4359. },
  4360. "notification-url": "https://packagist.org/downloads/",
  4361. "license": [
  4362. "MIT"
  4363. ],
  4364. "authors": [
  4365. {
  4366. "name": "PHP-FIG",
  4367. "homepage": "https://www.php-fig.org/"
  4368. }
  4369. ],
  4370. "description": "Common interface for HTTP clients",
  4371. "homepage": "https://github.com/php-fig/http-client",
  4372. "keywords": [
  4373. "http",
  4374. "http-client",
  4375. "psr",
  4376. "psr-18"
  4377. ],
  4378. "support": {
  4379. "source": "https://github.com/php-fig/http-client"
  4380. },
  4381. "time": "2023-09-23T14:17:50+00:00"
  4382. },
  4383. {
  4384. "name": "psr/http-factory",
  4385. "version": "1.0.2",
  4386. "source": {
  4387. "type": "git",
  4388. "url": "https://github.com/php-fig/http-factory.git",
  4389. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4390. },
  4391. "dist": {
  4392. "type": "zip",
  4393. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4394. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  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": ">=7.0.0",
  4405. "psr/http-message": "^1.0 || ^2.0"
  4406. },
  4407. "type": "library",
  4408. "extra": {
  4409. "branch-alias": {
  4410. "dev-master": "1.0.x-dev"
  4411. }
  4412. },
  4413. "autoload": {
  4414. "psr-4": {
  4415. "Psr\\Http\\Message\\": "src/"
  4416. }
  4417. },
  4418. "notification-url": "https://packagist.org/downloads/",
  4419. "license": [
  4420. "MIT"
  4421. ],
  4422. "authors": [
  4423. {
  4424. "name": "PHP-FIG",
  4425. "homepage": "https://www.php-fig.org/"
  4426. }
  4427. ],
  4428. "description": "Common interfaces for PSR-7 HTTP message factories",
  4429. "keywords": [
  4430. "factory",
  4431. "http",
  4432. "message",
  4433. "psr",
  4434. "psr-17",
  4435. "psr-7",
  4436. "request",
  4437. "response"
  4438. ],
  4439. "support": {
  4440. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4441. },
  4442. "time": "2023-04-10T20:10:41+00:00"
  4443. },
  4444. {
  4445. "name": "psr/http-message",
  4446. "version": "1.1",
  4447. "source": {
  4448. "type": "git",
  4449. "url": "https://github.com/php-fig/http-message.git",
  4450. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4451. },
  4452. "dist": {
  4453. "type": "zip",
  4454. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4455. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4456. "shasum": "",
  4457. "mirrors": [
  4458. {
  4459. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4460. "preferred": true
  4461. }
  4462. ]
  4463. },
  4464. "require": {
  4465. "php": "^7.2 || ^8.0"
  4466. },
  4467. "type": "library",
  4468. "extra": {
  4469. "branch-alias": {
  4470. "dev-master": "1.1.x-dev"
  4471. }
  4472. },
  4473. "autoload": {
  4474. "psr-4": {
  4475. "Psr\\Http\\Message\\": "src/"
  4476. }
  4477. },
  4478. "notification-url": "https://packagist.org/downloads/",
  4479. "license": [
  4480. "MIT"
  4481. ],
  4482. "authors": [
  4483. {
  4484. "name": "PHP-FIG",
  4485. "homepage": "http://www.php-fig.org/"
  4486. }
  4487. ],
  4488. "description": "Common interface for HTTP messages",
  4489. "homepage": "https://github.com/php-fig/http-message",
  4490. "keywords": [
  4491. "http",
  4492. "http-message",
  4493. "psr",
  4494. "psr-7",
  4495. "request",
  4496. "response"
  4497. ],
  4498. "support": {
  4499. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4500. },
  4501. "time": "2023-04-04T09:50:52+00:00"
  4502. },
  4503. {
  4504. "name": "psr/log",
  4505. "version": "1.1.4",
  4506. "source": {
  4507. "type": "git",
  4508. "url": "https://github.com/php-fig/log.git",
  4509. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4510. },
  4511. "dist": {
  4512. "type": "zip",
  4513. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4514. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4515. "shasum": "",
  4516. "mirrors": [
  4517. {
  4518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4519. "preferred": true
  4520. }
  4521. ]
  4522. },
  4523. "require": {
  4524. "php": ">=5.3.0"
  4525. },
  4526. "type": "library",
  4527. "extra": {
  4528. "branch-alias": {
  4529. "dev-master": "1.1.x-dev"
  4530. }
  4531. },
  4532. "autoload": {
  4533. "psr-4": {
  4534. "Psr\\Log\\": "Psr/Log/"
  4535. }
  4536. },
  4537. "notification-url": "https://packagist.org/downloads/",
  4538. "license": [
  4539. "MIT"
  4540. ],
  4541. "authors": [
  4542. {
  4543. "name": "PHP-FIG",
  4544. "homepage": "https://www.php-fig.org/"
  4545. }
  4546. ],
  4547. "description": "Common interface for logging libraries",
  4548. "homepage": "https://github.com/php-fig/log",
  4549. "keywords": [
  4550. "log",
  4551. "psr",
  4552. "psr-3"
  4553. ],
  4554. "support": {
  4555. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4556. },
  4557. "time": "2021-05-03T11:20:27+00:00"
  4558. },
  4559. {
  4560. "name": "psr/simple-cache",
  4561. "version": "1.0.1",
  4562. "source": {
  4563. "type": "git",
  4564. "url": "https://github.com/php-fig/simple-cache.git",
  4565. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4566. },
  4567. "dist": {
  4568. "type": "zip",
  4569. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4570. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4571. "shasum": "",
  4572. "mirrors": [
  4573. {
  4574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4575. "preferred": true
  4576. }
  4577. ]
  4578. },
  4579. "require": {
  4580. "php": ">=5.3.0"
  4581. },
  4582. "type": "library",
  4583. "extra": {
  4584. "branch-alias": {
  4585. "dev-master": "1.0.x-dev"
  4586. }
  4587. },
  4588. "autoload": {
  4589. "psr-4": {
  4590. "Psr\\SimpleCache\\": "src/"
  4591. }
  4592. },
  4593. "notification-url": "https://packagist.org/downloads/",
  4594. "license": [
  4595. "MIT"
  4596. ],
  4597. "authors": [
  4598. {
  4599. "name": "PHP-FIG",
  4600. "homepage": "http://www.php-fig.org/"
  4601. }
  4602. ],
  4603. "description": "Common interfaces for simple caching",
  4604. "keywords": [
  4605. "cache",
  4606. "caching",
  4607. "psr",
  4608. "psr-16",
  4609. "simple-cache"
  4610. ],
  4611. "support": {
  4612. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4613. },
  4614. "time": "2017-10-23T01:57:42+00:00"
  4615. },
  4616. {
  4617. "name": "psy/psysh",
  4618. "version": "v0.12.0",
  4619. "source": {
  4620. "type": "git",
  4621. "url": "https://github.com/bobthecow/psysh.git",
  4622. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  4623. },
  4624. "dist": {
  4625. "type": "zip",
  4626. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  4627. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  4628. "shasum": "",
  4629. "mirrors": [
  4630. {
  4631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4632. "preferred": true
  4633. }
  4634. ]
  4635. },
  4636. "require": {
  4637. "ext-json": "*",
  4638. "ext-tokenizer": "*",
  4639. "nikic/php-parser": "^5.0 || ^4.0",
  4640. "php": "^8.0 || ^7.4",
  4641. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4642. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4643. },
  4644. "conflict": {
  4645. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4646. },
  4647. "require-dev": {
  4648. "bamarni/composer-bin-plugin": "^1.2"
  4649. },
  4650. "suggest": {
  4651. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4652. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4653. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4654. },
  4655. "bin": [
  4656. "bin/psysh"
  4657. ],
  4658. "type": "library",
  4659. "extra": {
  4660. "branch-alias": {
  4661. "dev-main": "0.12.x-dev"
  4662. },
  4663. "bamarni-bin": {
  4664. "bin-links": false,
  4665. "forward-command": false
  4666. }
  4667. },
  4668. "autoload": {
  4669. "files": [
  4670. "src/functions.php"
  4671. ],
  4672. "psr-4": {
  4673. "Psy\\": "src/"
  4674. }
  4675. },
  4676. "notification-url": "https://packagist.org/downloads/",
  4677. "license": [
  4678. "MIT"
  4679. ],
  4680. "authors": [
  4681. {
  4682. "name": "Justin Hileman",
  4683. "email": "justin@justinhileman.info",
  4684. "homepage": "http://justinhileman.com"
  4685. }
  4686. ],
  4687. "description": "An interactive shell for modern PHP.",
  4688. "homepage": "http://psysh.org",
  4689. "keywords": [
  4690. "REPL",
  4691. "console",
  4692. "interactive",
  4693. "shell"
  4694. ],
  4695. "support": {
  4696. "issues": "https://github.com/bobthecow/psysh/issues",
  4697. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  4698. },
  4699. "time": "2023-12-20T15:28:09+00:00"
  4700. },
  4701. {
  4702. "name": "ralouphie/getallheaders",
  4703. "version": "3.0.3",
  4704. "source": {
  4705. "type": "git",
  4706. "url": "https://github.com/ralouphie/getallheaders.git",
  4707. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4708. },
  4709. "dist": {
  4710. "type": "zip",
  4711. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4712. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4713. "shasum": "",
  4714. "mirrors": [
  4715. {
  4716. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4717. "preferred": true
  4718. }
  4719. ]
  4720. },
  4721. "require": {
  4722. "php": ">=5.6"
  4723. },
  4724. "require-dev": {
  4725. "php-coveralls/php-coveralls": "^2.1",
  4726. "phpunit/phpunit": "^5 || ^6.5"
  4727. },
  4728. "type": "library",
  4729. "autoload": {
  4730. "files": [
  4731. "src/getallheaders.php"
  4732. ]
  4733. },
  4734. "notification-url": "https://packagist.org/downloads/",
  4735. "license": [
  4736. "MIT"
  4737. ],
  4738. "authors": [
  4739. {
  4740. "name": "Ralph Khattar",
  4741. "email": "ralph.khattar@gmail.com"
  4742. }
  4743. ],
  4744. "description": "A polyfill for getallheaders.",
  4745. "support": {
  4746. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4747. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4748. },
  4749. "time": "2019-03-08T08:55:37+00:00"
  4750. },
  4751. {
  4752. "name": "ramsey/collection",
  4753. "version": "1.3.0",
  4754. "source": {
  4755. "type": "git",
  4756. "url": "https://github.com/ramsey/collection.git",
  4757. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4758. },
  4759. "dist": {
  4760. "type": "zip",
  4761. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4762. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4763. "shasum": "",
  4764. "mirrors": [
  4765. {
  4766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4767. "preferred": true
  4768. }
  4769. ]
  4770. },
  4771. "require": {
  4772. "php": "^7.4 || ^8.0",
  4773. "symfony/polyfill-php81": "^1.23"
  4774. },
  4775. "require-dev": {
  4776. "captainhook/plugin-composer": "^5.3",
  4777. "ergebnis/composer-normalize": "^2.28.3",
  4778. "fakerphp/faker": "^1.21",
  4779. "hamcrest/hamcrest-php": "^2.0",
  4780. "jangregor/phpstan-prophecy": "^1.0",
  4781. "mockery/mockery": "^1.5",
  4782. "php-parallel-lint/php-console-highlighter": "^1.0",
  4783. "php-parallel-lint/php-parallel-lint": "^1.3",
  4784. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4785. "phpspec/prophecy-phpunit": "^2.0",
  4786. "phpstan/extension-installer": "^1.2",
  4787. "phpstan/phpstan": "^1.9",
  4788. "phpstan/phpstan-mockery": "^1.1",
  4789. "phpstan/phpstan-phpunit": "^1.3",
  4790. "phpunit/phpunit": "^9.5",
  4791. "psalm/plugin-mockery": "^1.1",
  4792. "psalm/plugin-phpunit": "^0.18.4",
  4793. "ramsey/coding-standard": "^2.0.3",
  4794. "ramsey/conventional-commits": "^1.3",
  4795. "vimeo/psalm": "^5.4"
  4796. },
  4797. "type": "library",
  4798. "extra": {
  4799. "captainhook": {
  4800. "force-install": true
  4801. },
  4802. "ramsey/conventional-commits": {
  4803. "configFile": "conventional-commits.json"
  4804. }
  4805. },
  4806. "autoload": {
  4807. "psr-4": {
  4808. "Ramsey\\Collection\\": "src/"
  4809. }
  4810. },
  4811. "notification-url": "https://packagist.org/downloads/",
  4812. "license": [
  4813. "MIT"
  4814. ],
  4815. "authors": [
  4816. {
  4817. "name": "Ben Ramsey",
  4818. "email": "ben@benramsey.com",
  4819. "homepage": "https://benramsey.com"
  4820. }
  4821. ],
  4822. "description": "A PHP library for representing and manipulating collections.",
  4823. "keywords": [
  4824. "array",
  4825. "collection",
  4826. "hash",
  4827. "map",
  4828. "queue",
  4829. "set"
  4830. ],
  4831. "support": {
  4832. "issues": "https://github.com/ramsey/collection/issues",
  4833. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4834. },
  4835. "funding": [
  4836. {
  4837. "url": "https://github.com/ramsey",
  4838. "type": "github"
  4839. },
  4840. {
  4841. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4842. "type": "tidelift"
  4843. }
  4844. ],
  4845. "time": "2022-12-27T19:12:24+00:00"
  4846. },
  4847. {
  4848. "name": "ramsey/uuid",
  4849. "version": "4.2.3",
  4850. "source": {
  4851. "type": "git",
  4852. "url": "https://github.com/ramsey/uuid.git",
  4853. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4854. },
  4855. "dist": {
  4856. "type": "zip",
  4857. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4858. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4859. "shasum": "",
  4860. "mirrors": [
  4861. {
  4862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4863. "preferred": true
  4864. }
  4865. ]
  4866. },
  4867. "require": {
  4868. "brick/math": "^0.8 || ^0.9",
  4869. "ext-json": "*",
  4870. "php": "^7.2 || ^8.0",
  4871. "ramsey/collection": "^1.0",
  4872. "symfony/polyfill-ctype": "^1.8",
  4873. "symfony/polyfill-php80": "^1.14"
  4874. },
  4875. "replace": {
  4876. "rhumsaa/uuid": "self.version"
  4877. },
  4878. "require-dev": {
  4879. "captainhook/captainhook": "^5.10",
  4880. "captainhook/plugin-composer": "^5.3",
  4881. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4882. "doctrine/annotations": "^1.8",
  4883. "ergebnis/composer-normalize": "^2.15",
  4884. "mockery/mockery": "^1.3",
  4885. "moontoast/math": "^1.1",
  4886. "paragonie/random-lib": "^2",
  4887. "php-mock/php-mock": "^2.2",
  4888. "php-mock/php-mock-mockery": "^1.3",
  4889. "php-parallel-lint/php-parallel-lint": "^1.1",
  4890. "phpbench/phpbench": "^1.0",
  4891. "phpstan/extension-installer": "^1.0",
  4892. "phpstan/phpstan": "^0.12",
  4893. "phpstan/phpstan-mockery": "^0.12",
  4894. "phpstan/phpstan-phpunit": "^0.12",
  4895. "phpunit/phpunit": "^8.5 || ^9",
  4896. "slevomat/coding-standard": "^7.0",
  4897. "squizlabs/php_codesniffer": "^3.5",
  4898. "vimeo/psalm": "^4.9"
  4899. },
  4900. "suggest": {
  4901. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4902. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4903. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4904. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4905. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4906. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4907. },
  4908. "type": "library",
  4909. "extra": {
  4910. "branch-alias": {
  4911. "dev-main": "4.x-dev"
  4912. },
  4913. "captainhook": {
  4914. "force-install": true
  4915. }
  4916. },
  4917. "autoload": {
  4918. "files": [
  4919. "src/functions.php"
  4920. ],
  4921. "psr-4": {
  4922. "Ramsey\\Uuid\\": "src/"
  4923. }
  4924. },
  4925. "notification-url": "https://packagist.org/downloads/",
  4926. "license": [
  4927. "MIT"
  4928. ],
  4929. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4930. "keywords": [
  4931. "guid",
  4932. "identifier",
  4933. "uuid"
  4934. ],
  4935. "support": {
  4936. "issues": "https://github.com/ramsey/uuid/issues",
  4937. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4938. },
  4939. "funding": [
  4940. {
  4941. "url": "https://github.com/ramsey",
  4942. "type": "github"
  4943. },
  4944. {
  4945. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4946. "type": "tidelift"
  4947. }
  4948. ],
  4949. "time": "2021-09-25T23:10:38+00:00"
  4950. },
  4951. {
  4952. "name": "swiftmailer/swiftmailer",
  4953. "version": "v6.3.0",
  4954. "source": {
  4955. "type": "git",
  4956. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4957. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4958. },
  4959. "dist": {
  4960. "type": "zip",
  4961. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4962. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4963. "shasum": ""
  4964. },
  4965. "require": {
  4966. "egulias/email-validator": "^2.0|^3.1",
  4967. "php": ">=7.0.0",
  4968. "symfony/polyfill-iconv": "^1.0",
  4969. "symfony/polyfill-intl-idn": "^1.10",
  4970. "symfony/polyfill-mbstring": "^1.0"
  4971. },
  4972. "require-dev": {
  4973. "mockery/mockery": "^1.0",
  4974. "symfony/phpunit-bridge": "^4.4|^5.4"
  4975. },
  4976. "suggest": {
  4977. "ext-intl": "Needed to support internationalized email addresses"
  4978. },
  4979. "type": "library",
  4980. "extra": {
  4981. "branch-alias": {
  4982. "dev-master": "6.2-dev"
  4983. }
  4984. },
  4985. "autoload": {
  4986. "files": [
  4987. "lib/swift_required.php"
  4988. ]
  4989. },
  4990. "notification-url": "https://packagist.org/downloads/",
  4991. "license": [
  4992. "MIT"
  4993. ],
  4994. "authors": [
  4995. {
  4996. "name": "Chris Corbyn"
  4997. },
  4998. {
  4999. "name": "Fabien Potencier",
  5000. "email": "fabien@symfony.com"
  5001. }
  5002. ],
  5003. "description": "Swiftmailer, free feature-rich PHP mailer",
  5004. "homepage": "https://swiftmailer.symfony.com",
  5005. "keywords": [
  5006. "email",
  5007. "mail",
  5008. "mailer"
  5009. ],
  5010. "support": {
  5011. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5012. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5013. },
  5014. "funding": [
  5015. {
  5016. "url": "https://github.com/fabpot",
  5017. "type": "github"
  5018. },
  5019. {
  5020. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5021. "type": "tidelift"
  5022. }
  5023. ],
  5024. "abandoned": "symfony/mailer",
  5025. "time": "2021-10-18T15:26:12+00:00"
  5026. },
  5027. {
  5028. "name": "symfony/cache",
  5029. "version": "v5.4.42",
  5030. "source": {
  5031. "type": "git",
  5032. "url": "https://github.com/symfony/cache.git",
  5033. "reference": "6f5f750692bd5a212e01a4f1945fd856bceef89e"
  5034. },
  5035. "dist": {
  5036. "type": "zip",
  5037. "url": "https://api.github.com/repos/symfony/cache/zipball/6f5f750692bd5a212e01a4f1945fd856bceef89e",
  5038. "reference": "6f5f750692bd5a212e01a4f1945fd856bceef89e",
  5039. "shasum": ""
  5040. },
  5041. "require": {
  5042. "php": ">=7.2.5",
  5043. "psr/cache": "^1.0|^2.0",
  5044. "psr/log": "^1.1|^2|^3",
  5045. "symfony/cache-contracts": "^1.1.7|^2",
  5046. "symfony/deprecation-contracts": "^2.1|^3",
  5047. "symfony/polyfill-php73": "^1.9",
  5048. "symfony/polyfill-php80": "^1.16",
  5049. "symfony/service-contracts": "^1.1|^2|^3",
  5050. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  5051. },
  5052. "conflict": {
  5053. "doctrine/dbal": "<2.13.1",
  5054. "symfony/dependency-injection": "<4.4",
  5055. "symfony/http-kernel": "<4.4",
  5056. "symfony/var-dumper": "<4.4"
  5057. },
  5058. "provide": {
  5059. "psr/cache-implementation": "1.0|2.0",
  5060. "psr/simple-cache-implementation": "1.0|2.0",
  5061. "symfony/cache-implementation": "1.0|2.0"
  5062. },
  5063. "require-dev": {
  5064. "cache/integration-tests": "dev-master",
  5065. "doctrine/cache": "^1.6|^2.0",
  5066. "doctrine/dbal": "^2.13.1|^3|^4",
  5067. "predis/predis": "^1.1|^2.0",
  5068. "psr/simple-cache": "^1.0|^2.0",
  5069. "symfony/config": "^4.4|^5.0|^6.0",
  5070. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5071. "symfony/filesystem": "^4.4|^5.0|^6.0",
  5072. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5073. "symfony/messenger": "^4.4|^5.0|^6.0",
  5074. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5075. },
  5076. "type": "library",
  5077. "autoload": {
  5078. "psr-4": {
  5079. "Symfony\\Component\\Cache\\": ""
  5080. },
  5081. "exclude-from-classmap": [
  5082. "/Tests/"
  5083. ]
  5084. },
  5085. "notification-url": "https://packagist.org/downloads/",
  5086. "license": [
  5087. "MIT"
  5088. ],
  5089. "authors": [
  5090. {
  5091. "name": "Nicolas Grekas",
  5092. "email": "p@tchwork.com"
  5093. },
  5094. {
  5095. "name": "Symfony Community",
  5096. "homepage": "https://symfony.com/contributors"
  5097. }
  5098. ],
  5099. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5100. "homepage": "https://symfony.com",
  5101. "keywords": [
  5102. "caching",
  5103. "psr6"
  5104. ],
  5105. "support": {
  5106. "source": "https://github.com/symfony/cache/tree/v5.4.42"
  5107. },
  5108. "funding": [
  5109. {
  5110. "url": "https://symfony.com/sponsor",
  5111. "type": "custom"
  5112. },
  5113. {
  5114. "url": "https://github.com/fabpot",
  5115. "type": "github"
  5116. },
  5117. {
  5118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5119. "type": "tidelift"
  5120. }
  5121. ],
  5122. "time": "2024-07-10T06:02:18+00:00"
  5123. },
  5124. {
  5125. "name": "symfony/cache-contracts",
  5126. "version": "v2.5.3",
  5127. "source": {
  5128. "type": "git",
  5129. "url": "https://github.com/symfony/cache-contracts.git",
  5130. "reference": "fee6db04d913094e2fb55ff8e7db5685a8134463"
  5131. },
  5132. "dist": {
  5133. "type": "zip",
  5134. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/fee6db04d913094e2fb55ff8e7db5685a8134463",
  5135. "reference": "fee6db04d913094e2fb55ff8e7db5685a8134463",
  5136. "shasum": ""
  5137. },
  5138. "require": {
  5139. "php": ">=7.2.5",
  5140. "psr/cache": "^1.0|^2.0|^3.0"
  5141. },
  5142. "suggest": {
  5143. "symfony/cache-implementation": ""
  5144. },
  5145. "type": "library",
  5146. "extra": {
  5147. "branch-alias": {
  5148. "dev-main": "2.5-dev"
  5149. },
  5150. "thanks": {
  5151. "name": "symfony/contracts",
  5152. "url": "https://github.com/symfony/contracts"
  5153. }
  5154. },
  5155. "autoload": {
  5156. "psr-4": {
  5157. "Symfony\\Contracts\\Cache\\": ""
  5158. }
  5159. },
  5160. "notification-url": "https://packagist.org/downloads/",
  5161. "license": [
  5162. "MIT"
  5163. ],
  5164. "authors": [
  5165. {
  5166. "name": "Nicolas Grekas",
  5167. "email": "p@tchwork.com"
  5168. },
  5169. {
  5170. "name": "Symfony Community",
  5171. "homepage": "https://symfony.com/contributors"
  5172. }
  5173. ],
  5174. "description": "Generic abstractions related to caching",
  5175. "homepage": "https://symfony.com",
  5176. "keywords": [
  5177. "abstractions",
  5178. "contracts",
  5179. "decoupling",
  5180. "interfaces",
  5181. "interoperability",
  5182. "standards"
  5183. ],
  5184. "support": {
  5185. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.3"
  5186. },
  5187. "funding": [
  5188. {
  5189. "url": "https://symfony.com/sponsor",
  5190. "type": "custom"
  5191. },
  5192. {
  5193. "url": "https://github.com/fabpot",
  5194. "type": "github"
  5195. },
  5196. {
  5197. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5198. "type": "tidelift"
  5199. }
  5200. ],
  5201. "time": "2024-01-23T13:51:25+00:00"
  5202. },
  5203. {
  5204. "name": "symfony/console",
  5205. "version": "v5.4.34",
  5206. "source": {
  5207. "type": "git",
  5208. "url": "https://github.com/symfony/console.git",
  5209. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c"
  5210. },
  5211. "dist": {
  5212. "type": "zip",
  5213. "url": "https://api.github.com/repos/symfony/console/zipball/4b4d8cd118484aa604ec519062113dd87abde18c",
  5214. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c",
  5215. "shasum": "",
  5216. "mirrors": [
  5217. {
  5218. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5219. "preferred": true
  5220. }
  5221. ]
  5222. },
  5223. "require": {
  5224. "php": ">=7.2.5",
  5225. "symfony/deprecation-contracts": "^2.1|^3",
  5226. "symfony/polyfill-mbstring": "~1.0",
  5227. "symfony/polyfill-php73": "^1.9",
  5228. "symfony/polyfill-php80": "^1.16",
  5229. "symfony/service-contracts": "^1.1|^2|^3",
  5230. "symfony/string": "^5.1|^6.0"
  5231. },
  5232. "conflict": {
  5233. "psr/log": ">=3",
  5234. "symfony/dependency-injection": "<4.4",
  5235. "symfony/dotenv": "<5.1",
  5236. "symfony/event-dispatcher": "<4.4",
  5237. "symfony/lock": "<4.4",
  5238. "symfony/process": "<4.4"
  5239. },
  5240. "provide": {
  5241. "psr/log-implementation": "1.0|2.0"
  5242. },
  5243. "require-dev": {
  5244. "psr/log": "^1|^2",
  5245. "symfony/config": "^4.4|^5.0|^6.0",
  5246. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5247. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5248. "symfony/lock": "^4.4|^5.0|^6.0",
  5249. "symfony/process": "^4.4|^5.0|^6.0",
  5250. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5251. },
  5252. "suggest": {
  5253. "psr/log": "For using the console logger",
  5254. "symfony/event-dispatcher": "",
  5255. "symfony/lock": "",
  5256. "symfony/process": ""
  5257. },
  5258. "type": "library",
  5259. "autoload": {
  5260. "psr-4": {
  5261. "Symfony\\Component\\Console\\": ""
  5262. },
  5263. "exclude-from-classmap": [
  5264. "/Tests/"
  5265. ]
  5266. },
  5267. "notification-url": "https://packagist.org/downloads/",
  5268. "license": [
  5269. "MIT"
  5270. ],
  5271. "authors": [
  5272. {
  5273. "name": "Fabien Potencier",
  5274. "email": "fabien@symfony.com"
  5275. },
  5276. {
  5277. "name": "Symfony Community",
  5278. "homepage": "https://symfony.com/contributors"
  5279. }
  5280. ],
  5281. "description": "Eases the creation of beautiful and testable command line interfaces",
  5282. "homepage": "https://symfony.com",
  5283. "keywords": [
  5284. "cli",
  5285. "command-line",
  5286. "console",
  5287. "terminal"
  5288. ],
  5289. "support": {
  5290. "source": "https://github.com/symfony/console/tree/v5.4.34"
  5291. },
  5292. "funding": [
  5293. {
  5294. "url": "https://symfony.com/sponsor",
  5295. "type": "custom"
  5296. },
  5297. {
  5298. "url": "https://github.com/fabpot",
  5299. "type": "github"
  5300. },
  5301. {
  5302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5303. "type": "tidelift"
  5304. }
  5305. ],
  5306. "time": "2023-12-08T13:33:03+00:00"
  5307. },
  5308. {
  5309. "name": "symfony/css-selector",
  5310. "version": "v5.4.26",
  5311. "source": {
  5312. "type": "git",
  5313. "url": "https://github.com/symfony/css-selector.git",
  5314. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a"
  5315. },
  5316. "dist": {
  5317. "type": "zip",
  5318. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  5319. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  5320. "shasum": "",
  5321. "mirrors": [
  5322. {
  5323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5324. "preferred": true
  5325. }
  5326. ]
  5327. },
  5328. "require": {
  5329. "php": ">=7.2.5",
  5330. "symfony/polyfill-php80": "^1.16"
  5331. },
  5332. "type": "library",
  5333. "autoload": {
  5334. "psr-4": {
  5335. "Symfony\\Component\\CssSelector\\": ""
  5336. },
  5337. "exclude-from-classmap": [
  5338. "/Tests/"
  5339. ]
  5340. },
  5341. "notification-url": "https://packagist.org/downloads/",
  5342. "license": [
  5343. "MIT"
  5344. ],
  5345. "authors": [
  5346. {
  5347. "name": "Fabien Potencier",
  5348. "email": "fabien@symfony.com"
  5349. },
  5350. {
  5351. "name": "Jean-François Simon",
  5352. "email": "jeanfrancois.simon@sensiolabs.com"
  5353. },
  5354. {
  5355. "name": "Symfony Community",
  5356. "homepage": "https://symfony.com/contributors"
  5357. }
  5358. ],
  5359. "description": "Converts CSS selectors to XPath expressions",
  5360. "homepage": "https://symfony.com",
  5361. "support": {
  5362. "source": "https://github.com/symfony/css-selector/tree/v5.4.26"
  5363. },
  5364. "funding": [
  5365. {
  5366. "url": "https://symfony.com/sponsor",
  5367. "type": "custom"
  5368. },
  5369. {
  5370. "url": "https://github.com/fabpot",
  5371. "type": "github"
  5372. },
  5373. {
  5374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5375. "type": "tidelift"
  5376. }
  5377. ],
  5378. "time": "2023-07-07T06:10:25+00:00"
  5379. },
  5380. {
  5381. "name": "symfony/deprecation-contracts",
  5382. "version": "v2.5.2",
  5383. "source": {
  5384. "type": "git",
  5385. "url": "https://github.com/symfony/deprecation-contracts.git",
  5386. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  5387. },
  5388. "dist": {
  5389. "type": "zip",
  5390. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5391. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5392. "shasum": "",
  5393. "mirrors": [
  5394. {
  5395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5396. "preferred": true
  5397. }
  5398. ]
  5399. },
  5400. "require": {
  5401. "php": ">=7.1"
  5402. },
  5403. "type": "library",
  5404. "extra": {
  5405. "branch-alias": {
  5406. "dev-main": "2.5-dev"
  5407. },
  5408. "thanks": {
  5409. "name": "symfony/contracts",
  5410. "url": "https://github.com/symfony/contracts"
  5411. }
  5412. },
  5413. "autoload": {
  5414. "files": [
  5415. "function.php"
  5416. ]
  5417. },
  5418. "notification-url": "https://packagist.org/downloads/",
  5419. "license": [
  5420. "MIT"
  5421. ],
  5422. "authors": [
  5423. {
  5424. "name": "Nicolas Grekas",
  5425. "email": "p@tchwork.com"
  5426. },
  5427. {
  5428. "name": "Symfony Community",
  5429. "homepage": "https://symfony.com/contributors"
  5430. }
  5431. ],
  5432. "description": "A generic function and convention to trigger deprecation notices",
  5433. "homepage": "https://symfony.com",
  5434. "support": {
  5435. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  5436. },
  5437. "funding": [
  5438. {
  5439. "url": "https://symfony.com/sponsor",
  5440. "type": "custom"
  5441. },
  5442. {
  5443. "url": "https://github.com/fabpot",
  5444. "type": "github"
  5445. },
  5446. {
  5447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5448. "type": "tidelift"
  5449. }
  5450. ],
  5451. "time": "2022-01-02T09:53:40+00:00"
  5452. },
  5453. {
  5454. "name": "symfony/error-handler",
  5455. "version": "v5.4.29",
  5456. "source": {
  5457. "type": "git",
  5458. "url": "https://github.com/symfony/error-handler.git",
  5459. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  5460. },
  5461. "dist": {
  5462. "type": "zip",
  5463. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  5464. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  5465. "shasum": "",
  5466. "mirrors": [
  5467. {
  5468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5469. "preferred": true
  5470. }
  5471. ]
  5472. },
  5473. "require": {
  5474. "php": ">=7.2.5",
  5475. "psr/log": "^1|^2|^3",
  5476. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5477. },
  5478. "require-dev": {
  5479. "symfony/deprecation-contracts": "^2.1|^3",
  5480. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5481. "symfony/serializer": "^4.4|^5.0|^6.0"
  5482. },
  5483. "bin": [
  5484. "Resources/bin/patch-type-declarations"
  5485. ],
  5486. "type": "library",
  5487. "autoload": {
  5488. "psr-4": {
  5489. "Symfony\\Component\\ErrorHandler\\": ""
  5490. },
  5491. "exclude-from-classmap": [
  5492. "/Tests/"
  5493. ]
  5494. },
  5495. "notification-url": "https://packagist.org/downloads/",
  5496. "license": [
  5497. "MIT"
  5498. ],
  5499. "authors": [
  5500. {
  5501. "name": "Fabien Potencier",
  5502. "email": "fabien@symfony.com"
  5503. },
  5504. {
  5505. "name": "Symfony Community",
  5506. "homepage": "https://symfony.com/contributors"
  5507. }
  5508. ],
  5509. "description": "Provides tools to manage errors and ease debugging PHP code",
  5510. "homepage": "https://symfony.com",
  5511. "support": {
  5512. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  5513. },
  5514. "funding": [
  5515. {
  5516. "url": "https://symfony.com/sponsor",
  5517. "type": "custom"
  5518. },
  5519. {
  5520. "url": "https://github.com/fabpot",
  5521. "type": "github"
  5522. },
  5523. {
  5524. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5525. "type": "tidelift"
  5526. }
  5527. ],
  5528. "time": "2023-09-06T21:54:06+00:00"
  5529. },
  5530. {
  5531. "name": "symfony/event-dispatcher",
  5532. "version": "v5.4.34",
  5533. "source": {
  5534. "type": "git",
  5535. "url": "https://github.com/symfony/event-dispatcher.git",
  5536. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3"
  5537. },
  5538. "dist": {
  5539. "type": "zip",
  5540. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  5541. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  5542. "shasum": "",
  5543. "mirrors": [
  5544. {
  5545. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5546. "preferred": true
  5547. }
  5548. ]
  5549. },
  5550. "require": {
  5551. "php": ">=7.2.5",
  5552. "symfony/deprecation-contracts": "^2.1|^3",
  5553. "symfony/event-dispatcher-contracts": "^2|^3",
  5554. "symfony/polyfill-php80": "^1.16"
  5555. },
  5556. "conflict": {
  5557. "symfony/dependency-injection": "<4.4"
  5558. },
  5559. "provide": {
  5560. "psr/event-dispatcher-implementation": "1.0",
  5561. "symfony/event-dispatcher-implementation": "2.0"
  5562. },
  5563. "require-dev": {
  5564. "psr/log": "^1|^2|^3",
  5565. "symfony/config": "^4.4|^5.0|^6.0",
  5566. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5567. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5568. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5569. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5570. "symfony/service-contracts": "^1.1|^2|^3",
  5571. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5572. },
  5573. "suggest": {
  5574. "symfony/dependency-injection": "",
  5575. "symfony/http-kernel": ""
  5576. },
  5577. "type": "library",
  5578. "autoload": {
  5579. "psr-4": {
  5580. "Symfony\\Component\\EventDispatcher\\": ""
  5581. },
  5582. "exclude-from-classmap": [
  5583. "/Tests/"
  5584. ]
  5585. },
  5586. "notification-url": "https://packagist.org/downloads/",
  5587. "license": [
  5588. "MIT"
  5589. ],
  5590. "authors": [
  5591. {
  5592. "name": "Fabien Potencier",
  5593. "email": "fabien@symfony.com"
  5594. },
  5595. {
  5596. "name": "Symfony Community",
  5597. "homepage": "https://symfony.com/contributors"
  5598. }
  5599. ],
  5600. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5601. "homepage": "https://symfony.com",
  5602. "support": {
  5603. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.34"
  5604. },
  5605. "funding": [
  5606. {
  5607. "url": "https://symfony.com/sponsor",
  5608. "type": "custom"
  5609. },
  5610. {
  5611. "url": "https://github.com/fabpot",
  5612. "type": "github"
  5613. },
  5614. {
  5615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5616. "type": "tidelift"
  5617. }
  5618. ],
  5619. "time": "2023-12-27T21:12:56+00:00"
  5620. },
  5621. {
  5622. "name": "symfony/event-dispatcher-contracts",
  5623. "version": "v2.5.2",
  5624. "source": {
  5625. "type": "git",
  5626. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5627. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  5628. },
  5629. "dist": {
  5630. "type": "zip",
  5631. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  5632. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  5633. "shasum": "",
  5634. "mirrors": [
  5635. {
  5636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5637. "preferred": true
  5638. }
  5639. ]
  5640. },
  5641. "require": {
  5642. "php": ">=7.2.5",
  5643. "psr/event-dispatcher": "^1"
  5644. },
  5645. "suggest": {
  5646. "symfony/event-dispatcher-implementation": ""
  5647. },
  5648. "type": "library",
  5649. "extra": {
  5650. "branch-alias": {
  5651. "dev-main": "2.5-dev"
  5652. },
  5653. "thanks": {
  5654. "name": "symfony/contracts",
  5655. "url": "https://github.com/symfony/contracts"
  5656. }
  5657. },
  5658. "autoload": {
  5659. "psr-4": {
  5660. "Symfony\\Contracts\\EventDispatcher\\": ""
  5661. }
  5662. },
  5663. "notification-url": "https://packagist.org/downloads/",
  5664. "license": [
  5665. "MIT"
  5666. ],
  5667. "authors": [
  5668. {
  5669. "name": "Nicolas Grekas",
  5670. "email": "p@tchwork.com"
  5671. },
  5672. {
  5673. "name": "Symfony Community",
  5674. "homepage": "https://symfony.com/contributors"
  5675. }
  5676. ],
  5677. "description": "Generic abstractions related to dispatching event",
  5678. "homepage": "https://symfony.com",
  5679. "keywords": [
  5680. "abstractions",
  5681. "contracts",
  5682. "decoupling",
  5683. "interfaces",
  5684. "interoperability",
  5685. "standards"
  5686. ],
  5687. "support": {
  5688. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  5689. },
  5690. "funding": [
  5691. {
  5692. "url": "https://symfony.com/sponsor",
  5693. "type": "custom"
  5694. },
  5695. {
  5696. "url": "https://github.com/fabpot",
  5697. "type": "github"
  5698. },
  5699. {
  5700. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5701. "type": "tidelift"
  5702. }
  5703. ],
  5704. "time": "2022-01-02T09:53:40+00:00"
  5705. },
  5706. {
  5707. "name": "symfony/finder",
  5708. "version": "v5.4.27",
  5709. "source": {
  5710. "type": "git",
  5711. "url": "https://github.com/symfony/finder.git",
  5712. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  5713. },
  5714. "dist": {
  5715. "type": "zip",
  5716. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5717. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5718. "shasum": "",
  5719. "mirrors": [
  5720. {
  5721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5722. "preferred": true
  5723. }
  5724. ]
  5725. },
  5726. "require": {
  5727. "php": ">=7.2.5",
  5728. "symfony/deprecation-contracts": "^2.1|^3",
  5729. "symfony/polyfill-php80": "^1.16"
  5730. },
  5731. "type": "library",
  5732. "autoload": {
  5733. "psr-4": {
  5734. "Symfony\\Component\\Finder\\": ""
  5735. },
  5736. "exclude-from-classmap": [
  5737. "/Tests/"
  5738. ]
  5739. },
  5740. "notification-url": "https://packagist.org/downloads/",
  5741. "license": [
  5742. "MIT"
  5743. ],
  5744. "authors": [
  5745. {
  5746. "name": "Fabien Potencier",
  5747. "email": "fabien@symfony.com"
  5748. },
  5749. {
  5750. "name": "Symfony Community",
  5751. "homepage": "https://symfony.com/contributors"
  5752. }
  5753. ],
  5754. "description": "Finds files and directories via an intuitive fluent interface",
  5755. "homepage": "https://symfony.com",
  5756. "support": {
  5757. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  5758. },
  5759. "funding": [
  5760. {
  5761. "url": "https://symfony.com/sponsor",
  5762. "type": "custom"
  5763. },
  5764. {
  5765. "url": "https://github.com/fabpot",
  5766. "type": "github"
  5767. },
  5768. {
  5769. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5770. "type": "tidelift"
  5771. }
  5772. ],
  5773. "time": "2023-07-31T08:02:31+00:00"
  5774. },
  5775. {
  5776. "name": "symfony/http-foundation",
  5777. "version": "v5.4.34",
  5778. "source": {
  5779. "type": "git",
  5780. "url": "https://github.com/symfony/http-foundation.git",
  5781. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec"
  5782. },
  5783. "dist": {
  5784. "type": "zip",
  5785. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4da1713e88cf9c44bd4bf65f54772681222fcbec",
  5786. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec",
  5787. "shasum": "",
  5788. "mirrors": [
  5789. {
  5790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5791. "preferred": true
  5792. }
  5793. ]
  5794. },
  5795. "require": {
  5796. "php": ">=7.2.5",
  5797. "symfony/deprecation-contracts": "^2.1|^3",
  5798. "symfony/polyfill-mbstring": "~1.1",
  5799. "symfony/polyfill-php80": "^1.16"
  5800. },
  5801. "require-dev": {
  5802. "predis/predis": "~1.0",
  5803. "symfony/cache": "^4.4|^5.0|^6.0",
  5804. "symfony/dependency-injection": "^5.4|^6.0",
  5805. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5806. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5807. "symfony/mime": "^4.4|^5.0|^6.0",
  5808. "symfony/rate-limiter": "^5.2|^6.0"
  5809. },
  5810. "suggest": {
  5811. "symfony/mime": "To use the file extension guesser"
  5812. },
  5813. "type": "library",
  5814. "autoload": {
  5815. "psr-4": {
  5816. "Symfony\\Component\\HttpFoundation\\": ""
  5817. },
  5818. "exclude-from-classmap": [
  5819. "/Tests/"
  5820. ]
  5821. },
  5822. "notification-url": "https://packagist.org/downloads/",
  5823. "license": [
  5824. "MIT"
  5825. ],
  5826. "authors": [
  5827. {
  5828. "name": "Fabien Potencier",
  5829. "email": "fabien@symfony.com"
  5830. },
  5831. {
  5832. "name": "Symfony Community",
  5833. "homepage": "https://symfony.com/contributors"
  5834. }
  5835. ],
  5836. "description": "Defines an object-oriented layer for the HTTP specification",
  5837. "homepage": "https://symfony.com",
  5838. "support": {
  5839. "source": "https://github.com/symfony/http-foundation/tree/v5.4.34"
  5840. },
  5841. "funding": [
  5842. {
  5843. "url": "https://symfony.com/sponsor",
  5844. "type": "custom"
  5845. },
  5846. {
  5847. "url": "https://github.com/fabpot",
  5848. "type": "github"
  5849. },
  5850. {
  5851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5852. "type": "tidelift"
  5853. }
  5854. ],
  5855. "time": "2023-12-27T11:45:35+00:00"
  5856. },
  5857. {
  5858. "name": "symfony/http-kernel",
  5859. "version": "v5.4.34",
  5860. "source": {
  5861. "type": "git",
  5862. "url": "https://github.com/symfony/http-kernel.git",
  5863. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b"
  5864. },
  5865. "dist": {
  5866. "type": "zip",
  5867. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  5868. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  5869. "shasum": "",
  5870. "mirrors": [
  5871. {
  5872. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5873. "preferred": true
  5874. }
  5875. ]
  5876. },
  5877. "require": {
  5878. "php": ">=7.2.5",
  5879. "psr/log": "^1|^2",
  5880. "symfony/deprecation-contracts": "^2.1|^3",
  5881. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5882. "symfony/event-dispatcher": "^5.0|^6.0",
  5883. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5884. "symfony/polyfill-ctype": "^1.8",
  5885. "symfony/polyfill-php73": "^1.9",
  5886. "symfony/polyfill-php80": "^1.16"
  5887. },
  5888. "conflict": {
  5889. "symfony/browser-kit": "<5.4",
  5890. "symfony/cache": "<5.0",
  5891. "symfony/config": "<5.0",
  5892. "symfony/console": "<4.4",
  5893. "symfony/dependency-injection": "<5.3",
  5894. "symfony/doctrine-bridge": "<5.0",
  5895. "symfony/form": "<5.0",
  5896. "symfony/http-client": "<5.0",
  5897. "symfony/mailer": "<5.0",
  5898. "symfony/messenger": "<5.0",
  5899. "symfony/translation": "<5.0",
  5900. "symfony/twig-bridge": "<5.0",
  5901. "symfony/validator": "<5.0",
  5902. "twig/twig": "<2.13"
  5903. },
  5904. "provide": {
  5905. "psr/log-implementation": "1.0|2.0"
  5906. },
  5907. "require-dev": {
  5908. "psr/cache": "^1.0|^2.0|^3.0",
  5909. "symfony/browser-kit": "^5.4|^6.0",
  5910. "symfony/config": "^5.0|^6.0",
  5911. "symfony/console": "^4.4|^5.0|^6.0",
  5912. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5913. "symfony/dependency-injection": "^5.3|^6.0",
  5914. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5915. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5916. "symfony/finder": "^4.4|^5.0|^6.0",
  5917. "symfony/http-client-contracts": "^1.1|^2|^3",
  5918. "symfony/process": "^4.4|^5.0|^6.0",
  5919. "symfony/routing": "^4.4|^5.0|^6.0",
  5920. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  5921. "symfony/translation": "^4.4|^5.0|^6.0",
  5922. "symfony/translation-contracts": "^1.1|^2|^3",
  5923. "twig/twig": "^2.13|^3.0.4"
  5924. },
  5925. "suggest": {
  5926. "symfony/browser-kit": "",
  5927. "symfony/config": "",
  5928. "symfony/console": "",
  5929. "symfony/dependency-injection": ""
  5930. },
  5931. "type": "library",
  5932. "autoload": {
  5933. "psr-4": {
  5934. "Symfony\\Component\\HttpKernel\\": ""
  5935. },
  5936. "exclude-from-classmap": [
  5937. "/Tests/"
  5938. ]
  5939. },
  5940. "notification-url": "https://packagist.org/downloads/",
  5941. "license": [
  5942. "MIT"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "Fabien Potencier",
  5947. "email": "fabien@symfony.com"
  5948. },
  5949. {
  5950. "name": "Symfony Community",
  5951. "homepage": "https://symfony.com/contributors"
  5952. }
  5953. ],
  5954. "description": "Provides a structured process for converting a Request into a Response",
  5955. "homepage": "https://symfony.com",
  5956. "support": {
  5957. "source": "https://github.com/symfony/http-kernel/tree/v5.4.34"
  5958. },
  5959. "funding": [
  5960. {
  5961. "url": "https://symfony.com/sponsor",
  5962. "type": "custom"
  5963. },
  5964. {
  5965. "url": "https://github.com/fabpot",
  5966. "type": "github"
  5967. },
  5968. {
  5969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5970. "type": "tidelift"
  5971. }
  5972. ],
  5973. "time": "2023-12-30T13:02:02+00:00"
  5974. },
  5975. {
  5976. "name": "symfony/mime",
  5977. "version": "v5.4.26",
  5978. "source": {
  5979. "type": "git",
  5980. "url": "https://github.com/symfony/mime.git",
  5981. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  5982. },
  5983. "dist": {
  5984. "type": "zip",
  5985. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  5986. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  5987. "shasum": "",
  5988. "mirrors": [
  5989. {
  5990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5991. "preferred": true
  5992. }
  5993. ]
  5994. },
  5995. "require": {
  5996. "php": ">=7.2.5",
  5997. "symfony/deprecation-contracts": "^2.1|^3",
  5998. "symfony/polyfill-intl-idn": "^1.10",
  5999. "symfony/polyfill-mbstring": "^1.0",
  6000. "symfony/polyfill-php80": "^1.16"
  6001. },
  6002. "conflict": {
  6003. "egulias/email-validator": "~3.0.0",
  6004. "phpdocumentor/reflection-docblock": "<3.2.2",
  6005. "phpdocumentor/type-resolver": "<1.4.0",
  6006. "symfony/mailer": "<4.4",
  6007. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  6008. },
  6009. "require-dev": {
  6010. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6011. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6012. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6013. "symfony/property-access": "^4.4|^5.1|^6.0",
  6014. "symfony/property-info": "^4.4|^5.1|^6.0",
  6015. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  6016. },
  6017. "type": "library",
  6018. "autoload": {
  6019. "psr-4": {
  6020. "Symfony\\Component\\Mime\\": ""
  6021. },
  6022. "exclude-from-classmap": [
  6023. "/Tests/"
  6024. ]
  6025. },
  6026. "notification-url": "https://packagist.org/downloads/",
  6027. "license": [
  6028. "MIT"
  6029. ],
  6030. "authors": [
  6031. {
  6032. "name": "Fabien Potencier",
  6033. "email": "fabien@symfony.com"
  6034. },
  6035. {
  6036. "name": "Symfony Community",
  6037. "homepage": "https://symfony.com/contributors"
  6038. }
  6039. ],
  6040. "description": "Allows manipulating MIME messages",
  6041. "homepage": "https://symfony.com",
  6042. "keywords": [
  6043. "mime",
  6044. "mime-type"
  6045. ],
  6046. "support": {
  6047. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  6048. },
  6049. "funding": [
  6050. {
  6051. "url": "https://symfony.com/sponsor",
  6052. "type": "custom"
  6053. },
  6054. {
  6055. "url": "https://github.com/fabpot",
  6056. "type": "github"
  6057. },
  6058. {
  6059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6060. "type": "tidelift"
  6061. }
  6062. ],
  6063. "time": "2023-07-27T06:29:31+00:00"
  6064. },
  6065. {
  6066. "name": "symfony/polyfill-ctype",
  6067. "version": "v1.28.0",
  6068. "source": {
  6069. "type": "git",
  6070. "url": "https://github.com/symfony/polyfill-ctype.git",
  6071. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  6072. },
  6073. "dist": {
  6074. "type": "zip",
  6075. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6076. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6077. "shasum": "",
  6078. "mirrors": [
  6079. {
  6080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6081. "preferred": true
  6082. }
  6083. ]
  6084. },
  6085. "require": {
  6086. "php": ">=7.1"
  6087. },
  6088. "provide": {
  6089. "ext-ctype": "*"
  6090. },
  6091. "suggest": {
  6092. "ext-ctype": "For best performance"
  6093. },
  6094. "type": "library",
  6095. "extra": {
  6096. "branch-alias": {
  6097. "dev-main": "1.28-dev"
  6098. },
  6099. "thanks": {
  6100. "name": "symfony/polyfill",
  6101. "url": "https://github.com/symfony/polyfill"
  6102. }
  6103. },
  6104. "autoload": {
  6105. "files": [
  6106. "bootstrap.php"
  6107. ],
  6108. "psr-4": {
  6109. "Symfony\\Polyfill\\Ctype\\": ""
  6110. }
  6111. },
  6112. "notification-url": "https://packagist.org/downloads/",
  6113. "license": [
  6114. "MIT"
  6115. ],
  6116. "authors": [
  6117. {
  6118. "name": "Gert de Pagter",
  6119. "email": "BackEndTea@gmail.com"
  6120. },
  6121. {
  6122. "name": "Symfony Community",
  6123. "homepage": "https://symfony.com/contributors"
  6124. }
  6125. ],
  6126. "description": "Symfony polyfill for ctype functions",
  6127. "homepage": "https://symfony.com",
  6128. "keywords": [
  6129. "compatibility",
  6130. "ctype",
  6131. "polyfill",
  6132. "portable"
  6133. ],
  6134. "support": {
  6135. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  6136. },
  6137. "funding": [
  6138. {
  6139. "url": "https://symfony.com/sponsor",
  6140. "type": "custom"
  6141. },
  6142. {
  6143. "url": "https://github.com/fabpot",
  6144. "type": "github"
  6145. },
  6146. {
  6147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6148. "type": "tidelift"
  6149. }
  6150. ],
  6151. "time": "2023-01-26T09:26:14+00:00"
  6152. },
  6153. {
  6154. "name": "symfony/polyfill-iconv",
  6155. "version": "v1.30.0",
  6156. "source": {
  6157. "type": "git",
  6158. "url": "https://github.com/symfony/polyfill-iconv.git",
  6159. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805"
  6160. },
  6161. "dist": {
  6162. "type": "zip",
  6163. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c027e6a3c6aee334663ec21f5852e89738abc805",
  6164. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805",
  6165. "shasum": ""
  6166. },
  6167. "require": {
  6168. "php": ">=7.1"
  6169. },
  6170. "provide": {
  6171. "ext-iconv": "*"
  6172. },
  6173. "suggest": {
  6174. "ext-iconv": "For best performance"
  6175. },
  6176. "type": "library",
  6177. "extra": {
  6178. "thanks": {
  6179. "name": "symfony/polyfill",
  6180. "url": "https://github.com/symfony/polyfill"
  6181. }
  6182. },
  6183. "autoload": {
  6184. "files": [
  6185. "bootstrap.php"
  6186. ],
  6187. "psr-4": {
  6188. "Symfony\\Polyfill\\Iconv\\": ""
  6189. }
  6190. },
  6191. "notification-url": "https://packagist.org/downloads/",
  6192. "license": [
  6193. "MIT"
  6194. ],
  6195. "authors": [
  6196. {
  6197. "name": "Nicolas Grekas",
  6198. "email": "p@tchwork.com"
  6199. },
  6200. {
  6201. "name": "Symfony Community",
  6202. "homepage": "https://symfony.com/contributors"
  6203. }
  6204. ],
  6205. "description": "Symfony polyfill for the Iconv extension",
  6206. "homepage": "https://symfony.com",
  6207. "keywords": [
  6208. "compatibility",
  6209. "iconv",
  6210. "polyfill",
  6211. "portable",
  6212. "shim"
  6213. ],
  6214. "support": {
  6215. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.30.0"
  6216. },
  6217. "funding": [
  6218. {
  6219. "url": "https://symfony.com/sponsor",
  6220. "type": "custom"
  6221. },
  6222. {
  6223. "url": "https://github.com/fabpot",
  6224. "type": "github"
  6225. },
  6226. {
  6227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6228. "type": "tidelift"
  6229. }
  6230. ],
  6231. "time": "2024-05-31T15:07:36+00:00"
  6232. },
  6233. {
  6234. "name": "symfony/polyfill-intl-grapheme",
  6235. "version": "v1.28.0",
  6236. "source": {
  6237. "type": "git",
  6238. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6239. "reference": "875e90aeea2777b6f135677f618529449334a612"
  6240. },
  6241. "dist": {
  6242. "type": "zip",
  6243. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  6244. "reference": "875e90aeea2777b6f135677f618529449334a612",
  6245. "shasum": "",
  6246. "mirrors": [
  6247. {
  6248. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6249. "preferred": true
  6250. }
  6251. ]
  6252. },
  6253. "require": {
  6254. "php": ">=7.1"
  6255. },
  6256. "suggest": {
  6257. "ext-intl": "For best performance"
  6258. },
  6259. "type": "library",
  6260. "extra": {
  6261. "branch-alias": {
  6262. "dev-main": "1.28-dev"
  6263. },
  6264. "thanks": {
  6265. "name": "symfony/polyfill",
  6266. "url": "https://github.com/symfony/polyfill"
  6267. }
  6268. },
  6269. "autoload": {
  6270. "files": [
  6271. "bootstrap.php"
  6272. ],
  6273. "psr-4": {
  6274. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6275. }
  6276. },
  6277. "notification-url": "https://packagist.org/downloads/",
  6278. "license": [
  6279. "MIT"
  6280. ],
  6281. "authors": [
  6282. {
  6283. "name": "Nicolas Grekas",
  6284. "email": "p@tchwork.com"
  6285. },
  6286. {
  6287. "name": "Symfony Community",
  6288. "homepage": "https://symfony.com/contributors"
  6289. }
  6290. ],
  6291. "description": "Symfony polyfill for intl's grapheme_* functions",
  6292. "homepage": "https://symfony.com",
  6293. "keywords": [
  6294. "compatibility",
  6295. "grapheme",
  6296. "intl",
  6297. "polyfill",
  6298. "portable",
  6299. "shim"
  6300. ],
  6301. "support": {
  6302. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  6303. },
  6304. "funding": [
  6305. {
  6306. "url": "https://symfony.com/sponsor",
  6307. "type": "custom"
  6308. },
  6309. {
  6310. "url": "https://github.com/fabpot",
  6311. "type": "github"
  6312. },
  6313. {
  6314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6315. "type": "tidelift"
  6316. }
  6317. ],
  6318. "time": "2023-01-26T09:26:14+00:00"
  6319. },
  6320. {
  6321. "name": "symfony/polyfill-intl-idn",
  6322. "version": "v1.30.0",
  6323. "source": {
  6324. "type": "git",
  6325. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6326. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  6327. },
  6328. "dist": {
  6329. "type": "zip",
  6330. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  6331. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  6332. "shasum": ""
  6333. },
  6334. "require": {
  6335. "php": ">=7.1",
  6336. "symfony/polyfill-intl-normalizer": "^1.10",
  6337. "symfony/polyfill-php72": "^1.10"
  6338. },
  6339. "suggest": {
  6340. "ext-intl": "For best performance"
  6341. },
  6342. "type": "library",
  6343. "extra": {
  6344. "thanks": {
  6345. "name": "symfony/polyfill",
  6346. "url": "https://github.com/symfony/polyfill"
  6347. }
  6348. },
  6349. "autoload": {
  6350. "files": [
  6351. "bootstrap.php"
  6352. ],
  6353. "psr-4": {
  6354. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6355. }
  6356. },
  6357. "notification-url": "https://packagist.org/downloads/",
  6358. "license": [
  6359. "MIT"
  6360. ],
  6361. "authors": [
  6362. {
  6363. "name": "Laurent Bassin",
  6364. "email": "laurent@bassin.info"
  6365. },
  6366. {
  6367. "name": "Trevor Rowbotham",
  6368. "email": "trevor.rowbotham@pm.me"
  6369. },
  6370. {
  6371. "name": "Symfony Community",
  6372. "homepage": "https://symfony.com/contributors"
  6373. }
  6374. ],
  6375. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6376. "homepage": "https://symfony.com",
  6377. "keywords": [
  6378. "compatibility",
  6379. "idn",
  6380. "intl",
  6381. "polyfill",
  6382. "portable",
  6383. "shim"
  6384. ],
  6385. "support": {
  6386. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  6387. },
  6388. "funding": [
  6389. {
  6390. "url": "https://symfony.com/sponsor",
  6391. "type": "custom"
  6392. },
  6393. {
  6394. "url": "https://github.com/fabpot",
  6395. "type": "github"
  6396. },
  6397. {
  6398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6399. "type": "tidelift"
  6400. }
  6401. ],
  6402. "time": "2024-05-31T15:07:36+00:00"
  6403. },
  6404. {
  6405. "name": "symfony/polyfill-intl-normalizer",
  6406. "version": "v1.30.0",
  6407. "source": {
  6408. "type": "git",
  6409. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6410. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  6411. },
  6412. "dist": {
  6413. "type": "zip",
  6414. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  6415. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  6416. "shasum": ""
  6417. },
  6418. "require": {
  6419. "php": ">=7.1"
  6420. },
  6421. "suggest": {
  6422. "ext-intl": "For best performance"
  6423. },
  6424. "type": "library",
  6425. "extra": {
  6426. "thanks": {
  6427. "name": "symfony/polyfill",
  6428. "url": "https://github.com/symfony/polyfill"
  6429. }
  6430. },
  6431. "autoload": {
  6432. "files": [
  6433. "bootstrap.php"
  6434. ],
  6435. "psr-4": {
  6436. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6437. },
  6438. "classmap": [
  6439. "Resources/stubs"
  6440. ]
  6441. },
  6442. "notification-url": "https://packagist.org/downloads/",
  6443. "license": [
  6444. "MIT"
  6445. ],
  6446. "authors": [
  6447. {
  6448. "name": "Nicolas Grekas",
  6449. "email": "p@tchwork.com"
  6450. },
  6451. {
  6452. "name": "Symfony Community",
  6453. "homepage": "https://symfony.com/contributors"
  6454. }
  6455. ],
  6456. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6457. "homepage": "https://symfony.com",
  6458. "keywords": [
  6459. "compatibility",
  6460. "intl",
  6461. "normalizer",
  6462. "polyfill",
  6463. "portable",
  6464. "shim"
  6465. ],
  6466. "support": {
  6467. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  6468. },
  6469. "funding": [
  6470. {
  6471. "url": "https://symfony.com/sponsor",
  6472. "type": "custom"
  6473. },
  6474. {
  6475. "url": "https://github.com/fabpot",
  6476. "type": "github"
  6477. },
  6478. {
  6479. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6480. "type": "tidelift"
  6481. }
  6482. ],
  6483. "time": "2024-05-31T15:07:36+00:00"
  6484. },
  6485. {
  6486. "name": "symfony/polyfill-mbstring",
  6487. "version": "v1.30.0",
  6488. "source": {
  6489. "type": "git",
  6490. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6491. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  6492. },
  6493. "dist": {
  6494. "type": "zip",
  6495. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  6496. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  6497. "shasum": ""
  6498. },
  6499. "require": {
  6500. "php": ">=7.1"
  6501. },
  6502. "provide": {
  6503. "ext-mbstring": "*"
  6504. },
  6505. "suggest": {
  6506. "ext-mbstring": "For best performance"
  6507. },
  6508. "type": "library",
  6509. "extra": {
  6510. "thanks": {
  6511. "name": "symfony/polyfill",
  6512. "url": "https://github.com/symfony/polyfill"
  6513. }
  6514. },
  6515. "autoload": {
  6516. "files": [
  6517. "bootstrap.php"
  6518. ],
  6519. "psr-4": {
  6520. "Symfony\\Polyfill\\Mbstring\\": ""
  6521. }
  6522. },
  6523. "notification-url": "https://packagist.org/downloads/",
  6524. "license": [
  6525. "MIT"
  6526. ],
  6527. "authors": [
  6528. {
  6529. "name": "Nicolas Grekas",
  6530. "email": "p@tchwork.com"
  6531. },
  6532. {
  6533. "name": "Symfony Community",
  6534. "homepage": "https://symfony.com/contributors"
  6535. }
  6536. ],
  6537. "description": "Symfony polyfill for the Mbstring extension",
  6538. "homepage": "https://symfony.com",
  6539. "keywords": [
  6540. "compatibility",
  6541. "mbstring",
  6542. "polyfill",
  6543. "portable",
  6544. "shim"
  6545. ],
  6546. "support": {
  6547. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  6548. },
  6549. "funding": [
  6550. {
  6551. "url": "https://symfony.com/sponsor",
  6552. "type": "custom"
  6553. },
  6554. {
  6555. "url": "https://github.com/fabpot",
  6556. "type": "github"
  6557. },
  6558. {
  6559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6560. "type": "tidelift"
  6561. }
  6562. ],
  6563. "time": "2024-06-19T12:30:46+00:00"
  6564. },
  6565. {
  6566. "name": "symfony/polyfill-php72",
  6567. "version": "v1.30.0",
  6568. "source": {
  6569. "type": "git",
  6570. "url": "https://github.com/symfony/polyfill-php72.git",
  6571. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  6572. },
  6573. "dist": {
  6574. "type": "zip",
  6575. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  6576. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  6577. "shasum": ""
  6578. },
  6579. "require": {
  6580. "php": ">=7.1"
  6581. },
  6582. "type": "library",
  6583. "extra": {
  6584. "thanks": {
  6585. "name": "symfony/polyfill",
  6586. "url": "https://github.com/symfony/polyfill"
  6587. }
  6588. },
  6589. "autoload": {
  6590. "files": [
  6591. "bootstrap.php"
  6592. ],
  6593. "psr-4": {
  6594. "Symfony\\Polyfill\\Php72\\": ""
  6595. }
  6596. },
  6597. "notification-url": "https://packagist.org/downloads/",
  6598. "license": [
  6599. "MIT"
  6600. ],
  6601. "authors": [
  6602. {
  6603. "name": "Nicolas Grekas",
  6604. "email": "p@tchwork.com"
  6605. },
  6606. {
  6607. "name": "Symfony Community",
  6608. "homepage": "https://symfony.com/contributors"
  6609. }
  6610. ],
  6611. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6612. "homepage": "https://symfony.com",
  6613. "keywords": [
  6614. "compatibility",
  6615. "polyfill",
  6616. "portable",
  6617. "shim"
  6618. ],
  6619. "support": {
  6620. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  6621. },
  6622. "funding": [
  6623. {
  6624. "url": "https://symfony.com/sponsor",
  6625. "type": "custom"
  6626. },
  6627. {
  6628. "url": "https://github.com/fabpot",
  6629. "type": "github"
  6630. },
  6631. {
  6632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6633. "type": "tidelift"
  6634. }
  6635. ],
  6636. "time": "2024-06-19T12:30:46+00:00"
  6637. },
  6638. {
  6639. "name": "symfony/polyfill-php73",
  6640. "version": "v1.28.0",
  6641. "source": {
  6642. "type": "git",
  6643. "url": "https://github.com/symfony/polyfill-php73.git",
  6644. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  6645. },
  6646. "dist": {
  6647. "type": "zip",
  6648. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6649. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6650. "shasum": "",
  6651. "mirrors": [
  6652. {
  6653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6654. "preferred": true
  6655. }
  6656. ]
  6657. },
  6658. "require": {
  6659. "php": ">=7.1"
  6660. },
  6661. "type": "library",
  6662. "extra": {
  6663. "branch-alias": {
  6664. "dev-main": "1.28-dev"
  6665. },
  6666. "thanks": {
  6667. "name": "symfony/polyfill",
  6668. "url": "https://github.com/symfony/polyfill"
  6669. }
  6670. },
  6671. "autoload": {
  6672. "files": [
  6673. "bootstrap.php"
  6674. ],
  6675. "psr-4": {
  6676. "Symfony\\Polyfill\\Php73\\": ""
  6677. },
  6678. "classmap": [
  6679. "Resources/stubs"
  6680. ]
  6681. },
  6682. "notification-url": "https://packagist.org/downloads/",
  6683. "license": [
  6684. "MIT"
  6685. ],
  6686. "authors": [
  6687. {
  6688. "name": "Nicolas Grekas",
  6689. "email": "p@tchwork.com"
  6690. },
  6691. {
  6692. "name": "Symfony Community",
  6693. "homepage": "https://symfony.com/contributors"
  6694. }
  6695. ],
  6696. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6697. "homepage": "https://symfony.com",
  6698. "keywords": [
  6699. "compatibility",
  6700. "polyfill",
  6701. "portable",
  6702. "shim"
  6703. ],
  6704. "support": {
  6705. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  6706. },
  6707. "funding": [
  6708. {
  6709. "url": "https://symfony.com/sponsor",
  6710. "type": "custom"
  6711. },
  6712. {
  6713. "url": "https://github.com/fabpot",
  6714. "type": "github"
  6715. },
  6716. {
  6717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6718. "type": "tidelift"
  6719. }
  6720. ],
  6721. "time": "2023-01-26T09:26:14+00:00"
  6722. },
  6723. {
  6724. "name": "symfony/polyfill-php80",
  6725. "version": "v1.28.0",
  6726. "source": {
  6727. "type": "git",
  6728. "url": "https://github.com/symfony/polyfill-php80.git",
  6729. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  6730. },
  6731. "dist": {
  6732. "type": "zip",
  6733. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6734. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6735. "shasum": "",
  6736. "mirrors": [
  6737. {
  6738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6739. "preferred": true
  6740. }
  6741. ]
  6742. },
  6743. "require": {
  6744. "php": ">=7.1"
  6745. },
  6746. "type": "library",
  6747. "extra": {
  6748. "branch-alias": {
  6749. "dev-main": "1.28-dev"
  6750. },
  6751. "thanks": {
  6752. "name": "symfony/polyfill",
  6753. "url": "https://github.com/symfony/polyfill"
  6754. }
  6755. },
  6756. "autoload": {
  6757. "files": [
  6758. "bootstrap.php"
  6759. ],
  6760. "psr-4": {
  6761. "Symfony\\Polyfill\\Php80\\": ""
  6762. },
  6763. "classmap": [
  6764. "Resources/stubs"
  6765. ]
  6766. },
  6767. "notification-url": "https://packagist.org/downloads/",
  6768. "license": [
  6769. "MIT"
  6770. ],
  6771. "authors": [
  6772. {
  6773. "name": "Ion Bazan",
  6774. "email": "ion.bazan@gmail.com"
  6775. },
  6776. {
  6777. "name": "Nicolas Grekas",
  6778. "email": "p@tchwork.com"
  6779. },
  6780. {
  6781. "name": "Symfony Community",
  6782. "homepage": "https://symfony.com/contributors"
  6783. }
  6784. ],
  6785. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6786. "homepage": "https://symfony.com",
  6787. "keywords": [
  6788. "compatibility",
  6789. "polyfill",
  6790. "portable",
  6791. "shim"
  6792. ],
  6793. "support": {
  6794. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  6795. },
  6796. "funding": [
  6797. {
  6798. "url": "https://symfony.com/sponsor",
  6799. "type": "custom"
  6800. },
  6801. {
  6802. "url": "https://github.com/fabpot",
  6803. "type": "github"
  6804. },
  6805. {
  6806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6807. "type": "tidelift"
  6808. }
  6809. ],
  6810. "time": "2023-01-26T09:26:14+00:00"
  6811. },
  6812. {
  6813. "name": "symfony/polyfill-php81",
  6814. "version": "v1.28.0",
  6815. "source": {
  6816. "type": "git",
  6817. "url": "https://github.com/symfony/polyfill-php81.git",
  6818. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  6819. },
  6820. "dist": {
  6821. "type": "zip",
  6822. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  6823. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  6824. "shasum": "",
  6825. "mirrors": [
  6826. {
  6827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6828. "preferred": true
  6829. }
  6830. ]
  6831. },
  6832. "require": {
  6833. "php": ">=7.1"
  6834. },
  6835. "type": "library",
  6836. "extra": {
  6837. "branch-alias": {
  6838. "dev-main": "1.28-dev"
  6839. },
  6840. "thanks": {
  6841. "name": "symfony/polyfill",
  6842. "url": "https://github.com/symfony/polyfill"
  6843. }
  6844. },
  6845. "autoload": {
  6846. "files": [
  6847. "bootstrap.php"
  6848. ],
  6849. "psr-4": {
  6850. "Symfony\\Polyfill\\Php81\\": ""
  6851. },
  6852. "classmap": [
  6853. "Resources/stubs"
  6854. ]
  6855. },
  6856. "notification-url": "https://packagist.org/downloads/",
  6857. "license": [
  6858. "MIT"
  6859. ],
  6860. "authors": [
  6861. {
  6862. "name": "Nicolas Grekas",
  6863. "email": "p@tchwork.com"
  6864. },
  6865. {
  6866. "name": "Symfony Community",
  6867. "homepage": "https://symfony.com/contributors"
  6868. }
  6869. ],
  6870. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6871. "homepage": "https://symfony.com",
  6872. "keywords": [
  6873. "compatibility",
  6874. "polyfill",
  6875. "portable",
  6876. "shim"
  6877. ],
  6878. "support": {
  6879. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  6880. },
  6881. "funding": [
  6882. {
  6883. "url": "https://symfony.com/sponsor",
  6884. "type": "custom"
  6885. },
  6886. {
  6887. "url": "https://github.com/fabpot",
  6888. "type": "github"
  6889. },
  6890. {
  6891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6892. "type": "tidelift"
  6893. }
  6894. ],
  6895. "time": "2023-01-26T09:26:14+00:00"
  6896. },
  6897. {
  6898. "name": "symfony/process",
  6899. "version": "v5.4.34",
  6900. "source": {
  6901. "type": "git",
  6902. "url": "https://github.com/symfony/process.git",
  6903. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a"
  6904. },
  6905. "dist": {
  6906. "type": "zip",
  6907. "url": "https://api.github.com/repos/symfony/process/zipball/8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  6908. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  6909. "shasum": "",
  6910. "mirrors": [
  6911. {
  6912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6913. "preferred": true
  6914. }
  6915. ]
  6916. },
  6917. "require": {
  6918. "php": ">=7.2.5",
  6919. "symfony/polyfill-php80": "^1.16"
  6920. },
  6921. "type": "library",
  6922. "autoload": {
  6923. "psr-4": {
  6924. "Symfony\\Component\\Process\\": ""
  6925. },
  6926. "exclude-from-classmap": [
  6927. "/Tests/"
  6928. ]
  6929. },
  6930. "notification-url": "https://packagist.org/downloads/",
  6931. "license": [
  6932. "MIT"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "Fabien Potencier",
  6937. "email": "fabien@symfony.com"
  6938. },
  6939. {
  6940. "name": "Symfony Community",
  6941. "homepage": "https://symfony.com/contributors"
  6942. }
  6943. ],
  6944. "description": "Executes commands in sub-processes",
  6945. "homepage": "https://symfony.com",
  6946. "support": {
  6947. "source": "https://github.com/symfony/process/tree/v5.4.34"
  6948. },
  6949. "funding": [
  6950. {
  6951. "url": "https://symfony.com/sponsor",
  6952. "type": "custom"
  6953. },
  6954. {
  6955. "url": "https://github.com/fabpot",
  6956. "type": "github"
  6957. },
  6958. {
  6959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6960. "type": "tidelift"
  6961. }
  6962. ],
  6963. "time": "2023-12-02T08:41:43+00:00"
  6964. },
  6965. {
  6966. "name": "symfony/psr-http-message-bridge",
  6967. "version": "v2.3.1",
  6968. "source": {
  6969. "type": "git",
  6970. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6971. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  6972. },
  6973. "dist": {
  6974. "type": "zip",
  6975. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6976. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6977. "shasum": ""
  6978. },
  6979. "require": {
  6980. "php": ">=7.2.5",
  6981. "psr/http-message": "^1.0 || ^2.0",
  6982. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  6983. "symfony/http-foundation": "^5.4 || ^6.0"
  6984. },
  6985. "require-dev": {
  6986. "nyholm/psr7": "^1.1",
  6987. "psr/log": "^1.1 || ^2 || ^3",
  6988. "symfony/browser-kit": "^5.4 || ^6.0",
  6989. "symfony/config": "^5.4 || ^6.0",
  6990. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6991. "symfony/framework-bundle": "^5.4 || ^6.0",
  6992. "symfony/http-kernel": "^5.4 || ^6.0",
  6993. "symfony/phpunit-bridge": "^6.2"
  6994. },
  6995. "suggest": {
  6996. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6997. },
  6998. "type": "symfony-bridge",
  6999. "extra": {
  7000. "branch-alias": {
  7001. "dev-main": "2.3-dev"
  7002. }
  7003. },
  7004. "autoload": {
  7005. "psr-4": {
  7006. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7007. },
  7008. "exclude-from-classmap": [
  7009. "/Tests/"
  7010. ]
  7011. },
  7012. "notification-url": "https://packagist.org/downloads/",
  7013. "license": [
  7014. "MIT"
  7015. ],
  7016. "authors": [
  7017. {
  7018. "name": "Fabien Potencier",
  7019. "email": "fabien@symfony.com"
  7020. },
  7021. {
  7022. "name": "Symfony Community",
  7023. "homepage": "http://symfony.com/contributors"
  7024. }
  7025. ],
  7026. "description": "PSR HTTP message bridge",
  7027. "homepage": "http://symfony.com",
  7028. "keywords": [
  7029. "http",
  7030. "http-message",
  7031. "psr-17",
  7032. "psr-7"
  7033. ],
  7034. "support": {
  7035. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  7036. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  7037. },
  7038. "funding": [
  7039. {
  7040. "url": "https://symfony.com/sponsor",
  7041. "type": "custom"
  7042. },
  7043. {
  7044. "url": "https://github.com/fabpot",
  7045. "type": "github"
  7046. },
  7047. {
  7048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7049. "type": "tidelift"
  7050. }
  7051. ],
  7052. "time": "2023-07-26T11:53:26+00:00"
  7053. },
  7054. {
  7055. "name": "symfony/routing",
  7056. "version": "v5.4.34",
  7057. "source": {
  7058. "type": "git",
  7059. "url": "https://github.com/symfony/routing.git",
  7060. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0"
  7061. },
  7062. "dist": {
  7063. "type": "zip",
  7064. "url": "https://api.github.com/repos/symfony/routing/zipball/f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  7065. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  7066. "shasum": "",
  7067. "mirrors": [
  7068. {
  7069. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7070. "preferred": true
  7071. }
  7072. ]
  7073. },
  7074. "require": {
  7075. "php": ">=7.2.5",
  7076. "symfony/deprecation-contracts": "^2.1|^3",
  7077. "symfony/polyfill-php80": "^1.16"
  7078. },
  7079. "conflict": {
  7080. "doctrine/annotations": "<1.12",
  7081. "symfony/config": "<5.3",
  7082. "symfony/dependency-injection": "<4.4",
  7083. "symfony/yaml": "<4.4"
  7084. },
  7085. "require-dev": {
  7086. "doctrine/annotations": "^1.12|^2",
  7087. "psr/log": "^1|^2|^3",
  7088. "symfony/config": "^5.3|^6.0",
  7089. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7090. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7091. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7092. "symfony/yaml": "^4.4|^5.0|^6.0"
  7093. },
  7094. "suggest": {
  7095. "symfony/config": "For using the all-in-one router or any loader",
  7096. "symfony/expression-language": "For using expression matching",
  7097. "symfony/http-foundation": "For using a Symfony Request object",
  7098. "symfony/yaml": "For using the YAML loader"
  7099. },
  7100. "type": "library",
  7101. "autoload": {
  7102. "psr-4": {
  7103. "Symfony\\Component\\Routing\\": ""
  7104. },
  7105. "exclude-from-classmap": [
  7106. "/Tests/"
  7107. ]
  7108. },
  7109. "notification-url": "https://packagist.org/downloads/",
  7110. "license": [
  7111. "MIT"
  7112. ],
  7113. "authors": [
  7114. {
  7115. "name": "Fabien Potencier",
  7116. "email": "fabien@symfony.com"
  7117. },
  7118. {
  7119. "name": "Symfony Community",
  7120. "homepage": "https://symfony.com/contributors"
  7121. }
  7122. ],
  7123. "description": "Maps an HTTP request to a set of configuration variables",
  7124. "homepage": "https://symfony.com",
  7125. "keywords": [
  7126. "router",
  7127. "routing",
  7128. "uri",
  7129. "url"
  7130. ],
  7131. "support": {
  7132. "source": "https://github.com/symfony/routing/tree/v5.4.34"
  7133. },
  7134. "funding": [
  7135. {
  7136. "url": "https://symfony.com/sponsor",
  7137. "type": "custom"
  7138. },
  7139. {
  7140. "url": "https://github.com/fabpot",
  7141. "type": "github"
  7142. },
  7143. {
  7144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7145. "type": "tidelift"
  7146. }
  7147. ],
  7148. "time": "2023-12-27T12:51:02+00:00"
  7149. },
  7150. {
  7151. "name": "symfony/service-contracts",
  7152. "version": "v2.5.2",
  7153. "source": {
  7154. "type": "git",
  7155. "url": "https://github.com/symfony/service-contracts.git",
  7156. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7157. },
  7158. "dist": {
  7159. "type": "zip",
  7160. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7161. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7162. "shasum": "",
  7163. "mirrors": [
  7164. {
  7165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7166. "preferred": true
  7167. }
  7168. ]
  7169. },
  7170. "require": {
  7171. "php": ">=7.2.5",
  7172. "psr/container": "^1.1",
  7173. "symfony/deprecation-contracts": "^2.1|^3"
  7174. },
  7175. "conflict": {
  7176. "ext-psr": "<1.1|>=2"
  7177. },
  7178. "suggest": {
  7179. "symfony/service-implementation": ""
  7180. },
  7181. "type": "library",
  7182. "extra": {
  7183. "branch-alias": {
  7184. "dev-main": "2.5-dev"
  7185. },
  7186. "thanks": {
  7187. "name": "symfony/contracts",
  7188. "url": "https://github.com/symfony/contracts"
  7189. }
  7190. },
  7191. "autoload": {
  7192. "psr-4": {
  7193. "Symfony\\Contracts\\Service\\": ""
  7194. }
  7195. },
  7196. "notification-url": "https://packagist.org/downloads/",
  7197. "license": [
  7198. "MIT"
  7199. ],
  7200. "authors": [
  7201. {
  7202. "name": "Nicolas Grekas",
  7203. "email": "p@tchwork.com"
  7204. },
  7205. {
  7206. "name": "Symfony Community",
  7207. "homepage": "https://symfony.com/contributors"
  7208. }
  7209. ],
  7210. "description": "Generic abstractions related to writing services",
  7211. "homepage": "https://symfony.com",
  7212. "keywords": [
  7213. "abstractions",
  7214. "contracts",
  7215. "decoupling",
  7216. "interfaces",
  7217. "interoperability",
  7218. "standards"
  7219. ],
  7220. "support": {
  7221. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  7222. },
  7223. "funding": [
  7224. {
  7225. "url": "https://symfony.com/sponsor",
  7226. "type": "custom"
  7227. },
  7228. {
  7229. "url": "https://github.com/fabpot",
  7230. "type": "github"
  7231. },
  7232. {
  7233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7234. "type": "tidelift"
  7235. }
  7236. ],
  7237. "time": "2022-05-30T19:17:29+00:00"
  7238. },
  7239. {
  7240. "name": "symfony/string",
  7241. "version": "v5.4.34",
  7242. "source": {
  7243. "type": "git",
  7244. "url": "https://github.com/symfony/string.git",
  7245. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061"
  7246. },
  7247. "dist": {
  7248. "type": "zip",
  7249. "url": "https://api.github.com/repos/symfony/string/zipball/e3f98bfc7885c957488f443df82d97814a3ce061",
  7250. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061",
  7251. "shasum": "",
  7252. "mirrors": [
  7253. {
  7254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7255. "preferred": true
  7256. }
  7257. ]
  7258. },
  7259. "require": {
  7260. "php": ">=7.2.5",
  7261. "symfony/polyfill-ctype": "~1.8",
  7262. "symfony/polyfill-intl-grapheme": "~1.0",
  7263. "symfony/polyfill-intl-normalizer": "~1.0",
  7264. "symfony/polyfill-mbstring": "~1.0",
  7265. "symfony/polyfill-php80": "~1.15"
  7266. },
  7267. "conflict": {
  7268. "symfony/translation-contracts": ">=3.0"
  7269. },
  7270. "require-dev": {
  7271. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7272. "symfony/http-client": "^4.4|^5.0|^6.0",
  7273. "symfony/translation-contracts": "^1.1|^2",
  7274. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7275. },
  7276. "type": "library",
  7277. "autoload": {
  7278. "files": [
  7279. "Resources/functions.php"
  7280. ],
  7281. "psr-4": {
  7282. "Symfony\\Component\\String\\": ""
  7283. },
  7284. "exclude-from-classmap": [
  7285. "/Tests/"
  7286. ]
  7287. },
  7288. "notification-url": "https://packagist.org/downloads/",
  7289. "license": [
  7290. "MIT"
  7291. ],
  7292. "authors": [
  7293. {
  7294. "name": "Nicolas Grekas",
  7295. "email": "p@tchwork.com"
  7296. },
  7297. {
  7298. "name": "Symfony Community",
  7299. "homepage": "https://symfony.com/contributors"
  7300. }
  7301. ],
  7302. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7303. "homepage": "https://symfony.com",
  7304. "keywords": [
  7305. "grapheme",
  7306. "i18n",
  7307. "string",
  7308. "unicode",
  7309. "utf-8",
  7310. "utf8"
  7311. ],
  7312. "support": {
  7313. "source": "https://github.com/symfony/string/tree/v5.4.34"
  7314. },
  7315. "funding": [
  7316. {
  7317. "url": "https://symfony.com/sponsor",
  7318. "type": "custom"
  7319. },
  7320. {
  7321. "url": "https://github.com/fabpot",
  7322. "type": "github"
  7323. },
  7324. {
  7325. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7326. "type": "tidelift"
  7327. }
  7328. ],
  7329. "time": "2023-12-09T13:20:28+00:00"
  7330. },
  7331. {
  7332. "name": "symfony/translation",
  7333. "version": "v5.4.31",
  7334. "source": {
  7335. "type": "git",
  7336. "url": "https://github.com/symfony/translation.git",
  7337. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f"
  7338. },
  7339. "dist": {
  7340. "type": "zip",
  7341. "url": "https://api.github.com/repos/symfony/translation/zipball/ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  7342. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  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.2.5",
  7353. "symfony/deprecation-contracts": "^2.1|^3",
  7354. "symfony/polyfill-mbstring": "~1.0",
  7355. "symfony/polyfill-php80": "^1.16",
  7356. "symfony/translation-contracts": "^2.3"
  7357. },
  7358. "conflict": {
  7359. "symfony/config": "<4.4",
  7360. "symfony/console": "<5.3",
  7361. "symfony/dependency-injection": "<5.0",
  7362. "symfony/http-kernel": "<5.0",
  7363. "symfony/twig-bundle": "<5.0",
  7364. "symfony/yaml": "<4.4"
  7365. },
  7366. "provide": {
  7367. "symfony/translation-implementation": "2.3"
  7368. },
  7369. "require-dev": {
  7370. "psr/log": "^1|^2|^3",
  7371. "symfony/config": "^4.4|^5.0|^6.0",
  7372. "symfony/console": "^5.4|^6.0",
  7373. "symfony/dependency-injection": "^5.0|^6.0",
  7374. "symfony/finder": "^4.4|^5.0|^6.0",
  7375. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7376. "symfony/http-kernel": "^5.0|^6.0",
  7377. "symfony/intl": "^4.4|^5.0|^6.0",
  7378. "symfony/polyfill-intl-icu": "^1.21",
  7379. "symfony/service-contracts": "^1.1.2|^2|^3",
  7380. "symfony/yaml": "^4.4|^5.0|^6.0"
  7381. },
  7382. "suggest": {
  7383. "psr/log-implementation": "To use logging capability in translator",
  7384. "symfony/config": "",
  7385. "symfony/yaml": ""
  7386. },
  7387. "type": "library",
  7388. "autoload": {
  7389. "files": [
  7390. "Resources/functions.php"
  7391. ],
  7392. "psr-4": {
  7393. "Symfony\\Component\\Translation\\": ""
  7394. },
  7395. "exclude-from-classmap": [
  7396. "/Tests/"
  7397. ]
  7398. },
  7399. "notification-url": "https://packagist.org/downloads/",
  7400. "license": [
  7401. "MIT"
  7402. ],
  7403. "authors": [
  7404. {
  7405. "name": "Fabien Potencier",
  7406. "email": "fabien@symfony.com"
  7407. },
  7408. {
  7409. "name": "Symfony Community",
  7410. "homepage": "https://symfony.com/contributors"
  7411. }
  7412. ],
  7413. "description": "Provides tools to internationalize your application",
  7414. "homepage": "https://symfony.com",
  7415. "support": {
  7416. "source": "https://github.com/symfony/translation/tree/v5.4.31"
  7417. },
  7418. "funding": [
  7419. {
  7420. "url": "https://symfony.com/sponsor",
  7421. "type": "custom"
  7422. },
  7423. {
  7424. "url": "https://github.com/fabpot",
  7425. "type": "github"
  7426. },
  7427. {
  7428. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7429. "type": "tidelift"
  7430. }
  7431. ],
  7432. "time": "2023-11-03T16:16:43+00:00"
  7433. },
  7434. {
  7435. "name": "symfony/translation-contracts",
  7436. "version": "v2.5.2",
  7437. "source": {
  7438. "type": "git",
  7439. "url": "https://github.com/symfony/translation-contracts.git",
  7440. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  7441. },
  7442. "dist": {
  7443. "type": "zip",
  7444. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7445. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7446. "shasum": "",
  7447. "mirrors": [
  7448. {
  7449. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7450. "preferred": true
  7451. }
  7452. ]
  7453. },
  7454. "require": {
  7455. "php": ">=7.2.5"
  7456. },
  7457. "suggest": {
  7458. "symfony/translation-implementation": ""
  7459. },
  7460. "type": "library",
  7461. "extra": {
  7462. "branch-alias": {
  7463. "dev-main": "2.5-dev"
  7464. },
  7465. "thanks": {
  7466. "name": "symfony/contracts",
  7467. "url": "https://github.com/symfony/contracts"
  7468. }
  7469. },
  7470. "autoload": {
  7471. "psr-4": {
  7472. "Symfony\\Contracts\\Translation\\": ""
  7473. }
  7474. },
  7475. "notification-url": "https://packagist.org/downloads/",
  7476. "license": [
  7477. "MIT"
  7478. ],
  7479. "authors": [
  7480. {
  7481. "name": "Nicolas Grekas",
  7482. "email": "p@tchwork.com"
  7483. },
  7484. {
  7485. "name": "Symfony Community",
  7486. "homepage": "https://symfony.com/contributors"
  7487. }
  7488. ],
  7489. "description": "Generic abstractions related to translation",
  7490. "homepage": "https://symfony.com",
  7491. "keywords": [
  7492. "abstractions",
  7493. "contracts",
  7494. "decoupling",
  7495. "interfaces",
  7496. "interoperability",
  7497. "standards"
  7498. ],
  7499. "support": {
  7500. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  7501. },
  7502. "funding": [
  7503. {
  7504. "url": "https://symfony.com/sponsor",
  7505. "type": "custom"
  7506. },
  7507. {
  7508. "url": "https://github.com/fabpot",
  7509. "type": "github"
  7510. },
  7511. {
  7512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7513. "type": "tidelift"
  7514. }
  7515. ],
  7516. "time": "2022-06-27T16:58:25+00:00"
  7517. },
  7518. {
  7519. "name": "symfony/var-dumper",
  7520. "version": "v5.4.29",
  7521. "source": {
  7522. "type": "git",
  7523. "url": "https://github.com/symfony/var-dumper.git",
  7524. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  7525. },
  7526. "dist": {
  7527. "type": "zip",
  7528. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7529. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7530. "shasum": "",
  7531. "mirrors": [
  7532. {
  7533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7534. "preferred": true
  7535. }
  7536. ]
  7537. },
  7538. "require": {
  7539. "php": ">=7.2.5",
  7540. "symfony/polyfill-mbstring": "~1.0",
  7541. "symfony/polyfill-php80": "^1.16"
  7542. },
  7543. "conflict": {
  7544. "symfony/console": "<4.4"
  7545. },
  7546. "require-dev": {
  7547. "ext-iconv": "*",
  7548. "symfony/console": "^4.4|^5.0|^6.0",
  7549. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7550. "symfony/process": "^4.4|^5.0|^6.0",
  7551. "symfony/uid": "^5.1|^6.0",
  7552. "twig/twig": "^2.13|^3.0.4"
  7553. },
  7554. "suggest": {
  7555. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7556. "ext-intl": "To show region name in time zone dump",
  7557. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7558. },
  7559. "bin": [
  7560. "Resources/bin/var-dump-server"
  7561. ],
  7562. "type": "library",
  7563. "autoload": {
  7564. "files": [
  7565. "Resources/functions/dump.php"
  7566. ],
  7567. "psr-4": {
  7568. "Symfony\\Component\\VarDumper\\": ""
  7569. },
  7570. "exclude-from-classmap": [
  7571. "/Tests/"
  7572. ]
  7573. },
  7574. "notification-url": "https://packagist.org/downloads/",
  7575. "license": [
  7576. "MIT"
  7577. ],
  7578. "authors": [
  7579. {
  7580. "name": "Nicolas Grekas",
  7581. "email": "p@tchwork.com"
  7582. },
  7583. {
  7584. "name": "Symfony Community",
  7585. "homepage": "https://symfony.com/contributors"
  7586. }
  7587. ],
  7588. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7589. "homepage": "https://symfony.com",
  7590. "keywords": [
  7591. "debug",
  7592. "dump"
  7593. ],
  7594. "support": {
  7595. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  7596. },
  7597. "funding": [
  7598. {
  7599. "url": "https://symfony.com/sponsor",
  7600. "type": "custom"
  7601. },
  7602. {
  7603. "url": "https://github.com/fabpot",
  7604. "type": "github"
  7605. },
  7606. {
  7607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7608. "type": "tidelift"
  7609. }
  7610. ],
  7611. "time": "2023-09-12T10:09:58+00:00"
  7612. },
  7613. {
  7614. "name": "symfony/var-exporter",
  7615. "version": "v5.4.40",
  7616. "source": {
  7617. "type": "git",
  7618. "url": "https://github.com/symfony/var-exporter.git",
  7619. "reference": "6a13d37336d512927986e09f19a4bed24178baa6"
  7620. },
  7621. "dist": {
  7622. "type": "zip",
  7623. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/6a13d37336d512927986e09f19a4bed24178baa6",
  7624. "reference": "6a13d37336d512927986e09f19a4bed24178baa6",
  7625. "shasum": ""
  7626. },
  7627. "require": {
  7628. "php": ">=7.2.5",
  7629. "symfony/polyfill-php80": "^1.16"
  7630. },
  7631. "require-dev": {
  7632. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7633. },
  7634. "type": "library",
  7635. "autoload": {
  7636. "psr-4": {
  7637. "Symfony\\Component\\VarExporter\\": ""
  7638. },
  7639. "exclude-from-classmap": [
  7640. "/Tests/"
  7641. ]
  7642. },
  7643. "notification-url": "https://packagist.org/downloads/",
  7644. "license": [
  7645. "MIT"
  7646. ],
  7647. "authors": [
  7648. {
  7649. "name": "Nicolas Grekas",
  7650. "email": "p@tchwork.com"
  7651. },
  7652. {
  7653. "name": "Symfony Community",
  7654. "homepage": "https://symfony.com/contributors"
  7655. }
  7656. ],
  7657. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7658. "homepage": "https://symfony.com",
  7659. "keywords": [
  7660. "clone",
  7661. "construct",
  7662. "export",
  7663. "hydrate",
  7664. "instantiate",
  7665. "serialize"
  7666. ],
  7667. "support": {
  7668. "source": "https://github.com/symfony/var-exporter/tree/v5.4.40"
  7669. },
  7670. "funding": [
  7671. {
  7672. "url": "https://symfony.com/sponsor",
  7673. "type": "custom"
  7674. },
  7675. {
  7676. "url": "https://github.com/fabpot",
  7677. "type": "github"
  7678. },
  7679. {
  7680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7681. "type": "tidelift"
  7682. }
  7683. ],
  7684. "time": "2024-05-31T14:33:22+00:00"
  7685. },
  7686. {
  7687. "name": "tencentcloud/common",
  7688. "version": "3.0.1067",
  7689. "source": {
  7690. "type": "git",
  7691. "url": "https://github.com/tencentcloud-sdk-php/common.git",
  7692. "reference": "17d88323aaf68906984caa33b61559295a4837a0"
  7693. },
  7694. "dist": {
  7695. "type": "zip",
  7696. "url": "https://api.github.com/repos/tencentcloud-sdk-php/common/zipball/17d88323aaf68906984caa33b61559295a4837a0",
  7697. "reference": "17d88323aaf68906984caa33b61559295a4837a0",
  7698. "shasum": "",
  7699. "mirrors": [
  7700. {
  7701. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7702. "preferred": true
  7703. }
  7704. ]
  7705. },
  7706. "require": {
  7707. "guzzlehttp/guzzle": "^6.3||^7.0",
  7708. "php": ">=5.6.0"
  7709. },
  7710. "type": "library",
  7711. "autoload": {
  7712. "psr-4": {
  7713. "TencentCloud\\": "./src/TencentCloud"
  7714. }
  7715. },
  7716. "notification-url": "https://packagist.org/downloads/",
  7717. "license": [
  7718. "Apache-2.0"
  7719. ],
  7720. "authors": [
  7721. {
  7722. "name": "tencentcloudapi",
  7723. "email": "tencentcloudapi@tencent.com",
  7724. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7725. "role": "Developer"
  7726. }
  7727. ],
  7728. "description": "TencentCloudApi php sdk",
  7729. "homepage": "https://github.com/tencentcloud-sdk-php/common",
  7730. "support": {
  7731. "issues": "https://github.com/tencentcloud-sdk-php/common/issues",
  7732. "source": "https://github.com/tencentcloud-sdk-php/common/tree/3.0.1067"
  7733. },
  7734. "time": "2024-01-12T07:53:31+00:00"
  7735. },
  7736. {
  7737. "name": "tencentcloud/sms",
  7738. "version": "3.0.1067",
  7739. "source": {
  7740. "type": "git",
  7741. "url": "https://github.com/tencentcloud-sdk-php/sms.git",
  7742. "reference": "9ceb07867d5ba26893ef7dd9d558a4f451c09b4a"
  7743. },
  7744. "dist": {
  7745. "type": "zip",
  7746. "url": "https://api.github.com/repos/tencentcloud-sdk-php/sms/zipball/9ceb07867d5ba26893ef7dd9d558a4f451c09b4a",
  7747. "reference": "9ceb07867d5ba26893ef7dd9d558a4f451c09b4a",
  7748. "shasum": "",
  7749. "mirrors": [
  7750. {
  7751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7752. "preferred": true
  7753. }
  7754. ]
  7755. },
  7756. "require": {
  7757. "tencentcloud/common": "3.0.1067"
  7758. },
  7759. "type": "library",
  7760. "autoload": {
  7761. "psr-4": {
  7762. "TencentCloud\\": "./src/TencentCloud"
  7763. }
  7764. },
  7765. "notification-url": "https://packagist.org/downloads/",
  7766. "license": [
  7767. "Apache-2.0"
  7768. ],
  7769. "authors": [
  7770. {
  7771. "name": "tencentcloudapi",
  7772. "email": "tencentcloudapi@tencent.com",
  7773. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7774. "role": "Developer"
  7775. }
  7776. ],
  7777. "description": "TencentCloudApi php sdk sms",
  7778. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7779. "support": {
  7780. "issues": "https://github.com/tencentcloud-sdk-php/sms/issues",
  7781. "source": "https://github.com/tencentcloud-sdk-php/sms/tree/3.0.1067"
  7782. },
  7783. "time": "2024-01-12T08:16:39+00:00"
  7784. },
  7785. {
  7786. "name": "tijsverkoyen/css-to-inline-styles",
  7787. "version": "v2.2.7",
  7788. "source": {
  7789. "type": "git",
  7790. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7791. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7792. },
  7793. "dist": {
  7794. "type": "zip",
  7795. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7796. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7797. "shasum": "",
  7798. "mirrors": [
  7799. {
  7800. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7801. "preferred": true
  7802. }
  7803. ]
  7804. },
  7805. "require": {
  7806. "ext-dom": "*",
  7807. "ext-libxml": "*",
  7808. "php": "^5.5 || ^7.0 || ^8.0",
  7809. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7810. },
  7811. "require-dev": {
  7812. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7813. },
  7814. "type": "library",
  7815. "extra": {
  7816. "branch-alias": {
  7817. "dev-master": "2.2.x-dev"
  7818. }
  7819. },
  7820. "autoload": {
  7821. "psr-4": {
  7822. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7823. }
  7824. },
  7825. "notification-url": "https://packagist.org/downloads/",
  7826. "license": [
  7827. "BSD-3-Clause"
  7828. ],
  7829. "authors": [
  7830. {
  7831. "name": "Tijs Verkoyen",
  7832. "email": "css_to_inline_styles@verkoyen.eu",
  7833. "role": "Developer"
  7834. }
  7835. ],
  7836. "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.",
  7837. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7838. "support": {
  7839. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7840. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7841. },
  7842. "time": "2023-12-08T13:03:43+00:00"
  7843. },
  7844. {
  7845. "name": "vinkla/hashids",
  7846. "version": "9.1.0",
  7847. "source": {
  7848. "type": "git",
  7849. "url": "https://github.com/vinkla/laravel-hashids.git",
  7850. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767"
  7851. },
  7852. "dist": {
  7853. "type": "zip",
  7854. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/cb0086db96cdb49816465adc97e3a024c8ee9767",
  7855. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767",
  7856. "shasum": "",
  7857. "mirrors": [
  7858. {
  7859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7860. "preferred": true
  7861. }
  7862. ]
  7863. },
  7864. "require": {
  7865. "graham-campbell/manager": "^4.4",
  7866. "hashids/hashids": "^4.1",
  7867. "illuminate/contracts": "^8.0",
  7868. "illuminate/support": "^8.0",
  7869. "php": "^7.3 || ^8.0"
  7870. },
  7871. "require-dev": {
  7872. "graham-campbell/analyzer": "^3.0",
  7873. "graham-campbell/testbench": "^5.4",
  7874. "mockery/mockery": "^1.3",
  7875. "phpunit/phpunit": "^9.3",
  7876. "squizlabs/php_codesniffer": "^3.5"
  7877. },
  7878. "type": "library",
  7879. "extra": {
  7880. "branch-alias": {
  7881. "dev-master": "9.1-dev"
  7882. },
  7883. "laravel": {
  7884. "providers": [
  7885. "Vinkla\\Hashids\\HashidsServiceProvider"
  7886. ],
  7887. "aliases": {
  7888. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  7889. }
  7890. }
  7891. },
  7892. "autoload": {
  7893. "psr-4": {
  7894. "Vinkla\\Hashids\\": "src/"
  7895. }
  7896. },
  7897. "notification-url": "https://packagist.org/downloads/",
  7898. "license": [
  7899. "MIT"
  7900. ],
  7901. "authors": [
  7902. {
  7903. "name": "Vincent Klaiber",
  7904. "email": "hello@doubledip.se"
  7905. }
  7906. ],
  7907. "description": "A Hashids bridge for Laravel",
  7908. "keywords": [
  7909. "hashids",
  7910. "laravel"
  7911. ],
  7912. "support": {
  7913. "issues": "https://github.com/vinkla/laravel-hashids/issues",
  7914. "source": "https://github.com/vinkla/laravel-hashids/tree/9.1.0"
  7915. },
  7916. "time": "2020-11-26T19:38:22+00:00"
  7917. },
  7918. {
  7919. "name": "vlucas/phpdotenv",
  7920. "version": "v5.5.0",
  7921. "source": {
  7922. "type": "git",
  7923. "url": "https://github.com/vlucas/phpdotenv.git",
  7924. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  7925. },
  7926. "dist": {
  7927. "type": "zip",
  7928. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7929. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7930. "shasum": "",
  7931. "mirrors": [
  7932. {
  7933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7934. "preferred": true
  7935. }
  7936. ]
  7937. },
  7938. "require": {
  7939. "ext-pcre": "*",
  7940. "graham-campbell/result-type": "^1.0.2",
  7941. "php": "^7.1.3 || ^8.0",
  7942. "phpoption/phpoption": "^1.8",
  7943. "symfony/polyfill-ctype": "^1.23",
  7944. "symfony/polyfill-mbstring": "^1.23.1",
  7945. "symfony/polyfill-php80": "^1.23.1"
  7946. },
  7947. "require-dev": {
  7948. "bamarni/composer-bin-plugin": "^1.4.1",
  7949. "ext-filter": "*",
  7950. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  7951. },
  7952. "suggest": {
  7953. "ext-filter": "Required to use the boolean validator."
  7954. },
  7955. "type": "library",
  7956. "extra": {
  7957. "bamarni-bin": {
  7958. "bin-links": true,
  7959. "forward-command": true
  7960. },
  7961. "branch-alias": {
  7962. "dev-master": "5.5-dev"
  7963. }
  7964. },
  7965. "autoload": {
  7966. "psr-4": {
  7967. "Dotenv\\": "src/"
  7968. }
  7969. },
  7970. "notification-url": "https://packagist.org/downloads/",
  7971. "license": [
  7972. "BSD-3-Clause"
  7973. ],
  7974. "authors": [
  7975. {
  7976. "name": "Graham Campbell",
  7977. "email": "hello@gjcampbell.co.uk",
  7978. "homepage": "https://github.com/GrahamCampbell"
  7979. },
  7980. {
  7981. "name": "Vance Lucas",
  7982. "email": "vance@vancelucas.com",
  7983. "homepage": "https://github.com/vlucas"
  7984. }
  7985. ],
  7986. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7987. "keywords": [
  7988. "dotenv",
  7989. "env",
  7990. "environment"
  7991. ],
  7992. "support": {
  7993. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7994. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  7995. },
  7996. "funding": [
  7997. {
  7998. "url": "https://github.com/GrahamCampbell",
  7999. "type": "github"
  8000. },
  8001. {
  8002. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8003. "type": "tidelift"
  8004. }
  8005. ],
  8006. "time": "2022-10-16T01:01:54+00:00"
  8007. },
  8008. {
  8009. "name": "voku/portable-ascii",
  8010. "version": "1.6.1",
  8011. "source": {
  8012. "type": "git",
  8013. "url": "https://github.com/voku/portable-ascii.git",
  8014. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8015. },
  8016. "dist": {
  8017. "type": "zip",
  8018. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8019. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8020. "shasum": "",
  8021. "mirrors": [
  8022. {
  8023. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8024. "preferred": true
  8025. }
  8026. ]
  8027. },
  8028. "require": {
  8029. "php": ">=7.0.0"
  8030. },
  8031. "require-dev": {
  8032. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8033. },
  8034. "suggest": {
  8035. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8036. },
  8037. "type": "library",
  8038. "autoload": {
  8039. "psr-4": {
  8040. "voku\\": "src/voku/"
  8041. }
  8042. },
  8043. "notification-url": "https://packagist.org/downloads/",
  8044. "license": [
  8045. "MIT"
  8046. ],
  8047. "authors": [
  8048. {
  8049. "name": "Lars Moelleken",
  8050. "homepage": "http://www.moelleken.org/"
  8051. }
  8052. ],
  8053. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8054. "homepage": "https://github.com/voku/portable-ascii",
  8055. "keywords": [
  8056. "ascii",
  8057. "clean",
  8058. "php"
  8059. ],
  8060. "support": {
  8061. "issues": "https://github.com/voku/portable-ascii/issues",
  8062. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8063. },
  8064. "funding": [
  8065. {
  8066. "url": "https://www.paypal.me/moelleken",
  8067. "type": "custom"
  8068. },
  8069. {
  8070. "url": "https://github.com/voku",
  8071. "type": "github"
  8072. },
  8073. {
  8074. "url": "https://opencollective.com/portable-ascii",
  8075. "type": "open_collective"
  8076. },
  8077. {
  8078. "url": "https://www.patreon.com/voku",
  8079. "type": "patreon"
  8080. },
  8081. {
  8082. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8083. "type": "tidelift"
  8084. }
  8085. ],
  8086. "time": "2022-01-24T18:55:24+00:00"
  8087. },
  8088. {
  8089. "name": "w7corp/easywechat",
  8090. "version": "5.35.2",
  8091. "source": {
  8092. "type": "git",
  8093. "url": "https://github.com/w7corp/easywechat.git",
  8094. "reference": "a9235a1d236a1892fccc989bd73008f2fe20094f"
  8095. },
  8096. "dist": {
  8097. "type": "zip",
  8098. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/a9235a1d236a1892fccc989bd73008f2fe20094f",
  8099. "reference": "a9235a1d236a1892fccc989bd73008f2fe20094f",
  8100. "shasum": ""
  8101. },
  8102. "require": {
  8103. "easywechat-composer/easywechat-composer": "^1.1",
  8104. "ext-fileinfo": "*",
  8105. "ext-libxml": "*",
  8106. "ext-openssl": "*",
  8107. "ext-simplexml": "*",
  8108. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  8109. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  8110. "overtrue/socialite": "^3.2 || ^4.0",
  8111. "php": ">=7.4",
  8112. "pimple/pimple": "^3.0",
  8113. "psr/simple-cache": "^1.0||^2.0||^3.0",
  8114. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  8115. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  8116. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8117. },
  8118. "require-dev": {
  8119. "brainmaestro/composer-git-hooks": "^2.7",
  8120. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  8121. "friendsofphp/php-cs-fixer": "^3.5.0",
  8122. "mikey179/vfsstream": "^1.6",
  8123. "mockery/mockery": "^1.2.3",
  8124. "phpstan/phpstan": "^0.12.0",
  8125. "phpunit/phpunit": "^9.3"
  8126. },
  8127. "type": "library",
  8128. "extra": {
  8129. "hooks": {
  8130. "pre-commit": [
  8131. "composer test",
  8132. "composer fix-style"
  8133. ],
  8134. "pre-push": [
  8135. "composer test",
  8136. "composer fix-style"
  8137. ]
  8138. }
  8139. },
  8140. "autoload": {
  8141. "files": [
  8142. "src/Kernel/Support/Helpers.php",
  8143. "src/Kernel/Helpers.php"
  8144. ],
  8145. "psr-4": {
  8146. "EasyWeChat\\": "src/"
  8147. }
  8148. },
  8149. "notification-url": "https://packagist.org/downloads/",
  8150. "license": [
  8151. "MIT"
  8152. ],
  8153. "authors": [
  8154. {
  8155. "name": "overtrue",
  8156. "email": "anzhengchao@gmail.com"
  8157. }
  8158. ],
  8159. "description": "微信SDK",
  8160. "keywords": [
  8161. "easywechat",
  8162. "sdk",
  8163. "wechat",
  8164. "weixin",
  8165. "weixin-sdk"
  8166. ],
  8167. "support": {
  8168. "issues": "https://github.com/w7corp/easywechat/issues",
  8169. "source": "https://github.com/w7corp/easywechat/tree/5.35.2"
  8170. },
  8171. "funding": [
  8172. {
  8173. "url": "https://github.com/overtrue",
  8174. "type": "github"
  8175. }
  8176. ],
  8177. "time": "2024-08-06T13:21:05+00:00"
  8178. },
  8179. {
  8180. "name": "wantp/snowflake",
  8181. "version": "v1.2.0",
  8182. "source": {
  8183. "type": "git",
  8184. "url": "https://github.com/wantp/snowflake.git",
  8185. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d"
  8186. },
  8187. "dist": {
  8188. "type": "zip",
  8189. "url": "https://api.github.com/repos/wantp/snowflake/zipball/821c2800521cddc31afd8dd980090883abc7fe2d",
  8190. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d",
  8191. "shasum": "",
  8192. "mirrors": [
  8193. {
  8194. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8195. "preferred": true
  8196. }
  8197. ]
  8198. },
  8199. "require": {
  8200. "php": ">=7.0.0"
  8201. },
  8202. "type": "library",
  8203. "autoload": {
  8204. "psr-4": {
  8205. "wantp\\Snowflake\\": "src/Snowflake/"
  8206. }
  8207. },
  8208. "notification-url": "https://packagist.org/downloads/",
  8209. "license": [
  8210. "MIT"
  8211. ],
  8212. "authors": [
  8213. {
  8214. "name": "zhangrongwang",
  8215. "email": "zhangrongwang798@gmail.com"
  8216. }
  8217. ],
  8218. "description": "A package for create unique id by snowflake",
  8219. "keywords": [
  8220. "snowflake",
  8221. "uniqueId"
  8222. ],
  8223. "support": {
  8224. "issues": "https://github.com/wantp/snowflake/issues",
  8225. "source": "https://github.com/wantp/snowflake/tree/master"
  8226. },
  8227. "time": "2019-08-05T07:14:56+00:00"
  8228. },
  8229. {
  8230. "name": "webmozart/assert",
  8231. "version": "1.11.0",
  8232. "source": {
  8233. "type": "git",
  8234. "url": "https://github.com/webmozarts/assert.git",
  8235. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8236. },
  8237. "dist": {
  8238. "type": "zip",
  8239. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8240. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8241. "shasum": "",
  8242. "mirrors": [
  8243. {
  8244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8245. "preferred": true
  8246. }
  8247. ]
  8248. },
  8249. "require": {
  8250. "ext-ctype": "*",
  8251. "php": "^7.2 || ^8.0"
  8252. },
  8253. "conflict": {
  8254. "phpstan/phpstan": "<0.12.20",
  8255. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8256. },
  8257. "require-dev": {
  8258. "phpunit/phpunit": "^8.5.13"
  8259. },
  8260. "type": "library",
  8261. "extra": {
  8262. "branch-alias": {
  8263. "dev-master": "1.10-dev"
  8264. }
  8265. },
  8266. "autoload": {
  8267. "psr-4": {
  8268. "Webmozart\\Assert\\": "src/"
  8269. }
  8270. },
  8271. "notification-url": "https://packagist.org/downloads/",
  8272. "license": [
  8273. "MIT"
  8274. ],
  8275. "authors": [
  8276. {
  8277. "name": "Bernhard Schussek",
  8278. "email": "bschussek@gmail.com"
  8279. }
  8280. ],
  8281. "description": "Assertions to validate method input/output with nice error messages.",
  8282. "keywords": [
  8283. "assert",
  8284. "check",
  8285. "validate"
  8286. ],
  8287. "support": {
  8288. "issues": "https://github.com/webmozarts/assert/issues",
  8289. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8290. },
  8291. "time": "2022-06-03T18:03:27+00:00"
  8292. }
  8293. ],
  8294. "packages-dev": [
  8295. {
  8296. "name": "doctrine/instantiator",
  8297. "version": "1.5.0",
  8298. "source": {
  8299. "type": "git",
  8300. "url": "https://github.com/doctrine/instantiator.git",
  8301. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8302. },
  8303. "dist": {
  8304. "type": "zip",
  8305. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8306. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8307. "shasum": "",
  8308. "mirrors": [
  8309. {
  8310. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8311. "preferred": true
  8312. }
  8313. ]
  8314. },
  8315. "require": {
  8316. "php": "^7.1 || ^8.0"
  8317. },
  8318. "require-dev": {
  8319. "doctrine/coding-standard": "^9 || ^11",
  8320. "ext-pdo": "*",
  8321. "ext-phar": "*",
  8322. "phpbench/phpbench": "^0.16 || ^1",
  8323. "phpstan/phpstan": "^1.4",
  8324. "phpstan/phpstan-phpunit": "^1",
  8325. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8326. "vimeo/psalm": "^4.30 || ^5.4"
  8327. },
  8328. "type": "library",
  8329. "autoload": {
  8330. "psr-4": {
  8331. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8332. }
  8333. },
  8334. "notification-url": "https://packagist.org/downloads/",
  8335. "license": [
  8336. "MIT"
  8337. ],
  8338. "authors": [
  8339. {
  8340. "name": "Marco Pivetta",
  8341. "email": "ocramius@gmail.com",
  8342. "homepage": "https://ocramius.github.io/"
  8343. }
  8344. ],
  8345. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8346. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8347. "keywords": [
  8348. "constructor",
  8349. "instantiate"
  8350. ],
  8351. "support": {
  8352. "issues": "https://github.com/doctrine/instantiator/issues",
  8353. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8354. },
  8355. "funding": [
  8356. {
  8357. "url": "https://www.doctrine-project.org/sponsorship.html",
  8358. "type": "custom"
  8359. },
  8360. {
  8361. "url": "https://www.patreon.com/phpdoctrine",
  8362. "type": "patreon"
  8363. },
  8364. {
  8365. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8366. "type": "tidelift"
  8367. }
  8368. ],
  8369. "time": "2022-12-30T00:15:36+00:00"
  8370. },
  8371. {
  8372. "name": "facade/flare-client-php",
  8373. "version": "1.10.0",
  8374. "source": {
  8375. "type": "git",
  8376. "url": "https://github.com/facade/flare-client-php.git",
  8377. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8378. },
  8379. "dist": {
  8380. "type": "zip",
  8381. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8382. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8383. "shasum": "",
  8384. "mirrors": [
  8385. {
  8386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8387. "preferred": true
  8388. }
  8389. ]
  8390. },
  8391. "require": {
  8392. "facade/ignition-contracts": "~1.0",
  8393. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8394. "php": "^7.1|^8.0",
  8395. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8396. "symfony/mime": "^3.4|^4.0|^5.1",
  8397. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8398. },
  8399. "require-dev": {
  8400. "friendsofphp/php-cs-fixer": "^2.14",
  8401. "phpunit/phpunit": "^7.5",
  8402. "spatie/phpunit-snapshot-assertions": "^2.0"
  8403. },
  8404. "type": "library",
  8405. "extra": {
  8406. "branch-alias": {
  8407. "dev-master": "1.0-dev"
  8408. }
  8409. },
  8410. "autoload": {
  8411. "files": [
  8412. "src/helpers.php"
  8413. ],
  8414. "psr-4": {
  8415. "Facade\\FlareClient\\": "src"
  8416. }
  8417. },
  8418. "notification-url": "https://packagist.org/downloads/",
  8419. "license": [
  8420. "MIT"
  8421. ],
  8422. "description": "Send PHP errors to Flare",
  8423. "homepage": "https://github.com/facade/flare-client-php",
  8424. "keywords": [
  8425. "exception",
  8426. "facade",
  8427. "flare",
  8428. "reporting"
  8429. ],
  8430. "support": {
  8431. "issues": "https://github.com/facade/flare-client-php/issues",
  8432. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8433. },
  8434. "funding": [
  8435. {
  8436. "url": "https://github.com/spatie",
  8437. "type": "github"
  8438. }
  8439. ],
  8440. "time": "2022-08-09T11:23:57+00:00"
  8441. },
  8442. {
  8443. "name": "facade/ignition",
  8444. "version": "2.17.7",
  8445. "source": {
  8446. "type": "git",
  8447. "url": "https://github.com/facade/ignition.git",
  8448. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8449. },
  8450. "dist": {
  8451. "type": "zip",
  8452. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8453. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8454. "shasum": "",
  8455. "mirrors": [
  8456. {
  8457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8458. "preferred": true
  8459. }
  8460. ]
  8461. },
  8462. "require": {
  8463. "ext-curl": "*",
  8464. "ext-json": "*",
  8465. "ext-mbstring": "*",
  8466. "facade/flare-client-php": "^1.9.1",
  8467. "facade/ignition-contracts": "^1.0.2",
  8468. "illuminate/support": "^7.0|^8.0",
  8469. "monolog/monolog": "^2.0",
  8470. "php": "^7.2.5|^8.0",
  8471. "symfony/console": "^5.0",
  8472. "symfony/var-dumper": "^5.0"
  8473. },
  8474. "require-dev": {
  8475. "friendsofphp/php-cs-fixer": "^2.14",
  8476. "livewire/livewire": "^2.4",
  8477. "mockery/mockery": "^1.3",
  8478. "orchestra/testbench": "^5.0|^6.0",
  8479. "psalm/plugin-laravel": "^1.2"
  8480. },
  8481. "suggest": {
  8482. "laravel/telescope": "^3.1"
  8483. },
  8484. "type": "library",
  8485. "extra": {
  8486. "branch-alias": {
  8487. "dev-master": "2.x-dev"
  8488. },
  8489. "laravel": {
  8490. "providers": [
  8491. "Facade\\Ignition\\IgnitionServiceProvider"
  8492. ],
  8493. "aliases": {
  8494. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8495. }
  8496. }
  8497. },
  8498. "autoload": {
  8499. "files": [
  8500. "src/helpers.php"
  8501. ],
  8502. "psr-4": {
  8503. "Facade\\Ignition\\": "src"
  8504. }
  8505. },
  8506. "notification-url": "https://packagist.org/downloads/",
  8507. "license": [
  8508. "MIT"
  8509. ],
  8510. "description": "A beautiful error page for Laravel applications.",
  8511. "homepage": "https://github.com/facade/ignition",
  8512. "keywords": [
  8513. "error",
  8514. "flare",
  8515. "laravel",
  8516. "page"
  8517. ],
  8518. "support": {
  8519. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8520. "forum": "https://twitter.com/flareappio",
  8521. "issues": "https://github.com/facade/ignition/issues",
  8522. "source": "https://github.com/facade/ignition"
  8523. },
  8524. "time": "2023-01-26T12:34:59+00:00"
  8525. },
  8526. {
  8527. "name": "facade/ignition-contracts",
  8528. "version": "1.0.2",
  8529. "source": {
  8530. "type": "git",
  8531. "url": "https://github.com/facade/ignition-contracts.git",
  8532. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8533. },
  8534. "dist": {
  8535. "type": "zip",
  8536. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8537. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8538. "shasum": "",
  8539. "mirrors": [
  8540. {
  8541. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8542. "preferred": true
  8543. }
  8544. ]
  8545. },
  8546. "require": {
  8547. "php": "^7.3|^8.0"
  8548. },
  8549. "require-dev": {
  8550. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8551. "phpunit/phpunit": "^9.3.11",
  8552. "vimeo/psalm": "^3.17.1"
  8553. },
  8554. "type": "library",
  8555. "autoload": {
  8556. "psr-4": {
  8557. "Facade\\IgnitionContracts\\": "src"
  8558. }
  8559. },
  8560. "notification-url": "https://packagist.org/downloads/",
  8561. "license": [
  8562. "MIT"
  8563. ],
  8564. "authors": [
  8565. {
  8566. "name": "Freek Van der Herten",
  8567. "email": "freek@spatie.be",
  8568. "homepage": "https://flareapp.io",
  8569. "role": "Developer"
  8570. }
  8571. ],
  8572. "description": "Solution contracts for Ignition",
  8573. "homepage": "https://github.com/facade/ignition-contracts",
  8574. "keywords": [
  8575. "contracts",
  8576. "flare",
  8577. "ignition"
  8578. ],
  8579. "support": {
  8580. "issues": "https://github.com/facade/ignition-contracts/issues",
  8581. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8582. },
  8583. "time": "2020-10-16T08:27:54+00:00"
  8584. },
  8585. {
  8586. "name": "fakerphp/faker",
  8587. "version": "v1.23.0",
  8588. "source": {
  8589. "type": "git",
  8590. "url": "https://github.com/FakerPHP/Faker.git",
  8591. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8592. },
  8593. "dist": {
  8594. "type": "zip",
  8595. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8596. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8597. "shasum": "",
  8598. "mirrors": [
  8599. {
  8600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8601. "preferred": true
  8602. }
  8603. ]
  8604. },
  8605. "require": {
  8606. "php": "^7.4 || ^8.0",
  8607. "psr/container": "^1.0 || ^2.0",
  8608. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8609. },
  8610. "conflict": {
  8611. "fzaninotto/faker": "*"
  8612. },
  8613. "require-dev": {
  8614. "bamarni/composer-bin-plugin": "^1.4.1",
  8615. "doctrine/persistence": "^1.3 || ^2.0",
  8616. "ext-intl": "*",
  8617. "phpunit/phpunit": "^9.5.26",
  8618. "symfony/phpunit-bridge": "^5.4.16"
  8619. },
  8620. "suggest": {
  8621. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8622. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8623. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8624. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8625. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8626. },
  8627. "type": "library",
  8628. "extra": {
  8629. "branch-alias": {
  8630. "dev-main": "v1.21-dev"
  8631. }
  8632. },
  8633. "autoload": {
  8634. "psr-4": {
  8635. "Faker\\": "src/Faker/"
  8636. }
  8637. },
  8638. "notification-url": "https://packagist.org/downloads/",
  8639. "license": [
  8640. "MIT"
  8641. ],
  8642. "authors": [
  8643. {
  8644. "name": "François Zaninotto"
  8645. }
  8646. ],
  8647. "description": "Faker is a PHP library that generates fake data for you.",
  8648. "keywords": [
  8649. "data",
  8650. "faker",
  8651. "fixtures"
  8652. ],
  8653. "support": {
  8654. "issues": "https://github.com/FakerPHP/Faker/issues",
  8655. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  8656. },
  8657. "time": "2023-06-12T08:44:38+00:00"
  8658. },
  8659. {
  8660. "name": "filp/whoops",
  8661. "version": "2.15.4",
  8662. "source": {
  8663. "type": "git",
  8664. "url": "https://github.com/filp/whoops.git",
  8665. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  8666. },
  8667. "dist": {
  8668. "type": "zip",
  8669. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8670. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8671. "shasum": "",
  8672. "mirrors": [
  8673. {
  8674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8675. "preferred": true
  8676. }
  8677. ]
  8678. },
  8679. "require": {
  8680. "php": "^5.5.9 || ^7.0 || ^8.0",
  8681. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8682. },
  8683. "require-dev": {
  8684. "mockery/mockery": "^0.9 || ^1.0",
  8685. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8686. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8687. },
  8688. "suggest": {
  8689. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8690. "whoops/soap": "Formats errors as SOAP responses"
  8691. },
  8692. "type": "library",
  8693. "extra": {
  8694. "branch-alias": {
  8695. "dev-master": "2.7-dev"
  8696. }
  8697. },
  8698. "autoload": {
  8699. "psr-4": {
  8700. "Whoops\\": "src/Whoops/"
  8701. }
  8702. },
  8703. "notification-url": "https://packagist.org/downloads/",
  8704. "license": [
  8705. "MIT"
  8706. ],
  8707. "authors": [
  8708. {
  8709. "name": "Filipe Dobreira",
  8710. "homepage": "https://github.com/filp",
  8711. "role": "Developer"
  8712. }
  8713. ],
  8714. "description": "php error handling for cool kids",
  8715. "homepage": "https://filp.github.io/whoops/",
  8716. "keywords": [
  8717. "error",
  8718. "exception",
  8719. "handling",
  8720. "library",
  8721. "throwable",
  8722. "whoops"
  8723. ],
  8724. "support": {
  8725. "issues": "https://github.com/filp/whoops/issues",
  8726. "source": "https://github.com/filp/whoops/tree/2.15.4"
  8727. },
  8728. "funding": [
  8729. {
  8730. "url": "https://github.com/denis-sokolov",
  8731. "type": "github"
  8732. }
  8733. ],
  8734. "time": "2023-11-03T12:00:00+00:00"
  8735. },
  8736. {
  8737. "name": "hamcrest/hamcrest-php",
  8738. "version": "v2.0.1",
  8739. "source": {
  8740. "type": "git",
  8741. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8742. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8743. },
  8744. "dist": {
  8745. "type": "zip",
  8746. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8747. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  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": "^5.3|^7.0|^8.0"
  8758. },
  8759. "replace": {
  8760. "cordoval/hamcrest-php": "*",
  8761. "davedevelopment/hamcrest-php": "*",
  8762. "kodova/hamcrest-php": "*"
  8763. },
  8764. "require-dev": {
  8765. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8766. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8767. },
  8768. "type": "library",
  8769. "extra": {
  8770. "branch-alias": {
  8771. "dev-master": "2.1-dev"
  8772. }
  8773. },
  8774. "autoload": {
  8775. "classmap": [
  8776. "hamcrest"
  8777. ]
  8778. },
  8779. "notification-url": "https://packagist.org/downloads/",
  8780. "license": [
  8781. "BSD-3-Clause"
  8782. ],
  8783. "description": "This is the PHP port of Hamcrest Matchers",
  8784. "keywords": [
  8785. "test"
  8786. ],
  8787. "support": {
  8788. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8789. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8790. },
  8791. "time": "2020-07-09T08:09:16+00:00"
  8792. },
  8793. {
  8794. "name": "laravel/sail",
  8795. "version": "v1.19.0",
  8796. "source": {
  8797. "type": "git",
  8798. "url": "https://github.com/laravel/sail.git",
  8799. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6"
  8800. },
  8801. "dist": {
  8802. "type": "zip",
  8803. "url": "https://api.github.com/repos/laravel/sail/zipball/4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  8804. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  8805. "shasum": "",
  8806. "mirrors": [
  8807. {
  8808. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8809. "preferred": true
  8810. }
  8811. ]
  8812. },
  8813. "require": {
  8814. "illuminate/console": "^8.0|^9.0|^10.0",
  8815. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8816. "illuminate/support": "^8.0|^9.0|^10.0",
  8817. "php": "^7.3|^8.0"
  8818. },
  8819. "bin": [
  8820. "bin/sail"
  8821. ],
  8822. "type": "library",
  8823. "extra": {
  8824. "branch-alias": {
  8825. "dev-master": "1.x-dev"
  8826. },
  8827. "laravel": {
  8828. "providers": [
  8829. "Laravel\\Sail\\SailServiceProvider"
  8830. ]
  8831. }
  8832. },
  8833. "autoload": {
  8834. "psr-4": {
  8835. "Laravel\\Sail\\": "src/"
  8836. }
  8837. },
  8838. "notification-url": "https://packagist.org/downloads/",
  8839. "license": [
  8840. "MIT"
  8841. ],
  8842. "authors": [
  8843. {
  8844. "name": "Taylor Otwell",
  8845. "email": "taylor@laravel.com"
  8846. }
  8847. ],
  8848. "description": "Docker files for running a basic Laravel application.",
  8849. "keywords": [
  8850. "docker",
  8851. "laravel"
  8852. ],
  8853. "support": {
  8854. "issues": "https://github.com/laravel/sail/issues",
  8855. "source": "https://github.com/laravel/sail"
  8856. },
  8857. "time": "2023-01-31T13:37:57+00:00"
  8858. },
  8859. {
  8860. "name": "mockery/mockery",
  8861. "version": "1.6.6",
  8862. "source": {
  8863. "type": "git",
  8864. "url": "https://github.com/mockery/mockery.git",
  8865. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  8866. },
  8867. "dist": {
  8868. "type": "zip",
  8869. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  8870. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  8871. "shasum": "",
  8872. "mirrors": [
  8873. {
  8874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8875. "preferred": true
  8876. }
  8877. ]
  8878. },
  8879. "require": {
  8880. "hamcrest/hamcrest-php": "^2.0.1",
  8881. "lib-pcre": ">=7.0",
  8882. "php": ">=7.3"
  8883. },
  8884. "conflict": {
  8885. "phpunit/phpunit": "<8.0"
  8886. },
  8887. "require-dev": {
  8888. "phpunit/phpunit": "^8.5 || ^9.6.10",
  8889. "psalm/plugin-phpunit": "^0.18.4",
  8890. "symplify/easy-coding-standard": "^11.5.0",
  8891. "vimeo/psalm": "^4.30"
  8892. },
  8893. "type": "library",
  8894. "autoload": {
  8895. "files": [
  8896. "library/helpers.php",
  8897. "library/Mockery.php"
  8898. ],
  8899. "psr-4": {
  8900. "Mockery\\": "library/Mockery"
  8901. }
  8902. },
  8903. "notification-url": "https://packagist.org/downloads/",
  8904. "license": [
  8905. "BSD-3-Clause"
  8906. ],
  8907. "authors": [
  8908. {
  8909. "name": "Pádraic Brady",
  8910. "email": "padraic.brady@gmail.com",
  8911. "homepage": "https://github.com/padraic",
  8912. "role": "Author"
  8913. },
  8914. {
  8915. "name": "Dave Marshall",
  8916. "email": "dave.marshall@atstsolutions.co.uk",
  8917. "homepage": "https://davedevelopment.co.uk",
  8918. "role": "Developer"
  8919. },
  8920. {
  8921. "name": "Nathanael Esayeas",
  8922. "email": "nathanael.esayeas@protonmail.com",
  8923. "homepage": "https://github.com/ghostwriter",
  8924. "role": "Lead Developer"
  8925. }
  8926. ],
  8927. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8928. "homepage": "https://github.com/mockery/mockery",
  8929. "keywords": [
  8930. "BDD",
  8931. "TDD",
  8932. "library",
  8933. "mock",
  8934. "mock objects",
  8935. "mockery",
  8936. "stub",
  8937. "test",
  8938. "test double",
  8939. "testing"
  8940. ],
  8941. "support": {
  8942. "docs": "https://docs.mockery.io/",
  8943. "issues": "https://github.com/mockery/mockery/issues",
  8944. "rss": "https://github.com/mockery/mockery/releases.atom",
  8945. "security": "https://github.com/mockery/mockery/security/advisories",
  8946. "source": "https://github.com/mockery/mockery"
  8947. },
  8948. "time": "2023-08-09T00:03:52+00:00"
  8949. },
  8950. {
  8951. "name": "myclabs/deep-copy",
  8952. "version": "1.11.1",
  8953. "source": {
  8954. "type": "git",
  8955. "url": "https://github.com/myclabs/DeepCopy.git",
  8956. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8957. },
  8958. "dist": {
  8959. "type": "zip",
  8960. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8961. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8962. "shasum": "",
  8963. "mirrors": [
  8964. {
  8965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8966. "preferred": true
  8967. }
  8968. ]
  8969. },
  8970. "require": {
  8971. "php": "^7.1 || ^8.0"
  8972. },
  8973. "conflict": {
  8974. "doctrine/collections": "<1.6.8",
  8975. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8976. },
  8977. "require-dev": {
  8978. "doctrine/collections": "^1.6.8",
  8979. "doctrine/common": "^2.13.3 || ^3.2.2",
  8980. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8981. },
  8982. "type": "library",
  8983. "autoload": {
  8984. "files": [
  8985. "src/DeepCopy/deep_copy.php"
  8986. ],
  8987. "psr-4": {
  8988. "DeepCopy\\": "src/DeepCopy/"
  8989. }
  8990. },
  8991. "notification-url": "https://packagist.org/downloads/",
  8992. "license": [
  8993. "MIT"
  8994. ],
  8995. "description": "Create deep copies (clones) of your objects",
  8996. "keywords": [
  8997. "clone",
  8998. "copy",
  8999. "duplicate",
  9000. "object",
  9001. "object graph"
  9002. ],
  9003. "support": {
  9004. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9005. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9006. },
  9007. "funding": [
  9008. {
  9009. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9010. "type": "tidelift"
  9011. }
  9012. ],
  9013. "time": "2023-03-08T13:26:56+00:00"
  9014. },
  9015. {
  9016. "name": "nunomaduro/collision",
  9017. "version": "v5.11.0",
  9018. "source": {
  9019. "type": "git",
  9020. "url": "https://github.com/nunomaduro/collision.git",
  9021. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  9022. },
  9023. "dist": {
  9024. "type": "zip",
  9025. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9026. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9027. "shasum": "",
  9028. "mirrors": [
  9029. {
  9030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9031. "preferred": true
  9032. }
  9033. ]
  9034. },
  9035. "require": {
  9036. "facade/ignition-contracts": "^1.0",
  9037. "filp/whoops": "^2.14.3",
  9038. "php": "^7.3 || ^8.0",
  9039. "symfony/console": "^5.0"
  9040. },
  9041. "require-dev": {
  9042. "brianium/paratest": "^6.1",
  9043. "fideloper/proxy": "^4.4.1",
  9044. "fruitcake/laravel-cors": "^2.0.3",
  9045. "laravel/framework": "8.x-dev",
  9046. "nunomaduro/larastan": "^0.6.2",
  9047. "nunomaduro/mock-final-classes": "^1.0",
  9048. "orchestra/testbench": "^6.0",
  9049. "phpstan/phpstan": "^0.12.64",
  9050. "phpunit/phpunit": "^9.5.0"
  9051. },
  9052. "type": "library",
  9053. "extra": {
  9054. "laravel": {
  9055. "providers": [
  9056. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9057. ]
  9058. }
  9059. },
  9060. "autoload": {
  9061. "psr-4": {
  9062. "NunoMaduro\\Collision\\": "src/"
  9063. }
  9064. },
  9065. "notification-url": "https://packagist.org/downloads/",
  9066. "license": [
  9067. "MIT"
  9068. ],
  9069. "authors": [
  9070. {
  9071. "name": "Nuno Maduro",
  9072. "email": "enunomaduro@gmail.com"
  9073. }
  9074. ],
  9075. "description": "Cli error handling for console/command-line PHP applications.",
  9076. "keywords": [
  9077. "artisan",
  9078. "cli",
  9079. "command-line",
  9080. "console",
  9081. "error",
  9082. "handling",
  9083. "laravel",
  9084. "laravel-zero",
  9085. "php",
  9086. "symfony"
  9087. ],
  9088. "support": {
  9089. "issues": "https://github.com/nunomaduro/collision/issues",
  9090. "source": "https://github.com/nunomaduro/collision"
  9091. },
  9092. "funding": [
  9093. {
  9094. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9095. "type": "custom"
  9096. },
  9097. {
  9098. "url": "https://github.com/nunomaduro",
  9099. "type": "github"
  9100. },
  9101. {
  9102. "url": "https://www.patreon.com/nunomaduro",
  9103. "type": "patreon"
  9104. }
  9105. ],
  9106. "time": "2022-01-10T16:22:52+00:00"
  9107. },
  9108. {
  9109. "name": "phar-io/manifest",
  9110. "version": "2.0.3",
  9111. "source": {
  9112. "type": "git",
  9113. "url": "https://github.com/phar-io/manifest.git",
  9114. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9115. },
  9116. "dist": {
  9117. "type": "zip",
  9118. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9119. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9120. "shasum": "",
  9121. "mirrors": [
  9122. {
  9123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9124. "preferred": true
  9125. }
  9126. ]
  9127. },
  9128. "require": {
  9129. "ext-dom": "*",
  9130. "ext-phar": "*",
  9131. "ext-xmlwriter": "*",
  9132. "phar-io/version": "^3.0.1",
  9133. "php": "^7.2 || ^8.0"
  9134. },
  9135. "type": "library",
  9136. "extra": {
  9137. "branch-alias": {
  9138. "dev-master": "2.0.x-dev"
  9139. }
  9140. },
  9141. "autoload": {
  9142. "classmap": [
  9143. "src/"
  9144. ]
  9145. },
  9146. "notification-url": "https://packagist.org/downloads/",
  9147. "license": [
  9148. "BSD-3-Clause"
  9149. ],
  9150. "authors": [
  9151. {
  9152. "name": "Arne Blankerts",
  9153. "email": "arne@blankerts.de",
  9154. "role": "Developer"
  9155. },
  9156. {
  9157. "name": "Sebastian Heuer",
  9158. "email": "sebastian@phpeople.de",
  9159. "role": "Developer"
  9160. },
  9161. {
  9162. "name": "Sebastian Bergmann",
  9163. "email": "sebastian@phpunit.de",
  9164. "role": "Developer"
  9165. }
  9166. ],
  9167. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9168. "support": {
  9169. "issues": "https://github.com/phar-io/manifest/issues",
  9170. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9171. },
  9172. "time": "2021-07-20T11:28:43+00:00"
  9173. },
  9174. {
  9175. "name": "phar-io/version",
  9176. "version": "3.2.1",
  9177. "source": {
  9178. "type": "git",
  9179. "url": "https://github.com/phar-io/version.git",
  9180. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9181. },
  9182. "dist": {
  9183. "type": "zip",
  9184. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9185. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9186. "shasum": "",
  9187. "mirrors": [
  9188. {
  9189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9190. "preferred": true
  9191. }
  9192. ]
  9193. },
  9194. "require": {
  9195. "php": "^7.2 || ^8.0"
  9196. },
  9197. "type": "library",
  9198. "autoload": {
  9199. "classmap": [
  9200. "src/"
  9201. ]
  9202. },
  9203. "notification-url": "https://packagist.org/downloads/",
  9204. "license": [
  9205. "BSD-3-Clause"
  9206. ],
  9207. "authors": [
  9208. {
  9209. "name": "Arne Blankerts",
  9210. "email": "arne@blankerts.de",
  9211. "role": "Developer"
  9212. },
  9213. {
  9214. "name": "Sebastian Heuer",
  9215. "email": "sebastian@phpeople.de",
  9216. "role": "Developer"
  9217. },
  9218. {
  9219. "name": "Sebastian Bergmann",
  9220. "email": "sebastian@phpunit.de",
  9221. "role": "Developer"
  9222. }
  9223. ],
  9224. "description": "Library for handling version information and constraints",
  9225. "support": {
  9226. "issues": "https://github.com/phar-io/version/issues",
  9227. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9228. },
  9229. "time": "2022-02-21T01:04:05+00:00"
  9230. },
  9231. {
  9232. "name": "phpunit/php-code-coverage",
  9233. "version": "9.2.30",
  9234. "source": {
  9235. "type": "git",
  9236. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9237. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  9238. },
  9239. "dist": {
  9240. "type": "zip",
  9241. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9242. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9243. "shasum": "",
  9244. "mirrors": [
  9245. {
  9246. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9247. "preferred": true
  9248. }
  9249. ]
  9250. },
  9251. "require": {
  9252. "ext-dom": "*",
  9253. "ext-libxml": "*",
  9254. "ext-xmlwriter": "*",
  9255. "nikic/php-parser": "^4.18 || ^5.0",
  9256. "php": ">=7.3",
  9257. "phpunit/php-file-iterator": "^3.0.3",
  9258. "phpunit/php-text-template": "^2.0.2",
  9259. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9260. "sebastian/complexity": "^2.0",
  9261. "sebastian/environment": "^5.1.2",
  9262. "sebastian/lines-of-code": "^1.0.3",
  9263. "sebastian/version": "^3.0.1",
  9264. "theseer/tokenizer": "^1.2.0"
  9265. },
  9266. "require-dev": {
  9267. "phpunit/phpunit": "^9.3"
  9268. },
  9269. "suggest": {
  9270. "ext-pcov": "PHP extension that provides line coverage",
  9271. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9272. },
  9273. "type": "library",
  9274. "extra": {
  9275. "branch-alias": {
  9276. "dev-master": "9.2-dev"
  9277. }
  9278. },
  9279. "autoload": {
  9280. "classmap": [
  9281. "src/"
  9282. ]
  9283. },
  9284. "notification-url": "https://packagist.org/downloads/",
  9285. "license": [
  9286. "BSD-3-Clause"
  9287. ],
  9288. "authors": [
  9289. {
  9290. "name": "Sebastian Bergmann",
  9291. "email": "sebastian@phpunit.de",
  9292. "role": "lead"
  9293. }
  9294. ],
  9295. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9296. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9297. "keywords": [
  9298. "coverage",
  9299. "testing",
  9300. "xunit"
  9301. ],
  9302. "support": {
  9303. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9304. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9305. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  9306. },
  9307. "funding": [
  9308. {
  9309. "url": "https://github.com/sebastianbergmann",
  9310. "type": "github"
  9311. }
  9312. ],
  9313. "time": "2023-12-22T06:47:57+00:00"
  9314. },
  9315. {
  9316. "name": "phpunit/php-file-iterator",
  9317. "version": "3.0.6",
  9318. "source": {
  9319. "type": "git",
  9320. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9321. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9322. },
  9323. "dist": {
  9324. "type": "zip",
  9325. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9326. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9327. "shasum": "",
  9328. "mirrors": [
  9329. {
  9330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9331. "preferred": true
  9332. }
  9333. ]
  9334. },
  9335. "require": {
  9336. "php": ">=7.3"
  9337. },
  9338. "require-dev": {
  9339. "phpunit/phpunit": "^9.3"
  9340. },
  9341. "type": "library",
  9342. "extra": {
  9343. "branch-alias": {
  9344. "dev-master": "3.0-dev"
  9345. }
  9346. },
  9347. "autoload": {
  9348. "classmap": [
  9349. "src/"
  9350. ]
  9351. },
  9352. "notification-url": "https://packagist.org/downloads/",
  9353. "license": [
  9354. "BSD-3-Clause"
  9355. ],
  9356. "authors": [
  9357. {
  9358. "name": "Sebastian Bergmann",
  9359. "email": "sebastian@phpunit.de",
  9360. "role": "lead"
  9361. }
  9362. ],
  9363. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9364. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9365. "keywords": [
  9366. "filesystem",
  9367. "iterator"
  9368. ],
  9369. "support": {
  9370. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9371. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9372. },
  9373. "funding": [
  9374. {
  9375. "url": "https://github.com/sebastianbergmann",
  9376. "type": "github"
  9377. }
  9378. ],
  9379. "time": "2021-12-02T12:48:52+00:00"
  9380. },
  9381. {
  9382. "name": "phpunit/php-invoker",
  9383. "version": "3.1.1",
  9384. "source": {
  9385. "type": "git",
  9386. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9387. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9388. },
  9389. "dist": {
  9390. "type": "zip",
  9391. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9392. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9393. "shasum": "",
  9394. "mirrors": [
  9395. {
  9396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9397. "preferred": true
  9398. }
  9399. ]
  9400. },
  9401. "require": {
  9402. "php": ">=7.3"
  9403. },
  9404. "require-dev": {
  9405. "ext-pcntl": "*",
  9406. "phpunit/phpunit": "^9.3"
  9407. },
  9408. "suggest": {
  9409. "ext-pcntl": "*"
  9410. },
  9411. "type": "library",
  9412. "extra": {
  9413. "branch-alias": {
  9414. "dev-master": "3.1-dev"
  9415. }
  9416. },
  9417. "autoload": {
  9418. "classmap": [
  9419. "src/"
  9420. ]
  9421. },
  9422. "notification-url": "https://packagist.org/downloads/",
  9423. "license": [
  9424. "BSD-3-Clause"
  9425. ],
  9426. "authors": [
  9427. {
  9428. "name": "Sebastian Bergmann",
  9429. "email": "sebastian@phpunit.de",
  9430. "role": "lead"
  9431. }
  9432. ],
  9433. "description": "Invoke callables with a timeout",
  9434. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9435. "keywords": [
  9436. "process"
  9437. ],
  9438. "support": {
  9439. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9440. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9441. },
  9442. "funding": [
  9443. {
  9444. "url": "https://github.com/sebastianbergmann",
  9445. "type": "github"
  9446. }
  9447. ],
  9448. "time": "2020-09-28T05:58:55+00:00"
  9449. },
  9450. {
  9451. "name": "phpunit/php-text-template",
  9452. "version": "2.0.4",
  9453. "source": {
  9454. "type": "git",
  9455. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9456. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9457. },
  9458. "dist": {
  9459. "type": "zip",
  9460. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9461. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9462. "shasum": "",
  9463. "mirrors": [
  9464. {
  9465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9466. "preferred": true
  9467. }
  9468. ]
  9469. },
  9470. "require": {
  9471. "php": ">=7.3"
  9472. },
  9473. "require-dev": {
  9474. "phpunit/phpunit": "^9.3"
  9475. },
  9476. "type": "library",
  9477. "extra": {
  9478. "branch-alias": {
  9479. "dev-master": "2.0-dev"
  9480. }
  9481. },
  9482. "autoload": {
  9483. "classmap": [
  9484. "src/"
  9485. ]
  9486. },
  9487. "notification-url": "https://packagist.org/downloads/",
  9488. "license": [
  9489. "BSD-3-Clause"
  9490. ],
  9491. "authors": [
  9492. {
  9493. "name": "Sebastian Bergmann",
  9494. "email": "sebastian@phpunit.de",
  9495. "role": "lead"
  9496. }
  9497. ],
  9498. "description": "Simple template engine.",
  9499. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9500. "keywords": [
  9501. "template"
  9502. ],
  9503. "support": {
  9504. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9505. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9506. },
  9507. "funding": [
  9508. {
  9509. "url": "https://github.com/sebastianbergmann",
  9510. "type": "github"
  9511. }
  9512. ],
  9513. "time": "2020-10-26T05:33:50+00:00"
  9514. },
  9515. {
  9516. "name": "phpunit/php-timer",
  9517. "version": "5.0.3",
  9518. "source": {
  9519. "type": "git",
  9520. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9521. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9522. },
  9523. "dist": {
  9524. "type": "zip",
  9525. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9526. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9527. "shasum": "",
  9528. "mirrors": [
  9529. {
  9530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9531. "preferred": true
  9532. }
  9533. ]
  9534. },
  9535. "require": {
  9536. "php": ">=7.3"
  9537. },
  9538. "require-dev": {
  9539. "phpunit/phpunit": "^9.3"
  9540. },
  9541. "type": "library",
  9542. "extra": {
  9543. "branch-alias": {
  9544. "dev-master": "5.0-dev"
  9545. }
  9546. },
  9547. "autoload": {
  9548. "classmap": [
  9549. "src/"
  9550. ]
  9551. },
  9552. "notification-url": "https://packagist.org/downloads/",
  9553. "license": [
  9554. "BSD-3-Clause"
  9555. ],
  9556. "authors": [
  9557. {
  9558. "name": "Sebastian Bergmann",
  9559. "email": "sebastian@phpunit.de",
  9560. "role": "lead"
  9561. }
  9562. ],
  9563. "description": "Utility class for timing",
  9564. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9565. "keywords": [
  9566. "timer"
  9567. ],
  9568. "support": {
  9569. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9570. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9571. },
  9572. "funding": [
  9573. {
  9574. "url": "https://github.com/sebastianbergmann",
  9575. "type": "github"
  9576. }
  9577. ],
  9578. "time": "2020-10-26T13:16:10+00:00"
  9579. },
  9580. {
  9581. "name": "phpunit/phpunit",
  9582. "version": "9.6.15",
  9583. "source": {
  9584. "type": "git",
  9585. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9586. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  9587. },
  9588. "dist": {
  9589. "type": "zip",
  9590. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  9591. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  9592. "shasum": "",
  9593. "mirrors": [
  9594. {
  9595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9596. "preferred": true
  9597. }
  9598. ]
  9599. },
  9600. "require": {
  9601. "doctrine/instantiator": "^1.3.1 || ^2",
  9602. "ext-dom": "*",
  9603. "ext-json": "*",
  9604. "ext-libxml": "*",
  9605. "ext-mbstring": "*",
  9606. "ext-xml": "*",
  9607. "ext-xmlwriter": "*",
  9608. "myclabs/deep-copy": "^1.10.1",
  9609. "phar-io/manifest": "^2.0.3",
  9610. "phar-io/version": "^3.0.2",
  9611. "php": ">=7.3",
  9612. "phpunit/php-code-coverage": "^9.2.28",
  9613. "phpunit/php-file-iterator": "^3.0.5",
  9614. "phpunit/php-invoker": "^3.1.1",
  9615. "phpunit/php-text-template": "^2.0.3",
  9616. "phpunit/php-timer": "^5.0.2",
  9617. "sebastian/cli-parser": "^1.0.1",
  9618. "sebastian/code-unit": "^1.0.6",
  9619. "sebastian/comparator": "^4.0.8",
  9620. "sebastian/diff": "^4.0.3",
  9621. "sebastian/environment": "^5.1.3",
  9622. "sebastian/exporter": "^4.0.5",
  9623. "sebastian/global-state": "^5.0.1",
  9624. "sebastian/object-enumerator": "^4.0.3",
  9625. "sebastian/resource-operations": "^3.0.3",
  9626. "sebastian/type": "^3.2",
  9627. "sebastian/version": "^3.0.2"
  9628. },
  9629. "suggest": {
  9630. "ext-soap": "To be able to generate mocks based on WSDL files",
  9631. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9632. },
  9633. "bin": [
  9634. "phpunit"
  9635. ],
  9636. "type": "library",
  9637. "extra": {
  9638. "branch-alias": {
  9639. "dev-master": "9.6-dev"
  9640. }
  9641. },
  9642. "autoload": {
  9643. "files": [
  9644. "src/Framework/Assert/Functions.php"
  9645. ],
  9646. "classmap": [
  9647. "src/"
  9648. ]
  9649. },
  9650. "notification-url": "https://packagist.org/downloads/",
  9651. "license": [
  9652. "BSD-3-Clause"
  9653. ],
  9654. "authors": [
  9655. {
  9656. "name": "Sebastian Bergmann",
  9657. "email": "sebastian@phpunit.de",
  9658. "role": "lead"
  9659. }
  9660. ],
  9661. "description": "The PHP Unit Testing framework.",
  9662. "homepage": "https://phpunit.de/",
  9663. "keywords": [
  9664. "phpunit",
  9665. "testing",
  9666. "xunit"
  9667. ],
  9668. "support": {
  9669. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9670. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9671. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  9672. },
  9673. "funding": [
  9674. {
  9675. "url": "https://phpunit.de/sponsors.html",
  9676. "type": "custom"
  9677. },
  9678. {
  9679. "url": "https://github.com/sebastianbergmann",
  9680. "type": "github"
  9681. },
  9682. {
  9683. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9684. "type": "tidelift"
  9685. }
  9686. ],
  9687. "time": "2023-12-01T16:55:19+00:00"
  9688. },
  9689. {
  9690. "name": "sebastian/cli-parser",
  9691. "version": "1.0.1",
  9692. "source": {
  9693. "type": "git",
  9694. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9695. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9696. },
  9697. "dist": {
  9698. "type": "zip",
  9699. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9700. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9701. "shasum": "",
  9702. "mirrors": [
  9703. {
  9704. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9705. "preferred": true
  9706. }
  9707. ]
  9708. },
  9709. "require": {
  9710. "php": ">=7.3"
  9711. },
  9712. "require-dev": {
  9713. "phpunit/phpunit": "^9.3"
  9714. },
  9715. "type": "library",
  9716. "extra": {
  9717. "branch-alias": {
  9718. "dev-master": "1.0-dev"
  9719. }
  9720. },
  9721. "autoload": {
  9722. "classmap": [
  9723. "src/"
  9724. ]
  9725. },
  9726. "notification-url": "https://packagist.org/downloads/",
  9727. "license": [
  9728. "BSD-3-Clause"
  9729. ],
  9730. "authors": [
  9731. {
  9732. "name": "Sebastian Bergmann",
  9733. "email": "sebastian@phpunit.de",
  9734. "role": "lead"
  9735. }
  9736. ],
  9737. "description": "Library for parsing CLI options",
  9738. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9739. "support": {
  9740. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9741. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9742. },
  9743. "funding": [
  9744. {
  9745. "url": "https://github.com/sebastianbergmann",
  9746. "type": "github"
  9747. }
  9748. ],
  9749. "time": "2020-09-28T06:08:49+00:00"
  9750. },
  9751. {
  9752. "name": "sebastian/code-unit",
  9753. "version": "1.0.8",
  9754. "source": {
  9755. "type": "git",
  9756. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9757. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9758. },
  9759. "dist": {
  9760. "type": "zip",
  9761. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9762. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9763. "shasum": "",
  9764. "mirrors": [
  9765. {
  9766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9767. "preferred": true
  9768. }
  9769. ]
  9770. },
  9771. "require": {
  9772. "php": ">=7.3"
  9773. },
  9774. "require-dev": {
  9775. "phpunit/phpunit": "^9.3"
  9776. },
  9777. "type": "library",
  9778. "extra": {
  9779. "branch-alias": {
  9780. "dev-master": "1.0-dev"
  9781. }
  9782. },
  9783. "autoload": {
  9784. "classmap": [
  9785. "src/"
  9786. ]
  9787. },
  9788. "notification-url": "https://packagist.org/downloads/",
  9789. "license": [
  9790. "BSD-3-Clause"
  9791. ],
  9792. "authors": [
  9793. {
  9794. "name": "Sebastian Bergmann",
  9795. "email": "sebastian@phpunit.de",
  9796. "role": "lead"
  9797. }
  9798. ],
  9799. "description": "Collection of value objects that represent the PHP code units",
  9800. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9801. "support": {
  9802. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9803. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9804. },
  9805. "funding": [
  9806. {
  9807. "url": "https://github.com/sebastianbergmann",
  9808. "type": "github"
  9809. }
  9810. ],
  9811. "time": "2020-10-26T13:08:54+00:00"
  9812. },
  9813. {
  9814. "name": "sebastian/code-unit-reverse-lookup",
  9815. "version": "2.0.3",
  9816. "source": {
  9817. "type": "git",
  9818. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9819. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9820. },
  9821. "dist": {
  9822. "type": "zip",
  9823. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9824. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9825. "shasum": "",
  9826. "mirrors": [
  9827. {
  9828. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9829. "preferred": true
  9830. }
  9831. ]
  9832. },
  9833. "require": {
  9834. "php": ">=7.3"
  9835. },
  9836. "require-dev": {
  9837. "phpunit/phpunit": "^9.3"
  9838. },
  9839. "type": "library",
  9840. "extra": {
  9841. "branch-alias": {
  9842. "dev-master": "2.0-dev"
  9843. }
  9844. },
  9845. "autoload": {
  9846. "classmap": [
  9847. "src/"
  9848. ]
  9849. },
  9850. "notification-url": "https://packagist.org/downloads/",
  9851. "license": [
  9852. "BSD-3-Clause"
  9853. ],
  9854. "authors": [
  9855. {
  9856. "name": "Sebastian Bergmann",
  9857. "email": "sebastian@phpunit.de"
  9858. }
  9859. ],
  9860. "description": "Looks up which function or method a line of code belongs to",
  9861. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9862. "support": {
  9863. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9864. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9865. },
  9866. "funding": [
  9867. {
  9868. "url": "https://github.com/sebastianbergmann",
  9869. "type": "github"
  9870. }
  9871. ],
  9872. "time": "2020-09-28T05:30:19+00:00"
  9873. },
  9874. {
  9875. "name": "sebastian/comparator",
  9876. "version": "4.0.8",
  9877. "source": {
  9878. "type": "git",
  9879. "url": "https://github.com/sebastianbergmann/comparator.git",
  9880. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9881. },
  9882. "dist": {
  9883. "type": "zip",
  9884. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9885. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9886. "shasum": "",
  9887. "mirrors": [
  9888. {
  9889. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9890. "preferred": true
  9891. }
  9892. ]
  9893. },
  9894. "require": {
  9895. "php": ">=7.3",
  9896. "sebastian/diff": "^4.0",
  9897. "sebastian/exporter": "^4.0"
  9898. },
  9899. "require-dev": {
  9900. "phpunit/phpunit": "^9.3"
  9901. },
  9902. "type": "library",
  9903. "extra": {
  9904. "branch-alias": {
  9905. "dev-master": "4.0-dev"
  9906. }
  9907. },
  9908. "autoload": {
  9909. "classmap": [
  9910. "src/"
  9911. ]
  9912. },
  9913. "notification-url": "https://packagist.org/downloads/",
  9914. "license": [
  9915. "BSD-3-Clause"
  9916. ],
  9917. "authors": [
  9918. {
  9919. "name": "Sebastian Bergmann",
  9920. "email": "sebastian@phpunit.de"
  9921. },
  9922. {
  9923. "name": "Jeff Welch",
  9924. "email": "whatthejeff@gmail.com"
  9925. },
  9926. {
  9927. "name": "Volker Dusch",
  9928. "email": "github@wallbash.com"
  9929. },
  9930. {
  9931. "name": "Bernhard Schussek",
  9932. "email": "bschussek@2bepublished.at"
  9933. }
  9934. ],
  9935. "description": "Provides the functionality to compare PHP values for equality",
  9936. "homepage": "https://github.com/sebastianbergmann/comparator",
  9937. "keywords": [
  9938. "comparator",
  9939. "compare",
  9940. "equality"
  9941. ],
  9942. "support": {
  9943. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9944. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9945. },
  9946. "funding": [
  9947. {
  9948. "url": "https://github.com/sebastianbergmann",
  9949. "type": "github"
  9950. }
  9951. ],
  9952. "time": "2022-09-14T12:41:17+00:00"
  9953. },
  9954. {
  9955. "name": "sebastian/complexity",
  9956. "version": "2.0.3",
  9957. "source": {
  9958. "type": "git",
  9959. "url": "https://github.com/sebastianbergmann/complexity.git",
  9960. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9961. },
  9962. "dist": {
  9963. "type": "zip",
  9964. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9965. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9966. "shasum": "",
  9967. "mirrors": [
  9968. {
  9969. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9970. "preferred": true
  9971. }
  9972. ]
  9973. },
  9974. "require": {
  9975. "nikic/php-parser": "^4.18 || ^5.0",
  9976. "php": ">=7.3"
  9977. },
  9978. "require-dev": {
  9979. "phpunit/phpunit": "^9.3"
  9980. },
  9981. "type": "library",
  9982. "extra": {
  9983. "branch-alias": {
  9984. "dev-master": "2.0-dev"
  9985. }
  9986. },
  9987. "autoload": {
  9988. "classmap": [
  9989. "src/"
  9990. ]
  9991. },
  9992. "notification-url": "https://packagist.org/downloads/",
  9993. "license": [
  9994. "BSD-3-Clause"
  9995. ],
  9996. "authors": [
  9997. {
  9998. "name": "Sebastian Bergmann",
  9999. "email": "sebastian@phpunit.de",
  10000. "role": "lead"
  10001. }
  10002. ],
  10003. "description": "Library for calculating the complexity of PHP code units",
  10004. "homepage": "https://github.com/sebastianbergmann/complexity",
  10005. "support": {
  10006. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10007. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  10008. },
  10009. "funding": [
  10010. {
  10011. "url": "https://github.com/sebastianbergmann",
  10012. "type": "github"
  10013. }
  10014. ],
  10015. "time": "2023-12-22T06:19:30+00:00"
  10016. },
  10017. {
  10018. "name": "sebastian/diff",
  10019. "version": "4.0.5",
  10020. "source": {
  10021. "type": "git",
  10022. "url": "https://github.com/sebastianbergmann/diff.git",
  10023. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  10024. },
  10025. "dist": {
  10026. "type": "zip",
  10027. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10028. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10029. "shasum": "",
  10030. "mirrors": [
  10031. {
  10032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10033. "preferred": true
  10034. }
  10035. ]
  10036. },
  10037. "require": {
  10038. "php": ">=7.3"
  10039. },
  10040. "require-dev": {
  10041. "phpunit/phpunit": "^9.3",
  10042. "symfony/process": "^4.2 || ^5"
  10043. },
  10044. "type": "library",
  10045. "extra": {
  10046. "branch-alias": {
  10047. "dev-master": "4.0-dev"
  10048. }
  10049. },
  10050. "autoload": {
  10051. "classmap": [
  10052. "src/"
  10053. ]
  10054. },
  10055. "notification-url": "https://packagist.org/downloads/",
  10056. "license": [
  10057. "BSD-3-Clause"
  10058. ],
  10059. "authors": [
  10060. {
  10061. "name": "Sebastian Bergmann",
  10062. "email": "sebastian@phpunit.de"
  10063. },
  10064. {
  10065. "name": "Kore Nordmann",
  10066. "email": "mail@kore-nordmann.de"
  10067. }
  10068. ],
  10069. "description": "Diff implementation",
  10070. "homepage": "https://github.com/sebastianbergmann/diff",
  10071. "keywords": [
  10072. "diff",
  10073. "udiff",
  10074. "unidiff",
  10075. "unified diff"
  10076. ],
  10077. "support": {
  10078. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10079. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  10080. },
  10081. "funding": [
  10082. {
  10083. "url": "https://github.com/sebastianbergmann",
  10084. "type": "github"
  10085. }
  10086. ],
  10087. "time": "2023-05-07T05:35:17+00:00"
  10088. },
  10089. {
  10090. "name": "sebastian/environment",
  10091. "version": "5.1.5",
  10092. "source": {
  10093. "type": "git",
  10094. "url": "https://github.com/sebastianbergmann/environment.git",
  10095. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10096. },
  10097. "dist": {
  10098. "type": "zip",
  10099. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10100. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10101. "shasum": "",
  10102. "mirrors": [
  10103. {
  10104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10105. "preferred": true
  10106. }
  10107. ]
  10108. },
  10109. "require": {
  10110. "php": ">=7.3"
  10111. },
  10112. "require-dev": {
  10113. "phpunit/phpunit": "^9.3"
  10114. },
  10115. "suggest": {
  10116. "ext-posix": "*"
  10117. },
  10118. "type": "library",
  10119. "extra": {
  10120. "branch-alias": {
  10121. "dev-master": "5.1-dev"
  10122. }
  10123. },
  10124. "autoload": {
  10125. "classmap": [
  10126. "src/"
  10127. ]
  10128. },
  10129. "notification-url": "https://packagist.org/downloads/",
  10130. "license": [
  10131. "BSD-3-Clause"
  10132. ],
  10133. "authors": [
  10134. {
  10135. "name": "Sebastian Bergmann",
  10136. "email": "sebastian@phpunit.de"
  10137. }
  10138. ],
  10139. "description": "Provides functionality to handle HHVM/PHP environments",
  10140. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10141. "keywords": [
  10142. "Xdebug",
  10143. "environment",
  10144. "hhvm"
  10145. ],
  10146. "support": {
  10147. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10148. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10149. },
  10150. "funding": [
  10151. {
  10152. "url": "https://github.com/sebastianbergmann",
  10153. "type": "github"
  10154. }
  10155. ],
  10156. "time": "2023-02-03T06:03:51+00:00"
  10157. },
  10158. {
  10159. "name": "sebastian/exporter",
  10160. "version": "4.0.5",
  10161. "source": {
  10162. "type": "git",
  10163. "url": "https://github.com/sebastianbergmann/exporter.git",
  10164. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10165. },
  10166. "dist": {
  10167. "type": "zip",
  10168. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10169. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10170. "shasum": "",
  10171. "mirrors": [
  10172. {
  10173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10174. "preferred": true
  10175. }
  10176. ]
  10177. },
  10178. "require": {
  10179. "php": ">=7.3",
  10180. "sebastian/recursion-context": "^4.0"
  10181. },
  10182. "require-dev": {
  10183. "ext-mbstring": "*",
  10184. "phpunit/phpunit": "^9.3"
  10185. },
  10186. "type": "library",
  10187. "extra": {
  10188. "branch-alias": {
  10189. "dev-master": "4.0-dev"
  10190. }
  10191. },
  10192. "autoload": {
  10193. "classmap": [
  10194. "src/"
  10195. ]
  10196. },
  10197. "notification-url": "https://packagist.org/downloads/",
  10198. "license": [
  10199. "BSD-3-Clause"
  10200. ],
  10201. "authors": [
  10202. {
  10203. "name": "Sebastian Bergmann",
  10204. "email": "sebastian@phpunit.de"
  10205. },
  10206. {
  10207. "name": "Jeff Welch",
  10208. "email": "whatthejeff@gmail.com"
  10209. },
  10210. {
  10211. "name": "Volker Dusch",
  10212. "email": "github@wallbash.com"
  10213. },
  10214. {
  10215. "name": "Adam Harvey",
  10216. "email": "aharvey@php.net"
  10217. },
  10218. {
  10219. "name": "Bernhard Schussek",
  10220. "email": "bschussek@gmail.com"
  10221. }
  10222. ],
  10223. "description": "Provides the functionality to export PHP variables for visualization",
  10224. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10225. "keywords": [
  10226. "export",
  10227. "exporter"
  10228. ],
  10229. "support": {
  10230. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10231. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10232. },
  10233. "funding": [
  10234. {
  10235. "url": "https://github.com/sebastianbergmann",
  10236. "type": "github"
  10237. }
  10238. ],
  10239. "time": "2022-09-14T06:03:37+00:00"
  10240. },
  10241. {
  10242. "name": "sebastian/global-state",
  10243. "version": "5.0.6",
  10244. "source": {
  10245. "type": "git",
  10246. "url": "https://github.com/sebastianbergmann/global-state.git",
  10247. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  10248. },
  10249. "dist": {
  10250. "type": "zip",
  10251. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  10252. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  10253. "shasum": "",
  10254. "mirrors": [
  10255. {
  10256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10257. "preferred": true
  10258. }
  10259. ]
  10260. },
  10261. "require": {
  10262. "php": ">=7.3",
  10263. "sebastian/object-reflector": "^2.0",
  10264. "sebastian/recursion-context": "^4.0"
  10265. },
  10266. "require-dev": {
  10267. "ext-dom": "*",
  10268. "phpunit/phpunit": "^9.3"
  10269. },
  10270. "suggest": {
  10271. "ext-uopz": "*"
  10272. },
  10273. "type": "library",
  10274. "extra": {
  10275. "branch-alias": {
  10276. "dev-master": "5.0-dev"
  10277. }
  10278. },
  10279. "autoload": {
  10280. "classmap": [
  10281. "src/"
  10282. ]
  10283. },
  10284. "notification-url": "https://packagist.org/downloads/",
  10285. "license": [
  10286. "BSD-3-Clause"
  10287. ],
  10288. "authors": [
  10289. {
  10290. "name": "Sebastian Bergmann",
  10291. "email": "sebastian@phpunit.de"
  10292. }
  10293. ],
  10294. "description": "Snapshotting of global state",
  10295. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10296. "keywords": [
  10297. "global state"
  10298. ],
  10299. "support": {
  10300. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10301. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  10302. },
  10303. "funding": [
  10304. {
  10305. "url": "https://github.com/sebastianbergmann",
  10306. "type": "github"
  10307. }
  10308. ],
  10309. "time": "2023-08-02T09:26:13+00:00"
  10310. },
  10311. {
  10312. "name": "sebastian/lines-of-code",
  10313. "version": "1.0.x-dev",
  10314. "source": {
  10315. "type": "git",
  10316. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10317. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10318. },
  10319. "dist": {
  10320. "type": "zip",
  10321. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10322. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10323. "shasum": "",
  10324. "mirrors": [
  10325. {
  10326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10327. "preferred": true
  10328. }
  10329. ]
  10330. },
  10331. "require": {
  10332. "nikic/php-parser": "^4.18 || ^5.0",
  10333. "php": ">=7.3"
  10334. },
  10335. "require-dev": {
  10336. "phpunit/phpunit": "^9.3"
  10337. },
  10338. "type": "library",
  10339. "extra": {
  10340. "branch-alias": {
  10341. "dev-master": "1.0-dev"
  10342. }
  10343. },
  10344. "autoload": {
  10345. "classmap": [
  10346. "src/"
  10347. ]
  10348. },
  10349. "notification-url": "https://packagist.org/downloads/",
  10350. "license": [
  10351. "BSD-3-Clause"
  10352. ],
  10353. "authors": [
  10354. {
  10355. "name": "Sebastian Bergmann",
  10356. "email": "sebastian@phpunit.de",
  10357. "role": "lead"
  10358. }
  10359. ],
  10360. "description": "Library for counting the lines of code in PHP source code",
  10361. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10362. "support": {
  10363. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10364. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10365. },
  10366. "funding": [
  10367. {
  10368. "url": "https://github.com/sebastianbergmann",
  10369. "type": "github"
  10370. }
  10371. ],
  10372. "time": "2023-12-22T06:20:34+00:00"
  10373. },
  10374. {
  10375. "name": "sebastian/object-enumerator",
  10376. "version": "4.0.4",
  10377. "source": {
  10378. "type": "git",
  10379. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10380. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10381. },
  10382. "dist": {
  10383. "type": "zip",
  10384. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10385. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10386. "shasum": "",
  10387. "mirrors": [
  10388. {
  10389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10390. "preferred": true
  10391. }
  10392. ]
  10393. },
  10394. "require": {
  10395. "php": ">=7.3",
  10396. "sebastian/object-reflector": "^2.0",
  10397. "sebastian/recursion-context": "^4.0"
  10398. },
  10399. "require-dev": {
  10400. "phpunit/phpunit": "^9.3"
  10401. },
  10402. "type": "library",
  10403. "extra": {
  10404. "branch-alias": {
  10405. "dev-master": "4.0-dev"
  10406. }
  10407. },
  10408. "autoload": {
  10409. "classmap": [
  10410. "src/"
  10411. ]
  10412. },
  10413. "notification-url": "https://packagist.org/downloads/",
  10414. "license": [
  10415. "BSD-3-Clause"
  10416. ],
  10417. "authors": [
  10418. {
  10419. "name": "Sebastian Bergmann",
  10420. "email": "sebastian@phpunit.de"
  10421. }
  10422. ],
  10423. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10424. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10425. "support": {
  10426. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10427. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10428. },
  10429. "funding": [
  10430. {
  10431. "url": "https://github.com/sebastianbergmann",
  10432. "type": "github"
  10433. }
  10434. ],
  10435. "time": "2020-10-26T13:12:34+00:00"
  10436. },
  10437. {
  10438. "name": "sebastian/object-reflector",
  10439. "version": "2.0.4",
  10440. "source": {
  10441. "type": "git",
  10442. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10443. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10444. },
  10445. "dist": {
  10446. "type": "zip",
  10447. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10448. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10449. "shasum": "",
  10450. "mirrors": [
  10451. {
  10452. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10453. "preferred": true
  10454. }
  10455. ]
  10456. },
  10457. "require": {
  10458. "php": ">=7.3"
  10459. },
  10460. "require-dev": {
  10461. "phpunit/phpunit": "^9.3"
  10462. },
  10463. "type": "library",
  10464. "extra": {
  10465. "branch-alias": {
  10466. "dev-master": "2.0-dev"
  10467. }
  10468. },
  10469. "autoload": {
  10470. "classmap": [
  10471. "src/"
  10472. ]
  10473. },
  10474. "notification-url": "https://packagist.org/downloads/",
  10475. "license": [
  10476. "BSD-3-Clause"
  10477. ],
  10478. "authors": [
  10479. {
  10480. "name": "Sebastian Bergmann",
  10481. "email": "sebastian@phpunit.de"
  10482. }
  10483. ],
  10484. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10485. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10486. "support": {
  10487. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10488. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10489. },
  10490. "funding": [
  10491. {
  10492. "url": "https://github.com/sebastianbergmann",
  10493. "type": "github"
  10494. }
  10495. ],
  10496. "time": "2020-10-26T13:14:26+00:00"
  10497. },
  10498. {
  10499. "name": "sebastian/recursion-context",
  10500. "version": "4.0.5",
  10501. "source": {
  10502. "type": "git",
  10503. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10504. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10505. },
  10506. "dist": {
  10507. "type": "zip",
  10508. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10509. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10510. "shasum": "",
  10511. "mirrors": [
  10512. {
  10513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10514. "preferred": true
  10515. }
  10516. ]
  10517. },
  10518. "require": {
  10519. "php": ">=7.3"
  10520. },
  10521. "require-dev": {
  10522. "phpunit/phpunit": "^9.3"
  10523. },
  10524. "type": "library",
  10525. "extra": {
  10526. "branch-alias": {
  10527. "dev-master": "4.0-dev"
  10528. }
  10529. },
  10530. "autoload": {
  10531. "classmap": [
  10532. "src/"
  10533. ]
  10534. },
  10535. "notification-url": "https://packagist.org/downloads/",
  10536. "license": [
  10537. "BSD-3-Clause"
  10538. ],
  10539. "authors": [
  10540. {
  10541. "name": "Sebastian Bergmann",
  10542. "email": "sebastian@phpunit.de"
  10543. },
  10544. {
  10545. "name": "Jeff Welch",
  10546. "email": "whatthejeff@gmail.com"
  10547. },
  10548. {
  10549. "name": "Adam Harvey",
  10550. "email": "aharvey@php.net"
  10551. }
  10552. ],
  10553. "description": "Provides functionality to recursively process PHP variables",
  10554. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10555. "support": {
  10556. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10557. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10558. },
  10559. "funding": [
  10560. {
  10561. "url": "https://github.com/sebastianbergmann",
  10562. "type": "github"
  10563. }
  10564. ],
  10565. "time": "2023-02-03T06:07:39+00:00"
  10566. },
  10567. {
  10568. "name": "sebastian/resource-operations",
  10569. "version": "3.0.3",
  10570. "source": {
  10571. "type": "git",
  10572. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10573. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10574. },
  10575. "dist": {
  10576. "type": "zip",
  10577. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10578. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10579. "shasum": "",
  10580. "mirrors": [
  10581. {
  10582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10583. "preferred": true
  10584. }
  10585. ]
  10586. },
  10587. "require": {
  10588. "php": ">=7.3"
  10589. },
  10590. "require-dev": {
  10591. "phpunit/phpunit": "^9.0"
  10592. },
  10593. "type": "library",
  10594. "extra": {
  10595. "branch-alias": {
  10596. "dev-master": "3.0-dev"
  10597. }
  10598. },
  10599. "autoload": {
  10600. "classmap": [
  10601. "src/"
  10602. ]
  10603. },
  10604. "notification-url": "https://packagist.org/downloads/",
  10605. "license": [
  10606. "BSD-3-Clause"
  10607. ],
  10608. "authors": [
  10609. {
  10610. "name": "Sebastian Bergmann",
  10611. "email": "sebastian@phpunit.de"
  10612. }
  10613. ],
  10614. "description": "Provides a list of PHP built-in functions that operate on resources",
  10615. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10616. "support": {
  10617. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10618. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10619. },
  10620. "funding": [
  10621. {
  10622. "url": "https://github.com/sebastianbergmann",
  10623. "type": "github"
  10624. }
  10625. ],
  10626. "time": "2020-09-28T06:45:17+00:00"
  10627. },
  10628. {
  10629. "name": "sebastian/type",
  10630. "version": "3.2.1",
  10631. "source": {
  10632. "type": "git",
  10633. "url": "https://github.com/sebastianbergmann/type.git",
  10634. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10635. },
  10636. "dist": {
  10637. "type": "zip",
  10638. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10639. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10640. "shasum": "",
  10641. "mirrors": [
  10642. {
  10643. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10644. "preferred": true
  10645. }
  10646. ]
  10647. },
  10648. "require": {
  10649. "php": ">=7.3"
  10650. },
  10651. "require-dev": {
  10652. "phpunit/phpunit": "^9.5"
  10653. },
  10654. "type": "library",
  10655. "extra": {
  10656. "branch-alias": {
  10657. "dev-master": "3.2-dev"
  10658. }
  10659. },
  10660. "autoload": {
  10661. "classmap": [
  10662. "src/"
  10663. ]
  10664. },
  10665. "notification-url": "https://packagist.org/downloads/",
  10666. "license": [
  10667. "BSD-3-Clause"
  10668. ],
  10669. "authors": [
  10670. {
  10671. "name": "Sebastian Bergmann",
  10672. "email": "sebastian@phpunit.de",
  10673. "role": "lead"
  10674. }
  10675. ],
  10676. "description": "Collection of value objects that represent the types of the PHP type system",
  10677. "homepage": "https://github.com/sebastianbergmann/type",
  10678. "support": {
  10679. "issues": "https://github.com/sebastianbergmann/type/issues",
  10680. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10681. },
  10682. "funding": [
  10683. {
  10684. "url": "https://github.com/sebastianbergmann",
  10685. "type": "github"
  10686. }
  10687. ],
  10688. "time": "2023-02-03T06:13:03+00:00"
  10689. },
  10690. {
  10691. "name": "sebastian/version",
  10692. "version": "3.0.2",
  10693. "source": {
  10694. "type": "git",
  10695. "url": "https://github.com/sebastianbergmann/version.git",
  10696. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10697. },
  10698. "dist": {
  10699. "type": "zip",
  10700. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10701. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10702. "shasum": "",
  10703. "mirrors": [
  10704. {
  10705. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10706. "preferred": true
  10707. }
  10708. ]
  10709. },
  10710. "require": {
  10711. "php": ">=7.3"
  10712. },
  10713. "type": "library",
  10714. "extra": {
  10715. "branch-alias": {
  10716. "dev-master": "3.0-dev"
  10717. }
  10718. },
  10719. "autoload": {
  10720. "classmap": [
  10721. "src/"
  10722. ]
  10723. },
  10724. "notification-url": "https://packagist.org/downloads/",
  10725. "license": [
  10726. "BSD-3-Clause"
  10727. ],
  10728. "authors": [
  10729. {
  10730. "name": "Sebastian Bergmann",
  10731. "email": "sebastian@phpunit.de",
  10732. "role": "lead"
  10733. }
  10734. ],
  10735. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10736. "homepage": "https://github.com/sebastianbergmann/version",
  10737. "support": {
  10738. "issues": "https://github.com/sebastianbergmann/version/issues",
  10739. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10740. },
  10741. "funding": [
  10742. {
  10743. "url": "https://github.com/sebastianbergmann",
  10744. "type": "github"
  10745. }
  10746. ],
  10747. "time": "2020-09-28T06:39:44+00:00"
  10748. },
  10749. {
  10750. "name": "theseer/tokenizer",
  10751. "version": "1.2.1",
  10752. "source": {
  10753. "type": "git",
  10754. "url": "https://github.com/theseer/tokenizer.git",
  10755. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10756. },
  10757. "dist": {
  10758. "type": "zip",
  10759. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10760. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10761. "shasum": "",
  10762. "mirrors": [
  10763. {
  10764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10765. "preferred": true
  10766. }
  10767. ]
  10768. },
  10769. "require": {
  10770. "ext-dom": "*",
  10771. "ext-tokenizer": "*",
  10772. "ext-xmlwriter": "*",
  10773. "php": "^7.2 || ^8.0"
  10774. },
  10775. "type": "library",
  10776. "autoload": {
  10777. "classmap": [
  10778. "src/"
  10779. ]
  10780. },
  10781. "notification-url": "https://packagist.org/downloads/",
  10782. "license": [
  10783. "BSD-3-Clause"
  10784. ],
  10785. "authors": [
  10786. {
  10787. "name": "Arne Blankerts",
  10788. "email": "arne@blankerts.de",
  10789. "role": "Developer"
  10790. }
  10791. ],
  10792. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10793. "support": {
  10794. "issues": "https://github.com/theseer/tokenizer/issues",
  10795. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10796. },
  10797. "funding": [
  10798. {
  10799. "url": "https://github.com/theseer",
  10800. "type": "github"
  10801. }
  10802. ],
  10803. "time": "2021-07-28T10:34:58+00:00"
  10804. }
  10805. ],
  10806. "aliases": [],
  10807. "minimum-stability": "dev",
  10808. "stability-flags": [],
  10809. "prefer-stable": true,
  10810. "prefer-lowest": false,
  10811. "platform": {
  10812. "php": "^7.3|^8.0"
  10813. },
  10814. "platform-dev": [],
  10815. "plugin-api-version": "2.6.0"
  10816. }