composer.lock 242 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794
  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": "a4dcc47b1800c9f0dc57a578fc981470",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  65. },
  66. "time": "2022-10-14T20:31:46+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/client",
  70. "version": "1.5.32",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  74. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  79. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.4.1",
  90. "clagiordano/weblibs-configmanager": "^1.0",
  91. "ext-curl": "*",
  92. "ext-json": "*",
  93. "ext-libxml": "*",
  94. "ext-mbstring": "*",
  95. "ext-openssl": "*",
  96. "ext-simplexml": "*",
  97. "ext-xmlwriter": "*",
  98. "guzzlehttp/guzzle": "^6.3|^7.0",
  99. "mtdowling/jmespath.php": "^2.5",
  100. "php": ">=5.5"
  101. },
  102. "require-dev": {
  103. "composer/composer": "^1.8",
  104. "drupal/coder": "^8.3",
  105. "ext-dom": "*",
  106. "ext-pcre": "*",
  107. "ext-sockets": "*",
  108. "ext-spl": "*",
  109. "league/climate": "^3.2.4",
  110. "mikey179/vfsstream": "^1.6",
  111. "monolog/monolog": "^1.24",
  112. "phpunit/phpunit": "^5.7|^6.6|^7.5|^8.5|^9.5",
  113. "psr/cache": "^1.0",
  114. "symfony/dotenv": "^3.4",
  115. "symfony/var-dumper": "^3.4"
  116. },
  117. "suggest": {
  118. "ext-sockets": "To use client-side monitoring"
  119. },
  120. "type": "library",
  121. "autoload": {
  122. "files": [
  123. "src/Functions.php"
  124. ],
  125. "psr-4": {
  126. "AlibabaCloud\\Client\\": "src"
  127. }
  128. },
  129. "notification-url": "https://packagist.org/downloads/",
  130. "license": [
  131. "Apache-2.0"
  132. ],
  133. "authors": [
  134. {
  135. "name": "Alibaba Cloud SDK",
  136. "email": "sdk-team@alibabacloud.com",
  137. "homepage": "http://www.alibabacloud.com"
  138. }
  139. ],
  140. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  141. "homepage": "https://www.alibabacloud.com/",
  142. "keywords": [
  143. "alibaba",
  144. "alibabacloud",
  145. "aliyun",
  146. "client",
  147. "cloud",
  148. "library",
  149. "sdk",
  150. "tool"
  151. ],
  152. "support": {
  153. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  154. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  155. },
  156. "time": "2022-12-09T04:05:55+00:00"
  157. },
  158. {
  159. "name": "aliyuncs/oss-sdk-php",
  160. "version": "v2.6.0",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  164. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  169. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  170. "shasum": "",
  171. "mirrors": [
  172. {
  173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  174. "preferred": true
  175. }
  176. ]
  177. },
  178. "require": {
  179. "php": ">=5.3"
  180. },
  181. "require-dev": {
  182. "phpunit/phpunit": "*",
  183. "satooshi/php-coveralls": "*"
  184. },
  185. "type": "library",
  186. "autoload": {
  187. "psr-4": {
  188. "OSS\\": "src/OSS"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "MIT"
  194. ],
  195. "authors": [
  196. {
  197. "name": "Aliyuncs",
  198. "homepage": "http://www.aliyun.com"
  199. }
  200. ],
  201. "description": "Aliyun OSS SDK for PHP",
  202. "homepage": "http://www.aliyun.com/product/oss/",
  203. "support": {
  204. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  205. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.6.0"
  206. },
  207. "time": "2022-08-03T08:06:01+00:00"
  208. },
  209. {
  210. "name": "clagiordano/weblibs-configmanager",
  211. "version": "v1.2.0",
  212. "source": {
  213. "type": "git",
  214. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  215. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  216. },
  217. "dist": {
  218. "type": "zip",
  219. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  220. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  221. "shasum": "",
  222. "mirrors": [
  223. {
  224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  225. "preferred": true
  226. }
  227. ]
  228. },
  229. "require": {
  230. "php": ">=5.4"
  231. },
  232. "require-dev": {
  233. "clagiordano/phpunit-result-printer": "^1",
  234. "phpunit/phpunit": "^4.8"
  235. },
  236. "type": "library",
  237. "autoload": {
  238. "psr-4": {
  239. "clagiordano\\weblibs\\configmanager\\": "src/"
  240. }
  241. },
  242. "notification-url": "https://packagist.org/downloads/",
  243. "license": [
  244. "LGPL-3.0-or-later"
  245. ],
  246. "authors": [
  247. {
  248. "name": "Claudio Giordano",
  249. "email": "claudio.giordano@autistici.org",
  250. "role": "Developer"
  251. }
  252. ],
  253. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  254. "keywords": [
  255. "clagiordano",
  256. "configuration",
  257. "manager",
  258. "tool",
  259. "weblibs"
  260. ],
  261. "support": {
  262. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  263. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  264. },
  265. "time": "2021-05-18T17:55:57+00:00"
  266. },
  267. {
  268. "name": "dh2y/think-qrcode",
  269. "version": "2.0",
  270. "source": {
  271. "type": "git",
  272. "url": "https://github.com/cinaofdai/think-qrcode.git",
  273. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5"
  274. },
  275. "dist": {
  276. "type": "zip",
  277. "url": "https://api.github.com/repos/cinaofdai/think-qrcode/zipball/977d032afa27b1852f5fc5441fad2497f6db7ff5",
  278. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5",
  279. "shasum": "",
  280. "mirrors": [
  281. {
  282. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  283. "preferred": true
  284. }
  285. ]
  286. },
  287. "require": {
  288. "php": ">=5.4.0"
  289. },
  290. "type": "library",
  291. "autoload": {
  292. "psr-4": {
  293. "dh2y\\qrcode\\": "src/"
  294. }
  295. },
  296. "notification-url": "https://packagist.org/downloads/",
  297. "license": [
  298. "MIT"
  299. ],
  300. "authors": [
  301. {
  302. "name": "dh2y",
  303. "email": "xiaodai54_long@163.com"
  304. }
  305. ],
  306. "description": "qrcode for thinkphp5",
  307. "homepage": "https://github.com/cinaofdai/think-qrcode",
  308. "support": {
  309. "issues": "https://github.com/cinaofdai/think-qrcode/issues",
  310. "source": "https://github.com/cinaofdai/think-qrcode/tree/2.0"
  311. },
  312. "time": "2019-07-10T02:57:29+00:00"
  313. },
  314. {
  315. "name": "dragonmantank/cron-expression",
  316. "version": "v3.3.1",
  317. "source": {
  318. "type": "git",
  319. "url": "https://github.com/dragonmantank/cron-expression.git",
  320. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  321. },
  322. "dist": {
  323. "type": "zip",
  324. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  325. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  326. "shasum": "",
  327. "mirrors": [
  328. {
  329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  330. "preferred": true
  331. }
  332. ]
  333. },
  334. "require": {
  335. "php": "^7.2|^8.0",
  336. "webmozart/assert": "^1.0"
  337. },
  338. "replace": {
  339. "mtdowling/cron-expression": "^1.0"
  340. },
  341. "require-dev": {
  342. "phpstan/extension-installer": "^1.0",
  343. "phpstan/phpstan": "^1.0",
  344. "phpstan/phpstan-webmozart-assert": "^1.0",
  345. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  346. },
  347. "type": "library",
  348. "autoload": {
  349. "psr-4": {
  350. "Cron\\": "src/Cron/"
  351. }
  352. },
  353. "notification-url": "https://packagist.org/downloads/",
  354. "license": [
  355. "MIT"
  356. ],
  357. "authors": [
  358. {
  359. "name": "Chris Tankersley",
  360. "email": "chris@ctankersley.com",
  361. "homepage": "https://github.com/dragonmantank"
  362. }
  363. ],
  364. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  365. "keywords": [
  366. "cron",
  367. "schedule"
  368. ],
  369. "support": {
  370. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  371. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  372. },
  373. "funding": [
  374. {
  375. "url": "https://github.com/dragonmantank",
  376. "type": "github"
  377. }
  378. ],
  379. "time": "2022-01-18T15:43:28+00:00"
  380. },
  381. {
  382. "name": "ezyang/htmlpurifier",
  383. "version": "v4.16.0",
  384. "source": {
  385. "type": "git",
  386. "url": "https://github.com/ezyang/htmlpurifier.git",
  387. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  388. },
  389. "dist": {
  390. "type": "zip",
  391. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  392. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  393. "shasum": "",
  394. "mirrors": [
  395. {
  396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  397. "preferred": true
  398. }
  399. ]
  400. },
  401. "require": {
  402. "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"
  403. },
  404. "require-dev": {
  405. "cerdic/css-tidy": "^1.7 || ^2.0",
  406. "simpletest/simpletest": "dev-master"
  407. },
  408. "suggest": {
  409. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  410. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  411. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  412. "ext-tidy": "Used for pretty-printing HTML"
  413. },
  414. "type": "library",
  415. "autoload": {
  416. "files": [
  417. "library/HTMLPurifier.composer.php"
  418. ],
  419. "psr-0": {
  420. "HTMLPurifier": "library/"
  421. },
  422. "exclude-from-classmap": [
  423. "/library/HTMLPurifier/Language/"
  424. ]
  425. },
  426. "notification-url": "https://packagist.org/downloads/",
  427. "license": [
  428. "LGPL-2.1-or-later"
  429. ],
  430. "authors": [
  431. {
  432. "name": "Edward Z. Yang",
  433. "email": "admin@htmlpurifier.org",
  434. "homepage": "http://ezyang.com"
  435. }
  436. ],
  437. "description": "Standards compliant HTML filter written in PHP",
  438. "homepage": "http://htmlpurifier.org/",
  439. "keywords": [
  440. "html"
  441. ],
  442. "support": {
  443. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  444. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  445. },
  446. "time": "2022-09-18T07:06:19+00:00"
  447. },
  448. {
  449. "name": "fastknife/ajcaptcha",
  450. "version": "v1.2.1",
  451. "source": {
  452. "type": "git",
  453. "url": "https://gitee.com/fastknife/aj-captcha.git",
  454. "reference": "836c5a3177bc622a245734aef421085955d0b2cb"
  455. },
  456. "require": {
  457. "ext-gd": "*",
  458. "ext-iconv": "*",
  459. "ext-json": "*",
  460. "ext-openssl": "*",
  461. "intervention/image": "^2.5",
  462. "php": ">=7.1"
  463. },
  464. "type": "library",
  465. "autoload": {
  466. "psr-4": {
  467. "Fastknife\\": "src"
  468. }
  469. },
  470. "notification-url": "https://packagist.org/downloads/",
  471. "license": [
  472. "GPL-3.0-only"
  473. ],
  474. "authors": [
  475. {
  476. "name": "bruce",
  477. "email": "2777314125@qq.com"
  478. }
  479. ],
  480. "description": "This is a behavior verification code PHP back-end implementation package",
  481. "time": "2023-01-03T06:08:28+00:00"
  482. },
  483. {
  484. "name": "firebase/php-jwt",
  485. "version": "v5.5.1",
  486. "source": {
  487. "type": "git",
  488. "url": "https://github.com/firebase/php-jwt.git",
  489. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  490. },
  491. "dist": {
  492. "type": "zip",
  493. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  494. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  495. "shasum": "",
  496. "mirrors": [
  497. {
  498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  499. "preferred": true
  500. }
  501. ]
  502. },
  503. "require": {
  504. "php": ">=5.3.0"
  505. },
  506. "require-dev": {
  507. "phpunit/phpunit": ">=4.8 <=9"
  508. },
  509. "suggest": {
  510. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  511. },
  512. "type": "library",
  513. "autoload": {
  514. "psr-4": {
  515. "Firebase\\JWT\\": "src"
  516. }
  517. },
  518. "notification-url": "https://packagist.org/downloads/",
  519. "license": [
  520. "BSD-3-Clause"
  521. ],
  522. "authors": [
  523. {
  524. "name": "Neuman Vong",
  525. "email": "neuman+pear@twilio.com",
  526. "role": "Developer"
  527. },
  528. {
  529. "name": "Anant Narayanan",
  530. "email": "anant@php.net",
  531. "role": "Developer"
  532. }
  533. ],
  534. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  535. "homepage": "https://github.com/firebase/php-jwt",
  536. "keywords": [
  537. "jwt",
  538. "php"
  539. ],
  540. "support": {
  541. "issues": "https://github.com/firebase/php-jwt/issues",
  542. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  543. },
  544. "time": "2021-11-08T20:18:51+00:00"
  545. },
  546. {
  547. "name": "guzzlehttp/command",
  548. "version": "1.2.2",
  549. "source": {
  550. "type": "git",
  551. "url": "https://github.com/guzzle/command.git",
  552. "reference": "7883359e0ecab8a8f7c43aad2fc36360a35d21e8"
  553. },
  554. "dist": {
  555. "type": "zip",
  556. "url": "https://api.github.com/repos/guzzle/command/zipball/7883359e0ecab8a8f7c43aad2fc36360a35d21e8",
  557. "reference": "7883359e0ecab8a8f7c43aad2fc36360a35d21e8",
  558. "shasum": "",
  559. "mirrors": [
  560. {
  561. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  562. "preferred": true
  563. }
  564. ]
  565. },
  566. "require": {
  567. "guzzlehttp/guzzle": "^7.4.1",
  568. "guzzlehttp/promises": "^1.5.1",
  569. "guzzlehttp/psr7": "^1.8.3 || ^2.1",
  570. "php": "^7.2.5 || ^8.0"
  571. },
  572. "require-dev": {
  573. "phpunit/phpunit": "^8.5.19"
  574. },
  575. "type": "library",
  576. "extra": {
  577. "branch-alias": {
  578. "dev-master": "1.2-dev"
  579. }
  580. },
  581. "autoload": {
  582. "psr-4": {
  583. "GuzzleHttp\\Command\\": "src/"
  584. }
  585. },
  586. "notification-url": "https://packagist.org/downloads/",
  587. "license": [
  588. "MIT"
  589. ],
  590. "authors": [
  591. {
  592. "name": "Graham Campbell",
  593. "email": "hello@gjcampbell.co.uk",
  594. "homepage": "https://github.com/GrahamCampbell"
  595. },
  596. {
  597. "name": "Michael Dowling",
  598. "email": "mtdowling@gmail.com",
  599. "homepage": "https://github.com/mtdowling"
  600. },
  601. {
  602. "name": "Jeremy Lindblom",
  603. "email": "jeremeamia@gmail.com",
  604. "homepage": "https://github.com/jeremeamia"
  605. },
  606. {
  607. "name": "Tobias Nyholm",
  608. "email": "tobias.nyholm@gmail.com",
  609. "homepage": "https://github.com/Nyholm"
  610. }
  611. ],
  612. "description": "Provides the foundation for building command-based web service clients",
  613. "support": {
  614. "issues": "https://github.com/guzzle/command/issues",
  615. "source": "https://github.com/guzzle/command/tree/1.2.2"
  616. },
  617. "funding": [
  618. {
  619. "url": "https://github.com/GrahamCampbell",
  620. "type": "github"
  621. },
  622. {
  623. "url": "https://github.com/Nyholm",
  624. "type": "github"
  625. },
  626. {
  627. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/command",
  628. "type": "tidelift"
  629. }
  630. ],
  631. "time": "2022-02-08T10:21:14+00:00"
  632. },
  633. {
  634. "name": "guzzlehttp/guzzle",
  635. "version": "7.5.0",
  636. "source": {
  637. "type": "git",
  638. "url": "https://github.com/guzzle/guzzle.git",
  639. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  640. },
  641. "dist": {
  642. "type": "zip",
  643. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  644. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  645. "shasum": "",
  646. "mirrors": [
  647. {
  648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  649. "preferred": true
  650. }
  651. ]
  652. },
  653. "require": {
  654. "ext-json": "*",
  655. "guzzlehttp/promises": "^1.5",
  656. "guzzlehttp/psr7": "^1.9 || ^2.4",
  657. "php": "^7.2.5 || ^8.0",
  658. "psr/http-client": "^1.0",
  659. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  660. },
  661. "provide": {
  662. "psr/http-client-implementation": "1.0"
  663. },
  664. "require-dev": {
  665. "bamarni/composer-bin-plugin": "^1.8.1",
  666. "ext-curl": "*",
  667. "php-http/client-integration-tests": "^3.0",
  668. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  669. "psr/log": "^1.1 || ^2.0 || ^3.0"
  670. },
  671. "suggest": {
  672. "ext-curl": "Required for CURL handler support",
  673. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  674. "psr/log": "Required for using the Log middleware"
  675. },
  676. "type": "library",
  677. "extra": {
  678. "bamarni-bin": {
  679. "bin-links": true,
  680. "forward-command": false
  681. },
  682. "branch-alias": {
  683. "dev-master": "7.5-dev"
  684. }
  685. },
  686. "autoload": {
  687. "files": [
  688. "src/functions_include.php"
  689. ],
  690. "psr-4": {
  691. "GuzzleHttp\\": "src/"
  692. }
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "MIT"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Graham Campbell",
  701. "email": "hello@gjcampbell.co.uk",
  702. "homepage": "https://github.com/GrahamCampbell"
  703. },
  704. {
  705. "name": "Michael Dowling",
  706. "email": "mtdowling@gmail.com",
  707. "homepage": "https://github.com/mtdowling"
  708. },
  709. {
  710. "name": "Jeremy Lindblom",
  711. "email": "jeremeamia@gmail.com",
  712. "homepage": "https://github.com/jeremeamia"
  713. },
  714. {
  715. "name": "George Mponos",
  716. "email": "gmponos@gmail.com",
  717. "homepage": "https://github.com/gmponos"
  718. },
  719. {
  720. "name": "Tobias Nyholm",
  721. "email": "tobias.nyholm@gmail.com",
  722. "homepage": "https://github.com/Nyholm"
  723. },
  724. {
  725. "name": "Márk Sági-Kazár",
  726. "email": "mark.sagikazar@gmail.com",
  727. "homepage": "https://github.com/sagikazarmark"
  728. },
  729. {
  730. "name": "Tobias Schultze",
  731. "email": "webmaster@tubo-world.de",
  732. "homepage": "https://github.com/Tobion"
  733. }
  734. ],
  735. "description": "Guzzle is a PHP HTTP client library",
  736. "keywords": [
  737. "client",
  738. "curl",
  739. "framework",
  740. "http",
  741. "http client",
  742. "psr-18",
  743. "psr-7",
  744. "rest",
  745. "web service"
  746. ],
  747. "support": {
  748. "issues": "https://github.com/guzzle/guzzle/issues",
  749. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  750. },
  751. "funding": [
  752. {
  753. "url": "https://github.com/GrahamCampbell",
  754. "type": "github"
  755. },
  756. {
  757. "url": "https://github.com/Nyholm",
  758. "type": "github"
  759. },
  760. {
  761. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  762. "type": "tidelift"
  763. }
  764. ],
  765. "time": "2022-08-28T15:39:27+00:00"
  766. },
  767. {
  768. "name": "guzzlehttp/guzzle-services",
  769. "version": "1.3.2",
  770. "source": {
  771. "type": "git",
  772. "url": "https://github.com/guzzle/guzzle-services.git",
  773. "reference": "4989d902dd4e0411b320e851c46f3c94d652d891"
  774. },
  775. "dist": {
  776. "type": "zip",
  777. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/4989d902dd4e0411b320e851c46f3c94d652d891",
  778. "reference": "4989d902dd4e0411b320e851c46f3c94d652d891",
  779. "shasum": "",
  780. "mirrors": [
  781. {
  782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  783. "preferred": true
  784. }
  785. ]
  786. },
  787. "require": {
  788. "guzzlehttp/command": "^1.2.2",
  789. "guzzlehttp/guzzle": "^7.4.1",
  790. "guzzlehttp/psr7": "^1.8.3 || ^2.1",
  791. "guzzlehttp/uri-template": "^1.0.1",
  792. "php": "^7.2.5 || ^8.0"
  793. },
  794. "require-dev": {
  795. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  796. },
  797. "suggest": {
  798. "gimler/guzzle-description-loader": "^0.0.4"
  799. },
  800. "type": "library",
  801. "extra": {
  802. "branch-alias": {
  803. "dev-master": "1.3-dev"
  804. }
  805. },
  806. "autoload": {
  807. "psr-4": {
  808. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  809. }
  810. },
  811. "notification-url": "https://packagist.org/downloads/",
  812. "license": [
  813. "MIT"
  814. ],
  815. "authors": [
  816. {
  817. "name": "Graham Campbell",
  818. "email": "hello@gjcampbell.co.uk",
  819. "homepage": "https://github.com/GrahamCampbell"
  820. },
  821. {
  822. "name": "Michael Dowling",
  823. "email": "mtdowling@gmail.com",
  824. "homepage": "https://github.com/mtdowling"
  825. },
  826. {
  827. "name": "Stefano Kowalke",
  828. "email": "blueduck@mail.org",
  829. "homepage": "https://github.com/Konafets"
  830. },
  831. {
  832. "name": "Tobias Nyholm",
  833. "email": "tobias.nyholm@gmail.com",
  834. "homepage": "https://github.com/Nyholm"
  835. }
  836. ],
  837. "description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures.",
  838. "support": {
  839. "issues": "https://github.com/guzzle/guzzle-services/issues",
  840. "source": "https://github.com/guzzle/guzzle-services/tree/1.3.2"
  841. },
  842. "funding": [
  843. {
  844. "url": "https://github.com/GrahamCampbell",
  845. "type": "github"
  846. },
  847. {
  848. "url": "https://github.com/Nyholm",
  849. "type": "github"
  850. },
  851. {
  852. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle-services",
  853. "type": "tidelift"
  854. }
  855. ],
  856. "time": "2022-03-03T11:21:34+00:00"
  857. },
  858. {
  859. "name": "guzzlehttp/promises",
  860. "version": "1.5.3",
  861. "source": {
  862. "type": "git",
  863. "url": "https://github.com/guzzle/promises.git",
  864. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  865. },
  866. "dist": {
  867. "type": "zip",
  868. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  869. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  870. "shasum": "",
  871. "mirrors": [
  872. {
  873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  874. "preferred": true
  875. }
  876. ]
  877. },
  878. "require": {
  879. "php": ">=5.5"
  880. },
  881. "require-dev": {
  882. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  883. },
  884. "type": "library",
  885. "autoload": {
  886. "files": [
  887. "src/functions_include.php"
  888. ],
  889. "psr-4": {
  890. "GuzzleHttp\\Promise\\": "src/"
  891. }
  892. },
  893. "notification-url": "https://packagist.org/downloads/",
  894. "license": [
  895. "MIT"
  896. ],
  897. "authors": [
  898. {
  899. "name": "Graham Campbell",
  900. "email": "hello@gjcampbell.co.uk",
  901. "homepage": "https://github.com/GrahamCampbell"
  902. },
  903. {
  904. "name": "Michael Dowling",
  905. "email": "mtdowling@gmail.com",
  906. "homepage": "https://github.com/mtdowling"
  907. },
  908. {
  909. "name": "Tobias Nyholm",
  910. "email": "tobias.nyholm@gmail.com",
  911. "homepage": "https://github.com/Nyholm"
  912. },
  913. {
  914. "name": "Tobias Schultze",
  915. "email": "webmaster@tubo-world.de",
  916. "homepage": "https://github.com/Tobion"
  917. }
  918. ],
  919. "description": "Guzzle promises library",
  920. "keywords": [
  921. "promise"
  922. ],
  923. "support": {
  924. "issues": "https://github.com/guzzle/promises/issues",
  925. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  926. },
  927. "funding": [
  928. {
  929. "url": "https://github.com/GrahamCampbell",
  930. "type": "github"
  931. },
  932. {
  933. "url": "https://github.com/Nyholm",
  934. "type": "github"
  935. },
  936. {
  937. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  938. "type": "tidelift"
  939. }
  940. ],
  941. "time": "2023-05-21T12:31:43+00:00"
  942. },
  943. {
  944. "name": "guzzlehttp/psr7",
  945. "version": "2.6.2",
  946. "source": {
  947. "type": "git",
  948. "url": "https://github.com/guzzle/psr7.git",
  949. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  950. },
  951. "dist": {
  952. "type": "zip",
  953. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  954. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  955. "shasum": "",
  956. "mirrors": [
  957. {
  958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  959. "preferred": true
  960. }
  961. ]
  962. },
  963. "require": {
  964. "php": "^7.2.5 || ^8.0",
  965. "psr/http-factory": "^1.0",
  966. "psr/http-message": "^1.1 || ^2.0",
  967. "ralouphie/getallheaders": "^3.0"
  968. },
  969. "provide": {
  970. "psr/http-factory-implementation": "1.0",
  971. "psr/http-message-implementation": "1.0"
  972. },
  973. "require-dev": {
  974. "bamarni/composer-bin-plugin": "^1.8.2",
  975. "http-interop/http-factory-tests": "^0.9",
  976. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  977. },
  978. "suggest": {
  979. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  980. },
  981. "type": "library",
  982. "extra": {
  983. "bamarni-bin": {
  984. "bin-links": true,
  985. "forward-command": false
  986. }
  987. },
  988. "autoload": {
  989. "psr-4": {
  990. "GuzzleHttp\\Psr7\\": "src/"
  991. }
  992. },
  993. "notification-url": "https://packagist.org/downloads/",
  994. "license": [
  995. "MIT"
  996. ],
  997. "authors": [
  998. {
  999. "name": "Graham Campbell",
  1000. "email": "hello@gjcampbell.co.uk",
  1001. "homepage": "https://github.com/GrahamCampbell"
  1002. },
  1003. {
  1004. "name": "Michael Dowling",
  1005. "email": "mtdowling@gmail.com",
  1006. "homepage": "https://github.com/mtdowling"
  1007. },
  1008. {
  1009. "name": "George Mponos",
  1010. "email": "gmponos@gmail.com",
  1011. "homepage": "https://github.com/gmponos"
  1012. },
  1013. {
  1014. "name": "Tobias Nyholm",
  1015. "email": "tobias.nyholm@gmail.com",
  1016. "homepage": "https://github.com/Nyholm"
  1017. },
  1018. {
  1019. "name": "Márk Sági-Kazár",
  1020. "email": "mark.sagikazar@gmail.com",
  1021. "homepage": "https://github.com/sagikazarmark"
  1022. },
  1023. {
  1024. "name": "Tobias Schultze",
  1025. "email": "webmaster@tubo-world.de",
  1026. "homepage": "https://github.com/Tobion"
  1027. },
  1028. {
  1029. "name": "Márk Sági-Kazár",
  1030. "email": "mark.sagikazar@gmail.com",
  1031. "homepage": "https://sagikazarmark.hu"
  1032. }
  1033. ],
  1034. "description": "PSR-7 message implementation that also provides common utility methods",
  1035. "keywords": [
  1036. "http",
  1037. "message",
  1038. "psr-7",
  1039. "request",
  1040. "response",
  1041. "stream",
  1042. "uri",
  1043. "url"
  1044. ],
  1045. "support": {
  1046. "issues": "https://github.com/guzzle/psr7/issues",
  1047. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1048. },
  1049. "funding": [
  1050. {
  1051. "url": "https://github.com/GrahamCampbell",
  1052. "type": "github"
  1053. },
  1054. {
  1055. "url": "https://github.com/Nyholm",
  1056. "type": "github"
  1057. },
  1058. {
  1059. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1060. "type": "tidelift"
  1061. }
  1062. ],
  1063. "time": "2023-12-03T20:05:35+00:00"
  1064. },
  1065. {
  1066. "name": "guzzlehttp/uri-template",
  1067. "version": "v1.0.2",
  1068. "source": {
  1069. "type": "git",
  1070. "url": "https://github.com/guzzle/uri-template.git",
  1071. "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d"
  1072. },
  1073. "dist": {
  1074. "type": "zip",
  1075. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/61bf437fc2197f587f6857d3ff903a24f1731b5d",
  1076. "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d",
  1077. "shasum": "",
  1078. "mirrors": [
  1079. {
  1080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1081. "preferred": true
  1082. }
  1083. ]
  1084. },
  1085. "require": {
  1086. "php": "^7.2.5 || ^8.0",
  1087. "symfony/polyfill-php80": "^1.17"
  1088. },
  1089. "require-dev": {
  1090. "bamarni/composer-bin-plugin": "^1.8.1",
  1091. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  1092. "uri-template/tests": "1.0.0"
  1093. },
  1094. "type": "library",
  1095. "autoload": {
  1096. "psr-4": {
  1097. "GuzzleHttp\\UriTemplate\\": "src"
  1098. }
  1099. },
  1100. "notification-url": "https://packagist.org/downloads/",
  1101. "license": [
  1102. "MIT"
  1103. ],
  1104. "authors": [
  1105. {
  1106. "name": "Graham Campbell",
  1107. "email": "hello@gjcampbell.co.uk",
  1108. "homepage": "https://github.com/GrahamCampbell"
  1109. },
  1110. {
  1111. "name": "Michael Dowling",
  1112. "email": "mtdowling@gmail.com",
  1113. "homepage": "https://github.com/mtdowling"
  1114. },
  1115. {
  1116. "name": "George Mponos",
  1117. "email": "gmponos@gmail.com",
  1118. "homepage": "https://github.com/gmponos"
  1119. },
  1120. {
  1121. "name": "Tobias Nyholm",
  1122. "email": "tobias.nyholm@gmail.com",
  1123. "homepage": "https://github.com/Nyholm"
  1124. }
  1125. ],
  1126. "description": "A polyfill class for uri_template of PHP",
  1127. "keywords": [
  1128. "guzzlehttp",
  1129. "uri-template"
  1130. ],
  1131. "support": {
  1132. "issues": "https://github.com/guzzle/uri-template/issues",
  1133. "source": "https://github.com/guzzle/uri-template/tree/v1.0.2"
  1134. },
  1135. "funding": [
  1136. {
  1137. "url": "https://github.com/GrahamCampbell",
  1138. "type": "github"
  1139. },
  1140. {
  1141. "url": "https://github.com/Nyholm",
  1142. "type": "github"
  1143. },
  1144. {
  1145. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1146. "type": "tidelift"
  1147. }
  1148. ],
  1149. "time": "2023-08-27T10:19:19+00:00"
  1150. },
  1151. {
  1152. "name": "hyperf/context",
  1153. "version": "v3.0.37",
  1154. "source": {
  1155. "type": "git",
  1156. "url": "https://github.com/hyperf/context.git",
  1157. "reference": "264e06fb882426d90758eca2c5bb8293f8b60455"
  1158. },
  1159. "dist": {
  1160. "type": "zip",
  1161. "url": "https://api.github.com/repos/hyperf/context/zipball/264e06fb882426d90758eca2c5bb8293f8b60455",
  1162. "reference": "264e06fb882426d90758eca2c5bb8293f8b60455",
  1163. "shasum": "",
  1164. "mirrors": [
  1165. {
  1166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1167. "preferred": true
  1168. }
  1169. ]
  1170. },
  1171. "require": {
  1172. "hyperf/engine": "^1.2|^2.0",
  1173. "php": ">=8.0"
  1174. },
  1175. "type": "library",
  1176. "extra": {
  1177. "branch-alias": {
  1178. "dev-master": "3.0-dev"
  1179. }
  1180. },
  1181. "autoload": {
  1182. "psr-4": {
  1183. "Hyperf\\Context\\": "src/"
  1184. }
  1185. },
  1186. "notification-url": "https://packagist.org/downloads/",
  1187. "license": [
  1188. "MIT"
  1189. ],
  1190. "description": "A coroutine/application context library.",
  1191. "homepage": "https://hyperf.io",
  1192. "keywords": [
  1193. "Context",
  1194. "hyperf",
  1195. "php",
  1196. "swoole"
  1197. ],
  1198. "support": {
  1199. "docs": "https://hyperf.wiki",
  1200. "issues": "https://github.com/hyperf/hyperf/issues",
  1201. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1202. "source": "https://github.com/hyperf/hyperf"
  1203. },
  1204. "time": "2023-09-19T01:50:18+00:00"
  1205. },
  1206. {
  1207. "name": "hyperf/contract",
  1208. "version": "v3.0.37",
  1209. "source": {
  1210. "type": "git",
  1211. "url": "https://github.com/hyperf/contract.git",
  1212. "reference": "2e8290104468a8d90855067d8644a32114474452"
  1213. },
  1214. "dist": {
  1215. "type": "zip",
  1216. "url": "https://api.github.com/repos/hyperf/contract/zipball/2e8290104468a8d90855067d8644a32114474452",
  1217. "reference": "2e8290104468a8d90855067d8644a32114474452",
  1218. "shasum": "",
  1219. "mirrors": [
  1220. {
  1221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1222. "preferred": true
  1223. }
  1224. ]
  1225. },
  1226. "require": {
  1227. "php": ">=8.0"
  1228. },
  1229. "type": "library",
  1230. "extra": {
  1231. "branch-alias": {
  1232. "dev-master": "3.0-dev"
  1233. }
  1234. },
  1235. "autoload": {
  1236. "psr-4": {
  1237. "Hyperf\\Contract\\": "src/"
  1238. }
  1239. },
  1240. "notification-url": "https://packagist.org/downloads/",
  1241. "license": [
  1242. "MIT"
  1243. ],
  1244. "description": "The contracts of Hyperf.",
  1245. "homepage": "https://hyperf.io",
  1246. "keywords": [
  1247. "hyperf",
  1248. "php",
  1249. "swoole"
  1250. ],
  1251. "support": {
  1252. "docs": "https://hyperf.wiki",
  1253. "issues": "https://github.com/hyperf/hyperf/issues",
  1254. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1255. "source": "https://github.com/hyperf/hyperf"
  1256. },
  1257. "time": "2023-09-19T01:50:18+00:00"
  1258. },
  1259. {
  1260. "name": "hyperf/engine",
  1261. "version": "v2.10.5",
  1262. "source": {
  1263. "type": "git",
  1264. "url": "https://github.com/hyperf/engine.git",
  1265. "reference": "b3e1a025e388815612815a0b08fc4f2439140676"
  1266. },
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://api.github.com/repos/hyperf/engine/zipball/b3e1a025e388815612815a0b08fc4f2439140676",
  1270. "reference": "b3e1a025e388815612815a0b08fc4f2439140676",
  1271. "shasum": "",
  1272. "mirrors": [
  1273. {
  1274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1275. "preferred": true
  1276. }
  1277. ]
  1278. },
  1279. "require": {
  1280. "hyperf/engine-contract": "~1.9.0",
  1281. "php": ">=8.0"
  1282. },
  1283. "conflict": {
  1284. "ext-swoole": "<5.0"
  1285. },
  1286. "require-dev": {
  1287. "friendsofphp/php-cs-fixer": "^3.0",
  1288. "hyperf/guzzle": "^3.0",
  1289. "hyperf/http-message": "^3.0",
  1290. "mockery/mockery": "^1.5",
  1291. "phpstan/phpstan": "^1.0",
  1292. "phpunit/phpunit": "^9.4",
  1293. "swoole/ide-helper": "5.*"
  1294. },
  1295. "suggest": {
  1296. "ext-sockets": "*",
  1297. "ext-swoole": ">=5.0",
  1298. "hyperf/http-message": "Required to use ResponseEmitter.",
  1299. "psr/http-message": "Required to use WebSocket Frame."
  1300. },
  1301. "type": "library",
  1302. "extra": {
  1303. "branch-alias": {
  1304. "dev-master": "2.10-dev"
  1305. },
  1306. "hyperf": {
  1307. "config": "Hyperf\\Engine\\ConfigProvider"
  1308. }
  1309. },
  1310. "autoload": {
  1311. "files": [
  1312. "src/Functions.php"
  1313. ],
  1314. "psr-4": {
  1315. "Hyperf\\Engine\\": "src/"
  1316. }
  1317. },
  1318. "notification-url": "https://packagist.org/downloads/",
  1319. "license": [
  1320. "MIT"
  1321. ],
  1322. "description": "Coroutine engine provided by swoole.",
  1323. "keywords": [
  1324. "engine",
  1325. "hyperf",
  1326. "php",
  1327. "swoole"
  1328. ],
  1329. "support": {
  1330. "issues": "https://github.com/hyperf/engine/issues",
  1331. "source": "https://github.com/hyperf/engine/tree/v2.10.5"
  1332. },
  1333. "funding": [
  1334. {
  1335. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1336. "type": "custom"
  1337. },
  1338. {
  1339. "url": "https://opencollective.com/hyperf",
  1340. "type": "open_collective"
  1341. }
  1342. ],
  1343. "time": "2024-03-12T06:06:19+00:00"
  1344. },
  1345. {
  1346. "name": "hyperf/engine-contract",
  1347. "version": "v1.9.1",
  1348. "source": {
  1349. "type": "git",
  1350. "url": "https://github.com/hyperf/engine-contract.git",
  1351. "reference": "fec2e45f35404b2e5b4c3eaf1b0dce67d60771eb"
  1352. },
  1353. "dist": {
  1354. "type": "zip",
  1355. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/fec2e45f35404b2e5b4c3eaf1b0dce67d60771eb",
  1356. "reference": "fec2e45f35404b2e5b4c3eaf1b0dce67d60771eb",
  1357. "shasum": "",
  1358. "mirrors": [
  1359. {
  1360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1361. "preferred": true
  1362. }
  1363. ]
  1364. },
  1365. "require": {
  1366. "php": ">=8.0"
  1367. },
  1368. "require-dev": {
  1369. "friendsofphp/php-cs-fixer": "^3.0",
  1370. "mockery/mockery": "^1.0",
  1371. "phpstan/phpstan": "^1.0",
  1372. "phpunit/phpunit": ">=7.0",
  1373. "psr/http-message": "^1.0",
  1374. "swoole/ide-helper": "^4.5"
  1375. },
  1376. "suggest": {
  1377. "psr/http-message": "Required to use WebSocket Frame."
  1378. },
  1379. "type": "library",
  1380. "extra": {
  1381. "branch-alias": {
  1382. "dev-master": "1.9-dev"
  1383. }
  1384. },
  1385. "autoload": {
  1386. "psr-4": {
  1387. "Hyperf\\Engine\\Contract\\": "src/"
  1388. }
  1389. },
  1390. "notification-url": "https://packagist.org/downloads/",
  1391. "license": [
  1392. "MIT"
  1393. ],
  1394. "description": "Contract for Coroutine Engine",
  1395. "keywords": [
  1396. "contract",
  1397. "coroutine",
  1398. "engine",
  1399. "hyperf",
  1400. "php"
  1401. ],
  1402. "support": {
  1403. "issues": "https://github.com/hyperf/engine-contract/issues",
  1404. "source": "https://github.com/hyperf/engine-contract/tree/v1.9.1"
  1405. },
  1406. "funding": [
  1407. {
  1408. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1409. "type": "custom"
  1410. },
  1411. {
  1412. "url": "https://opencollective.com/hyperf",
  1413. "type": "open_collective"
  1414. }
  1415. ],
  1416. "time": "2023-12-15T07:37:14+00:00"
  1417. },
  1418. {
  1419. "name": "hyperf/pimple",
  1420. "version": "v2.2.2",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://github.com/hyperf-cloud/pimple-integration.git",
  1424. "reference": "7bd07745c256b83679471c06ec2a11e901d37277"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://api.github.com/repos/hyperf-cloud/pimple-integration/zipball/7bd07745c256b83679471c06ec2a11e901d37277",
  1429. "reference": "7bd07745c256b83679471c06ec2a11e901d37277",
  1430. "shasum": "",
  1431. "mirrors": [
  1432. {
  1433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1434. "preferred": true
  1435. }
  1436. ]
  1437. },
  1438. "require": {
  1439. "hyperf/context": "^3.0",
  1440. "hyperf/contract": "^3.0",
  1441. "php": ">=8.0",
  1442. "pimple/pimple": "^3.3"
  1443. },
  1444. "require-dev": {
  1445. "friendsofphp/php-cs-fixer": "^3.0",
  1446. "hyperf/support": "^3.0",
  1447. "mockery/mockery": "^1.3",
  1448. "phpstan/phpstan": "^1.0",
  1449. "phpunit/phpunit": ">=7.0"
  1450. },
  1451. "type": "library",
  1452. "extra": {
  1453. "branch-alias": {
  1454. "dev-master": "2.0-dev"
  1455. },
  1456. "hyperf": {
  1457. "config": "Hyperf\\Pimple\\ConfigProvider"
  1458. }
  1459. },
  1460. "autoload": {
  1461. "psr-4": {
  1462. "Hyperf\\Pimple\\": "src/"
  1463. }
  1464. },
  1465. "notification-url": "https://packagist.org/downloads/",
  1466. "license": [
  1467. "MIT"
  1468. ],
  1469. "description": "Pimple Container",
  1470. "keywords": [
  1471. "container",
  1472. "hyperf",
  1473. "php",
  1474. "psr11"
  1475. ],
  1476. "support": {
  1477. "issues": "https://github.com/hyperf-cloud/pimple-integration/issues",
  1478. "source": "https://github.com/hyperf-cloud/pimple-integration/tree/v2.2.2"
  1479. },
  1480. "time": "2023-06-10T04:41:29+00:00"
  1481. },
  1482. {
  1483. "name": "intervention/image",
  1484. "version": "2.7.2",
  1485. "source": {
  1486. "type": "git",
  1487. "url": "https://github.com/Intervention/image.git",
  1488. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1489. },
  1490. "dist": {
  1491. "type": "zip",
  1492. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  1493. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  1494. "shasum": "",
  1495. "mirrors": [
  1496. {
  1497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1498. "preferred": true
  1499. }
  1500. ]
  1501. },
  1502. "require": {
  1503. "ext-fileinfo": "*",
  1504. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1505. "php": ">=5.4.0"
  1506. },
  1507. "require-dev": {
  1508. "mockery/mockery": "~0.9.2",
  1509. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1510. },
  1511. "suggest": {
  1512. "ext-gd": "to use GD library based image processing.",
  1513. "ext-imagick": "to use Imagick based image processing.",
  1514. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1515. },
  1516. "type": "library",
  1517. "extra": {
  1518. "branch-alias": {
  1519. "dev-master": "2.4-dev"
  1520. },
  1521. "laravel": {
  1522. "providers": [
  1523. "Intervention\\Image\\ImageServiceProvider"
  1524. ],
  1525. "aliases": {
  1526. "Image": "Intervention\\Image\\Facades\\Image"
  1527. }
  1528. }
  1529. },
  1530. "autoload": {
  1531. "psr-4": {
  1532. "Intervention\\Image\\": "src/Intervention/Image"
  1533. }
  1534. },
  1535. "notification-url": "https://packagist.org/downloads/",
  1536. "license": [
  1537. "MIT"
  1538. ],
  1539. "authors": [
  1540. {
  1541. "name": "Oliver Vogel",
  1542. "email": "oliver@intervention.io",
  1543. "homepage": "https://intervention.io/"
  1544. }
  1545. ],
  1546. "description": "Image handling and manipulation library with support for Laravel integration",
  1547. "homepage": "http://image.intervention.io/",
  1548. "keywords": [
  1549. "gd",
  1550. "image",
  1551. "imagick",
  1552. "laravel",
  1553. "thumbnail",
  1554. "watermark"
  1555. ],
  1556. "support": {
  1557. "issues": "https://github.com/Intervention/image/issues",
  1558. "source": "https://github.com/Intervention/image/tree/2.7.2"
  1559. },
  1560. "funding": [
  1561. {
  1562. "url": "https://paypal.me/interventionio",
  1563. "type": "custom"
  1564. },
  1565. {
  1566. "url": "https://github.com/Intervention",
  1567. "type": "github"
  1568. }
  1569. ],
  1570. "time": "2022-05-21T17:30:32+00:00"
  1571. },
  1572. {
  1573. "name": "kkokk/poster",
  1574. "version": "v2.3.2",
  1575. "source": {
  1576. "type": "git",
  1577. "url": "https://github.com/kkokk/poster.git",
  1578. "reference": "6fa26bb225d0d7bcd654c93d342abf5284803203"
  1579. },
  1580. "dist": {
  1581. "type": "zip",
  1582. "url": "https://api.github.com/repos/kkokk/poster/zipball/6fa26bb225d0d7bcd654c93d342abf5284803203",
  1583. "reference": "6fa26bb225d0d7bcd654c93d342abf5284803203",
  1584. "shasum": "",
  1585. "mirrors": [
  1586. {
  1587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1588. "preferred": true
  1589. }
  1590. ]
  1591. },
  1592. "require": {
  1593. "ext-gd": "*",
  1594. "ext-iconv": "*",
  1595. "ext-json": "*",
  1596. "ext-mbstring": "*",
  1597. "php": ">=5.6.0"
  1598. },
  1599. "type": "project",
  1600. "autoload": {
  1601. "psr-4": {
  1602. "Kkokk\\Poster\\": "src/"
  1603. }
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "lang",
  1612. "email": "732853989@qq.com"
  1613. }
  1614. ],
  1615. "description": "PHP生成海报",
  1616. "support": {
  1617. "issues": "https://github.com/kkokk/poster/issues",
  1618. "source": "https://github.com/kkokk/poster/tree/v2.3.2"
  1619. },
  1620. "time": "2024-04-02T09:33:45+00:00"
  1621. },
  1622. {
  1623. "name": "kosinix/grafika",
  1624. "version": "dev-master",
  1625. "source": {
  1626. "type": "git",
  1627. "url": "https://github.com/kosinix/grafika.git",
  1628. "reference": "211f61fc334b8b36616b23e8af7c5727971d96ee"
  1629. },
  1630. "dist": {
  1631. "type": "zip",
  1632. "url": "https://api.github.com/repos/kosinix/grafika/zipball/211f61fc334b8b36616b23e8af7c5727971d96ee",
  1633. "reference": "211f61fc334b8b36616b23e8af7c5727971d96ee",
  1634. "shasum": "",
  1635. "mirrors": [
  1636. {
  1637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1638. "preferred": true
  1639. }
  1640. ]
  1641. },
  1642. "require": {
  1643. "php": ">=5.3"
  1644. },
  1645. "default-branch": true,
  1646. "type": "library",
  1647. "autoload": {
  1648. "psr-4": {
  1649. "Grafika\\": "src/Grafika"
  1650. }
  1651. },
  1652. "notification-url": "https://packagist.org/downloads/",
  1653. "license": [
  1654. "MIT",
  1655. "GPL-2.0+"
  1656. ],
  1657. "authors": [
  1658. {
  1659. "name": "Nico Amarilla",
  1660. "homepage": "https://www.kosinix.com"
  1661. }
  1662. ],
  1663. "description": "An image manipulation library for PHP.",
  1664. "homepage": "http://kosinix.github.io/grafika",
  1665. "keywords": [
  1666. "grafika"
  1667. ],
  1668. "support": {
  1669. "issues": "https://github.com/kosinix/grafika/issues",
  1670. "source": "https://github.com/kosinix/grafika/tree/2.0.8"
  1671. },
  1672. "time": "2017-06-20T03:13:49+00:00"
  1673. },
  1674. {
  1675. "name": "laravel/serializable-closure",
  1676. "version": "v1.3.3",
  1677. "source": {
  1678. "type": "git",
  1679. "url": "https://github.com/laravel/serializable-closure.git",
  1680. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  1681. },
  1682. "dist": {
  1683. "type": "zip",
  1684. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  1685. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  1686. "shasum": "",
  1687. "mirrors": [
  1688. {
  1689. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1690. "preferred": true
  1691. }
  1692. ]
  1693. },
  1694. "require": {
  1695. "php": "^7.3|^8.0"
  1696. },
  1697. "require-dev": {
  1698. "nesbot/carbon": "^2.61",
  1699. "pestphp/pest": "^1.21.3",
  1700. "phpstan/phpstan": "^1.8.2",
  1701. "symfony/var-dumper": "^5.4.11"
  1702. },
  1703. "type": "library",
  1704. "extra": {
  1705. "branch-alias": {
  1706. "dev-master": "1.x-dev"
  1707. }
  1708. },
  1709. "autoload": {
  1710. "psr-4": {
  1711. "Laravel\\SerializableClosure\\": "src/"
  1712. }
  1713. },
  1714. "notification-url": "https://packagist.org/downloads/",
  1715. "license": [
  1716. "MIT"
  1717. ],
  1718. "authors": [
  1719. {
  1720. "name": "Taylor Otwell",
  1721. "email": "taylor@laravel.com"
  1722. },
  1723. {
  1724. "name": "Nuno Maduro",
  1725. "email": "nuno@laravel.com"
  1726. }
  1727. ],
  1728. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1729. "keywords": [
  1730. "closure",
  1731. "laravel",
  1732. "serializable"
  1733. ],
  1734. "support": {
  1735. "issues": "https://github.com/laravel/serializable-closure/issues",
  1736. "source": "https://github.com/laravel/serializable-closure"
  1737. },
  1738. "time": "2023-11-08T14:08:06+00:00"
  1739. },
  1740. {
  1741. "name": "league/flysystem",
  1742. "version": "2.5.0",
  1743. "source": {
  1744. "type": "git",
  1745. "url": "https://github.com/thephpleague/flysystem.git",
  1746. "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb"
  1747. },
  1748. "dist": {
  1749. "type": "zip",
  1750. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8aaffb653c5777781b0f7f69a5d937baf7ab6cdb",
  1751. "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb",
  1752. "shasum": "",
  1753. "mirrors": [
  1754. {
  1755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1756. "preferred": true
  1757. }
  1758. ]
  1759. },
  1760. "require": {
  1761. "ext-json": "*",
  1762. "league/mime-type-detection": "^1.0.0",
  1763. "php": "^7.2 || ^8.0"
  1764. },
  1765. "conflict": {
  1766. "guzzlehttp/ringphp": "<1.1.1"
  1767. },
  1768. "require-dev": {
  1769. "async-aws/s3": "^1.5",
  1770. "async-aws/simple-s3": "^1.0",
  1771. "aws/aws-sdk-php": "^3.132.4",
  1772. "composer/semver": "^3.0",
  1773. "ext-fileinfo": "*",
  1774. "ext-ftp": "*",
  1775. "friendsofphp/php-cs-fixer": "^3.2",
  1776. "google/cloud-storage": "^1.23",
  1777. "phpseclib/phpseclib": "^2.0",
  1778. "phpstan/phpstan": "^0.12.26",
  1779. "phpunit/phpunit": "^8.5 || ^9.4",
  1780. "sabre/dav": "^4.1"
  1781. },
  1782. "type": "library",
  1783. "autoload": {
  1784. "psr-4": {
  1785. "League\\Flysystem\\": "src"
  1786. }
  1787. },
  1788. "notification-url": "https://packagist.org/downloads/",
  1789. "license": [
  1790. "MIT"
  1791. ],
  1792. "authors": [
  1793. {
  1794. "name": "Frank de Jonge",
  1795. "email": "info@frankdejonge.nl"
  1796. }
  1797. ],
  1798. "description": "File storage abstraction for PHP",
  1799. "keywords": [
  1800. "WebDAV",
  1801. "aws",
  1802. "cloud",
  1803. "file",
  1804. "files",
  1805. "filesystem",
  1806. "filesystems",
  1807. "ftp",
  1808. "s3",
  1809. "sftp",
  1810. "storage"
  1811. ],
  1812. "support": {
  1813. "issues": "https://github.com/thephpleague/flysystem/issues",
  1814. "source": "https://github.com/thephpleague/flysystem/tree/2.5.0"
  1815. },
  1816. "funding": [
  1817. {
  1818. "url": "https://ecologi.com/frankdejonge",
  1819. "type": "custom"
  1820. },
  1821. {
  1822. "url": "https://github.com/frankdejonge",
  1823. "type": "github"
  1824. },
  1825. {
  1826. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1827. "type": "tidelift"
  1828. }
  1829. ],
  1830. "time": "2022-09-17T21:02:32+00:00"
  1831. },
  1832. {
  1833. "name": "league/mime-type-detection",
  1834. "version": "1.15.0",
  1835. "source": {
  1836. "type": "git",
  1837. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1838. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  1839. },
  1840. "dist": {
  1841. "type": "zip",
  1842. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  1843. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  1844. "shasum": "",
  1845. "mirrors": [
  1846. {
  1847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1848. "preferred": true
  1849. }
  1850. ]
  1851. },
  1852. "require": {
  1853. "ext-fileinfo": "*",
  1854. "php": "^7.4 || ^8.0"
  1855. },
  1856. "require-dev": {
  1857. "friendsofphp/php-cs-fixer": "^3.2",
  1858. "phpstan/phpstan": "^0.12.68",
  1859. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  1860. },
  1861. "type": "library",
  1862. "autoload": {
  1863. "psr-4": {
  1864. "League\\MimeTypeDetection\\": "src"
  1865. }
  1866. },
  1867. "notification-url": "https://packagist.org/downloads/",
  1868. "license": [
  1869. "MIT"
  1870. ],
  1871. "authors": [
  1872. {
  1873. "name": "Frank de Jonge",
  1874. "email": "info@frankdejonge.nl"
  1875. }
  1876. ],
  1877. "description": "Mime-type detection for Flysystem",
  1878. "support": {
  1879. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1880. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  1881. },
  1882. "funding": [
  1883. {
  1884. "url": "https://github.com/frankdejonge",
  1885. "type": "github"
  1886. },
  1887. {
  1888. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1889. "type": "tidelift"
  1890. }
  1891. ],
  1892. "time": "2024-01-28T23:22:08+00:00"
  1893. },
  1894. {
  1895. "name": "maennchen/zipstream-php",
  1896. "version": "2.4.0",
  1897. "source": {
  1898. "type": "git",
  1899. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1900. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  1901. },
  1902. "dist": {
  1903. "type": "zip",
  1904. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  1905. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  1906. "shasum": "",
  1907. "mirrors": [
  1908. {
  1909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1910. "preferred": true
  1911. }
  1912. ]
  1913. },
  1914. "require": {
  1915. "ext-mbstring": "*",
  1916. "myclabs/php-enum": "^1.5",
  1917. "php": "^8.0",
  1918. "psr/http-message": "^1.0"
  1919. },
  1920. "require-dev": {
  1921. "ext-zip": "*",
  1922. "friendsofphp/php-cs-fixer": "^3.9",
  1923. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  1924. "mikey179/vfsstream": "^1.6",
  1925. "php-coveralls/php-coveralls": "^2.4",
  1926. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  1927. "vimeo/psalm": "^5.0"
  1928. },
  1929. "type": "library",
  1930. "autoload": {
  1931. "psr-4": {
  1932. "ZipStream\\": "src/"
  1933. }
  1934. },
  1935. "notification-url": "https://packagist.org/downloads/",
  1936. "license": [
  1937. "MIT"
  1938. ],
  1939. "authors": [
  1940. {
  1941. "name": "Paul Duncan",
  1942. "email": "pabs@pablotron.org"
  1943. },
  1944. {
  1945. "name": "Jonatan Männchen",
  1946. "email": "jonatan@maennchen.ch"
  1947. },
  1948. {
  1949. "name": "Jesse Donat",
  1950. "email": "donatj@gmail.com"
  1951. },
  1952. {
  1953. "name": "András Kolesár",
  1954. "email": "kolesar@kolesar.hu"
  1955. }
  1956. ],
  1957. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1958. "keywords": [
  1959. "stream",
  1960. "zip"
  1961. ],
  1962. "support": {
  1963. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  1964. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  1965. },
  1966. "funding": [
  1967. {
  1968. "url": "https://github.com/maennchen",
  1969. "type": "github"
  1970. },
  1971. {
  1972. "url": "https://opencollective.com/zipstream",
  1973. "type": "open_collective"
  1974. }
  1975. ],
  1976. "time": "2022-12-08T12:29:14+00:00"
  1977. },
  1978. {
  1979. "name": "markbaker/complex",
  1980. "version": "3.0.2",
  1981. "source": {
  1982. "type": "git",
  1983. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1984. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  1985. },
  1986. "dist": {
  1987. "type": "zip",
  1988. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1989. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1990. "shasum": "",
  1991. "mirrors": [
  1992. {
  1993. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1994. "preferred": true
  1995. }
  1996. ]
  1997. },
  1998. "require": {
  1999. "php": "^7.2 || ^8.0"
  2000. },
  2001. "require-dev": {
  2002. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2003. "phpcompatibility/php-compatibility": "^9.3",
  2004. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2005. "squizlabs/php_codesniffer": "^3.7"
  2006. },
  2007. "type": "library",
  2008. "autoload": {
  2009. "psr-4": {
  2010. "Complex\\": "classes/src/"
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "authors": [
  2018. {
  2019. "name": "Mark Baker",
  2020. "email": "mark@lange.demon.co.uk"
  2021. }
  2022. ],
  2023. "description": "PHP Class for working with complex numbers",
  2024. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2025. "keywords": [
  2026. "complex",
  2027. "mathematics"
  2028. ],
  2029. "support": {
  2030. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2031. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2032. },
  2033. "time": "2022-12-06T16:21:08+00:00"
  2034. },
  2035. {
  2036. "name": "markbaker/matrix",
  2037. "version": "3.0.1",
  2038. "source": {
  2039. "type": "git",
  2040. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2041. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2042. },
  2043. "dist": {
  2044. "type": "zip",
  2045. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2046. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2047. "shasum": "",
  2048. "mirrors": [
  2049. {
  2050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2051. "preferred": true
  2052. }
  2053. ]
  2054. },
  2055. "require": {
  2056. "php": "^7.1 || ^8.0"
  2057. },
  2058. "require-dev": {
  2059. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2060. "phpcompatibility/php-compatibility": "^9.3",
  2061. "phpdocumentor/phpdocumentor": "2.*",
  2062. "phploc/phploc": "^4.0",
  2063. "phpmd/phpmd": "2.*",
  2064. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2065. "sebastian/phpcpd": "^4.0",
  2066. "squizlabs/php_codesniffer": "^3.7"
  2067. },
  2068. "type": "library",
  2069. "autoload": {
  2070. "psr-4": {
  2071. "Matrix\\": "classes/src/"
  2072. }
  2073. },
  2074. "notification-url": "https://packagist.org/downloads/",
  2075. "license": [
  2076. "MIT"
  2077. ],
  2078. "authors": [
  2079. {
  2080. "name": "Mark Baker",
  2081. "email": "mark@demon-angel.eu"
  2082. }
  2083. ],
  2084. "description": "PHP Class for working with matrices",
  2085. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2086. "keywords": [
  2087. "mathematics",
  2088. "matrix",
  2089. "vector"
  2090. ],
  2091. "support": {
  2092. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2093. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2094. },
  2095. "time": "2022-12-02T22:17:43+00:00"
  2096. },
  2097. {
  2098. "name": "mjaschen/phpgeo",
  2099. "version": "4.2.0",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/mjaschen/phpgeo.git",
  2103. "reference": "b2e593cf1e9aceea36510158ddb80c7395a80d5a"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/mjaschen/phpgeo/zipball/b2e593cf1e9aceea36510158ddb80c7395a80d5a",
  2108. "reference": "b2e593cf1e9aceea36510158ddb80c7395a80d5a",
  2109. "shasum": "",
  2110. "mirrors": [
  2111. {
  2112. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2113. "preferred": true
  2114. }
  2115. ]
  2116. },
  2117. "require": {
  2118. "php": "^7.3 || ^8.0"
  2119. },
  2120. "require-dev": {
  2121. "phpunit/phpunit": "^9.5",
  2122. "squizlabs/php_codesniffer": "^3.6",
  2123. "vimeo/psalm": "^4.13"
  2124. },
  2125. "type": "library",
  2126. "autoload": {
  2127. "psr-4": {
  2128. "Location\\": "src/"
  2129. }
  2130. },
  2131. "notification-url": "https://packagist.org/downloads/",
  2132. "license": [
  2133. "MIT"
  2134. ],
  2135. "authors": [
  2136. {
  2137. "name": "Marcus Jaschen",
  2138. "email": "mjaschen@gmail.com",
  2139. "homepage": "https://www.marcusjaschen.de/"
  2140. }
  2141. ],
  2142. "description": "Simple Yet Powerful Geo Library",
  2143. "homepage": "https://phpgeo.marcusjaschen.de/",
  2144. "keywords": [
  2145. "Polygon",
  2146. "area",
  2147. "bearing",
  2148. "bounds",
  2149. "calculation",
  2150. "coordinate",
  2151. "distance",
  2152. "earth",
  2153. "ellipsoid",
  2154. "geo",
  2155. "geofence",
  2156. "gis",
  2157. "gps",
  2158. "haversine",
  2159. "length",
  2160. "perpendicular",
  2161. "point",
  2162. "polyline",
  2163. "projection",
  2164. "simplify",
  2165. "track",
  2166. "vincenty"
  2167. ],
  2168. "support": {
  2169. "docs": "https://phpgeo.marcusjaschen.de/Installation.html",
  2170. "email": "mjaschen@gmail.com",
  2171. "issues": "https://github.com/mjaschen/phpgeo/issues",
  2172. "source": "https://github.com/mjaschen/phpgeo/tree/4.2.0"
  2173. },
  2174. "time": "2022-07-25T08:36:36+00:00"
  2175. },
  2176. {
  2177. "name": "monolog/monolog",
  2178. "version": "2.9.2",
  2179. "source": {
  2180. "type": "git",
  2181. "url": "https://github.com/Seldaek/monolog.git",
  2182. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  2183. },
  2184. "dist": {
  2185. "type": "zip",
  2186. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  2187. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  2188. "shasum": "",
  2189. "mirrors": [
  2190. {
  2191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2192. "preferred": true
  2193. }
  2194. ]
  2195. },
  2196. "require": {
  2197. "php": ">=7.2",
  2198. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2199. },
  2200. "provide": {
  2201. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2202. },
  2203. "require-dev": {
  2204. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2205. "doctrine/couchdb": "~1.0@dev",
  2206. "elasticsearch/elasticsearch": "^7 || ^8",
  2207. "ext-json": "*",
  2208. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2209. "guzzlehttp/guzzle": "^7.4",
  2210. "guzzlehttp/psr7": "^2.2",
  2211. "mongodb/mongodb": "^1.8",
  2212. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2213. "phpspec/prophecy": "^1.15",
  2214. "phpstan/phpstan": "^0.12.91",
  2215. "phpunit/phpunit": "^8.5.14",
  2216. "predis/predis": "^1.1 || ^2.0",
  2217. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2218. "ruflin/elastica": "^7",
  2219. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2220. "symfony/mailer": "^5.4 || ^6",
  2221. "symfony/mime": "^5.4 || ^6"
  2222. },
  2223. "suggest": {
  2224. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2225. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2226. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2227. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2228. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2229. "ext-mbstring": "Allow to work properly with unicode symbols",
  2230. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2231. "ext-openssl": "Required to send log messages using SSL",
  2232. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2233. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2234. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2235. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2236. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2237. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2238. },
  2239. "type": "library",
  2240. "extra": {
  2241. "branch-alias": {
  2242. "dev-main": "2.x-dev"
  2243. }
  2244. },
  2245. "autoload": {
  2246. "psr-4": {
  2247. "Monolog\\": "src/Monolog"
  2248. }
  2249. },
  2250. "notification-url": "https://packagist.org/downloads/",
  2251. "license": [
  2252. "MIT"
  2253. ],
  2254. "authors": [
  2255. {
  2256. "name": "Jordi Boggiano",
  2257. "email": "j.boggiano@seld.be",
  2258. "homepage": "https://seld.be"
  2259. }
  2260. ],
  2261. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2262. "homepage": "https://github.com/Seldaek/monolog",
  2263. "keywords": [
  2264. "log",
  2265. "logging",
  2266. "psr-3"
  2267. ],
  2268. "support": {
  2269. "issues": "https://github.com/Seldaek/monolog/issues",
  2270. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  2271. },
  2272. "funding": [
  2273. {
  2274. "url": "https://github.com/Seldaek",
  2275. "type": "github"
  2276. },
  2277. {
  2278. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2279. "type": "tidelift"
  2280. }
  2281. ],
  2282. "time": "2023-10-27T15:25:26+00:00"
  2283. },
  2284. {
  2285. "name": "mtdowling/jmespath.php",
  2286. "version": "2.7.0",
  2287. "source": {
  2288. "type": "git",
  2289. "url": "https://github.com/jmespath/jmespath.php.git",
  2290. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  2291. },
  2292. "dist": {
  2293. "type": "zip",
  2294. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2295. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2296. "shasum": "",
  2297. "mirrors": [
  2298. {
  2299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2300. "preferred": true
  2301. }
  2302. ]
  2303. },
  2304. "require": {
  2305. "php": "^7.2.5 || ^8.0",
  2306. "symfony/polyfill-mbstring": "^1.17"
  2307. },
  2308. "require-dev": {
  2309. "composer/xdebug-handler": "^3.0.3",
  2310. "phpunit/phpunit": "^8.5.33"
  2311. },
  2312. "bin": [
  2313. "bin/jp.php"
  2314. ],
  2315. "type": "library",
  2316. "extra": {
  2317. "branch-alias": {
  2318. "dev-master": "2.7-dev"
  2319. }
  2320. },
  2321. "autoload": {
  2322. "files": [
  2323. "src/JmesPath.php"
  2324. ],
  2325. "psr-4": {
  2326. "JmesPath\\": "src/"
  2327. }
  2328. },
  2329. "notification-url": "https://packagist.org/downloads/",
  2330. "license": [
  2331. "MIT"
  2332. ],
  2333. "authors": [
  2334. {
  2335. "name": "Graham Campbell",
  2336. "email": "hello@gjcampbell.co.uk",
  2337. "homepage": "https://github.com/GrahamCampbell"
  2338. },
  2339. {
  2340. "name": "Michael Dowling",
  2341. "email": "mtdowling@gmail.com",
  2342. "homepage": "https://github.com/mtdowling"
  2343. }
  2344. ],
  2345. "description": "Declaratively specify how to extract elements from a JSON document",
  2346. "keywords": [
  2347. "json",
  2348. "jsonpath"
  2349. ],
  2350. "support": {
  2351. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2352. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  2353. },
  2354. "time": "2023-08-25T10:54:48+00:00"
  2355. },
  2356. {
  2357. "name": "myclabs/php-enum",
  2358. "version": "1.8.4",
  2359. "source": {
  2360. "type": "git",
  2361. "url": "https://github.com/myclabs/php-enum.git",
  2362. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2363. },
  2364. "dist": {
  2365. "type": "zip",
  2366. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2367. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2368. "shasum": "",
  2369. "mirrors": [
  2370. {
  2371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2372. "preferred": true
  2373. }
  2374. ]
  2375. },
  2376. "require": {
  2377. "ext-json": "*",
  2378. "php": "^7.3 || ^8.0"
  2379. },
  2380. "require-dev": {
  2381. "phpunit/phpunit": "^9.5",
  2382. "squizlabs/php_codesniffer": "1.*",
  2383. "vimeo/psalm": "^4.6.2"
  2384. },
  2385. "type": "library",
  2386. "autoload": {
  2387. "psr-4": {
  2388. "MyCLabs\\Enum\\": "src/"
  2389. },
  2390. "classmap": [
  2391. "stubs/Stringable.php"
  2392. ]
  2393. },
  2394. "notification-url": "https://packagist.org/downloads/",
  2395. "license": [
  2396. "MIT"
  2397. ],
  2398. "authors": [
  2399. {
  2400. "name": "PHP Enum contributors",
  2401. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2402. }
  2403. ],
  2404. "description": "PHP Enum implementation",
  2405. "homepage": "http://github.com/myclabs/php-enum",
  2406. "keywords": [
  2407. "enum"
  2408. ],
  2409. "support": {
  2410. "issues": "https://github.com/myclabs/php-enum/issues",
  2411. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  2412. },
  2413. "funding": [
  2414. {
  2415. "url": "https://github.com/mnapoli",
  2416. "type": "github"
  2417. },
  2418. {
  2419. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2420. "type": "tidelift"
  2421. }
  2422. ],
  2423. "time": "2022-08-04T09:53:51+00:00"
  2424. },
  2425. {
  2426. "name": "nesbot/carbon",
  2427. "version": "2.66.0",
  2428. "source": {
  2429. "type": "git",
  2430. "url": "https://github.com/briannesbitt/Carbon.git",
  2431. "reference": "496712849902241f04902033b0441b269effe001"
  2432. },
  2433. "dist": {
  2434. "type": "zip",
  2435. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  2436. "reference": "496712849902241f04902033b0441b269effe001",
  2437. "shasum": "",
  2438. "mirrors": [
  2439. {
  2440. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2441. "preferred": true
  2442. }
  2443. ]
  2444. },
  2445. "require": {
  2446. "ext-json": "*",
  2447. "php": "^7.1.8 || ^8.0",
  2448. "symfony/polyfill-mbstring": "^1.0",
  2449. "symfony/polyfill-php80": "^1.16",
  2450. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2451. },
  2452. "require-dev": {
  2453. "doctrine/dbal": "^2.0 || ^3.1.4",
  2454. "doctrine/orm": "^2.7",
  2455. "friendsofphp/php-cs-fixer": "^3.0",
  2456. "kylekatarnls/multi-tester": "^2.0",
  2457. "ondrejmirtes/better-reflection": "*",
  2458. "phpmd/phpmd": "^2.9",
  2459. "phpstan/extension-installer": "^1.0",
  2460. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2461. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2462. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2463. "squizlabs/php_codesniffer": "^3.4"
  2464. },
  2465. "bin": [
  2466. "bin/carbon"
  2467. ],
  2468. "type": "library",
  2469. "extra": {
  2470. "branch-alias": {
  2471. "dev-3.x": "3.x-dev",
  2472. "dev-master": "2.x-dev"
  2473. },
  2474. "laravel": {
  2475. "providers": [
  2476. "Carbon\\Laravel\\ServiceProvider"
  2477. ]
  2478. },
  2479. "phpstan": {
  2480. "includes": [
  2481. "extension.neon"
  2482. ]
  2483. }
  2484. },
  2485. "autoload": {
  2486. "psr-4": {
  2487. "Carbon\\": "src/Carbon/"
  2488. }
  2489. },
  2490. "notification-url": "https://packagist.org/downloads/",
  2491. "license": [
  2492. "MIT"
  2493. ],
  2494. "authors": [
  2495. {
  2496. "name": "Brian Nesbitt",
  2497. "email": "brian@nesbot.com",
  2498. "homepage": "https://markido.com"
  2499. },
  2500. {
  2501. "name": "kylekatarnls",
  2502. "homepage": "https://github.com/kylekatarnls"
  2503. }
  2504. ],
  2505. "description": "An API extension for DateTime that supports 281 different languages.",
  2506. "homepage": "https://carbon.nesbot.com",
  2507. "keywords": [
  2508. "date",
  2509. "datetime",
  2510. "time"
  2511. ],
  2512. "support": {
  2513. "docs": "https://carbon.nesbot.com/docs",
  2514. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2515. "source": "https://github.com/briannesbitt/Carbon"
  2516. },
  2517. "funding": [
  2518. {
  2519. "url": "https://github.com/sponsors/kylekatarnls",
  2520. "type": "github"
  2521. },
  2522. {
  2523. "url": "https://opencollective.com/Carbon#sponsor",
  2524. "type": "opencollective"
  2525. },
  2526. {
  2527. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2528. "type": "tidelift"
  2529. }
  2530. ],
  2531. "time": "2023-01-29T18:53:47+00:00"
  2532. },
  2533. {
  2534. "name": "nyholm/psr7",
  2535. "version": "1.8.1",
  2536. "source": {
  2537. "type": "git",
  2538. "url": "https://github.com/Nyholm/psr7.git",
  2539. "reference": "aa5fc277a4f5508013d571341ade0c3886d4d00e"
  2540. },
  2541. "dist": {
  2542. "type": "zip",
  2543. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/aa5fc277a4f5508013d571341ade0c3886d4d00e",
  2544. "reference": "aa5fc277a4f5508013d571341ade0c3886d4d00e",
  2545. "shasum": "",
  2546. "mirrors": [
  2547. {
  2548. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2549. "preferred": true
  2550. }
  2551. ]
  2552. },
  2553. "require": {
  2554. "php": ">=7.2",
  2555. "psr/http-factory": "^1.0",
  2556. "psr/http-message": "^1.1 || ^2.0"
  2557. },
  2558. "provide": {
  2559. "php-http/message-factory-implementation": "1.0",
  2560. "psr/http-factory-implementation": "1.0",
  2561. "psr/http-message-implementation": "1.0"
  2562. },
  2563. "require-dev": {
  2564. "http-interop/http-factory-tests": "^0.9",
  2565. "php-http/message-factory": "^1.0",
  2566. "php-http/psr7-integration-tests": "^1.0",
  2567. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  2568. "symfony/error-handler": "^4.4"
  2569. },
  2570. "type": "library",
  2571. "extra": {
  2572. "branch-alias": {
  2573. "dev-master": "1.8-dev"
  2574. }
  2575. },
  2576. "autoload": {
  2577. "psr-4": {
  2578. "Nyholm\\Psr7\\": "src/"
  2579. }
  2580. },
  2581. "notification-url": "https://packagist.org/downloads/",
  2582. "license": [
  2583. "MIT"
  2584. ],
  2585. "authors": [
  2586. {
  2587. "name": "Tobias Nyholm",
  2588. "email": "tobias.nyholm@gmail.com"
  2589. },
  2590. {
  2591. "name": "Martijn van der Ven",
  2592. "email": "martijn@vanderven.se"
  2593. }
  2594. ],
  2595. "description": "A fast PHP7 implementation of PSR-7",
  2596. "homepage": "https://tnyholm.se",
  2597. "keywords": [
  2598. "psr-17",
  2599. "psr-7"
  2600. ],
  2601. "support": {
  2602. "issues": "https://github.com/Nyholm/psr7/issues",
  2603. "source": "https://github.com/Nyholm/psr7/tree/1.8.1"
  2604. },
  2605. "funding": [
  2606. {
  2607. "url": "https://github.com/Zegnat",
  2608. "type": "github"
  2609. },
  2610. {
  2611. "url": "https://github.com/nyholm",
  2612. "type": "github"
  2613. }
  2614. ],
  2615. "time": "2023-11-13T09:31:12+00:00"
  2616. },
  2617. {
  2618. "name": "nyholm/psr7-server",
  2619. "version": "1.1.0",
  2620. "source": {
  2621. "type": "git",
  2622. "url": "https://github.com/Nyholm/psr7-server.git",
  2623. "reference": "4335801d851f554ca43fa6e7d2602141538854dc"
  2624. },
  2625. "dist": {
  2626. "type": "zip",
  2627. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/4335801d851f554ca43fa6e7d2602141538854dc",
  2628. "reference": "4335801d851f554ca43fa6e7d2602141538854dc",
  2629. "shasum": "",
  2630. "mirrors": [
  2631. {
  2632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2633. "preferred": true
  2634. }
  2635. ]
  2636. },
  2637. "require": {
  2638. "php": "^7.1 || ^8.0",
  2639. "psr/http-factory": "^1.0",
  2640. "psr/http-message": "^1.0 || ^2.0"
  2641. },
  2642. "require-dev": {
  2643. "nyholm/nsa": "^1.1",
  2644. "nyholm/psr7": "^1.3",
  2645. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  2646. },
  2647. "type": "library",
  2648. "autoload": {
  2649. "psr-4": {
  2650. "Nyholm\\Psr7Server\\": "src/"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "Tobias Nyholm",
  2660. "email": "tobias.nyholm@gmail.com"
  2661. },
  2662. {
  2663. "name": "Martijn van der Ven",
  2664. "email": "martijn@vanderven.se"
  2665. }
  2666. ],
  2667. "description": "Helper classes to handle PSR-7 server requests",
  2668. "homepage": "http://tnyholm.se",
  2669. "keywords": [
  2670. "psr-17",
  2671. "psr-7"
  2672. ],
  2673. "support": {
  2674. "issues": "https://github.com/Nyholm/psr7-server/issues",
  2675. "source": "https://github.com/Nyholm/psr7-server/tree/1.1.0"
  2676. },
  2677. "funding": [
  2678. {
  2679. "url": "https://github.com/Zegnat",
  2680. "type": "github"
  2681. },
  2682. {
  2683. "url": "https://github.com/nyholm",
  2684. "type": "github"
  2685. }
  2686. ],
  2687. "time": "2023-11-08T09:30:43+00:00"
  2688. },
  2689. {
  2690. "name": "overtrue/socialite",
  2691. "version": "4.10.1",
  2692. "source": {
  2693. "type": "git",
  2694. "url": "https://github.com/overtrue/socialite.git",
  2695. "reference": "457b48f31414dc00d3fb445d6ab9355595067afe"
  2696. },
  2697. "dist": {
  2698. "type": "zip",
  2699. "url": "https://api.github.com/repos/overtrue/socialite/zipball/457b48f31414dc00d3fb445d6ab9355595067afe",
  2700. "reference": "457b48f31414dc00d3fb445d6ab9355595067afe",
  2701. "shasum": "",
  2702. "mirrors": [
  2703. {
  2704. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2705. "preferred": true
  2706. }
  2707. ]
  2708. },
  2709. "require": {
  2710. "ext-json": "*",
  2711. "ext-openssl": "*",
  2712. "guzzlehttp/guzzle": "^7.0",
  2713. "php": ">=8.0.2",
  2714. "symfony/psr-http-message-bridge": "^2.1|^6.0"
  2715. },
  2716. "require-dev": {
  2717. "jetbrains/phpstorm-attributes": "^1.0",
  2718. "laravel/pint": "^1.2",
  2719. "mockery/mockery": "^1.3",
  2720. "phpstan/phpstan": "^1.7",
  2721. "phpunit/phpunit": "^9.0"
  2722. },
  2723. "type": "library",
  2724. "autoload": {
  2725. "files": [
  2726. "src/Contracts/FactoryInterface.php",
  2727. "src/Contracts/UserInterface.php",
  2728. "src/Contracts/ProviderInterface.php"
  2729. ],
  2730. "psr-4": {
  2731. "Overtrue\\Socialite\\": "src/"
  2732. }
  2733. },
  2734. "notification-url": "https://packagist.org/downloads/",
  2735. "license": [
  2736. "MIT"
  2737. ],
  2738. "authors": [
  2739. {
  2740. "name": "overtrue",
  2741. "email": "anzhengchao@gmail.com"
  2742. }
  2743. ],
  2744. "description": "A collection of OAuth 2 packages.",
  2745. "keywords": [
  2746. "Feishu",
  2747. "login",
  2748. "oauth",
  2749. "qcloud",
  2750. "qq",
  2751. "social",
  2752. "wechat",
  2753. "weibo"
  2754. ],
  2755. "support": {
  2756. "issues": "https://github.com/overtrue/socialite/issues",
  2757. "source": "https://github.com/overtrue/socialite/tree/4.10.1"
  2758. },
  2759. "funding": [
  2760. {
  2761. "url": "https://github.com/overtrue",
  2762. "type": "github"
  2763. }
  2764. ],
  2765. "time": "2024-03-08T06:41:54+00:00"
  2766. },
  2767. {
  2768. "name": "php-di/invoker",
  2769. "version": "2.3.4",
  2770. "source": {
  2771. "type": "git",
  2772. "url": "https://github.com/PHP-DI/Invoker.git",
  2773. "reference": "33234b32dafa8eb69202f950a1fc92055ed76a86"
  2774. },
  2775. "dist": {
  2776. "type": "zip",
  2777. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/33234b32dafa8eb69202f950a1fc92055ed76a86",
  2778. "reference": "33234b32dafa8eb69202f950a1fc92055ed76a86",
  2779. "shasum": "",
  2780. "mirrors": [
  2781. {
  2782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2783. "preferred": true
  2784. }
  2785. ]
  2786. },
  2787. "require": {
  2788. "php": ">=7.3",
  2789. "psr/container": "^1.0|^2.0"
  2790. },
  2791. "require-dev": {
  2792. "athletic/athletic": "~0.1.8",
  2793. "mnapoli/hard-mode": "~0.3.0",
  2794. "phpunit/phpunit": "^9.0"
  2795. },
  2796. "type": "library",
  2797. "autoload": {
  2798. "psr-4": {
  2799. "Invoker\\": "src/"
  2800. }
  2801. },
  2802. "notification-url": "https://packagist.org/downloads/",
  2803. "license": [
  2804. "MIT"
  2805. ],
  2806. "description": "Generic and extensible callable invoker",
  2807. "homepage": "https://github.com/PHP-DI/Invoker",
  2808. "keywords": [
  2809. "callable",
  2810. "dependency",
  2811. "dependency-injection",
  2812. "injection",
  2813. "invoke",
  2814. "invoker"
  2815. ],
  2816. "support": {
  2817. "issues": "https://github.com/PHP-DI/Invoker/issues",
  2818. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.4"
  2819. },
  2820. "funding": [
  2821. {
  2822. "url": "https://github.com/mnapoli",
  2823. "type": "github"
  2824. }
  2825. ],
  2826. "time": "2023-09-08T09:24:21+00:00"
  2827. },
  2828. {
  2829. "name": "php-di/php-di",
  2830. "version": "7.0.1",
  2831. "source": {
  2832. "type": "git",
  2833. "url": "https://github.com/PHP-DI/PHP-DI.git",
  2834. "reference": "1c7f1cc9cf6f51ff7f5f44bb1fa59243fcb7474a"
  2835. },
  2836. "dist": {
  2837. "type": "zip",
  2838. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/1c7f1cc9cf6f51ff7f5f44bb1fa59243fcb7474a",
  2839. "reference": "1c7f1cc9cf6f51ff7f5f44bb1fa59243fcb7474a",
  2840. "shasum": "",
  2841. "mirrors": [
  2842. {
  2843. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2844. "preferred": true
  2845. }
  2846. ]
  2847. },
  2848. "require": {
  2849. "laravel/serializable-closure": "^1.0",
  2850. "php": ">=8.0",
  2851. "php-di/invoker": "^2.0",
  2852. "psr/container": "^1.1 || ^2.0"
  2853. },
  2854. "provide": {
  2855. "psr/container-implementation": "^1.0"
  2856. },
  2857. "require-dev": {
  2858. "friendsofphp/php-cs-fixer": "^3",
  2859. "mnapoli/phpunit-easymock": "^1.3",
  2860. "ocramius/proxy-manager": "^2.11.2",
  2861. "phpunit/phpunit": "^9.5",
  2862. "vimeo/psalm": "^4.6"
  2863. },
  2864. "suggest": {
  2865. "ocramius/proxy-manager": "Install it if you want to use lazy injection (version ^2.3)"
  2866. },
  2867. "type": "library",
  2868. "autoload": {
  2869. "files": [
  2870. "src/functions.php"
  2871. ],
  2872. "psr-4": {
  2873. "DI\\": "src/"
  2874. }
  2875. },
  2876. "notification-url": "https://packagist.org/downloads/",
  2877. "license": [
  2878. "MIT"
  2879. ],
  2880. "description": "The dependency injection container for humans",
  2881. "homepage": "https://php-di.org/",
  2882. "keywords": [
  2883. "PSR-11",
  2884. "container",
  2885. "container-interop",
  2886. "dependency injection",
  2887. "di",
  2888. "ioc",
  2889. "psr11"
  2890. ],
  2891. "support": {
  2892. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  2893. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.0.1"
  2894. },
  2895. "funding": [
  2896. {
  2897. "url": "https://github.com/mnapoli",
  2898. "type": "github"
  2899. },
  2900. {
  2901. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  2902. "type": "tidelift"
  2903. }
  2904. ],
  2905. "time": "2023-01-13T22:30:45+00:00"
  2906. },
  2907. {
  2908. "name": "phpoffice/phpspreadsheet",
  2909. "version": "1.28.0",
  2910. "source": {
  2911. "type": "git",
  2912. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2913. "reference": "6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a"
  2914. },
  2915. "dist": {
  2916. "type": "zip",
  2917. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a",
  2918. "reference": "6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a",
  2919. "shasum": "",
  2920. "mirrors": [
  2921. {
  2922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2923. "preferred": true
  2924. }
  2925. ]
  2926. },
  2927. "require": {
  2928. "ext-ctype": "*",
  2929. "ext-dom": "*",
  2930. "ext-fileinfo": "*",
  2931. "ext-gd": "*",
  2932. "ext-iconv": "*",
  2933. "ext-libxml": "*",
  2934. "ext-mbstring": "*",
  2935. "ext-simplexml": "*",
  2936. "ext-xml": "*",
  2937. "ext-xmlreader": "*",
  2938. "ext-xmlwriter": "*",
  2939. "ext-zip": "*",
  2940. "ext-zlib": "*",
  2941. "ezyang/htmlpurifier": "^4.15",
  2942. "maennchen/zipstream-php": "^2.1",
  2943. "markbaker/complex": "^3.0",
  2944. "markbaker/matrix": "^3.0",
  2945. "php": "^7.4 || ^8.0",
  2946. "psr/http-client": "^1.0",
  2947. "psr/http-factory": "^1.0",
  2948. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  2949. },
  2950. "require-dev": {
  2951. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  2952. "dompdf/dompdf": "^1.0 || ^2.0",
  2953. "friendsofphp/php-cs-fixer": "^3.2",
  2954. "mitoteam/jpgraph": "^10.2.4",
  2955. "mpdf/mpdf": "^8.1.1",
  2956. "phpcompatibility/php-compatibility": "^9.3",
  2957. "phpstan/phpstan": "^1.1",
  2958. "phpstan/phpstan-phpunit": "^1.0",
  2959. "phpunit/phpunit": "^8.5 || ^9.0",
  2960. "squizlabs/php_codesniffer": "^3.7",
  2961. "tecnickcom/tcpdf": "^6.5"
  2962. },
  2963. "suggest": {
  2964. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2965. "ext-intl": "PHP Internationalization Functions",
  2966. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2967. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2968. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2969. },
  2970. "type": "library",
  2971. "autoload": {
  2972. "psr-4": {
  2973. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2974. }
  2975. },
  2976. "notification-url": "https://packagist.org/downloads/",
  2977. "license": [
  2978. "MIT"
  2979. ],
  2980. "authors": [
  2981. {
  2982. "name": "Maarten Balliauw",
  2983. "homepage": "https://blog.maartenballiauw.be"
  2984. },
  2985. {
  2986. "name": "Mark Baker",
  2987. "homepage": "https://markbakeruk.net"
  2988. },
  2989. {
  2990. "name": "Franck Lefevre",
  2991. "homepage": "https://rootslabs.net"
  2992. },
  2993. {
  2994. "name": "Erik Tilt"
  2995. },
  2996. {
  2997. "name": "Adrien Crivelli"
  2998. }
  2999. ],
  3000. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3001. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3002. "keywords": [
  3003. "OpenXML",
  3004. "excel",
  3005. "gnumeric",
  3006. "ods",
  3007. "php",
  3008. "spreadsheet",
  3009. "xls",
  3010. "xlsx"
  3011. ],
  3012. "support": {
  3013. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3014. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.28.0"
  3015. },
  3016. "time": "2023-02-25T12:24:49+00:00"
  3017. },
  3018. {
  3019. "name": "pimple/pimple",
  3020. "version": "v3.5.0",
  3021. "source": {
  3022. "type": "git",
  3023. "url": "https://github.com/silexphp/Pimple.git",
  3024. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  3025. },
  3026. "dist": {
  3027. "type": "zip",
  3028. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3029. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3030. "shasum": "",
  3031. "mirrors": [
  3032. {
  3033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3034. "preferred": true
  3035. }
  3036. ]
  3037. },
  3038. "require": {
  3039. "php": ">=7.2.5",
  3040. "psr/container": "^1.1 || ^2.0"
  3041. },
  3042. "require-dev": {
  3043. "symfony/phpunit-bridge": "^5.4@dev"
  3044. },
  3045. "type": "library",
  3046. "extra": {
  3047. "branch-alias": {
  3048. "dev-master": "3.4.x-dev"
  3049. }
  3050. },
  3051. "autoload": {
  3052. "psr-0": {
  3053. "Pimple": "src/"
  3054. }
  3055. },
  3056. "notification-url": "https://packagist.org/downloads/",
  3057. "license": [
  3058. "MIT"
  3059. ],
  3060. "authors": [
  3061. {
  3062. "name": "Fabien Potencier",
  3063. "email": "fabien@symfony.com"
  3064. }
  3065. ],
  3066. "description": "Pimple, a simple Dependency Injection Container",
  3067. "homepage": "https://pimple.symfony.com",
  3068. "keywords": [
  3069. "container",
  3070. "dependency injection"
  3071. ],
  3072. "support": {
  3073. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  3074. },
  3075. "time": "2021-10-28T11:13:42+00:00"
  3076. },
  3077. {
  3078. "name": "psr/cache",
  3079. "version": "3.0.0",
  3080. "source": {
  3081. "type": "git",
  3082. "url": "https://github.com/php-fig/cache.git",
  3083. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3084. },
  3085. "dist": {
  3086. "type": "zip",
  3087. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3088. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3089. "shasum": "",
  3090. "mirrors": [
  3091. {
  3092. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3093. "preferred": true
  3094. }
  3095. ]
  3096. },
  3097. "require": {
  3098. "php": ">=8.0.0"
  3099. },
  3100. "type": "library",
  3101. "extra": {
  3102. "branch-alias": {
  3103. "dev-master": "1.0.x-dev"
  3104. }
  3105. },
  3106. "autoload": {
  3107. "psr-4": {
  3108. "Psr\\Cache\\": "src/"
  3109. }
  3110. },
  3111. "notification-url": "https://packagist.org/downloads/",
  3112. "license": [
  3113. "MIT"
  3114. ],
  3115. "authors": [
  3116. {
  3117. "name": "PHP-FIG",
  3118. "homepage": "https://www.php-fig.org/"
  3119. }
  3120. ],
  3121. "description": "Common interface for caching libraries",
  3122. "keywords": [
  3123. "cache",
  3124. "psr",
  3125. "psr-6"
  3126. ],
  3127. "support": {
  3128. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3129. },
  3130. "time": "2021-02-03T23:26:27+00:00"
  3131. },
  3132. {
  3133. "name": "psr/container",
  3134. "version": "2.0.2",
  3135. "source": {
  3136. "type": "git",
  3137. "url": "https://github.com/php-fig/container.git",
  3138. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3139. },
  3140. "dist": {
  3141. "type": "zip",
  3142. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3143. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3144. "shasum": "",
  3145. "mirrors": [
  3146. {
  3147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3148. "preferred": true
  3149. }
  3150. ]
  3151. },
  3152. "require": {
  3153. "php": ">=7.4.0"
  3154. },
  3155. "type": "library",
  3156. "extra": {
  3157. "branch-alias": {
  3158. "dev-master": "2.0.x-dev"
  3159. }
  3160. },
  3161. "autoload": {
  3162. "psr-4": {
  3163. "Psr\\Container\\": "src/"
  3164. }
  3165. },
  3166. "notification-url": "https://packagist.org/downloads/",
  3167. "license": [
  3168. "MIT"
  3169. ],
  3170. "authors": [
  3171. {
  3172. "name": "PHP-FIG",
  3173. "homepage": "https://www.php-fig.org/"
  3174. }
  3175. ],
  3176. "description": "Common Container Interface (PHP FIG PSR-11)",
  3177. "homepage": "https://github.com/php-fig/container",
  3178. "keywords": [
  3179. "PSR-11",
  3180. "container",
  3181. "container-interface",
  3182. "container-interop",
  3183. "psr"
  3184. ],
  3185. "support": {
  3186. "issues": "https://github.com/php-fig/container/issues",
  3187. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3188. },
  3189. "time": "2021-11-05T16:47:00+00:00"
  3190. },
  3191. {
  3192. "name": "psr/event-dispatcher",
  3193. "version": "1.0.0",
  3194. "source": {
  3195. "type": "git",
  3196. "url": "https://github.com/php-fig/event-dispatcher.git",
  3197. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3198. },
  3199. "dist": {
  3200. "type": "zip",
  3201. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3202. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3203. "shasum": "",
  3204. "mirrors": [
  3205. {
  3206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3207. "preferred": true
  3208. }
  3209. ]
  3210. },
  3211. "require": {
  3212. "php": ">=7.2.0"
  3213. },
  3214. "type": "library",
  3215. "extra": {
  3216. "branch-alias": {
  3217. "dev-master": "1.0.x-dev"
  3218. }
  3219. },
  3220. "autoload": {
  3221. "psr-4": {
  3222. "Psr\\EventDispatcher\\": "src/"
  3223. }
  3224. },
  3225. "notification-url": "https://packagist.org/downloads/",
  3226. "license": [
  3227. "MIT"
  3228. ],
  3229. "authors": [
  3230. {
  3231. "name": "PHP-FIG",
  3232. "homepage": "http://www.php-fig.org/"
  3233. }
  3234. ],
  3235. "description": "Standard interfaces for event handling.",
  3236. "keywords": [
  3237. "events",
  3238. "psr",
  3239. "psr-14"
  3240. ],
  3241. "support": {
  3242. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3243. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3244. },
  3245. "time": "2019-01-08T18:20:26+00:00"
  3246. },
  3247. {
  3248. "name": "psr/http-client",
  3249. "version": "1.0.3",
  3250. "source": {
  3251. "type": "git",
  3252. "url": "https://github.com/php-fig/http-client.git",
  3253. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3254. },
  3255. "dist": {
  3256. "type": "zip",
  3257. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3258. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3259. "shasum": "",
  3260. "mirrors": [
  3261. {
  3262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3263. "preferred": true
  3264. }
  3265. ]
  3266. },
  3267. "require": {
  3268. "php": "^7.0 || ^8.0",
  3269. "psr/http-message": "^1.0 || ^2.0"
  3270. },
  3271. "type": "library",
  3272. "extra": {
  3273. "branch-alias": {
  3274. "dev-master": "1.0.x-dev"
  3275. }
  3276. },
  3277. "autoload": {
  3278. "psr-4": {
  3279. "Psr\\Http\\Client\\": "src/"
  3280. }
  3281. },
  3282. "notification-url": "https://packagist.org/downloads/",
  3283. "license": [
  3284. "MIT"
  3285. ],
  3286. "authors": [
  3287. {
  3288. "name": "PHP-FIG",
  3289. "homepage": "https://www.php-fig.org/"
  3290. }
  3291. ],
  3292. "description": "Common interface for HTTP clients",
  3293. "homepage": "https://github.com/php-fig/http-client",
  3294. "keywords": [
  3295. "http",
  3296. "http-client",
  3297. "psr",
  3298. "psr-18"
  3299. ],
  3300. "support": {
  3301. "source": "https://github.com/php-fig/http-client"
  3302. },
  3303. "time": "2023-09-23T14:17:50+00:00"
  3304. },
  3305. {
  3306. "name": "psr/http-factory",
  3307. "version": "1.0.2",
  3308. "source": {
  3309. "type": "git",
  3310. "url": "https://github.com/php-fig/http-factory.git",
  3311. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3312. },
  3313. "dist": {
  3314. "type": "zip",
  3315. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3316. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3317. "shasum": "",
  3318. "mirrors": [
  3319. {
  3320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3321. "preferred": true
  3322. }
  3323. ]
  3324. },
  3325. "require": {
  3326. "php": ">=7.0.0",
  3327. "psr/http-message": "^1.0 || ^2.0"
  3328. },
  3329. "type": "library",
  3330. "extra": {
  3331. "branch-alias": {
  3332. "dev-master": "1.0.x-dev"
  3333. }
  3334. },
  3335. "autoload": {
  3336. "psr-4": {
  3337. "Psr\\Http\\Message\\": "src/"
  3338. }
  3339. },
  3340. "notification-url": "https://packagist.org/downloads/",
  3341. "license": [
  3342. "MIT"
  3343. ],
  3344. "authors": [
  3345. {
  3346. "name": "PHP-FIG",
  3347. "homepage": "https://www.php-fig.org/"
  3348. }
  3349. ],
  3350. "description": "Common interfaces for PSR-7 HTTP message factories",
  3351. "keywords": [
  3352. "factory",
  3353. "http",
  3354. "message",
  3355. "psr",
  3356. "psr-17",
  3357. "psr-7",
  3358. "request",
  3359. "response"
  3360. ],
  3361. "support": {
  3362. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3363. },
  3364. "time": "2023-04-10T20:10:41+00:00"
  3365. },
  3366. {
  3367. "name": "psr/http-message",
  3368. "version": "1.1",
  3369. "source": {
  3370. "type": "git",
  3371. "url": "https://github.com/php-fig/http-message.git",
  3372. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3373. },
  3374. "dist": {
  3375. "type": "zip",
  3376. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3377. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3378. "shasum": "",
  3379. "mirrors": [
  3380. {
  3381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3382. "preferred": true
  3383. }
  3384. ]
  3385. },
  3386. "require": {
  3387. "php": "^7.2 || ^8.0"
  3388. },
  3389. "type": "library",
  3390. "extra": {
  3391. "branch-alias": {
  3392. "dev-master": "1.1.x-dev"
  3393. }
  3394. },
  3395. "autoload": {
  3396. "psr-4": {
  3397. "Psr\\Http\\Message\\": "src/"
  3398. }
  3399. },
  3400. "notification-url": "https://packagist.org/downloads/",
  3401. "license": [
  3402. "MIT"
  3403. ],
  3404. "authors": [
  3405. {
  3406. "name": "PHP-FIG",
  3407. "homepage": "http://www.php-fig.org/"
  3408. }
  3409. ],
  3410. "description": "Common interface for HTTP messages",
  3411. "homepage": "https://github.com/php-fig/http-message",
  3412. "keywords": [
  3413. "http",
  3414. "http-message",
  3415. "psr",
  3416. "psr-7",
  3417. "request",
  3418. "response"
  3419. ],
  3420. "support": {
  3421. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3422. },
  3423. "time": "2023-04-04T09:50:52+00:00"
  3424. },
  3425. {
  3426. "name": "psr/log",
  3427. "version": "3.0.0",
  3428. "source": {
  3429. "type": "git",
  3430. "url": "https://github.com/php-fig/log.git",
  3431. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3432. },
  3433. "dist": {
  3434. "type": "zip",
  3435. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3436. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3437. "shasum": "",
  3438. "mirrors": [
  3439. {
  3440. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3441. "preferred": true
  3442. }
  3443. ]
  3444. },
  3445. "require": {
  3446. "php": ">=8.0.0"
  3447. },
  3448. "type": "library",
  3449. "extra": {
  3450. "branch-alias": {
  3451. "dev-master": "3.x-dev"
  3452. }
  3453. },
  3454. "autoload": {
  3455. "psr-4": {
  3456. "Psr\\Log\\": "src"
  3457. }
  3458. },
  3459. "notification-url": "https://packagist.org/downloads/",
  3460. "license": [
  3461. "MIT"
  3462. ],
  3463. "authors": [
  3464. {
  3465. "name": "PHP-FIG",
  3466. "homepage": "https://www.php-fig.org/"
  3467. }
  3468. ],
  3469. "description": "Common interface for logging libraries",
  3470. "homepage": "https://github.com/php-fig/log",
  3471. "keywords": [
  3472. "log",
  3473. "psr",
  3474. "psr-3"
  3475. ],
  3476. "support": {
  3477. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3478. },
  3479. "time": "2021-07-14T16:46:02+00:00"
  3480. },
  3481. {
  3482. "name": "psr/simple-cache",
  3483. "version": "3.0.0",
  3484. "source": {
  3485. "type": "git",
  3486. "url": "https://github.com/php-fig/simple-cache.git",
  3487. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3488. },
  3489. "dist": {
  3490. "type": "zip",
  3491. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3492. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3493. "shasum": "",
  3494. "mirrors": [
  3495. {
  3496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3497. "preferred": true
  3498. }
  3499. ]
  3500. },
  3501. "require": {
  3502. "php": ">=8.0.0"
  3503. },
  3504. "type": "library",
  3505. "extra": {
  3506. "branch-alias": {
  3507. "dev-master": "3.0.x-dev"
  3508. }
  3509. },
  3510. "autoload": {
  3511. "psr-4": {
  3512. "Psr\\SimpleCache\\": "src/"
  3513. }
  3514. },
  3515. "notification-url": "https://packagist.org/downloads/",
  3516. "license": [
  3517. "MIT"
  3518. ],
  3519. "authors": [
  3520. {
  3521. "name": "PHP-FIG",
  3522. "homepage": "https://www.php-fig.org/"
  3523. }
  3524. ],
  3525. "description": "Common interfaces for simple caching",
  3526. "keywords": [
  3527. "cache",
  3528. "caching",
  3529. "psr",
  3530. "psr-16",
  3531. "simple-cache"
  3532. ],
  3533. "support": {
  3534. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3535. },
  3536. "time": "2021-10-29T13:26:27+00:00"
  3537. },
  3538. {
  3539. "name": "qcloud/cos-sdk-v5",
  3540. "version": "v2.6.2",
  3541. "source": {
  3542. "type": "git",
  3543. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  3544. "reference": "92a1ee62b85ed4e7bf6836a684df5d7e3158d0ed"
  3545. },
  3546. "dist": {
  3547. "type": "zip",
  3548. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/92a1ee62b85ed4e7bf6836a684df5d7e3158d0ed",
  3549. "reference": "92a1ee62b85ed4e7bf6836a684df5d7e3158d0ed",
  3550. "shasum": "",
  3551. "mirrors": [
  3552. {
  3553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3554. "preferred": true
  3555. }
  3556. ]
  3557. },
  3558. "require": {
  3559. "ext-curl": "*",
  3560. "ext-json": "*",
  3561. "ext-mbstring": "*",
  3562. "ext-simplexml": "*",
  3563. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  3564. "guzzlehttp/guzzle-services": "^1.1",
  3565. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  3566. "php": ">=5.6"
  3567. },
  3568. "type": "library",
  3569. "extra": {
  3570. "branch-alias": {
  3571. "dev-master": "2.4-dev"
  3572. }
  3573. },
  3574. "autoload": {
  3575. "files": [
  3576. "src/Common.php"
  3577. ],
  3578. "psr-4": {
  3579. "Qcloud\\Cos\\": "src/"
  3580. }
  3581. },
  3582. "notification-url": "https://packagist.org/downloads/",
  3583. "license": [
  3584. "MIT"
  3585. ],
  3586. "authors": [
  3587. {
  3588. "name": "yaozongyou",
  3589. "email": "yaozongyou@vip.qq.com"
  3590. },
  3591. {
  3592. "name": "lewzylu",
  3593. "email": "327874225@qq.com"
  3594. },
  3595. {
  3596. "name": "tuunalai",
  3597. "email": "550566181@qq.com"
  3598. }
  3599. ],
  3600. "description": "PHP SDK for QCloud COS",
  3601. "keywords": [
  3602. "cos",
  3603. "php",
  3604. "qcloud"
  3605. ],
  3606. "support": {
  3607. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  3608. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.6.2"
  3609. },
  3610. "time": "2023-04-07T07:38:24+00:00"
  3611. },
  3612. {
  3613. "name": "qiniu/php-sdk",
  3614. "version": "v7.4.0",
  3615. "source": {
  3616. "type": "git",
  3617. "url": "https://github.com/qiniu/php-sdk.git",
  3618. "reference": "1c6bc89166e524a40ee42bf516fb99ffc6401c82"
  3619. },
  3620. "dist": {
  3621. "type": "zip",
  3622. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/1c6bc89166e524a40ee42bf516fb99ffc6401c82",
  3623. "reference": "1c6bc89166e524a40ee42bf516fb99ffc6401c82",
  3624. "shasum": "",
  3625. "mirrors": [
  3626. {
  3627. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3628. "preferred": true
  3629. }
  3630. ]
  3631. },
  3632. "require": {
  3633. "php": ">=5.3.3"
  3634. },
  3635. "require-dev": {
  3636. "phpunit/phpunit": "~4.0",
  3637. "squizlabs/php_codesniffer": "~3.6"
  3638. },
  3639. "type": "library",
  3640. "autoload": {
  3641. "files": [
  3642. "src/Qiniu/functions.php"
  3643. ],
  3644. "psr-4": {
  3645. "Qiniu\\": "src/Qiniu"
  3646. }
  3647. },
  3648. "notification-url": "https://packagist.org/downloads/",
  3649. "license": [
  3650. "MIT"
  3651. ],
  3652. "authors": [
  3653. {
  3654. "name": "Qiniu",
  3655. "email": "sdk@qiniu.com",
  3656. "homepage": "http://www.qiniu.com"
  3657. }
  3658. ],
  3659. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  3660. "homepage": "http://developer.qiniu.com/",
  3661. "keywords": [
  3662. "cloud",
  3663. "qiniu",
  3664. "sdk",
  3665. "storage"
  3666. ],
  3667. "support": {
  3668. "issues": "https://github.com/qiniu/php-sdk/issues",
  3669. "source": "https://github.com/qiniu/php-sdk/tree/v7.4.0"
  3670. },
  3671. "time": "2021-07-19T07:41:36+00:00"
  3672. },
  3673. {
  3674. "name": "ralouphie/getallheaders",
  3675. "version": "3.0.3",
  3676. "source": {
  3677. "type": "git",
  3678. "url": "https://github.com/ralouphie/getallheaders.git",
  3679. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3680. },
  3681. "dist": {
  3682. "type": "zip",
  3683. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3684. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3685. "shasum": "",
  3686. "mirrors": [
  3687. {
  3688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3689. "preferred": true
  3690. }
  3691. ]
  3692. },
  3693. "require": {
  3694. "php": ">=5.6"
  3695. },
  3696. "require-dev": {
  3697. "php-coveralls/php-coveralls": "^2.1",
  3698. "phpunit/phpunit": "^5 || ^6.5"
  3699. },
  3700. "type": "library",
  3701. "autoload": {
  3702. "files": [
  3703. "src/getallheaders.php"
  3704. ]
  3705. },
  3706. "notification-url": "https://packagist.org/downloads/",
  3707. "license": [
  3708. "MIT"
  3709. ],
  3710. "authors": [
  3711. {
  3712. "name": "Ralph Khattar",
  3713. "email": "ralph.khattar@gmail.com"
  3714. }
  3715. ],
  3716. "description": "A polyfill for getallheaders.",
  3717. "support": {
  3718. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3719. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3720. },
  3721. "time": "2019-03-08T08:55:37+00:00"
  3722. },
  3723. {
  3724. "name": "rmccue/requests",
  3725. "version": "v2.0.5",
  3726. "source": {
  3727. "type": "git",
  3728. "url": "https://github.com/WordPress/Requests.git",
  3729. "reference": "b717f1d2f4ef7992ec0c127747ed8b7e170c2f49"
  3730. },
  3731. "dist": {
  3732. "type": "zip",
  3733. "url": "https://api.github.com/repos/WordPress/Requests/zipball/b717f1d2f4ef7992ec0c127747ed8b7e170c2f49",
  3734. "reference": "b717f1d2f4ef7992ec0c127747ed8b7e170c2f49",
  3735. "shasum": "",
  3736. "mirrors": [
  3737. {
  3738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3739. "preferred": true
  3740. }
  3741. ]
  3742. },
  3743. "require": {
  3744. "ext-json": "*",
  3745. "php": ">=5.6"
  3746. },
  3747. "require-dev": {
  3748. "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
  3749. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  3750. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  3751. "phpcompatibility/php-compatibility": "^9.0",
  3752. "requests/test-server": "dev-main",
  3753. "roave/security-advisories": "dev-latest",
  3754. "squizlabs/php_codesniffer": "^3.6",
  3755. "wp-coding-standards/wpcs": "^2.0",
  3756. "yoast/phpunit-polyfills": "^1.0.0"
  3757. },
  3758. "type": "library",
  3759. "autoload": {
  3760. "files": [
  3761. "library/Deprecated.php"
  3762. ],
  3763. "psr-4": {
  3764. "WpOrg\\Requests\\": "src/"
  3765. },
  3766. "classmap": [
  3767. "library/Requests.php"
  3768. ]
  3769. },
  3770. "notification-url": "https://packagist.org/downloads/",
  3771. "license": [
  3772. "ISC"
  3773. ],
  3774. "authors": [
  3775. {
  3776. "name": "Ryan McCue",
  3777. "homepage": "https://rmccue.io/"
  3778. },
  3779. {
  3780. "name": "Alain Schlesser",
  3781. "homepage": "https://github.com/schlessera"
  3782. },
  3783. {
  3784. "name": "Juliette Reinders Folmer",
  3785. "homepage": "https://github.com/jrfnl"
  3786. },
  3787. {
  3788. "name": "Contributors",
  3789. "homepage": "https://github.com/WordPress/Requests/graphs/contributors"
  3790. }
  3791. ],
  3792. "description": "A HTTP library written in PHP, for human beings.",
  3793. "homepage": "https://requests.ryanmccue.info/",
  3794. "keywords": [
  3795. "curl",
  3796. "fsockopen",
  3797. "http",
  3798. "idna",
  3799. "ipv6",
  3800. "iri",
  3801. "sockets"
  3802. ],
  3803. "support": {
  3804. "docs": "https://requests.ryanmccue.info/",
  3805. "issues": "https://github.com/WordPress/Requests/issues",
  3806. "source": "https://github.com/WordPress/Requests"
  3807. },
  3808. "time": "2022-10-11T08:15:28+00:00"
  3809. },
  3810. {
  3811. "name": "spatie/macroable",
  3812. "version": "1.0.1",
  3813. "source": {
  3814. "type": "git",
  3815. "url": "https://github.com/spatie/macroable.git",
  3816. "reference": "7a99549fc001c925714b329220dea680c04bfa48"
  3817. },
  3818. "dist": {
  3819. "type": "zip",
  3820. "url": "https://api.github.com/repos/spatie/macroable/zipball/7a99549fc001c925714b329220dea680c04bfa48",
  3821. "reference": "7a99549fc001c925714b329220dea680c04bfa48",
  3822. "shasum": "",
  3823. "mirrors": [
  3824. {
  3825. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3826. "preferred": true
  3827. }
  3828. ]
  3829. },
  3830. "require": {
  3831. "php": "^7.2|^8.0"
  3832. },
  3833. "require-dev": {
  3834. "phpunit/phpunit": "^8.0|^9.3"
  3835. },
  3836. "type": "library",
  3837. "autoload": {
  3838. "psr-4": {
  3839. "Spatie\\Macroable\\": "src"
  3840. }
  3841. },
  3842. "notification-url": "https://packagist.org/downloads/",
  3843. "license": [
  3844. "MIT"
  3845. ],
  3846. "authors": [
  3847. {
  3848. "name": "Freek Van der Herten",
  3849. "email": "freek@spatie.be",
  3850. "homepage": "https://spatie.be",
  3851. "role": "Developer"
  3852. }
  3853. ],
  3854. "description": "A trait to dynamically add methods to a class",
  3855. "homepage": "https://github.com/spatie/macroable",
  3856. "keywords": [
  3857. "macroable",
  3858. "spatie"
  3859. ],
  3860. "support": {
  3861. "issues": "https://github.com/spatie/macroable/issues",
  3862. "source": "https://github.com/spatie/macroable/tree/1.0.1"
  3863. },
  3864. "time": "2020-11-03T10:15:05+00:00"
  3865. },
  3866. {
  3867. "name": "symfony/cache",
  3868. "version": "v6.0.19",
  3869. "source": {
  3870. "type": "git",
  3871. "url": "https://github.com/symfony/cache.git",
  3872. "reference": "81ca309f056e836480928b20280ec52ce8369bb3"
  3873. },
  3874. "dist": {
  3875. "type": "zip",
  3876. "url": "https://api.github.com/repos/symfony/cache/zipball/81ca309f056e836480928b20280ec52ce8369bb3",
  3877. "reference": "81ca309f056e836480928b20280ec52ce8369bb3",
  3878. "shasum": "",
  3879. "mirrors": [
  3880. {
  3881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3882. "preferred": true
  3883. }
  3884. ]
  3885. },
  3886. "require": {
  3887. "php": ">=8.0.2",
  3888. "psr/cache": "^2.0|^3.0",
  3889. "psr/log": "^1.1|^2|^3",
  3890. "symfony/cache-contracts": "^1.1.7|^2|^3",
  3891. "symfony/service-contracts": "^1.1|^2|^3",
  3892. "symfony/var-exporter": "^5.4|^6.0"
  3893. },
  3894. "conflict": {
  3895. "doctrine/dbal": "<2.13.1",
  3896. "symfony/dependency-injection": "<5.4",
  3897. "symfony/http-kernel": "<5.4",
  3898. "symfony/var-dumper": "<5.4"
  3899. },
  3900. "provide": {
  3901. "psr/cache-implementation": "2.0|3.0",
  3902. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3903. "symfony/cache-implementation": "1.1|2.0|3.0"
  3904. },
  3905. "require-dev": {
  3906. "cache/integration-tests": "dev-master",
  3907. "doctrine/dbal": "^2.13.1|^3.0",
  3908. "predis/predis": "^1.1",
  3909. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3910. "symfony/config": "^5.4|^6.0",
  3911. "symfony/dependency-injection": "^5.4|^6.0",
  3912. "symfony/filesystem": "^5.4|^6.0",
  3913. "symfony/http-kernel": "^5.4|^6.0",
  3914. "symfony/messenger": "^5.4|^6.0",
  3915. "symfony/var-dumper": "^5.4|^6.0"
  3916. },
  3917. "type": "library",
  3918. "autoload": {
  3919. "psr-4": {
  3920. "Symfony\\Component\\Cache\\": ""
  3921. },
  3922. "exclude-from-classmap": [
  3923. "/Tests/"
  3924. ]
  3925. },
  3926. "notification-url": "https://packagist.org/downloads/",
  3927. "license": [
  3928. "MIT"
  3929. ],
  3930. "authors": [
  3931. {
  3932. "name": "Nicolas Grekas",
  3933. "email": "p@tchwork.com"
  3934. },
  3935. {
  3936. "name": "Symfony Community",
  3937. "homepage": "https://symfony.com/contributors"
  3938. }
  3939. ],
  3940. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3941. "homepage": "https://symfony.com",
  3942. "keywords": [
  3943. "caching",
  3944. "psr6"
  3945. ],
  3946. "support": {
  3947. "source": "https://github.com/symfony/cache/tree/v6.0.19"
  3948. },
  3949. "funding": [
  3950. {
  3951. "url": "https://symfony.com/sponsor",
  3952. "type": "custom"
  3953. },
  3954. {
  3955. "url": "https://github.com/fabpot",
  3956. "type": "github"
  3957. },
  3958. {
  3959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3960. "type": "tidelift"
  3961. }
  3962. ],
  3963. "time": "2023-01-20T17:44:14+00:00"
  3964. },
  3965. {
  3966. "name": "symfony/cache-contracts",
  3967. "version": "v3.0.2",
  3968. "source": {
  3969. "type": "git",
  3970. "url": "https://github.com/symfony/cache-contracts.git",
  3971. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348"
  3972. },
  3973. "dist": {
  3974. "type": "zip",
  3975. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  3976. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  3977. "shasum": "",
  3978. "mirrors": [
  3979. {
  3980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3981. "preferred": true
  3982. }
  3983. ]
  3984. },
  3985. "require": {
  3986. "php": ">=8.0.2",
  3987. "psr/cache": "^3.0"
  3988. },
  3989. "suggest": {
  3990. "symfony/cache-implementation": ""
  3991. },
  3992. "type": "library",
  3993. "extra": {
  3994. "branch-alias": {
  3995. "dev-main": "3.0-dev"
  3996. },
  3997. "thanks": {
  3998. "name": "symfony/contracts",
  3999. "url": "https://github.com/symfony/contracts"
  4000. }
  4001. },
  4002. "autoload": {
  4003. "psr-4": {
  4004. "Symfony\\Contracts\\Cache\\": ""
  4005. }
  4006. },
  4007. "notification-url": "https://packagist.org/downloads/",
  4008. "license": [
  4009. "MIT"
  4010. ],
  4011. "authors": [
  4012. {
  4013. "name": "Nicolas Grekas",
  4014. "email": "p@tchwork.com"
  4015. },
  4016. {
  4017. "name": "Symfony Community",
  4018. "homepage": "https://symfony.com/contributors"
  4019. }
  4020. ],
  4021. "description": "Generic abstractions related to caching",
  4022. "homepage": "https://symfony.com",
  4023. "keywords": [
  4024. "abstractions",
  4025. "contracts",
  4026. "decoupling",
  4027. "interfaces",
  4028. "interoperability",
  4029. "standards"
  4030. ],
  4031. "support": {
  4032. "source": "https://github.com/symfony/cache-contracts/tree/v3.0.2"
  4033. },
  4034. "funding": [
  4035. {
  4036. "url": "https://symfony.com/sponsor",
  4037. "type": "custom"
  4038. },
  4039. {
  4040. "url": "https://github.com/fabpot",
  4041. "type": "github"
  4042. },
  4043. {
  4044. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4045. "type": "tidelift"
  4046. }
  4047. ],
  4048. "time": "2022-01-02T09:55:41+00:00"
  4049. },
  4050. {
  4051. "name": "symfony/deprecation-contracts",
  4052. "version": "v3.0.2",
  4053. "source": {
  4054. "type": "git",
  4055. "url": "https://github.com/symfony/deprecation-contracts.git",
  4056. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  4057. },
  4058. "dist": {
  4059. "type": "zip",
  4060. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  4061. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  4062. "shasum": "",
  4063. "mirrors": [
  4064. {
  4065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4066. "preferred": true
  4067. }
  4068. ]
  4069. },
  4070. "require": {
  4071. "php": ">=8.0.2"
  4072. },
  4073. "type": "library",
  4074. "extra": {
  4075. "branch-alias": {
  4076. "dev-main": "3.0-dev"
  4077. },
  4078. "thanks": {
  4079. "name": "symfony/contracts",
  4080. "url": "https://github.com/symfony/contracts"
  4081. }
  4082. },
  4083. "autoload": {
  4084. "files": [
  4085. "function.php"
  4086. ]
  4087. },
  4088. "notification-url": "https://packagist.org/downloads/",
  4089. "license": [
  4090. "MIT"
  4091. ],
  4092. "authors": [
  4093. {
  4094. "name": "Nicolas Grekas",
  4095. "email": "p@tchwork.com"
  4096. },
  4097. {
  4098. "name": "Symfony Community",
  4099. "homepage": "https://symfony.com/contributors"
  4100. }
  4101. ],
  4102. "description": "A generic function and convention to trigger deprecation notices",
  4103. "homepage": "https://symfony.com",
  4104. "support": {
  4105. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  4106. },
  4107. "funding": [
  4108. {
  4109. "url": "https://symfony.com/sponsor",
  4110. "type": "custom"
  4111. },
  4112. {
  4113. "url": "https://github.com/fabpot",
  4114. "type": "github"
  4115. },
  4116. {
  4117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4118. "type": "tidelift"
  4119. }
  4120. ],
  4121. "time": "2022-01-02T09:55:41+00:00"
  4122. },
  4123. {
  4124. "name": "symfony/http-client",
  4125. "version": "v6.0.20",
  4126. "source": {
  4127. "type": "git",
  4128. "url": "https://github.com/symfony/http-client.git",
  4129. "reference": "541c04560da1875f62c963c3aab6ea12a7314e11"
  4130. },
  4131. "dist": {
  4132. "type": "zip",
  4133. "url": "https://api.github.com/repos/symfony/http-client/zipball/541c04560da1875f62c963c3aab6ea12a7314e11",
  4134. "reference": "541c04560da1875f62c963c3aab6ea12a7314e11",
  4135. "shasum": "",
  4136. "mirrors": [
  4137. {
  4138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4139. "preferred": true
  4140. }
  4141. ]
  4142. },
  4143. "require": {
  4144. "php": ">=8.0.2",
  4145. "psr/log": "^1|^2|^3",
  4146. "symfony/http-client-contracts": "^3",
  4147. "symfony/service-contracts": "^1.0|^2|^3"
  4148. },
  4149. "provide": {
  4150. "php-http/async-client-implementation": "*",
  4151. "php-http/client-implementation": "*",
  4152. "psr/http-client-implementation": "1.0",
  4153. "symfony/http-client-implementation": "3.0"
  4154. },
  4155. "require-dev": {
  4156. "amphp/amp": "^2.5",
  4157. "amphp/http-client": "^4.2.1",
  4158. "amphp/http-tunnel": "^1.0",
  4159. "amphp/socket": "^1.1",
  4160. "guzzlehttp/promises": "^1.4",
  4161. "nyholm/psr7": "^1.0",
  4162. "php-http/httplug": "^1.0|^2.0",
  4163. "psr/http-client": "^1.0",
  4164. "symfony/dependency-injection": "^5.4|^6.0",
  4165. "symfony/http-kernel": "^5.4|^6.0",
  4166. "symfony/process": "^5.4|^6.0",
  4167. "symfony/stopwatch": "^5.4|^6.0"
  4168. },
  4169. "type": "library",
  4170. "autoload": {
  4171. "psr-4": {
  4172. "Symfony\\Component\\HttpClient\\": ""
  4173. },
  4174. "exclude-from-classmap": [
  4175. "/Tests/"
  4176. ]
  4177. },
  4178. "notification-url": "https://packagist.org/downloads/",
  4179. "license": [
  4180. "MIT"
  4181. ],
  4182. "authors": [
  4183. {
  4184. "name": "Nicolas Grekas",
  4185. "email": "p@tchwork.com"
  4186. },
  4187. {
  4188. "name": "Symfony Community",
  4189. "homepage": "https://symfony.com/contributors"
  4190. }
  4191. ],
  4192. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4193. "homepage": "https://symfony.com",
  4194. "support": {
  4195. "source": "https://github.com/symfony/http-client/tree/v6.0.20"
  4196. },
  4197. "funding": [
  4198. {
  4199. "url": "https://symfony.com/sponsor",
  4200. "type": "custom"
  4201. },
  4202. {
  4203. "url": "https://github.com/fabpot",
  4204. "type": "github"
  4205. },
  4206. {
  4207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4208. "type": "tidelift"
  4209. }
  4210. ],
  4211. "time": "2023-01-30T15:41:07+00:00"
  4212. },
  4213. {
  4214. "name": "symfony/http-client-contracts",
  4215. "version": "v3.0.2",
  4216. "source": {
  4217. "type": "git",
  4218. "url": "https://github.com/symfony/http-client-contracts.git",
  4219. "reference": "4184b9b63af1edaf35b6a7974c6f1f9f33294129"
  4220. },
  4221. "dist": {
  4222. "type": "zip",
  4223. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/4184b9b63af1edaf35b6a7974c6f1f9f33294129",
  4224. "reference": "4184b9b63af1edaf35b6a7974c6f1f9f33294129",
  4225. "shasum": "",
  4226. "mirrors": [
  4227. {
  4228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4229. "preferred": true
  4230. }
  4231. ]
  4232. },
  4233. "require": {
  4234. "php": ">=8.0.2"
  4235. },
  4236. "suggest": {
  4237. "symfony/http-client-implementation": ""
  4238. },
  4239. "type": "library",
  4240. "extra": {
  4241. "branch-alias": {
  4242. "dev-main": "3.0-dev"
  4243. },
  4244. "thanks": {
  4245. "name": "symfony/contracts",
  4246. "url": "https://github.com/symfony/contracts"
  4247. }
  4248. },
  4249. "autoload": {
  4250. "psr-4": {
  4251. "Symfony\\Contracts\\HttpClient\\": ""
  4252. }
  4253. },
  4254. "notification-url": "https://packagist.org/downloads/",
  4255. "license": [
  4256. "MIT"
  4257. ],
  4258. "authors": [
  4259. {
  4260. "name": "Nicolas Grekas",
  4261. "email": "p@tchwork.com"
  4262. },
  4263. {
  4264. "name": "Symfony Community",
  4265. "homepage": "https://symfony.com/contributors"
  4266. }
  4267. ],
  4268. "description": "Generic abstractions related to HTTP clients",
  4269. "homepage": "https://symfony.com",
  4270. "keywords": [
  4271. "abstractions",
  4272. "contracts",
  4273. "decoupling",
  4274. "interfaces",
  4275. "interoperability",
  4276. "standards"
  4277. ],
  4278. "support": {
  4279. "source": "https://github.com/symfony/http-client-contracts/tree/v3.0.2"
  4280. },
  4281. "funding": [
  4282. {
  4283. "url": "https://symfony.com/sponsor",
  4284. "type": "custom"
  4285. },
  4286. {
  4287. "url": "https://github.com/fabpot",
  4288. "type": "github"
  4289. },
  4290. {
  4291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4292. "type": "tidelift"
  4293. }
  4294. ],
  4295. "time": "2022-04-12T16:11:42+00:00"
  4296. },
  4297. {
  4298. "name": "symfony/http-foundation",
  4299. "version": "v6.0.20",
  4300. "source": {
  4301. "type": "git",
  4302. "url": "https://github.com/symfony/http-foundation.git",
  4303. "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6"
  4304. },
  4305. "dist": {
  4306. "type": "zip",
  4307. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e16b2676a4b3b1fa12378a20b29c364feda2a8d6",
  4308. "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6",
  4309. "shasum": "",
  4310. "mirrors": [
  4311. {
  4312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4313. "preferred": true
  4314. }
  4315. ]
  4316. },
  4317. "require": {
  4318. "php": ">=8.0.2",
  4319. "symfony/deprecation-contracts": "^2.1|^3",
  4320. "symfony/polyfill-mbstring": "~1.1"
  4321. },
  4322. "require-dev": {
  4323. "predis/predis": "~1.0",
  4324. "symfony/cache": "^5.4|^6.0",
  4325. "symfony/dependency-injection": "^5.4|^6.0",
  4326. "symfony/expression-language": "^5.4|^6.0",
  4327. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4328. "symfony/mime": "^5.4|^6.0",
  4329. "symfony/rate-limiter": "^5.2|^6.0"
  4330. },
  4331. "suggest": {
  4332. "symfony/mime": "To use the file extension guesser"
  4333. },
  4334. "type": "library",
  4335. "autoload": {
  4336. "psr-4": {
  4337. "Symfony\\Component\\HttpFoundation\\": ""
  4338. },
  4339. "exclude-from-classmap": [
  4340. "/Tests/"
  4341. ]
  4342. },
  4343. "notification-url": "https://packagist.org/downloads/",
  4344. "license": [
  4345. "MIT"
  4346. ],
  4347. "authors": [
  4348. {
  4349. "name": "Fabien Potencier",
  4350. "email": "fabien@symfony.com"
  4351. },
  4352. {
  4353. "name": "Symfony Community",
  4354. "homepage": "https://symfony.com/contributors"
  4355. }
  4356. ],
  4357. "description": "Defines an object-oriented layer for the HTTP specification",
  4358. "homepage": "https://symfony.com",
  4359. "support": {
  4360. "source": "https://github.com/symfony/http-foundation/tree/v6.0.20"
  4361. },
  4362. "funding": [
  4363. {
  4364. "url": "https://symfony.com/sponsor",
  4365. "type": "custom"
  4366. },
  4367. {
  4368. "url": "https://github.com/fabpot",
  4369. "type": "github"
  4370. },
  4371. {
  4372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4373. "type": "tidelift"
  4374. }
  4375. ],
  4376. "time": "2023-01-30T15:41:07+00:00"
  4377. },
  4378. {
  4379. "name": "symfony/mime",
  4380. "version": "v6.0.19",
  4381. "source": {
  4382. "type": "git",
  4383. "url": "https://github.com/symfony/mime.git",
  4384. "reference": "d7052547a0070cbeadd474e172b527a00d657301"
  4385. },
  4386. "dist": {
  4387. "type": "zip",
  4388. "url": "https://api.github.com/repos/symfony/mime/zipball/d7052547a0070cbeadd474e172b527a00d657301",
  4389. "reference": "d7052547a0070cbeadd474e172b527a00d657301",
  4390. "shasum": "",
  4391. "mirrors": [
  4392. {
  4393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4394. "preferred": true
  4395. }
  4396. ]
  4397. },
  4398. "require": {
  4399. "php": ">=8.0.2",
  4400. "symfony/polyfill-intl-idn": "^1.10",
  4401. "symfony/polyfill-mbstring": "^1.0"
  4402. },
  4403. "conflict": {
  4404. "egulias/email-validator": "~3.0.0",
  4405. "phpdocumentor/reflection-docblock": "<3.2.2",
  4406. "phpdocumentor/type-resolver": "<1.4.0",
  4407. "symfony/mailer": "<5.4",
  4408. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  4409. },
  4410. "require-dev": {
  4411. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4412. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4413. "symfony/dependency-injection": "^5.4|^6.0",
  4414. "symfony/property-access": "^5.4|^6.0",
  4415. "symfony/property-info": "^5.4|^6.0",
  4416. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  4417. },
  4418. "type": "library",
  4419. "autoload": {
  4420. "psr-4": {
  4421. "Symfony\\Component\\Mime\\": ""
  4422. },
  4423. "exclude-from-classmap": [
  4424. "/Tests/"
  4425. ]
  4426. },
  4427. "notification-url": "https://packagist.org/downloads/",
  4428. "license": [
  4429. "MIT"
  4430. ],
  4431. "authors": [
  4432. {
  4433. "name": "Fabien Potencier",
  4434. "email": "fabien@symfony.com"
  4435. },
  4436. {
  4437. "name": "Symfony Community",
  4438. "homepage": "https://symfony.com/contributors"
  4439. }
  4440. ],
  4441. "description": "Allows manipulating MIME messages",
  4442. "homepage": "https://symfony.com",
  4443. "keywords": [
  4444. "mime",
  4445. "mime-type"
  4446. ],
  4447. "support": {
  4448. "source": "https://github.com/symfony/mime/tree/v6.0.19"
  4449. },
  4450. "funding": [
  4451. {
  4452. "url": "https://symfony.com/sponsor",
  4453. "type": "custom"
  4454. },
  4455. {
  4456. "url": "https://github.com/fabpot",
  4457. "type": "github"
  4458. },
  4459. {
  4460. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4461. "type": "tidelift"
  4462. }
  4463. ],
  4464. "time": "2023-01-11T11:50:03+00:00"
  4465. },
  4466. {
  4467. "name": "symfony/polyfill-intl-idn",
  4468. "version": "v1.29.0",
  4469. "source": {
  4470. "type": "git",
  4471. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4472. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  4473. },
  4474. "dist": {
  4475. "type": "zip",
  4476. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  4477. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  4478. "shasum": "",
  4479. "mirrors": [
  4480. {
  4481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4482. "preferred": true
  4483. }
  4484. ]
  4485. },
  4486. "require": {
  4487. "php": ">=7.1",
  4488. "symfony/polyfill-intl-normalizer": "^1.10",
  4489. "symfony/polyfill-php72": "^1.10"
  4490. },
  4491. "suggest": {
  4492. "ext-intl": "For best performance"
  4493. },
  4494. "type": "library",
  4495. "extra": {
  4496. "thanks": {
  4497. "name": "symfony/polyfill",
  4498. "url": "https://github.com/symfony/polyfill"
  4499. }
  4500. },
  4501. "autoload": {
  4502. "files": [
  4503. "bootstrap.php"
  4504. ],
  4505. "psr-4": {
  4506. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4507. }
  4508. },
  4509. "notification-url": "https://packagist.org/downloads/",
  4510. "license": [
  4511. "MIT"
  4512. ],
  4513. "authors": [
  4514. {
  4515. "name": "Laurent Bassin",
  4516. "email": "laurent@bassin.info"
  4517. },
  4518. {
  4519. "name": "Trevor Rowbotham",
  4520. "email": "trevor.rowbotham@pm.me"
  4521. },
  4522. {
  4523. "name": "Symfony Community",
  4524. "homepage": "https://symfony.com/contributors"
  4525. }
  4526. ],
  4527. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4528. "homepage": "https://symfony.com",
  4529. "keywords": [
  4530. "compatibility",
  4531. "idn",
  4532. "intl",
  4533. "polyfill",
  4534. "portable",
  4535. "shim"
  4536. ],
  4537. "support": {
  4538. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  4539. },
  4540. "funding": [
  4541. {
  4542. "url": "https://symfony.com/sponsor",
  4543. "type": "custom"
  4544. },
  4545. {
  4546. "url": "https://github.com/fabpot",
  4547. "type": "github"
  4548. },
  4549. {
  4550. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4551. "type": "tidelift"
  4552. }
  4553. ],
  4554. "time": "2024-01-29T20:11:03+00:00"
  4555. },
  4556. {
  4557. "name": "symfony/polyfill-intl-normalizer",
  4558. "version": "v1.28.0",
  4559. "source": {
  4560. "type": "git",
  4561. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4562. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  4563. },
  4564. "dist": {
  4565. "type": "zip",
  4566. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  4567. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  4568. "shasum": "",
  4569. "mirrors": [
  4570. {
  4571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4572. "preferred": true
  4573. }
  4574. ]
  4575. },
  4576. "require": {
  4577. "php": ">=7.1"
  4578. },
  4579. "suggest": {
  4580. "ext-intl": "For best performance"
  4581. },
  4582. "type": "library",
  4583. "extra": {
  4584. "branch-alias": {
  4585. "dev-main": "1.28-dev"
  4586. },
  4587. "thanks": {
  4588. "name": "symfony/polyfill",
  4589. "url": "https://github.com/symfony/polyfill"
  4590. }
  4591. },
  4592. "autoload": {
  4593. "files": [
  4594. "bootstrap.php"
  4595. ],
  4596. "psr-4": {
  4597. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4598. },
  4599. "classmap": [
  4600. "Resources/stubs"
  4601. ]
  4602. },
  4603. "notification-url": "https://packagist.org/downloads/",
  4604. "license": [
  4605. "MIT"
  4606. ],
  4607. "authors": [
  4608. {
  4609. "name": "Nicolas Grekas",
  4610. "email": "p@tchwork.com"
  4611. },
  4612. {
  4613. "name": "Symfony Community",
  4614. "homepage": "https://symfony.com/contributors"
  4615. }
  4616. ],
  4617. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4618. "homepage": "https://symfony.com",
  4619. "keywords": [
  4620. "compatibility",
  4621. "intl",
  4622. "normalizer",
  4623. "polyfill",
  4624. "portable",
  4625. "shim"
  4626. ],
  4627. "support": {
  4628. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  4629. },
  4630. "funding": [
  4631. {
  4632. "url": "https://symfony.com/sponsor",
  4633. "type": "custom"
  4634. },
  4635. {
  4636. "url": "https://github.com/fabpot",
  4637. "type": "github"
  4638. },
  4639. {
  4640. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4641. "type": "tidelift"
  4642. }
  4643. ],
  4644. "time": "2023-01-26T09:26:14+00:00"
  4645. },
  4646. {
  4647. "name": "symfony/polyfill-mbstring",
  4648. "version": "v1.28.0",
  4649. "source": {
  4650. "type": "git",
  4651. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4652. "reference": "42292d99c55abe617799667f454222c54c60e229"
  4653. },
  4654. "dist": {
  4655. "type": "zip",
  4656. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  4657. "reference": "42292d99c55abe617799667f454222c54c60e229",
  4658. "shasum": "",
  4659. "mirrors": [
  4660. {
  4661. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4662. "preferred": true
  4663. }
  4664. ]
  4665. },
  4666. "require": {
  4667. "php": ">=7.1"
  4668. },
  4669. "provide": {
  4670. "ext-mbstring": "*"
  4671. },
  4672. "suggest": {
  4673. "ext-mbstring": "For best performance"
  4674. },
  4675. "type": "library",
  4676. "extra": {
  4677. "branch-alias": {
  4678. "dev-main": "1.28-dev"
  4679. },
  4680. "thanks": {
  4681. "name": "symfony/polyfill",
  4682. "url": "https://github.com/symfony/polyfill"
  4683. }
  4684. },
  4685. "autoload": {
  4686. "files": [
  4687. "bootstrap.php"
  4688. ],
  4689. "psr-4": {
  4690. "Symfony\\Polyfill\\Mbstring\\": ""
  4691. }
  4692. },
  4693. "notification-url": "https://packagist.org/downloads/",
  4694. "license": [
  4695. "MIT"
  4696. ],
  4697. "authors": [
  4698. {
  4699. "name": "Nicolas Grekas",
  4700. "email": "p@tchwork.com"
  4701. },
  4702. {
  4703. "name": "Symfony Community",
  4704. "homepage": "https://symfony.com/contributors"
  4705. }
  4706. ],
  4707. "description": "Symfony polyfill for the Mbstring extension",
  4708. "homepage": "https://symfony.com",
  4709. "keywords": [
  4710. "compatibility",
  4711. "mbstring",
  4712. "polyfill",
  4713. "portable",
  4714. "shim"
  4715. ],
  4716. "support": {
  4717. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  4718. },
  4719. "funding": [
  4720. {
  4721. "url": "https://symfony.com/sponsor",
  4722. "type": "custom"
  4723. },
  4724. {
  4725. "url": "https://github.com/fabpot",
  4726. "type": "github"
  4727. },
  4728. {
  4729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4730. "type": "tidelift"
  4731. }
  4732. ],
  4733. "time": "2023-07-28T09:04:16+00:00"
  4734. },
  4735. {
  4736. "name": "symfony/polyfill-php72",
  4737. "version": "v1.29.0",
  4738. "source": {
  4739. "type": "git",
  4740. "url": "https://github.com/symfony/polyfill-php72.git",
  4741. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  4742. },
  4743. "dist": {
  4744. "type": "zip",
  4745. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  4746. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  4747. "shasum": "",
  4748. "mirrors": [
  4749. {
  4750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4751. "preferred": true
  4752. }
  4753. ]
  4754. },
  4755. "require": {
  4756. "php": ">=7.1"
  4757. },
  4758. "type": "library",
  4759. "extra": {
  4760. "thanks": {
  4761. "name": "symfony/polyfill",
  4762. "url": "https://github.com/symfony/polyfill"
  4763. }
  4764. },
  4765. "autoload": {
  4766. "files": [
  4767. "bootstrap.php"
  4768. ],
  4769. "psr-4": {
  4770. "Symfony\\Polyfill\\Php72\\": ""
  4771. }
  4772. },
  4773. "notification-url": "https://packagist.org/downloads/",
  4774. "license": [
  4775. "MIT"
  4776. ],
  4777. "authors": [
  4778. {
  4779. "name": "Nicolas Grekas",
  4780. "email": "p@tchwork.com"
  4781. },
  4782. {
  4783. "name": "Symfony Community",
  4784. "homepage": "https://symfony.com/contributors"
  4785. }
  4786. ],
  4787. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4788. "homepage": "https://symfony.com",
  4789. "keywords": [
  4790. "compatibility",
  4791. "polyfill",
  4792. "portable",
  4793. "shim"
  4794. ],
  4795. "support": {
  4796. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  4797. },
  4798. "funding": [
  4799. {
  4800. "url": "https://symfony.com/sponsor",
  4801. "type": "custom"
  4802. },
  4803. {
  4804. "url": "https://github.com/fabpot",
  4805. "type": "github"
  4806. },
  4807. {
  4808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4809. "type": "tidelift"
  4810. }
  4811. ],
  4812. "time": "2024-01-29T20:11:03+00:00"
  4813. },
  4814. {
  4815. "name": "symfony/polyfill-php80",
  4816. "version": "v1.29.0",
  4817. "source": {
  4818. "type": "git",
  4819. "url": "https://github.com/symfony/polyfill-php80.git",
  4820. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  4821. },
  4822. "dist": {
  4823. "type": "zip",
  4824. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  4825. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  4826. "shasum": "",
  4827. "mirrors": [
  4828. {
  4829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4830. "preferred": true
  4831. }
  4832. ]
  4833. },
  4834. "require": {
  4835. "php": ">=7.1"
  4836. },
  4837. "type": "library",
  4838. "extra": {
  4839. "thanks": {
  4840. "name": "symfony/polyfill",
  4841. "url": "https://github.com/symfony/polyfill"
  4842. }
  4843. },
  4844. "autoload": {
  4845. "files": [
  4846. "bootstrap.php"
  4847. ],
  4848. "psr-4": {
  4849. "Symfony\\Polyfill\\Php80\\": ""
  4850. },
  4851. "classmap": [
  4852. "Resources/stubs"
  4853. ]
  4854. },
  4855. "notification-url": "https://packagist.org/downloads/",
  4856. "license": [
  4857. "MIT"
  4858. ],
  4859. "authors": [
  4860. {
  4861. "name": "Ion Bazan",
  4862. "email": "ion.bazan@gmail.com"
  4863. },
  4864. {
  4865. "name": "Nicolas Grekas",
  4866. "email": "p@tchwork.com"
  4867. },
  4868. {
  4869. "name": "Symfony Community",
  4870. "homepage": "https://symfony.com/contributors"
  4871. }
  4872. ],
  4873. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4874. "homepage": "https://symfony.com",
  4875. "keywords": [
  4876. "compatibility",
  4877. "polyfill",
  4878. "portable",
  4879. "shim"
  4880. ],
  4881. "support": {
  4882. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  4883. },
  4884. "funding": [
  4885. {
  4886. "url": "https://symfony.com/sponsor",
  4887. "type": "custom"
  4888. },
  4889. {
  4890. "url": "https://github.com/fabpot",
  4891. "type": "github"
  4892. },
  4893. {
  4894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4895. "type": "tidelift"
  4896. }
  4897. ],
  4898. "time": "2024-01-29T20:11:03+00:00"
  4899. },
  4900. {
  4901. "name": "symfony/polyfill-php81",
  4902. "version": "v1.28.0",
  4903. "source": {
  4904. "type": "git",
  4905. "url": "https://github.com/symfony/polyfill-php81.git",
  4906. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  4907. },
  4908. "dist": {
  4909. "type": "zip",
  4910. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  4911. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  4912. "shasum": "",
  4913. "mirrors": [
  4914. {
  4915. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4916. "preferred": true
  4917. }
  4918. ]
  4919. },
  4920. "require": {
  4921. "php": ">=7.1"
  4922. },
  4923. "type": "library",
  4924. "extra": {
  4925. "branch-alias": {
  4926. "dev-main": "1.28-dev"
  4927. },
  4928. "thanks": {
  4929. "name": "symfony/polyfill",
  4930. "url": "https://github.com/symfony/polyfill"
  4931. }
  4932. },
  4933. "autoload": {
  4934. "files": [
  4935. "bootstrap.php"
  4936. ],
  4937. "psr-4": {
  4938. "Symfony\\Polyfill\\Php81\\": ""
  4939. },
  4940. "classmap": [
  4941. "Resources/stubs"
  4942. ]
  4943. },
  4944. "notification-url": "https://packagist.org/downloads/",
  4945. "license": [
  4946. "MIT"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "Nicolas Grekas",
  4951. "email": "p@tchwork.com"
  4952. },
  4953. {
  4954. "name": "Symfony Community",
  4955. "homepage": "https://symfony.com/contributors"
  4956. }
  4957. ],
  4958. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  4959. "homepage": "https://symfony.com",
  4960. "keywords": [
  4961. "compatibility",
  4962. "polyfill",
  4963. "portable",
  4964. "shim"
  4965. ],
  4966. "support": {
  4967. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  4968. },
  4969. "funding": [
  4970. {
  4971. "url": "https://symfony.com/sponsor",
  4972. "type": "custom"
  4973. },
  4974. {
  4975. "url": "https://github.com/fabpot",
  4976. "type": "github"
  4977. },
  4978. {
  4979. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4980. "type": "tidelift"
  4981. }
  4982. ],
  4983. "time": "2023-01-26T09:26:14+00:00"
  4984. },
  4985. {
  4986. "name": "symfony/psr-http-message-bridge",
  4987. "version": "v2.2.0",
  4988. "source": {
  4989. "type": "git",
  4990. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4991. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  4992. },
  4993. "dist": {
  4994. "type": "zip",
  4995. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  4996. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  4997. "shasum": "",
  4998. "mirrors": [
  4999. {
  5000. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5001. "preferred": true
  5002. }
  5003. ]
  5004. },
  5005. "require": {
  5006. "php": ">=7.2.5",
  5007. "psr/http-message": "^1.0 || ^2.0",
  5008. "symfony/http-foundation": "^5.4 || ^6.0"
  5009. },
  5010. "require-dev": {
  5011. "nyholm/psr7": "^1.1",
  5012. "psr/log": "^1.1 || ^2 || ^3",
  5013. "symfony/browser-kit": "^5.4 || ^6.0",
  5014. "symfony/config": "^5.4 || ^6.0",
  5015. "symfony/event-dispatcher": "^5.4 || ^6.0",
  5016. "symfony/framework-bundle": "^5.4 || ^6.0",
  5017. "symfony/http-kernel": "^5.4 || ^6.0",
  5018. "symfony/phpunit-bridge": "^6.2"
  5019. },
  5020. "suggest": {
  5021. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  5022. },
  5023. "type": "symfony-bridge",
  5024. "extra": {
  5025. "branch-alias": {
  5026. "dev-main": "2.2-dev"
  5027. }
  5028. },
  5029. "autoload": {
  5030. "psr-4": {
  5031. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  5032. },
  5033. "exclude-from-classmap": [
  5034. "/Tests/"
  5035. ]
  5036. },
  5037. "notification-url": "https://packagist.org/downloads/",
  5038. "license": [
  5039. "MIT"
  5040. ],
  5041. "authors": [
  5042. {
  5043. "name": "Fabien Potencier",
  5044. "email": "fabien@symfony.com"
  5045. },
  5046. {
  5047. "name": "Symfony Community",
  5048. "homepage": "http://symfony.com/contributors"
  5049. }
  5050. ],
  5051. "description": "PSR HTTP message bridge",
  5052. "homepage": "http://symfony.com",
  5053. "keywords": [
  5054. "http",
  5055. "http-message",
  5056. "psr-17",
  5057. "psr-7"
  5058. ],
  5059. "support": {
  5060. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  5061. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  5062. },
  5063. "funding": [
  5064. {
  5065. "url": "https://symfony.com/sponsor",
  5066. "type": "custom"
  5067. },
  5068. {
  5069. "url": "https://github.com/fabpot",
  5070. "type": "github"
  5071. },
  5072. {
  5073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5074. "type": "tidelift"
  5075. }
  5076. ],
  5077. "time": "2023-04-21T08:40:19+00:00"
  5078. },
  5079. {
  5080. "name": "symfony/service-contracts",
  5081. "version": "v3.0.2",
  5082. "source": {
  5083. "type": "git",
  5084. "url": "https://github.com/symfony/service-contracts.git",
  5085. "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66"
  5086. },
  5087. "dist": {
  5088. "type": "zip",
  5089. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
  5090. "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
  5091. "shasum": "",
  5092. "mirrors": [
  5093. {
  5094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5095. "preferred": true
  5096. }
  5097. ]
  5098. },
  5099. "require": {
  5100. "php": ">=8.0.2",
  5101. "psr/container": "^2.0"
  5102. },
  5103. "conflict": {
  5104. "ext-psr": "<1.1|>=2"
  5105. },
  5106. "suggest": {
  5107. "symfony/service-implementation": ""
  5108. },
  5109. "type": "library",
  5110. "extra": {
  5111. "branch-alias": {
  5112. "dev-main": "3.0-dev"
  5113. },
  5114. "thanks": {
  5115. "name": "symfony/contracts",
  5116. "url": "https://github.com/symfony/contracts"
  5117. }
  5118. },
  5119. "autoload": {
  5120. "psr-4": {
  5121. "Symfony\\Contracts\\Service\\": ""
  5122. }
  5123. },
  5124. "notification-url": "https://packagist.org/downloads/",
  5125. "license": [
  5126. "MIT"
  5127. ],
  5128. "authors": [
  5129. {
  5130. "name": "Nicolas Grekas",
  5131. "email": "p@tchwork.com"
  5132. },
  5133. {
  5134. "name": "Symfony Community",
  5135. "homepage": "https://symfony.com/contributors"
  5136. }
  5137. ],
  5138. "description": "Generic abstractions related to writing services",
  5139. "homepage": "https://symfony.com",
  5140. "keywords": [
  5141. "abstractions",
  5142. "contracts",
  5143. "decoupling",
  5144. "interfaces",
  5145. "interoperability",
  5146. "standards"
  5147. ],
  5148. "support": {
  5149. "source": "https://github.com/symfony/service-contracts/tree/v3.0.2"
  5150. },
  5151. "funding": [
  5152. {
  5153. "url": "https://symfony.com/sponsor",
  5154. "type": "custom"
  5155. },
  5156. {
  5157. "url": "https://github.com/fabpot",
  5158. "type": "github"
  5159. },
  5160. {
  5161. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5162. "type": "tidelift"
  5163. }
  5164. ],
  5165. "time": "2022-05-30T19:17:58+00:00"
  5166. },
  5167. {
  5168. "name": "symfony/translation",
  5169. "version": "v6.0.19",
  5170. "source": {
  5171. "type": "git",
  5172. "url": "https://github.com/symfony/translation.git",
  5173. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  5174. },
  5175. "dist": {
  5176. "type": "zip",
  5177. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  5178. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  5179. "shasum": "",
  5180. "mirrors": [
  5181. {
  5182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5183. "preferred": true
  5184. }
  5185. ]
  5186. },
  5187. "require": {
  5188. "php": ">=8.0.2",
  5189. "symfony/polyfill-mbstring": "~1.0",
  5190. "symfony/translation-contracts": "^2.3|^3.0"
  5191. },
  5192. "conflict": {
  5193. "symfony/config": "<5.4",
  5194. "symfony/console": "<5.4",
  5195. "symfony/dependency-injection": "<5.4",
  5196. "symfony/http-kernel": "<5.4",
  5197. "symfony/twig-bundle": "<5.4",
  5198. "symfony/yaml": "<5.4"
  5199. },
  5200. "provide": {
  5201. "symfony/translation-implementation": "2.3|3.0"
  5202. },
  5203. "require-dev": {
  5204. "psr/log": "^1|^2|^3",
  5205. "symfony/config": "^5.4|^6.0",
  5206. "symfony/console": "^5.4|^6.0",
  5207. "symfony/dependency-injection": "^5.4|^6.0",
  5208. "symfony/finder": "^5.4|^6.0",
  5209. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  5210. "symfony/http-kernel": "^5.4|^6.0",
  5211. "symfony/intl": "^5.4|^6.0",
  5212. "symfony/polyfill-intl-icu": "^1.21",
  5213. "symfony/service-contracts": "^1.1.2|^2|^3",
  5214. "symfony/yaml": "^5.4|^6.0"
  5215. },
  5216. "suggest": {
  5217. "psr/log-implementation": "To use logging capability in translator",
  5218. "symfony/config": "",
  5219. "symfony/yaml": ""
  5220. },
  5221. "type": "library",
  5222. "autoload": {
  5223. "files": [
  5224. "Resources/functions.php"
  5225. ],
  5226. "psr-4": {
  5227. "Symfony\\Component\\Translation\\": ""
  5228. },
  5229. "exclude-from-classmap": [
  5230. "/Tests/"
  5231. ]
  5232. },
  5233. "notification-url": "https://packagist.org/downloads/",
  5234. "license": [
  5235. "MIT"
  5236. ],
  5237. "authors": [
  5238. {
  5239. "name": "Fabien Potencier",
  5240. "email": "fabien@symfony.com"
  5241. },
  5242. {
  5243. "name": "Symfony Community",
  5244. "homepage": "https://symfony.com/contributors"
  5245. }
  5246. ],
  5247. "description": "Provides tools to internationalize your application",
  5248. "homepage": "https://symfony.com",
  5249. "support": {
  5250. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  5251. },
  5252. "funding": [
  5253. {
  5254. "url": "https://symfony.com/sponsor",
  5255. "type": "custom"
  5256. },
  5257. {
  5258. "url": "https://github.com/fabpot",
  5259. "type": "github"
  5260. },
  5261. {
  5262. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5263. "type": "tidelift"
  5264. }
  5265. ],
  5266. "time": "2023-01-01T08:36:10+00:00"
  5267. },
  5268. {
  5269. "name": "symfony/translation-contracts",
  5270. "version": "v3.0.2",
  5271. "source": {
  5272. "type": "git",
  5273. "url": "https://github.com/symfony/translation-contracts.git",
  5274. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  5275. },
  5276. "dist": {
  5277. "type": "zip",
  5278. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  5279. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  5280. "shasum": "",
  5281. "mirrors": [
  5282. {
  5283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5284. "preferred": true
  5285. }
  5286. ]
  5287. },
  5288. "require": {
  5289. "php": ">=8.0.2"
  5290. },
  5291. "suggest": {
  5292. "symfony/translation-implementation": ""
  5293. },
  5294. "type": "library",
  5295. "extra": {
  5296. "branch-alias": {
  5297. "dev-main": "3.0-dev"
  5298. },
  5299. "thanks": {
  5300. "name": "symfony/contracts",
  5301. "url": "https://github.com/symfony/contracts"
  5302. }
  5303. },
  5304. "autoload": {
  5305. "psr-4": {
  5306. "Symfony\\Contracts\\Translation\\": ""
  5307. }
  5308. },
  5309. "notification-url": "https://packagist.org/downloads/",
  5310. "license": [
  5311. "MIT"
  5312. ],
  5313. "authors": [
  5314. {
  5315. "name": "Nicolas Grekas",
  5316. "email": "p@tchwork.com"
  5317. },
  5318. {
  5319. "name": "Symfony Community",
  5320. "homepage": "https://symfony.com/contributors"
  5321. }
  5322. ],
  5323. "description": "Generic abstractions related to translation",
  5324. "homepage": "https://symfony.com",
  5325. "keywords": [
  5326. "abstractions",
  5327. "contracts",
  5328. "decoupling",
  5329. "interfaces",
  5330. "interoperability",
  5331. "standards"
  5332. ],
  5333. "support": {
  5334. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  5335. },
  5336. "funding": [
  5337. {
  5338. "url": "https://symfony.com/sponsor",
  5339. "type": "custom"
  5340. },
  5341. {
  5342. "url": "https://github.com/fabpot",
  5343. "type": "github"
  5344. },
  5345. {
  5346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5347. "type": "tidelift"
  5348. }
  5349. ],
  5350. "time": "2022-06-27T17:10:44+00:00"
  5351. },
  5352. {
  5353. "name": "symfony/var-exporter",
  5354. "version": "v6.0.19",
  5355. "source": {
  5356. "type": "git",
  5357. "url": "https://github.com/symfony/var-exporter.git",
  5358. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2"
  5359. },
  5360. "dist": {
  5361. "type": "zip",
  5362. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  5363. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  5364. "shasum": "",
  5365. "mirrors": [
  5366. {
  5367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5368. "preferred": true
  5369. }
  5370. ]
  5371. },
  5372. "require": {
  5373. "php": ">=8.0.2"
  5374. },
  5375. "require-dev": {
  5376. "symfony/var-dumper": "^5.4|^6.0"
  5377. },
  5378. "type": "library",
  5379. "autoload": {
  5380. "psr-4": {
  5381. "Symfony\\Component\\VarExporter\\": ""
  5382. },
  5383. "exclude-from-classmap": [
  5384. "/Tests/"
  5385. ]
  5386. },
  5387. "notification-url": "https://packagist.org/downloads/",
  5388. "license": [
  5389. "MIT"
  5390. ],
  5391. "authors": [
  5392. {
  5393. "name": "Nicolas Grekas",
  5394. "email": "p@tchwork.com"
  5395. },
  5396. {
  5397. "name": "Symfony Community",
  5398. "homepage": "https://symfony.com/contributors"
  5399. }
  5400. ],
  5401. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  5402. "homepage": "https://symfony.com",
  5403. "keywords": [
  5404. "clone",
  5405. "construct",
  5406. "export",
  5407. "hydrate",
  5408. "instantiate",
  5409. "serialize"
  5410. ],
  5411. "support": {
  5412. "source": "https://github.com/symfony/var-exporter/tree/v6.0.19"
  5413. },
  5414. "funding": [
  5415. {
  5416. "url": "https://symfony.com/sponsor",
  5417. "type": "custom"
  5418. },
  5419. {
  5420. "url": "https://github.com/fabpot",
  5421. "type": "github"
  5422. },
  5423. {
  5424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5425. "type": "tidelift"
  5426. }
  5427. ],
  5428. "time": "2023-01-13T08:34:10+00:00"
  5429. },
  5430. {
  5431. "name": "tencentcloud/common",
  5432. "version": "3.0.1105",
  5433. "source": {
  5434. "type": "git",
  5435. "url": "https://github.com/tencentcloud-sdk-php/common.git",
  5436. "reference": "b49bbd36fe95463c6eb11ed015de63999a45ea2d"
  5437. },
  5438. "dist": {
  5439. "type": "zip",
  5440. "url": "https://api.github.com/repos/tencentcloud-sdk-php/common/zipball/b49bbd36fe95463c6eb11ed015de63999a45ea2d",
  5441. "reference": "b49bbd36fe95463c6eb11ed015de63999a45ea2d",
  5442. "shasum": "",
  5443. "mirrors": [
  5444. {
  5445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5446. "preferred": true
  5447. }
  5448. ]
  5449. },
  5450. "require": {
  5451. "guzzlehttp/guzzle": "^6.3||^7.0",
  5452. "php": ">=5.6.0"
  5453. },
  5454. "type": "library",
  5455. "autoload": {
  5456. "psr-4": {
  5457. "TencentCloud\\": "./src/TencentCloud"
  5458. }
  5459. },
  5460. "notification-url": "https://packagist.org/downloads/",
  5461. "license": [
  5462. "Apache-2.0"
  5463. ],
  5464. "authors": [
  5465. {
  5466. "name": "tencentcloudapi",
  5467. "email": "tencentcloudapi@tencent.com",
  5468. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  5469. "role": "Developer"
  5470. }
  5471. ],
  5472. "description": "TencentCloudApi php sdk",
  5473. "homepage": "https://github.com/tencentcloud-sdk-php/common",
  5474. "support": {
  5475. "issues": "https://github.com/tencentcloud-sdk-php/common/issues",
  5476. "source": "https://github.com/tencentcloud-sdk-php/common/tree/3.0.1105"
  5477. },
  5478. "time": "2024-03-19T20:33:22+00:00"
  5479. },
  5480. {
  5481. "name": "tencentcloud/sms",
  5482. "version": "3.0.1105",
  5483. "source": {
  5484. "type": "git",
  5485. "url": "https://github.com/tencentcloud-sdk-php/sms.git",
  5486. "reference": "decd581d9d4f0fb9645c193deae2cd625c936ab0"
  5487. },
  5488. "dist": {
  5489. "type": "zip",
  5490. "url": "https://api.github.com/repos/tencentcloud-sdk-php/sms/zipball/decd581d9d4f0fb9645c193deae2cd625c936ab0",
  5491. "reference": "decd581d9d4f0fb9645c193deae2cd625c936ab0",
  5492. "shasum": "",
  5493. "mirrors": [
  5494. {
  5495. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5496. "preferred": true
  5497. }
  5498. ]
  5499. },
  5500. "require": {
  5501. "tencentcloud/common": "3.0.1105"
  5502. },
  5503. "type": "library",
  5504. "autoload": {
  5505. "psr-4": {
  5506. "TencentCloud\\": "./src/TencentCloud"
  5507. }
  5508. },
  5509. "notification-url": "https://packagist.org/downloads/",
  5510. "license": [
  5511. "Apache-2.0"
  5512. ],
  5513. "authors": [
  5514. {
  5515. "name": "tencentcloudapi",
  5516. "email": "tencentcloudapi@tencent.com",
  5517. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  5518. "role": "Developer"
  5519. }
  5520. ],
  5521. "description": "TencentCloudApi php sdk sms",
  5522. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  5523. "support": {
  5524. "issues": "https://github.com/tencentcloud-sdk-php/sms/issues",
  5525. "source": "https://github.com/tencentcloud-sdk-php/sms/tree/3.0.1105"
  5526. },
  5527. "time": "2024-03-19T21:12:46+00:00"
  5528. },
  5529. {
  5530. "name": "topthink/framework",
  5531. "version": "v8.0.3",
  5532. "source": {
  5533. "type": "git",
  5534. "url": "https://github.com/top-think/framework.git",
  5535. "reference": "5e59fb1e2bcb400c6f82e99d1a40dd058afc8563"
  5536. },
  5537. "dist": {
  5538. "type": "zip",
  5539. "url": "https://api.github.com/repos/top-think/framework/zipball/5e59fb1e2bcb400c6f82e99d1a40dd058afc8563",
  5540. "reference": "5e59fb1e2bcb400c6f82e99d1a40dd058afc8563",
  5541. "shasum": "",
  5542. "mirrors": [
  5543. {
  5544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5545. "preferred": true
  5546. }
  5547. ]
  5548. },
  5549. "require": {
  5550. "ext-json": "*",
  5551. "ext-mbstring": "*",
  5552. "php": ">=8.0.0",
  5553. "psr/container": "^2.0",
  5554. "psr/http-message": "^1.0",
  5555. "psr/log": "^1.0|^2.0|^3.0",
  5556. "psr/simple-cache": "^1.0|^2.0|^3.0",
  5557. "topthink/think-helper": "^3.1",
  5558. "topthink/think-orm": "^3.0"
  5559. },
  5560. "require-dev": {
  5561. "guzzlehttp/psr7": "^2.1.0",
  5562. "mikey179/vfsstream": "^1.6",
  5563. "mockery/mockery": "^1.2",
  5564. "phpunit/phpunit": "^9.5"
  5565. },
  5566. "type": "library",
  5567. "autoload": {
  5568. "files": [],
  5569. "psr-4": {
  5570. "think\\": "src/think/"
  5571. }
  5572. },
  5573. "notification-url": "https://packagist.org/downloads/",
  5574. "license": [
  5575. "Apache-2.0"
  5576. ],
  5577. "authors": [
  5578. {
  5579. "name": "liu21st",
  5580. "email": "liu21st@gmail.com"
  5581. },
  5582. {
  5583. "name": "yunwuxin",
  5584. "email": "448901948@qq.com"
  5585. }
  5586. ],
  5587. "description": "The ThinkPHP Framework.",
  5588. "homepage": "http://thinkphp.cn/",
  5589. "keywords": [
  5590. "framework",
  5591. "orm",
  5592. "thinkphp"
  5593. ],
  5594. "support": {
  5595. "issues": "https://github.com/top-think/framework/issues",
  5596. "source": "https://github.com/top-think/framework/tree/v8.0.3"
  5597. },
  5598. "time": "2023-10-17T08:31:52+00:00"
  5599. },
  5600. {
  5601. "name": "topthink/think-captcha",
  5602. "version": "v3.0.9",
  5603. "source": {
  5604. "type": "git",
  5605. "url": "https://github.com/top-think/think-captcha.git",
  5606. "reference": "b1ef360670578214edeebcf824aaf6ab7ee0528b"
  5607. },
  5608. "dist": {
  5609. "type": "zip",
  5610. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/b1ef360670578214edeebcf824aaf6ab7ee0528b",
  5611. "reference": "b1ef360670578214edeebcf824aaf6ab7ee0528b",
  5612. "shasum": "",
  5613. "mirrors": [
  5614. {
  5615. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5616. "preferred": true
  5617. }
  5618. ]
  5619. },
  5620. "require": {
  5621. "topthink/framework": "^6.0|^8.0"
  5622. },
  5623. "type": "library",
  5624. "extra": {
  5625. "think": {
  5626. "services": [
  5627. "think\\captcha\\CaptchaService"
  5628. ],
  5629. "config": {
  5630. "captcha": "src/config.php"
  5631. }
  5632. }
  5633. },
  5634. "autoload": {
  5635. "files": [
  5636. "src/helper.php"
  5637. ],
  5638. "psr-4": {
  5639. "think\\captcha\\": "src/"
  5640. }
  5641. },
  5642. "notification-url": "https://packagist.org/downloads/",
  5643. "license": [
  5644. "Apache-2.0"
  5645. ],
  5646. "authors": [
  5647. {
  5648. "name": "yunwuxin",
  5649. "email": "448901948@qq.com"
  5650. }
  5651. ],
  5652. "description": "captcha package for thinkphp",
  5653. "support": {
  5654. "issues": "https://github.com/top-think/think-captcha/issues",
  5655. "source": "https://github.com/top-think/think-captcha/tree/v3.0.9"
  5656. },
  5657. "time": "2023-04-27T07:18:40+00:00"
  5658. },
  5659. {
  5660. "name": "topthink/think-filesystem",
  5661. "version": "v2.0.2",
  5662. "source": {
  5663. "type": "git",
  5664. "url": "https://github.com/top-think/think-filesystem.git",
  5665. "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f"
  5666. },
  5667. "dist": {
  5668. "type": "zip",
  5669. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/c08503232fcae0c3c7fefae5e6b5c841ffe09f2f",
  5670. "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f",
  5671. "shasum": "",
  5672. "mirrors": [
  5673. {
  5674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5675. "preferred": true
  5676. }
  5677. ]
  5678. },
  5679. "require": {
  5680. "league/flysystem": "^2.0",
  5681. "topthink/framework": "^6.1|^8.0"
  5682. },
  5683. "require-dev": {
  5684. "mikey179/vfsstream": "^1.6",
  5685. "mockery/mockery": "^1.2",
  5686. "phpunit/phpunit": "^8.0"
  5687. },
  5688. "type": "library",
  5689. "autoload": {
  5690. "psr-4": {
  5691. "think\\": "src"
  5692. }
  5693. },
  5694. "notification-url": "https://packagist.org/downloads/",
  5695. "license": [
  5696. "Apache-2.0"
  5697. ],
  5698. "authors": [
  5699. {
  5700. "name": "yunwuxin",
  5701. "email": "448901948@qq.com"
  5702. }
  5703. ],
  5704. "description": "The ThinkPHP6.1 Filesystem Package",
  5705. "support": {
  5706. "issues": "https://github.com/top-think/think-filesystem/issues",
  5707. "source": "https://github.com/top-think/think-filesystem/tree/v2.0.2"
  5708. },
  5709. "time": "2023-02-08T01:23:42+00:00"
  5710. },
  5711. {
  5712. "name": "topthink/think-helper",
  5713. "version": "v3.1.6",
  5714. "source": {
  5715. "type": "git",
  5716. "url": "https://github.com/top-think/think-helper.git",
  5717. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  5718. },
  5719. "dist": {
  5720. "type": "zip",
  5721. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  5722. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  5723. "shasum": "",
  5724. "mirrors": [
  5725. {
  5726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5727. "preferred": true
  5728. }
  5729. ]
  5730. },
  5731. "require": {
  5732. "php": ">=7.1.0"
  5733. },
  5734. "require-dev": {
  5735. "phpunit/phpunit": "^9.5"
  5736. },
  5737. "type": "library",
  5738. "autoload": {
  5739. "files": [
  5740. "src/helper.php"
  5741. ],
  5742. "psr-4": {
  5743. "think\\": "src"
  5744. }
  5745. },
  5746. "notification-url": "https://packagist.org/downloads/",
  5747. "license": [
  5748. "Apache-2.0"
  5749. ],
  5750. "authors": [
  5751. {
  5752. "name": "yunwuxin",
  5753. "email": "448901948@qq.com"
  5754. }
  5755. ],
  5756. "description": "The ThinkPHP6 Helper Package",
  5757. "support": {
  5758. "issues": "https://github.com/top-think/think-helper/issues",
  5759. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  5760. },
  5761. "time": "2021-12-15T04:27:55+00:00"
  5762. },
  5763. {
  5764. "name": "topthink/think-image",
  5765. "version": "v1.0.7",
  5766. "source": {
  5767. "type": "git",
  5768. "url": "https://github.com/top-think/think-image.git",
  5769. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  5770. },
  5771. "dist": {
  5772. "type": "zip",
  5773. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  5774. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  5775. "shasum": "",
  5776. "mirrors": [
  5777. {
  5778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5779. "preferred": true
  5780. }
  5781. ]
  5782. },
  5783. "require": {
  5784. "ext-gd": "*"
  5785. },
  5786. "require-dev": {
  5787. "phpunit/phpunit": "4.8.*",
  5788. "topthink/framework": "^5.0"
  5789. },
  5790. "type": "library",
  5791. "autoload": {
  5792. "psr-4": {
  5793. "think\\": "src"
  5794. }
  5795. },
  5796. "notification-url": "https://packagist.org/downloads/",
  5797. "license": [
  5798. "Apache-2.0"
  5799. ],
  5800. "authors": [
  5801. {
  5802. "name": "yunwuxin",
  5803. "email": "448901948@qq.com"
  5804. }
  5805. ],
  5806. "description": "The ThinkPHP5 Image Package",
  5807. "support": {
  5808. "issues": "https://github.com/top-think/think-image/issues",
  5809. "source": "https://github.com/top-think/think-image/tree/master"
  5810. },
  5811. "time": "2016-09-29T06:05:43+00:00"
  5812. },
  5813. {
  5814. "name": "topthink/think-multi-app",
  5815. "version": "v1.0.16",
  5816. "source": {
  5817. "type": "git",
  5818. "url": "https://github.com/top-think/think-multi-app.git",
  5819. "reference": "07b9183855150455e1f76f8cbe9d77d6d1bc399f"
  5820. },
  5821. "dist": {
  5822. "type": "zip",
  5823. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/07b9183855150455e1f76f8cbe9d77d6d1bc399f",
  5824. "reference": "07b9183855150455e1f76f8cbe9d77d6d1bc399f",
  5825. "shasum": "",
  5826. "mirrors": [
  5827. {
  5828. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5829. "preferred": true
  5830. }
  5831. ]
  5832. },
  5833. "require": {
  5834. "php": ">=7.1.0",
  5835. "topthink/framework": "^6.0|^8.0"
  5836. },
  5837. "type": "library",
  5838. "extra": {
  5839. "think": {
  5840. "services": [
  5841. "think\\app\\Service"
  5842. ]
  5843. }
  5844. },
  5845. "autoload": {
  5846. "psr-4": {
  5847. "think\\app\\": "src"
  5848. }
  5849. },
  5850. "notification-url": "https://packagist.org/downloads/",
  5851. "license": [
  5852. "Apache-2.0"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "liu21st",
  5857. "email": "liu21st@gmail.com"
  5858. }
  5859. ],
  5860. "description": "thinkphp6 multi app support",
  5861. "support": {
  5862. "issues": "https://github.com/top-think/think-multi-app/issues",
  5863. "source": "https://github.com/top-think/think-multi-app/tree/v1.0.16"
  5864. },
  5865. "time": "2023-02-07T08:40:09+00:00"
  5866. },
  5867. {
  5868. "name": "topthink/think-orm",
  5869. "version": "v3.0.14",
  5870. "source": {
  5871. "type": "git",
  5872. "url": "https://github.com/top-think/think-orm.git",
  5873. "reference": "7b0b8ea6ca5e020217f6ba7ae34d547e148a675b"
  5874. },
  5875. "dist": {
  5876. "type": "zip",
  5877. "url": "https://api.github.com/repos/top-think/think-orm/zipball/7b0b8ea6ca5e020217f6ba7ae34d547e148a675b",
  5878. "reference": "7b0b8ea6ca5e020217f6ba7ae34d547e148a675b",
  5879. "shasum": "",
  5880. "mirrors": [
  5881. {
  5882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5883. "preferred": true
  5884. }
  5885. ]
  5886. },
  5887. "require": {
  5888. "ext-json": "*",
  5889. "ext-pdo": "*",
  5890. "php": ">=8.0.0",
  5891. "psr/log": ">=1.0",
  5892. "psr/simple-cache": ">=1.0",
  5893. "topthink/think-helper": "^3.1"
  5894. },
  5895. "require-dev": {
  5896. "phpunit/phpunit": "^8|^9.5|^10"
  5897. },
  5898. "type": "library",
  5899. "autoload": {
  5900. "files": [
  5901. "stubs/load_stubs.php"
  5902. ],
  5903. "psr-4": {
  5904. "think\\": "src"
  5905. }
  5906. },
  5907. "notification-url": "https://packagist.org/downloads/",
  5908. "license": [
  5909. "Apache-2.0"
  5910. ],
  5911. "authors": [
  5912. {
  5913. "name": "liu21st",
  5914. "email": "liu21st@gmail.com"
  5915. }
  5916. ],
  5917. "description": "the PHP Database&ORM Framework",
  5918. "keywords": [
  5919. "database",
  5920. "orm"
  5921. ],
  5922. "support": {
  5923. "issues": "https://github.com/top-think/think-orm/issues",
  5924. "source": "https://github.com/top-think/think-orm/tree/v3.0.14"
  5925. },
  5926. "time": "2023-09-24T13:15:07+00:00"
  5927. },
  5928. {
  5929. "name": "topthink/think-template",
  5930. "version": "v3.0.0",
  5931. "source": {
  5932. "type": "git",
  5933. "url": "https://github.com/top-think/think-template.git",
  5934. "reference": "4352d2cf627abfb8b49f830686c25c02f59c23f2"
  5935. },
  5936. "dist": {
  5937. "type": "zip",
  5938. "url": "https://api.github.com/repos/top-think/think-template/zipball/4352d2cf627abfb8b49f830686c25c02f59c23f2",
  5939. "reference": "4352d2cf627abfb8b49f830686c25c02f59c23f2",
  5940. "shasum": "",
  5941. "mirrors": [
  5942. {
  5943. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5944. "preferred": true
  5945. }
  5946. ]
  5947. },
  5948. "require": {
  5949. "php": ">=8.0.0",
  5950. "psr/simple-cache": ">=1.0"
  5951. },
  5952. "type": "library",
  5953. "autoload": {
  5954. "psr-4": {
  5955. "think\\": "src"
  5956. }
  5957. },
  5958. "notification-url": "https://packagist.org/downloads/",
  5959. "license": [
  5960. "Apache-2.0"
  5961. ],
  5962. "authors": [
  5963. {
  5964. "name": "liu21st",
  5965. "email": "liu21st@gmail.com"
  5966. }
  5967. ],
  5968. "description": "the php template engine",
  5969. "support": {
  5970. "issues": "https://github.com/top-think/think-template/issues",
  5971. "source": "https://github.com/top-think/think-template/tree/v3.0.0"
  5972. },
  5973. "time": "2023-02-25T12:11:14+00:00"
  5974. },
  5975. {
  5976. "name": "topthink/think-view",
  5977. "version": "v2.0.0",
  5978. "source": {
  5979. "type": "git",
  5980. "url": "https://github.com/top-think/think-view.git",
  5981. "reference": "d2a076011c96d2edd8016703a827fb54b2683c62"
  5982. },
  5983. "dist": {
  5984. "type": "zip",
  5985. "url": "https://api.github.com/repos/top-think/think-view/zipball/d2a076011c96d2edd8016703a827fb54b2683c62",
  5986. "reference": "d2a076011c96d2edd8016703a827fb54b2683c62",
  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": ">=8.0.0",
  5997. "topthink/think-template": "^3.0"
  5998. },
  5999. "type": "library",
  6000. "autoload": {
  6001. "psr-4": {
  6002. "think\\view\\driver\\": "src"
  6003. }
  6004. },
  6005. "notification-url": "https://packagist.org/downloads/",
  6006. "license": [
  6007. "Apache-2.0"
  6008. ],
  6009. "authors": [
  6010. {
  6011. "name": "liu21st",
  6012. "email": "liu21st@gmail.com"
  6013. }
  6014. ],
  6015. "description": "thinkphp template driver",
  6016. "support": {
  6017. "issues": "https://github.com/top-think/think-view/issues",
  6018. "source": "https://github.com/top-think/think-view/tree/v2.0.0"
  6019. },
  6020. "time": "2023-02-25T12:18:09+00:00"
  6021. },
  6022. {
  6023. "name": "w7corp/easywechat",
  6024. "version": "6.7.0",
  6025. "source": {
  6026. "type": "git",
  6027. "url": "https://github.com/w7corp/easywechat.git",
  6028. "reference": "85a49397713662c5b98d661a5a9ad8f5566042c4"
  6029. },
  6030. "dist": {
  6031. "type": "zip",
  6032. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/85a49397713662c5b98d661a5a9ad8f5566042c4",
  6033. "reference": "85a49397713662c5b98d661a5a9ad8f5566042c4",
  6034. "shasum": "",
  6035. "mirrors": [
  6036. {
  6037. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6038. "preferred": true
  6039. }
  6040. ]
  6041. },
  6042. "require": {
  6043. "ext-curl": "*",
  6044. "ext-fileinfo": "*",
  6045. "ext-libxml": "*",
  6046. "ext-openssl": "*",
  6047. "ext-simplexml": "*",
  6048. "ext-sodium": "*",
  6049. "monolog/monolog": "^2.2",
  6050. "nyholm/psr7": "^1.5",
  6051. "nyholm/psr7-server": "^1.0",
  6052. "overtrue/socialite": "^3.5|^4.0.1",
  6053. "php": ">=8.0.2",
  6054. "psr/http-client": "^1.0",
  6055. "psr/simple-cache": "^1.0|^2.0|^3.0",
  6056. "symfony/cache": "^5.4|^6.0",
  6057. "symfony/http-client": "^5.4|^6.0",
  6058. "symfony/http-foundation": "^5.4|^6.0",
  6059. "symfony/mime": "^5.4|^6.0",
  6060. "symfony/polyfill-php81": "^1.25",
  6061. "symfony/psr-http-message-bridge": "^2.1.2"
  6062. },
  6063. "require-dev": {
  6064. "brainmaestro/composer-git-hooks": "^2.8",
  6065. "friendsofphp/php-cs-fixer": "^3.5.0",
  6066. "jetbrains/phpstorm-attributes": "^1.0",
  6067. "mikey179/vfsstream": "^1.6",
  6068. "mockery/mockery": "^1.4.4",
  6069. "phpstan/phpstan": "^1.0",
  6070. "phpunit/phpunit": "^9.5",
  6071. "symfony/var-dumper": "^5.2"
  6072. },
  6073. "type": "library",
  6074. "extra": {
  6075. "hooks": {
  6076. "pre-commit": [
  6077. "composer check-style",
  6078. "composer phpstan",
  6079. "composer test"
  6080. ],
  6081. "pre-push": [
  6082. "composer check-style"
  6083. ],
  6084. "config": {
  6085. "stop-on-failure": [
  6086. "pre-commit",
  6087. "pre-push"
  6088. ]
  6089. }
  6090. }
  6091. },
  6092. "autoload": {
  6093. "psr-4": {
  6094. "EasyWeChat\\": "src/"
  6095. }
  6096. },
  6097. "notification-url": "https://packagist.org/downloads/",
  6098. "license": [
  6099. "MIT"
  6100. ],
  6101. "authors": [
  6102. {
  6103. "name": "overtrue",
  6104. "email": "anzhengchao@gmail.com"
  6105. }
  6106. ],
  6107. "description": "微信SDK",
  6108. "keywords": [
  6109. "easywechat",
  6110. "sdk",
  6111. "wechat",
  6112. "weixin",
  6113. "weixin-sdk"
  6114. ],
  6115. "support": {
  6116. "issues": "https://github.com/w7corp/easywechat/issues",
  6117. "source": "https://github.com/w7corp/easywechat/tree/6.7.0"
  6118. },
  6119. "funding": [
  6120. {
  6121. "url": "https://github.com/overtrue",
  6122. "type": "github"
  6123. }
  6124. ],
  6125. "time": "2022-06-28T10:13:47+00:00"
  6126. },
  6127. {
  6128. "name": "webmozart/assert",
  6129. "version": "1.11.0",
  6130. "source": {
  6131. "type": "git",
  6132. "url": "https://github.com/webmozarts/assert.git",
  6133. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6134. },
  6135. "dist": {
  6136. "type": "zip",
  6137. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6138. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6139. "shasum": "",
  6140. "mirrors": [
  6141. {
  6142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6143. "preferred": true
  6144. }
  6145. ]
  6146. },
  6147. "require": {
  6148. "ext-ctype": "*",
  6149. "php": "^7.2 || ^8.0"
  6150. },
  6151. "conflict": {
  6152. "phpstan/phpstan": "<0.12.20",
  6153. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6154. },
  6155. "require-dev": {
  6156. "phpunit/phpunit": "^8.5.13"
  6157. },
  6158. "type": "library",
  6159. "extra": {
  6160. "branch-alias": {
  6161. "dev-master": "1.10-dev"
  6162. }
  6163. },
  6164. "autoload": {
  6165. "psr-4": {
  6166. "Webmozart\\Assert\\": "src/"
  6167. }
  6168. },
  6169. "notification-url": "https://packagist.org/downloads/",
  6170. "license": [
  6171. "MIT"
  6172. ],
  6173. "authors": [
  6174. {
  6175. "name": "Bernhard Schussek",
  6176. "email": "bschussek@gmail.com"
  6177. }
  6178. ],
  6179. "description": "Assertions to validate method input/output with nice error messages.",
  6180. "keywords": [
  6181. "assert",
  6182. "check",
  6183. "validate"
  6184. ],
  6185. "support": {
  6186. "issues": "https://github.com/webmozarts/assert/issues",
  6187. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6188. },
  6189. "time": "2022-06-03T18:03:27+00:00"
  6190. },
  6191. {
  6192. "name": "workerman/crontab",
  6193. "version": "v1.0.6",
  6194. "source": {
  6195. "type": "git",
  6196. "url": "https://github.com/walkor/crontab.git",
  6197. "reference": "b78f1556f2977715b9cb5653129e6d9cf160d966"
  6198. },
  6199. "dist": {
  6200. "type": "zip",
  6201. "url": "https://api.github.com/repos/walkor/crontab/zipball/b78f1556f2977715b9cb5653129e6d9cf160d966",
  6202. "reference": "b78f1556f2977715b9cb5653129e6d9cf160d966",
  6203. "shasum": "",
  6204. "mirrors": [
  6205. {
  6206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6207. "preferred": true
  6208. }
  6209. ]
  6210. },
  6211. "require": {
  6212. "php": ">=7.0",
  6213. "workerman/workerman": ">=4.0.20"
  6214. },
  6215. "type": "library",
  6216. "autoload": {
  6217. "psr-4": {
  6218. "Workerman\\Crontab\\": "./src"
  6219. }
  6220. },
  6221. "notification-url": "https://packagist.org/downloads/",
  6222. "license": [
  6223. "MIT"
  6224. ],
  6225. "authors": [
  6226. {
  6227. "name": "walkor",
  6228. "email": "walkor@workerman.net",
  6229. "homepage": "http://www.workerman.net",
  6230. "role": "Developer"
  6231. }
  6232. ],
  6233. "description": "A crontab written in PHP based on workerman",
  6234. "homepage": "http://www.workerman.net",
  6235. "keywords": [
  6236. "crontab"
  6237. ],
  6238. "support": {
  6239. "email": "walkor@workerman.net",
  6240. "forum": "http://wenda.workerman.net/",
  6241. "issues": "https://github.com/walkor/workerman/issues",
  6242. "source": "https://github.com/walkor/crontab",
  6243. "wiki": "http://doc.workerman.net/"
  6244. },
  6245. "time": "2022-10-17T01:59:19+00:00"
  6246. },
  6247. {
  6248. "name": "workerman/redis",
  6249. "version": "v2.0.2",
  6250. "source": {
  6251. "type": "git",
  6252. "url": "https://github.com/walkor/redis.git",
  6253. "reference": "542f10c243ba846f1f3b4c07a26136c5fa80d972"
  6254. },
  6255. "dist": {
  6256. "type": "zip",
  6257. "url": "https://api.github.com/repos/walkor/redis/zipball/542f10c243ba846f1f3b4c07a26136c5fa80d972",
  6258. "reference": "542f10c243ba846f1f3b4c07a26136c5fa80d972",
  6259. "shasum": "",
  6260. "mirrors": [
  6261. {
  6262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6263. "preferred": true
  6264. }
  6265. ]
  6266. },
  6267. "require": {
  6268. "php": ">=7",
  6269. "workerman/workerman": "^4.1.0||^5.0.0"
  6270. },
  6271. "type": "library",
  6272. "autoload": {
  6273. "psr-4": {
  6274. "Workerman\\Redis\\": "./src"
  6275. }
  6276. },
  6277. "notification-url": "https://packagist.org/downloads/",
  6278. "license": [
  6279. "MIT"
  6280. ],
  6281. "homepage": "http://www.workerman.net",
  6282. "support": {
  6283. "issues": "https://github.com/walkor/redis/issues",
  6284. "source": "https://github.com/walkor/redis/tree/v2.0.2"
  6285. },
  6286. "time": "2023-06-08T01:39:47+00:00"
  6287. },
  6288. {
  6289. "name": "workerman/redis-queue",
  6290. "version": "v1.2.0",
  6291. "source": {
  6292. "type": "git",
  6293. "url": "https://github.com/walkor/redis-queue.git",
  6294. "reference": "7b6aee70d69e5c9427c0411d85f8398027831b42"
  6295. },
  6296. "dist": {
  6297. "type": "zip",
  6298. "url": "https://api.github.com/repos/walkor/redis-queue/zipball/7b6aee70d69e5c9427c0411d85f8398027831b42",
  6299. "reference": "7b6aee70d69e5c9427c0411d85f8398027831b42",
  6300. "shasum": "",
  6301. "mirrors": [
  6302. {
  6303. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6304. "preferred": true
  6305. }
  6306. ]
  6307. },
  6308. "require": {
  6309. "php": ">=7.0",
  6310. "workerman/redis": "^1.0||^2.0",
  6311. "workerman/workerman": ">=4.0.20"
  6312. },
  6313. "type": "library",
  6314. "autoload": {
  6315. "psr-4": {
  6316. "Workerman\\RedisQueue\\": "./src"
  6317. }
  6318. },
  6319. "notification-url": "https://packagist.org/downloads/",
  6320. "license": [
  6321. "MIT"
  6322. ],
  6323. "description": "Message queue system written in PHP based on workerman and backed by Redis.",
  6324. "homepage": "http://www.workerman.net",
  6325. "support": {
  6326. "issues": "https://github.com/walkor/redis-queue/issues",
  6327. "source": "https://github.com/walkor/redis-queue/tree/v1.2.0"
  6328. },
  6329. "time": "2024-02-28T07:00:03+00:00"
  6330. },
  6331. {
  6332. "name": "workerman/workerman",
  6333. "version": "v4.1.15",
  6334. "source": {
  6335. "type": "git",
  6336. "url": "https://github.com/walkor/workerman.git",
  6337. "reference": "afc8242fc769ab7cf22eb4ac22b97cb59d465e4e"
  6338. },
  6339. "dist": {
  6340. "type": "zip",
  6341. "url": "https://api.github.com/repos/walkor/workerman/zipball/afc8242fc769ab7cf22eb4ac22b97cb59d465e4e",
  6342. "reference": "afc8242fc769ab7cf22eb4ac22b97cb59d465e4e",
  6343. "shasum": "",
  6344. "mirrors": [
  6345. {
  6346. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6347. "preferred": true
  6348. }
  6349. ]
  6350. },
  6351. "require": {
  6352. "php": ">=7.0"
  6353. },
  6354. "suggest": {
  6355. "ext-event": "For better performance. "
  6356. },
  6357. "type": "library",
  6358. "autoload": {
  6359. "psr-4": {
  6360. "Workerman\\": "./"
  6361. }
  6362. },
  6363. "notification-url": "https://packagist.org/downloads/",
  6364. "license": [
  6365. "MIT"
  6366. ],
  6367. "authors": [
  6368. {
  6369. "name": "walkor",
  6370. "email": "walkor@workerman.net",
  6371. "homepage": "http://www.workerman.net",
  6372. "role": "Developer"
  6373. }
  6374. ],
  6375. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  6376. "homepage": "http://www.workerman.net",
  6377. "keywords": [
  6378. "asynchronous",
  6379. "event-loop"
  6380. ],
  6381. "support": {
  6382. "email": "walkor@workerman.net",
  6383. "forum": "http://wenda.workerman.net/",
  6384. "issues": "https://github.com/walkor/workerman/issues",
  6385. "source": "https://github.com/walkor/workerman",
  6386. "wiki": "http://doc.workerman.net/"
  6387. },
  6388. "funding": [
  6389. {
  6390. "url": "https://opencollective.com/workerman",
  6391. "type": "open_collective"
  6392. },
  6393. {
  6394. "url": "https://www.patreon.com/walkor",
  6395. "type": "patreon"
  6396. }
  6397. ],
  6398. "time": "2024-02-19T02:10:39+00:00"
  6399. },
  6400. {
  6401. "name": "yansongda/artful",
  6402. "version": "v1.0.9",
  6403. "source": {
  6404. "type": "git",
  6405. "url": "https://github.com/yansongda/artful.git",
  6406. "reference": "1fbf987c0deb95a9b67eb343f2b96c8489635e6f"
  6407. },
  6408. "dist": {
  6409. "type": "zip",
  6410. "url": "https://api.github.com/repos/yansongda/artful/zipball/1fbf987c0deb95a9b67eb343f2b96c8489635e6f",
  6411. "reference": "1fbf987c0deb95a9b67eb343f2b96c8489635e6f",
  6412. "shasum": "",
  6413. "mirrors": [
  6414. {
  6415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6416. "preferred": true
  6417. }
  6418. ]
  6419. },
  6420. "require": {
  6421. "guzzlehttp/psr7": "^2.6",
  6422. "php": ">=8.0",
  6423. "psr/container": "^1.1 || ^2.0",
  6424. "psr/event-dispatcher": "^1.0",
  6425. "psr/http-client": "^1.0",
  6426. "psr/http-message": "^1.1 || ^2.0",
  6427. "psr/log": "^1.1 || ^2.0 || ^3.0",
  6428. "yansongda/supports": "~4.0.9"
  6429. },
  6430. "require-dev": {
  6431. "friendsofphp/php-cs-fixer": "^3.44",
  6432. "guzzlehttp/guzzle": "^7.0",
  6433. "hyperf/pimple": "^2.2",
  6434. "mockery/mockery": "^1.4",
  6435. "monolog/monolog": "^2.2",
  6436. "phpstan/phpstan": "^1.0.0",
  6437. "phpunit/phpunit": "^9.0",
  6438. "symfony/event-dispatcher": "^5.2.0",
  6439. "symfony/http-foundation": "^5.2.0",
  6440. "symfony/psr-http-message-bridge": "^2.1",
  6441. "symfony/var-dumper": "^5.1"
  6442. },
  6443. "suggest": {
  6444. "hyperf/pimple": "其它/无框架下使用 SDK,请安装,任选其一",
  6445. "illuminate/container": "其它/无框架下使用 SDK,请安装,任选其一"
  6446. },
  6447. "type": "library",
  6448. "autoload": {
  6449. "files": [
  6450. "src/Functions.php"
  6451. ],
  6452. "psr-4": {
  6453. "Yansongda\\Artful\\": "src"
  6454. }
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "license": [
  6458. "MIT"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "yansongda",
  6463. "email": "me@yansongda.cn"
  6464. }
  6465. ],
  6466. "description": "Artful 是一个简单易用的 API 请求框架 PHP Api RequesT Framwork U Like。",
  6467. "keywords": [
  6468. "api",
  6469. "artful",
  6470. "framework",
  6471. "request"
  6472. ],
  6473. "support": {
  6474. "homepage": "https://artful.yansongda.cn",
  6475. "issues": "https://github.com/yansongda/artful/issues",
  6476. "source": "https://github.com/yansongda/artful"
  6477. },
  6478. "time": "2024-02-06T13:19:54+00:00"
  6479. },
  6480. {
  6481. "name": "yansongda/pay",
  6482. "version": "v3.6.3",
  6483. "source": {
  6484. "type": "git",
  6485. "url": "https://github.com/yansongda/pay.git",
  6486. "reference": "fba0bb30636cb936eed9e9078d781e0dc4e4282b"
  6487. },
  6488. "dist": {
  6489. "type": "zip",
  6490. "url": "https://api.github.com/repos/yansongda/pay/zipball/fba0bb30636cb936eed9e9078d781e0dc4e4282b",
  6491. "reference": "fba0bb30636cb936eed9e9078d781e0dc4e4282b",
  6492. "shasum": "",
  6493. "mirrors": [
  6494. {
  6495. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6496. "preferred": true
  6497. }
  6498. ]
  6499. },
  6500. "require": {
  6501. "ext-bcmath": "*",
  6502. "ext-json": "*",
  6503. "ext-libxml": "*",
  6504. "ext-openssl": "*",
  6505. "ext-simplexml": "*",
  6506. "php": ">=8.0",
  6507. "yansongda/artful": "~1.0.9",
  6508. "yansongda/supports": "~4.0.9"
  6509. },
  6510. "conflict": {
  6511. "hyperf/framework": "<3.0"
  6512. },
  6513. "require-dev": {
  6514. "friendsofphp/php-cs-fixer": "^3.44",
  6515. "guzzlehttp/guzzle": "^7.0",
  6516. "hyperf/pimple": "^2.2",
  6517. "mockery/mockery": "^1.4",
  6518. "monolog/monolog": "^2.2",
  6519. "phpstan/phpstan": "^1.0.0",
  6520. "phpunit/phpunit": "^9.0",
  6521. "symfony/event-dispatcher": "^5.2.0",
  6522. "symfony/http-foundation": "^5.2.0",
  6523. "symfony/psr-http-message-bridge": "^2.1",
  6524. "symfony/var-dumper": "^5.1"
  6525. },
  6526. "type": "library",
  6527. "autoload": {
  6528. "files": [
  6529. "src/Functions.php"
  6530. ],
  6531. "psr-4": {
  6532. "Yansongda\\Pay\\": "src"
  6533. }
  6534. },
  6535. "notification-url": "https://packagist.org/downloads/",
  6536. "license": [
  6537. "MIT"
  6538. ],
  6539. "authors": [
  6540. {
  6541. "name": "yansongda",
  6542. "email": "me@yansongda.cn"
  6543. }
  6544. ],
  6545. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  6546. "keywords": [
  6547. "alipay",
  6548. "pay",
  6549. "wechat"
  6550. ],
  6551. "support": {
  6552. "homepage": "https://pay.yansongda.cn",
  6553. "issues": "https://github.com/yansongda/pay/issues",
  6554. "source": "https://github.com/yansongda/pay"
  6555. },
  6556. "time": "2024-02-29T12:19:11+00:00"
  6557. },
  6558. {
  6559. "name": "yansongda/supports",
  6560. "version": "v4.0.9",
  6561. "source": {
  6562. "type": "git",
  6563. "url": "https://github.com/yansongda/supports.git",
  6564. "reference": "c3479723be665360a5635c15f184a1d0a8dc995a"
  6565. },
  6566. "dist": {
  6567. "type": "zip",
  6568. "url": "https://api.github.com/repos/yansongda/supports/zipball/c3479723be665360a5635c15f184a1d0a8dc995a",
  6569. "reference": "c3479723be665360a5635c15f184a1d0a8dc995a",
  6570. "shasum": "",
  6571. "mirrors": [
  6572. {
  6573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6574. "preferred": true
  6575. }
  6576. ]
  6577. },
  6578. "require": {
  6579. "php": ">=8.0"
  6580. },
  6581. "require-dev": {
  6582. "friendsofphp/php-cs-fixer": "^3.0",
  6583. "mockery/mockery": "^1.4",
  6584. "phpstan/phpstan": "^1.1.0",
  6585. "phpunit/phpunit": "^9.0"
  6586. },
  6587. "suggest": {
  6588. "monolog/monolog": "Use logger",
  6589. "symfony/console": "Use stdout logger"
  6590. },
  6591. "type": "library",
  6592. "autoload": {
  6593. "files": [
  6594. "src/Functions.php"
  6595. ],
  6596. "psr-4": {
  6597. "Yansongda\\Supports\\": "src/"
  6598. }
  6599. },
  6600. "notification-url": "https://packagist.org/downloads/",
  6601. "license": [
  6602. "MIT"
  6603. ],
  6604. "authors": [
  6605. {
  6606. "name": "yansongda",
  6607. "email": "me@yansongda.cn"
  6608. }
  6609. ],
  6610. "description": "common components",
  6611. "keywords": [
  6612. "array",
  6613. "collection",
  6614. "config",
  6615. "support"
  6616. ],
  6617. "support": {
  6618. "issues": "https://github.com/yansongda/supports/issues",
  6619. "source": "https://github.com/yansongda/supports"
  6620. },
  6621. "time": "2024-01-06T05:14:33+00:00"
  6622. }
  6623. ],
  6624. "packages-dev": [
  6625. {
  6626. "name": "symfony/var-dumper",
  6627. "version": "v6.0.19",
  6628. "source": {
  6629. "type": "git",
  6630. "url": "https://github.com/symfony/var-dumper.git",
  6631. "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52"
  6632. },
  6633. "dist": {
  6634. "type": "zip",
  6635. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eb980457fa6899840fe1687e8627a03a7d8a3d52",
  6636. "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52",
  6637. "shasum": "",
  6638. "mirrors": [
  6639. {
  6640. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6641. "preferred": true
  6642. }
  6643. ]
  6644. },
  6645. "require": {
  6646. "php": ">=8.0.2",
  6647. "symfony/polyfill-mbstring": "~1.0"
  6648. },
  6649. "conflict": {
  6650. "phpunit/phpunit": "<5.4.3",
  6651. "symfony/console": "<5.4"
  6652. },
  6653. "require-dev": {
  6654. "ext-iconv": "*",
  6655. "symfony/console": "^5.4|^6.0",
  6656. "symfony/process": "^5.4|^6.0",
  6657. "symfony/uid": "^5.4|^6.0",
  6658. "twig/twig": "^2.13|^3.0.4"
  6659. },
  6660. "suggest": {
  6661. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6662. "ext-intl": "To show region name in time zone dump",
  6663. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6664. },
  6665. "bin": [
  6666. "Resources/bin/var-dump-server"
  6667. ],
  6668. "type": "library",
  6669. "autoload": {
  6670. "files": [
  6671. "Resources/functions/dump.php"
  6672. ],
  6673. "psr-4": {
  6674. "Symfony\\Component\\VarDumper\\": ""
  6675. },
  6676. "exclude-from-classmap": [
  6677. "/Tests/"
  6678. ]
  6679. },
  6680. "notification-url": "https://packagist.org/downloads/",
  6681. "license": [
  6682. "MIT"
  6683. ],
  6684. "authors": [
  6685. {
  6686. "name": "Nicolas Grekas",
  6687. "email": "p@tchwork.com"
  6688. },
  6689. {
  6690. "name": "Symfony Community",
  6691. "homepage": "https://symfony.com/contributors"
  6692. }
  6693. ],
  6694. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6695. "homepage": "https://symfony.com",
  6696. "keywords": [
  6697. "debug",
  6698. "dump"
  6699. ],
  6700. "support": {
  6701. "source": "https://github.com/symfony/var-dumper/tree/v6.0.19"
  6702. },
  6703. "funding": [
  6704. {
  6705. "url": "https://symfony.com/sponsor",
  6706. "type": "custom"
  6707. },
  6708. {
  6709. "url": "https://github.com/fabpot",
  6710. "type": "github"
  6711. },
  6712. {
  6713. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6714. "type": "tidelift"
  6715. }
  6716. ],
  6717. "time": "2023-01-20T17:44:14+00:00"
  6718. },
  6719. {
  6720. "name": "topthink/think-trace",
  6721. "version": "v1.6",
  6722. "source": {
  6723. "type": "git",
  6724. "url": "https://github.com/top-think/think-trace.git",
  6725. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  6726. },
  6727. "dist": {
  6728. "type": "zip",
  6729. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  6730. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  6731. "shasum": "",
  6732. "mirrors": [
  6733. {
  6734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6735. "preferred": true
  6736. }
  6737. ]
  6738. },
  6739. "require": {
  6740. "php": ">=7.1.0",
  6741. "topthink/framework": "^6.0|^8.0"
  6742. },
  6743. "type": "library",
  6744. "extra": {
  6745. "think": {
  6746. "services": [
  6747. "think\\trace\\Service"
  6748. ],
  6749. "config": {
  6750. "trace": "src/config.php"
  6751. }
  6752. }
  6753. },
  6754. "autoload": {
  6755. "psr-4": {
  6756. "think\\trace\\": "src"
  6757. }
  6758. },
  6759. "notification-url": "https://packagist.org/downloads/",
  6760. "license": [
  6761. "Apache-2.0"
  6762. ],
  6763. "authors": [
  6764. {
  6765. "name": "liu21st",
  6766. "email": "liu21st@gmail.com"
  6767. }
  6768. ],
  6769. "description": "thinkphp debug trace",
  6770. "support": {
  6771. "issues": "https://github.com/top-think/think-trace/issues",
  6772. "source": "https://github.com/top-think/think-trace/tree/v1.6"
  6773. },
  6774. "time": "2023-02-07T08:36:32+00:00"
  6775. }
  6776. ],
  6777. "aliases": [],
  6778. "minimum-stability": "stable",
  6779. "stability-flags": {
  6780. "kosinix/grafika": 20
  6781. },
  6782. "prefer-stable": false,
  6783. "prefer-lowest": false,
  6784. "platform": {
  6785. "php": ">=8.0.0",
  6786. "ext-json": "*",
  6787. "ext-curl": "*",
  6788. "ext-bcmath": "*",
  6789. "ext-mbstring": "*",
  6790. "ext-zip": "*"
  6791. },
  6792. "platform-dev": [],
  6793. "plugin-api-version": "2.3.0"
  6794. }